parent
665a0d0614
commit
62a4b1ded1
4 changed files with 1041 additions and 0 deletions
|
@ -14,12 +14,14 @@ import lang_en_US_common from "../../../locales/en-US/common";
|
||||||
import lang_es_ES_common from "../../../locales/es-ES/common";
|
import lang_es_ES_common from "../../../locales/es-ES/common";
|
||||||
import lang_pt_BR_common from "../../../locales/pt-BR/common";
|
import lang_pt_BR_common from "../../../locales/pt-BR/common";
|
||||||
import lang_de_DE_common from "../../../locales/de-DE/common";
|
import lang_de_DE_common from "../../../locales/de-DE/common";
|
||||||
|
import lang_fr_FR_common from "../../../locales/fr-FR/common";
|
||||||
|
|
||||||
const resourcesCommon = {
|
const resourcesCommon = {
|
||||||
'en-US': lang_en_US_common,
|
'en-US': lang_en_US_common,
|
||||||
'es-ES': lang_es_ES_common,
|
'es-ES': lang_es_ES_common,
|
||||||
'pt-BR': lang_pt_BR_common,
|
'pt-BR': lang_pt_BR_common,
|
||||||
'de-DE': lang_de_DE_common,
|
'de-DE': lang_de_DE_common,
|
||||||
|
'fr-FR': lang_fr_FR_common,
|
||||||
'fk-FK': convertToFake(lang_en_US_common)
|
'fk-FK': convertToFake(lang_en_US_common)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
1033
locales/fr-FR/common.json
Normal file
1033
locales/fr-FR/common.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -13,6 +13,7 @@ enabledLanguages:
|
||||||
- en-US
|
- en-US
|
||||||
- es-ES
|
- es-ES
|
||||||
- de-DE
|
- de-DE
|
||||||
|
- fr-FR
|
||||||
- fk-FK
|
- fk-FK
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
|
|
|
@ -61,6 +61,11 @@ const langCodes = {
|
||||||
getLabel: t => 'Deutsch',
|
getLabel: t => 'Deutsch',
|
||||||
longCode: 'de-DE'
|
longCode: 'de-DE'
|
||||||
},
|
},
|
||||||
|
'fr-FR': {
|
||||||
|
getShortLabel: t => 'FR',
|
||||||
|
getLabel: t => 'Francais',
|
||||||
|
longCode: 'fr-FR'
|
||||||
|
},
|
||||||
'fk-FK': {
|
'fk-FK': {
|
||||||
getShortLabel: t => 'FK',
|
getShortLabel: t => 'FK',
|
||||||
getLabel: t => 'Fake',
|
getLabel: t => 'Fake',
|
||||||
|
|
Loading…
Reference in a new issue