Skip to content

Commit

Permalink
Merge pull request #4055 from camptocamp/fix_untranslated_groups_notif
Browse files Browse the repository at this point in the history
Fix group translation in notifications
  • Loading branch information
llienher authored Jul 25, 2018
2 parents 0ab2abb + f1cf7a8 commit eb2dbec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contribs/gmf/src/services/treemanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ gmf.TreeManager.prototype.notifyCantAddGroups_ = function(groups) {
const names = [];
const gettextCatalog = this.gettextCatalog_;
groups.forEach((group) => {
names.push(group.name);
names.push(gettextCatalog.getString(group.name));
});
const msg = (names.length < 2) ?
gettextCatalog.getString('group is already loaded.') :
Expand Down

0 comments on commit eb2dbec

Please sign in to comment.