Fix Igbo language at menu.

This commit is contained in:
Lauri Ojansivu 2018-01-28 21:01:22 +02:00
parent 1ef5b8efe1
commit 9d7ff75d3f
4 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ Template.userFormsLayout.helpers({
return _.map(TAPi18n.getLanguages(), (lang, code) => {
return {
tag: code,
name: lang.name === 'br' ? 'Brezhoneg' : lang.name,
name: lang.name === 'br' ? 'Brezhoneg' : lang.name === 'ig' ? 'Igbo' : lang.name,
};
}).sort(function(a, b) {
if (a.name === b.name) {