adding french translations to all of src/locales files (#2720)

* adding french translations to all of src/locales files

* Fix formatting and update snapshots

* Update snapshots
This commit is contained in:
Dzarr
2019-12-02 18:11:03 -05:00
committed by Kim Gardner
parent bc27d7fbec
commit 08ead49629
10 changed files with 1720 additions and 1 deletions
@@ -191,6 +191,11 @@ exports[`renders configure general 1`] = `
>
Dansk
</option>
<option
value="fr-FR"
>
Francais
</option>
</select>
<span
aria-hidden={true}
+9 -1
View File
@@ -2,7 +2,14 @@
* LanguageCode is the type represented by the internally identifiable types for
* the different languages that can be supported.
*/
export type LanguageCode = "en-US" | "pt-BR" | "es" | "de" | "nl-NL" | "da";
export type LanguageCode =
| "en-US"
| "pt-BR"
| "es"
| "de"
| "nl-NL"
| "da"
| "fr-FR";
/**
* LOCALES_MAP contains a map of language codes associated with their
@@ -15,6 +22,7 @@ export const LOCALES_MAP: Record<LanguageCode, string> = {
de: "Deutsch",
"nl-NL": "Nederlands",
da: "Dansk",
"fr-FR": "Francais",
};
/**