← Back to team overview

elementaryart team mailing list archive

[Merge] lp:~ttosttos/granite/fix-992759 into lp:granite

 

ttosttos has proposed merging lp:~ttosttos/granite/fix-992759 into lp:granite.

Requested reviews:
  elementary Pantheon team (elementary-pantheon)
Related bugs:
  Bug #992759 in Granite: "Buttons names in About aren't Title Case"
  https://bugs.launchpad.net/granite/+bug/992759

For more details, see:
https://code.launchpad.net/~ttosttos/granite/fix-992759/+merge/106755

Adds Title Case to About dialog buttons
-- 
https://code.launchpad.net/~ttosttos/granite/fix-992759/+merge/106755
Your team elementaryart (old) is subscribed to branch lp:granite.
=== modified file 'lib/Widgets/AboutDialog.vala'
--- lib/Widgets/AboutDialog.vala	2012-05-15 04:57:02 +0000
+++ lib/Widgets/AboutDialog.vala	2012-05-22 08:20:46 +0000
@@ -127,12 +127,12 @@
             ((Gtk.ButtonBox) action_area).set_child_non_homogeneous (help_button, true);
 
             /* translate button */
-            translate_button = new Button.with_label(_("Translate this app"));
+            translate_button = new Button.with_label(_("Translate This App"));
             translate_button.pressed.connect ( () => { activate_link(translate); });
             action_area.pack_start (translate_button, false, false, 0);
 
             /* bug button */
-            bug_button = new Button.with_label (_("Report a problem"));
+            bug_button = new Button.with_label (_("Report a Problem"));
             bug_button.pressed.connect (() => { activate_link(bug); });
             action_area.pack_start (bug_button, false, false, 0);
 


Follow ups