[gnome-shell] [panel] Fix translatable string



commit cc0de39725ceea80edb1ed52283e03f14243ffe9
Author: Florian Müllner <fmuellner gnome org>
Date:   Sun Jul 18 19:33:10 2010 +0200

    [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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/panel.js b/js/ui/panel.js
index dbb7ddf..0686b22 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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]