Add Russian language to settings page

This commit is contained in:
Carlos 2022-09-30 14:13:38 +02:00
parent 30aedbc199
commit 7dfd2081d9
2 changed files with 2 additions and 1 deletions

View File

@ -66,6 +66,7 @@
<option value="en">English</option>
<option value="es">Español</option>
<option value="pl">Polski</option>
<option value="ru">русский</option>
<option value="zh">中文</option>
</select>
</div>

View File

@ -20,7 +20,7 @@ export const HttpLoaderFactory = (http: HttpClient): TranslateHttpLoader => {
exports: []
})
export class LanguageModule {
readonly VALID_LANGUAGES = ["en", "es", "pl", "zh"];
readonly VALID_LANGUAGES = ["en", "es", "pl", "ru", "zh"];
constructor(private languageService: LanguageService) {
this.setup();