Skip to content

Commit d96457e

Browse files
authored
fix: 🇫🇷 fr and 🇨🇭 fr_CH 🎨 colors (#1007)
1 parent b50fb6d commit d96457e

9 files changed

Lines changed: 31 additions & 7 deletions

File tree

src/locales/en/music/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import genre from './genre';
77
import song_name from './song_name';
88

99
const music: MusicDefinitions = {
10-
song_name,
1110
genre,
11+
song_name,
1212
};
1313

1414
export default music;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export default [
163163
'topaze',
164164
'tourterelle',
165165
'turquoise',
166-
'vanille#Couleur_vanille',
166+
'vanille',
167167
'vermeil',
168168
'vermillon',
169169
'vert bouteille',

src/locales/fr/color/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { ColorDefinitions } from '../../..';
6+
import human from './human';
7+
8+
const color: ColorDefinitions = {
9+
human,
10+
};
11+
12+
export default color;

src/locales/fr/commerce/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { CommerceDefinitions } from '../../..';
6-
import color from './color';
76
import department from './department';
87
import product_description from './product_description';
98
import product_name from './product_name';
109

1110
const commerce: CommerceDefinitions = {
12-
color,
1311
department,
1412
product_description,
1513
product_name,

src/locales/fr/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import type { LocaleDefinition } from '../..';
66
import address from './address';
77
import animal from './animal';
8+
import color from './color';
89
import commerce from './commerce';
910
import company from './company';
1011
import date from './date';
@@ -21,6 +22,7 @@ const fr: LocaleDefinition = {
2122
title: 'French',
2223
address,
2324
animal,
25+
color,
2426
commerce,
2527
company,
2628
date,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export default [
163163
'topaze',
164164
'tourterelle',
165165
'turquoise',
166-
'vanille#Couleur_vanille',
166+
'vanille',
167167
'vermeil',
168168
'vermillon',
169169
'vert bouteille',

src/locales/fr_CH/color/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { ColorDefinitions } from '../../..';
6+
import human from './human';
7+
8+
const color: ColorDefinitions = {
9+
human,
10+
};
11+
12+
export default color;

src/locales/fr_CH/commerce/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { CommerceDefinitions } from '../../..';
6-
import color from './color';
76
import department from './department';
87
import product_description from './product_description';
98
import product_name from './product_name';
109

1110
const commerce: CommerceDefinitions = {
12-
color,
1311
department,
1412
product_description,
1513
product_name,

src/locales/fr_CH/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import type { LocaleDefinition } from '../..';
66
import address from './address';
77
import animal from './animal';
88
import cell_phone from './cell_phone';
9+
import color from './color';
910
import commerce from './commerce';
1011
import date from './date';
1112
import finance from './finance';
@@ -22,6 +23,7 @@ const fr_CH: LocaleDefinition = {
2223
address,
2324
animal,
2425
cell_phone,
26+
color,
2527
commerce,
2628
date,
2729
finance,

0 commit comments

Comments
 (0)