From cc0de39725ceea80edb1ed52283e03f14243ffe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 18 Jul 2010 19:33:10 +0200 Subject: [PATCH] [panel] Fix translatable string Fix a string which is not extracted correctly by marking it correctly with double quotes. --- js/ui/panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/panel.js b/js/ui/panel.js index dbb7ddf4b..0686b22da 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -459,7 +459,7 @@ AppMenuButton.prototype = { this._label.setText(targetApp.get_name()); // TODO - _quit() doesn't really work on apps in state STARTING yet - this._quitMenu.label.set_text(_('Quit %s').format(targetApp.get_name())); + this._quitMenu.label.set_text(_("Quit %s").format(targetApp.get_name())); this.actor.reactive = true; this._iconBox.set_child(icon);