mirror of
https://github.com/wassname/talk.git
synced 2026-09-13 13:10:43 +08:00
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:
@@ -191,6 +191,11 @@ exports[`renders configure general 1`] = `
|
||||
>
|
||||
Dansk
|
||||
</option>
|
||||
<option
|
||||
value="fr-FR"
|
||||
>
|
||||
Francais
|
||||
</option>
|
||||
</select>
|
||||
<span
|
||||
aria-hidden={true}
|
||||
|
||||
@@ -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",
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user