[gnome-initial-setup] ui: Fix capitalisation of a button label



commit b1ac895f7d21dc9810694d2d758a72a9230c9216
Author: Philip Withnall <withnall endlessm com>
Date:   Fri Jan 27 09:52:11 2017 +0000

    ui: Fix capitalisation of a button label
    
    Make the capitalisation consistent within the UI, and consistently
    follow the HIG:
    
    https://developer.gnome.org/hig/stable/writing-style.html.en#capitalization
    
    https://bugzilla.gnome.org/show_bug.cgi?id=777821

 .../pages/summary/gis-summary-page.c               |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gnome-initial-setup/pages/summary/gis-summary-page.c 
b/gnome-initial-setup/pages/summary/gis-summary-page.c
index db54924..2d5acf4 100644
--- a/gnome-initial-setup/pages/summary/gis-summary-page.c
+++ b/gnome-initial-setup/pages/summary/gis-summary-page.c
@@ -325,7 +325,7 @@ update_distro_name (GisSummaryPage *page)
   /* Translators: the parameter here is the name of a distribution,
    * like "Fedora" or "Ubuntu". It falls back to "GNOME 3" if we can't
    * detect any distribution. */
-  text = g_strdup_printf (_("_Start using %s"), name);
+  text = g_strdup_printf (_("_Start Using %s"), name);
   gtk_label_set_label (GTK_LABEL (priv->start_button_label), text);
   g_free (text);
 


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