Fix bug 1584489: Remove fr and es from supported languages (#1399)

Also: Add l10n.toml file to use to check l10n status and quality
This commit is contained in:
Matjaž Horvat 2019-09-30 18:33:02 +02:00 коммит произвёл GitHub
Родитель a1eeb1857a
Коммит 6005885d24
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -15,4 +15,4 @@ export const NAME: string = 'l10n';
// List of available locales for the UI.
// Use to choose which locale files to download.
export const AVAILABLE_LOCALES: Array<string> = ['fr', 'es', 'en-US'];
export const AVAILABLE_LOCALES: Array<string> = ['en-US'];

10
l10n.toml Normal file
Просмотреть файл

@ -0,0 +1,10 @@
basepath = "."
locales = [
"es",
"fr",
]
[[paths]]
reference = "frontend/public/static/locale/en-US/*.ftl"
l10n = "frontend/public/static/locale/{locale}/*.ftl"