cheese r642 - in trunk: . data src



Author: dgsiegel
Date: Sat Apr 12 17:59:29 2008
New Revision: 642
URL: http://svn.gnome.org/viewvc/cheese?rev=642&view=rev

Log:
Buttons and menu items should use Title Case


Modified:
   trunk/ChangeLog
   trunk/data/cheese.glade
   trunk/data/cheese.ui
   trunk/src/cheese-window.c

Modified: trunk/data/cheese.glade
==============================================================================
--- trunk/data/cheese.glade	(original)
+++ trunk/data/cheese.glade	Sat Apr 12 17:59:29 2008
@@ -257,7 +257,7 @@
                                 <child>
                                   <widget class="GtkLabel" id="label_take_photo">
                                     <property name="visible">True</property>
-                                    <property name="label" translatable="yes">_Take a photo</property>
+                                    <property name="label" translatable="yes">_Take a Photo</property>
                                     <property name="use_markup">True</property>
                                     <property name="use_underline">True</property>
                                     <property name="mnemonic_widget">take_picture</property>

Modified: trunk/data/cheese.ui
==============================================================================
--- trunk/data/cheese.ui	(original)
+++ trunk/data/cheese.ui	Sat Apr 12 17:59:29 2008
@@ -235,7 +235,7 @@
                                 <child>
                                   <object class="GtkLabel" id="label_take_photo">
                                     <property name="visible">True</property>
-                                    <property name="label" translatable="yes">_Take a photo</property>
+                                    <property name="label" translatable="yes">_Take a Photo</property>
                                     <property name="use_markup">True</property>
                                     <property name="use_underline">True</property>
                                     <property name="mnemonic_widget">take_picture</property>

Modified: trunk/src/cheese-window.c
==============================================================================
--- trunk/src/cheese-window.c	(original)
+++ trunk/src/cheese-window.c	Sat Apr 12 17:59:29 2008
@@ -782,7 +782,7 @@
   {
     cheese_window->webcam_mode = WEBCAM_MODE_PHOTO;
 
-    str = g_strconcat ("<b>", _("_Take a photo"), "</b>", NULL);
+    str = g_strconcat ("<b>", _("_Take a Photo"), "</b>", NULL);
     gtk_label_set_text_with_mnemonic (GTK_LABEL (cheese_window->label_take_photo), str);
     g_free (str);
     gtk_label_set_use_markup (GTK_LABEL (cheese_window->label_take_photo), TRUE);
@@ -857,7 +857,7 @@
     gtk_widget_set_sensitive (cheese_window->button_effects, TRUE);
     gtk_widget_set_sensitive (cheese_window->button_photo, TRUE);
     gtk_widget_set_sensitive (cheese_window->button_video, TRUE);
-    gchar * str = g_strconcat ("<b>", _("_Start recording"), "</b>", NULL);
+    gchar * str = g_strconcat ("<b>", _("_Start Recording"), "</b>", NULL);
     gtk_label_set_text_with_mnemonic (GTK_LABEL (cheese_window->label_take_photo), str);
     g_free (str);
     gtk_label_set_use_markup (GTK_LABEL (cheese_window->label_take_photo), TRUE);
@@ -919,7 +919,7 @@
       gtk_widget_set_sensitive (cheese_window->button_effects, FALSE);
       gtk_widget_set_sensitive (cheese_window->button_photo, FALSE);
       gtk_widget_set_sensitive (cheese_window->button_video, FALSE);
-      str = g_strconcat ("<b>", _("_Stop recording"), "</b>", NULL);
+      str = g_strconcat ("<b>", _("_Stop Recording"), "</b>", NULL);
       gtk_label_set_text_with_mnemonic (GTK_LABEL (cheese_window->label_take_photo), str);
       g_free (str);
       gtk_label_set_use_markup (GTK_LABEL (cheese_window->label_take_photo), TRUE);
@@ -941,12 +941,12 @@
   {"Cheese", NULL, N_("_Cheese")},
 
   {"Edit", NULL, N_("_Edit")},
-  {"RemoveAll", NULL, N_("Move all to Trash"), NULL, NULL, G_CALLBACK (cheese_window_move_all_media_to_trash)},
+  {"RemoveAll", NULL, N_("Move All to Trash"), NULL, NULL, G_CALLBACK (cheese_window_move_all_media_to_trash)},
 
   {"Help", NULL, N_("_Help")},
 
   {"Quit", GTK_STOCK_QUIT, NULL, NULL, NULL, G_CALLBACK (cheese_window_cmd_close)},
-  {"HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1", N_("Help on this application"), G_CALLBACK (cheese_window_cmd_help_contents)},
+  {"HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1", N_("Help on this Application"), G_CALLBACK (cheese_window_cmd_help_contents)},
   {"About", GTK_STOCK_ABOUT, NULL, NULL, NULL, G_CALLBACK (cheese_window_cmd_about)},
 
 };



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