Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
intl: 'add' translation changed
need different translation for german
  • Loading branch information
alexkn authored and perexg committed Jun 22, 2015
1 parent 369cc53 commit e57e58f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webui/static/app/idnode.js
Expand Up @@ -901,7 +901,7 @@ tvheadend.idnode_create = function(conf, onlyDefault)

/* Create window */
win = new Ext.Window({
title: _('Add') + ' ' + conf.titleS,
title: String.format(_('Add {0}'), conf.titleS),
iconCls: 'add',
layout: 'fit',
autoWidth: true,
Expand Down Expand Up @@ -931,7 +931,7 @@ tvheadend.idnode_create = function(conf, onlyDefault)
if (d) {
d = tvheadend.idnode_filter_fields(d, conf.select.list || null);
pclass = r.get(conf.select.valueField);
win.setTitle(_('Add') + ' ' + s.lastSelectionText);
win.setTitle(String.format(_('Add {0}'), s.lastSelectionText));
panel.remove(s);
tvheadend.idnode_editor_form(d, null, panel, { create: true, showpwd: true });
saveBtn.setVisible(true);
Expand Down

0 comments on commit e57e58f

Please sign in to comment.