Skip to content

Commit

Permalink
Add french language to client
Browse files Browse the repository at this point in the history
  • Loading branch information
mesacarlos committed Sep 15, 2023
1 parent d178cd1 commit 7c94524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/app/content/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ <h2>{{ "SETTINGS.Language" | translate }}</h2>
<option value="en">English</option>
<option value="es">Español</option>
<option value="de">Deutsch</option>
<option value="fr">Français</option>
<option value="no">Norsk</option>
<option value="pl">Polski</option>
<option value="ru">русский</option>
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/core/language.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const HttpLoaderFactory = (http: HttpClient): TranslateHttpLoader => {
exports: []
})
export class LanguageModule {
readonly VALID_LANGUAGES = ["en", "es", "de", "no", "pl", "ru", "zh"];
readonly VALID_LANGUAGES = ["en", "es", "de", "fr", "no", "pl", "ru", "zh"];

constructor(private languageService: LanguageService) {
this.setup();
Expand Down

0 comments on commit 7c94524

Please sign in to comment.