Skip to content

Commit

Permalink
Merge pull request #11 from Zextras/IRIS-2289-support-french-language
Browse files Browse the repository at this point in the history
feat: french language support added to language settings
  • Loading branch information
zovomat authored Jan 28, 2022
2 parents 2aa94ee + 76e89f9 commit 6ab4f1e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/settings/components/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,13 @@ export const localeList = (
localName: t('locale.turkish', 'Turkish'),
label: t('locale.label_turkish', { value: 'Türkçe', defaultValue: 'Turkish - {{value}}' }),
value: 'tr'
},
{
id: 'fr',
name: 'français',
localName: t('locale.french', 'French'),
label: t('locale.label_french', { value: 'français', defaultValue: 'French - {{value}}' }),
value: 'fr'
}
];
// TODO: For future languages
Expand Down
2 changes: 2 additions & 0 deletions translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@
"English": "English",
"chinese_china": "Chinese (China)",
"dutch": "Dutch",
"french": "French",
"german": "German",
"hindi": "Hindi",
"italian": "Italian",
"japanese": "Japanese",
"label_chinese": "Chinese (China) - {{value}}",
"label_dutch": "Dutch - {{value}}",
"label_english": "English - {{value}}",
"label_french": "French - {{value}}",
"label_german": "German - {{value}}",
"label_hindi": "Hindi - {{value}}",
"label_italian": "Italian - {{value}}",
Expand Down

0 comments on commit 6ab4f1e

Please sign in to comment.