I18n ro translation (#2786)

* add Romanian translation

* add further RO translations

* update locales.ts file

* add common.ftl RO translations

* fix: linting

* fix: updated snapshots

Co-authored-by: Wyatt Johnson <accounts+github@wyattjoh.ca>
This commit is contained in:
vladimir04
2020-01-10 18:04:52 +00:00
committed by Wyatt Johnson
co-authored by Wyatt Johnson
parent 6057edcb07
commit a582773e1d
5 changed files with 558 additions and 1 deletions
@@ -205,6 +205,11 @@ exports[`renders configure general 1`] = `
>
Francais
</option>
<option
value="ro"
>
Română
</option>
</select>
<span
aria-hidden={true}
+3 -1
View File
@@ -9,7 +9,8 @@ export type LanguageCode =
| "de"
| "nl-NL"
| "da"
| "fr-FR";
| "fr-FR"
| "ro";
/**
* LOCALES_MAP contains a map of language codes associated with their
@@ -23,6 +24,7 @@ export const LOCALES_MAP: Record<LanguageCode, string> = {
"nl-NL": "Nederlands",
da: "Dansk",
"fr-FR": "Francais",
ro: "Română",
};
/**