diff options
Diffstat (limited to 'client/components/main')
-rw-r--r-- | client/components/main/layouts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js index 3b9092c3..1936d7aa 100644 --- a/client/components/main/layouts.js +++ b/client/components/main/layouts.js @@ -23,7 +23,7 @@ Template.userFormsLayout.helpers({ return _.map(TAPi18n.getLanguages(), (lang, code) => { return { tag: code, - name: lang.name, + name: lang.name === 'br' ? 'Brezhoneg' : lang.name, }; }).sort(function(a, b) { if (a.name === b.name) { |