Remove markup from translated strings
Including the markup in the string makes the translators job unnecessarily harder. https://bugzilla.gnome.org/show_bug.cgi?id=681270
This commit is contained in:
parent
fd3be5b7de
commit
782e11b96c
@ -161,7 +161,7 @@ const Application = new Lang.Class({
|
|||||||
vbox.add(toolbar);
|
vbox.add(toolbar);
|
||||||
let toolitem;
|
let toolitem;
|
||||||
|
|
||||||
let label = new Gtk.Label({ label: _("<b>Extension</b>"),
|
let label = new Gtk.Label({ label: '<b>' + _("Extension") + '</b>',
|
||||||
use_markup: true });
|
use_markup: true });
|
||||||
toolitem = new Gtk.ToolItem({ child: label });
|
toolitem = new Gtk.ToolItem({ child: label });
|
||||||
toolbar.add(toolitem);
|
toolbar.add(toolitem);
|
||||||
|
Loading…
Reference in New Issue
Block a user