[gnome-tweak-tool] Correctly capitalize GNOME in the About dialog



commit 8eb859fea56b97aac5c4f4173022fdf3226e7162
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Mon Jul 22 23:05:45 2013 +0200

    Correctly capitalize GNOME in the About dialog

 gtweak/app.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gtweak/app.py b/gtweak/app.py
index 17df43e..00b258a 100644
--- a/gtweak/app.py
+++ b/gtweak/app.py
@@ -88,14 +88,14 @@ class GnomeTweakTool(Gtk.Application):
 
     def about_cb(self, action, parameter):
         aboutdialog = Gtk.AboutDialog()
-        aboutdialog.set_title("About Gnome Tweak Tool")
-        aboutdialog.set_program_name("Gnome Tweak Tool")
+        aboutdialog.set_title("About GNOME Tweak Tool")
+        aboutdialog.set_program_name("GNOME Tweak Tool")
 
         _shell = GnomeShellFactory().get_shell()
         if _shell is not None:
-            aboutdialog.set_comments("Gnome Shell v%s (%s mode)" % (_shell.version, _shell.mode))
+            aboutdialog.set_comments("GNOME Shell v%s (%s mode)" % (_shell.version, _shell.mode))
         else:
-            aboutdialog.set_comments("Gnome Shell not running")
+            aboutdialog.set_comments("GNOME Shell not running")
 
         aboutdialog.set_copyright("Copyright \xc2\xa9 2011 - 2013 John Stowers.")
         aboutdialog.set_logo_icon_name("gnome-tweak-tool")


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