Skip to content

Commit

Permalink
fix: 🇫🇷 fr and 🇨🇭 fr_CH 🎨 colors (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yago committed May 26, 2022
1 parent b50fb6d commit d96457e
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/locales/en/music/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import genre from './genre';
import song_name from './song_name';

const music: MusicDefinitions = {
song_name,
genre,
song_name,
};

export default music;
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default [
'topaze',
'tourterelle',
'turquoise',
'vanille#Couleur_vanille',
'vanille',
'vermeil',
'vermillon',
'vert bouteille',
Expand Down
12 changes: 12 additions & 0 deletions src/locales/fr/color/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { ColorDefinitions } from '../../..';
import human from './human';

const color: ColorDefinitions = {
human,
};

export default color;
2 changes: 0 additions & 2 deletions src/locales/fr/commerce/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { CommerceDefinitions } from '../../..';
import color from './color';
import department from './department';
import product_description from './product_description';
import product_name from './product_name';

const commerce: CommerceDefinitions = {
color,
department,
product_description,
product_name,
Expand Down
2 changes: 2 additions & 0 deletions src/locales/fr/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import type { LocaleDefinition } from '../..';
import address from './address';
import animal from './animal';
import color from './color';
import commerce from './commerce';
import company from './company';
import date from './date';
Expand All @@ -21,6 +22,7 @@ const fr: LocaleDefinition = {
title: 'French',
address,
animal,
color,
commerce,
company,
date,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default [
'topaze',
'tourterelle',
'turquoise',
'vanille#Couleur_vanille',
'vanille',
'vermeil',
'vermillon',
'vert bouteille',
Expand Down
12 changes: 12 additions & 0 deletions src/locales/fr_CH/color/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { ColorDefinitions } from '../../..';
import human from './human';

const color: ColorDefinitions = {
human,
};

export default color;
2 changes: 0 additions & 2 deletions src/locales/fr_CH/commerce/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { CommerceDefinitions } from '../../..';
import color from './color';
import department from './department';
import product_description from './product_description';
import product_name from './product_name';

const commerce: CommerceDefinitions = {
color,
department,
product_description,
product_name,
Expand Down
2 changes: 2 additions & 0 deletions src/locales/fr_CH/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import type { LocaleDefinition } from '../..';
import address from './address';
import animal from './animal';
import cell_phone from './cell_phone';
import color from './color';
import commerce from './commerce';
import date from './date';
import finance from './finance';
Expand All @@ -22,6 +23,7 @@ const fr_CH: LocaleDefinition = {
address,
animal,
cell_phone,
color,
commerce,
date,
finance,
Expand Down

0 comments on commit d96457e

Please sign in to comment.