xgettext only recognizes _("foo"), not _('foo') in .js files. Fix

Noted in https://bugzilla.gnome.org/show_bug.cgi?id=609838
This commit is contained in:
Dan Winship
2010-02-15 08:33:35 -05:00
parent 01c267b095
commit 229cfd9f80
3 changed files with 13 additions and 13 deletions

View File

@ -92,7 +92,7 @@ InfoBar.prototype = {
x_fill: true,
y_fill: false });
this._label = new St.Label();
this._undo = new St.Button({ label: _('Undo'),
this._undo = new St.Button({ label: _("Undo"),
style_class: 'info-bar-link-button' });
let bin = new St.Bin({ x_fill: false,