[frogr] Updated l10n strings and screenshots



commit f1e6800aebc1a4f6944d4a63a793555e698edf54
Author: Mario Sanchez Prada <msanchez igalia com>
Date:   Thu Apr 12 11:52:24 2012 +0200

    Updated l10n strings and screenshots

 data/gtkbuilder/frogr-main-view.xml     |    2 +-
 help/C/figures/auth-dialog-step2.png    |  Bin 5780 -> 5539 bytes
 help/C/figures/create-new-set.png       |  Bin 14558 -> 14004 bytes
 help/C/figures/edit-picture-details.png |  Bin 69595 -> 77564 bytes
 help/C/figures/preferences-general.png  |  Bin 36309 -> 0 bytes
 help/C/figures/preferences-misc.png     |  Bin 21259 -> 20530 bytes
 src/frogr-auth-dialog.c                 |   10 +++++-----
 src/frogr-create-new-set-dialog.c       |    8 ++++----
 src/frogr-details-dialog.c              |   12 ++++++------
 src/frogr-settings-dialog.c             |    8 ++++----
 10 files changed, 20 insertions(+), 20 deletions(-)
---
diff --git a/data/gtkbuilder/frogr-main-view.xml b/data/gtkbuilder/frogr-main-view.xml
index bdcfb06..5bf5366 100644
--- a/data/gtkbuilder/frogr-main-view.xml
+++ b/data/gtkbuilder/frogr-main-view.xml
@@ -67,7 +67,7 @@
   <object class="GtkActionGroup" id="on_idle_action_group">
     <child>
       <object class="GtkAction" id="auth_action">
-        <property name="label" translatable="yes">Aut_horize accountâ</property>
+        <property name="label" translatable="yes">Aut_horize Accountâ</property>
         <signal name="activate" handler="_on_action_activated" swapped="no"/>
       </object>
     </child>
diff --git a/help/C/figures/auth-dialog-step2.png b/help/C/figures/auth-dialog-step2.png
index 596189a..f0eb043 100644
Binary files a/help/C/figures/auth-dialog-step2.png and b/help/C/figures/auth-dialog-step2.png differ
diff --git a/help/C/figures/create-new-set.png b/help/C/figures/create-new-set.png
index 3af7278..9981bc1 100644
Binary files a/help/C/figures/create-new-set.png and b/help/C/figures/create-new-set.png differ
diff --git a/help/C/figures/edit-picture-details.png b/help/C/figures/edit-picture-details.png
index fccec19..180d4b7 100644
Binary files a/help/C/figures/edit-picture-details.png and b/help/C/figures/edit-picture-details.png differ
diff --git a/help/C/figures/preferences-misc.png b/help/C/figures/preferences-misc.png
index 31d27fc..12a13d7 100644
Binary files a/help/C/figures/preferences-misc.png and b/help/C/figures/preferences-misc.png differ
diff --git a/src/frogr-auth-dialog.c b/src/frogr-auth-dialog.c
index e2d6569..b693fca 100644
--- a/src/frogr-auth-dialog.c
+++ b/src/frogr-auth-dialog.c
@@ -33,7 +33,7 @@ static gchar *unauth_txt =
      "and then come back to complete the process.");
 
 static gchar *auth_txt =
-  N_("Enter verification code.");
+  N_("Enter verification code:");
 
 /* Prototypes */
 
@@ -159,15 +159,15 @@ _ask_for_auth_confirmation (GtkWindow *parent)
   content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
   vbox = frogr_gtk_compat_box_new (GTK_ORIENTATION_VERTICAL, 0);
 
-  /* Entry widgets for the verification code */
-  ver_code_entry = _build_verification_code_entry_widget (dialog);
-  gtk_box_pack_start (GTK_BOX (vbox), ver_code_entry, TRUE, TRUE, 0);
-
   /* Description label */
   label = gtk_label_new (auth_txt);
   gtk_misc_set_padding (GTK_MISC (label), 12, 0);
   gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 6);
 
+  /* Entry widgets for the verification code */
+  ver_code_entry = _build_verification_code_entry_widget (dialog);
+  gtk_box_pack_start (GTK_BOX (vbox), ver_code_entry, TRUE, TRUE, 6);
+
   gtk_container_add (GTK_CONTAINER (content_area), vbox);
 
   g_signal_connect (G_OBJECT (dialog), "response",
diff --git a/src/frogr-create-new-set-dialog.c b/src/frogr-create-new-set-dialog.c
index 8ad08ea..0b957e4 100644
--- a/src/frogr-create-new-set-dialog.c
+++ b/src/frogr-create-new-set-dialog.c
@@ -318,7 +318,7 @@ frogr_create_new_set_dialog_init (FrogrCreateNewSetDialog *self)
   table = gtk_table_new (2, 2, FALSE);
   gtk_box_pack_start (GTK_BOX (vbox), table, TRUE, TRUE, 6);
 
-  widget = gtk_label_new (_("Set's title:"));
+  widget = gtk_label_new (_("Title:"));
   align = gtk_alignment_new (1, 0, 1, 0);
   gtk_container_add (GTK_CONTAINER (align), widget);
   gtk_table_attach (GTK_TABLE (table), align, 0, 1, 0, 1,
@@ -331,7 +331,7 @@ frogr_create_new_set_dialog_init (FrogrCreateNewSetDialog *self)
                     GTK_EXPAND | GTK_FILL, 0, 6, 6);
   priv->title_entry = widget;
 
-  widget = gtk_label_new (_("Set's description:"));
+  widget = gtk_label_new (_("Description:"));
   align = gtk_alignment_new (1, 0, 1, 0);
   gtk_container_add (GTK_CONTAINER (align), widget);
   gtk_table_attach (GTK_TABLE (table), align, 0, 1, 1, 2,
@@ -354,7 +354,7 @@ frogr_create_new_set_dialog_init (FrogrCreateNewSetDialog *self)
   priv->description_buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (widget));
   priv->description_tv = widget;
 
-  widget = gtk_check_button_new_with_mnemonic (_("Fill pictures details with title and description"));
+  widget = gtk_check_button_new_with_mnemonic (_("Fill Pictures Details with Title and Description"));
   align = gtk_alignment_new (1, 0, 1, 0);
   gtk_container_add (GTK_CONTAINER (align), widget);
   gtk_table_attach (GTK_TABLE (table), align, 1, 2, 2, 3,
@@ -375,7 +375,7 @@ frogr_create_new_set_dialog_show (GtkWindow *parent, GSList *pictures, GSList *p
 {
   GtkWidget *dialog = NULL;
   dialog = GTK_WIDGET (g_object_new (FROGR_TYPE_CREATE_NEW_SET_DIALOG,
-                                     "title", _("Create new Set"),
+                                     "title", _("Create New Set"),
                                      "modal", TRUE,
                                      "pictures", pictures,
                                      "photosets", photosets,
diff --git a/src/frogr-details-dialog.c b/src/frogr-details-dialog.c
index 97cbae7..fab8da8 100644
--- a/src/frogr-details-dialog.c
+++ b/src/frogr-details-dialog.c
@@ -235,7 +235,7 @@ _create_widgets (FrogrDetailsDialog *self)
   content_type_hbox = frogr_gtk_compat_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
 
   markup = g_markup_printf_escaped ("<span weight=\"bold\">%s</span>",
-                                    _("Content type"));
+                                    _("Content Type"));
   widget = gtk_label_new (markup);
   gtk_label_set_use_markup (GTK_LABEL (widget), TRUE);
   g_free (markup);
@@ -266,7 +266,7 @@ _create_widgets (FrogrDetailsDialog *self)
   safety_level_hbox = frogr_gtk_compat_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
 
   markup = g_markup_printf_escaped ("<span weight=\"bold\">%s</span>",
-                                    _("Safety level"));
+                                    _("Safety Level"));
   widget = gtk_label_new (markup);
   gtk_label_set_use_markup (GTK_LABEL (widget), TRUE);
   g_free (markup);
@@ -296,7 +296,7 @@ _create_widgets (FrogrDetailsDialog *self)
   section_vbox = frogr_gtk_compat_box_new (GTK_ORIENTATION_VERTICAL, 6);
 
   markup = g_markup_printf_escaped ("<span weight=\"bold\">%s</span>",
-                                    _("License type"));
+                                    _("License Type"));
   widget = gtk_label_new (markup);
   gtk_label_set_use_markup (GTK_LABEL (widget), TRUE);
   g_free (markup);
@@ -319,7 +319,7 @@ _create_widgets (FrogrDetailsDialog *self)
   section_vbox = frogr_gtk_compat_box_new (GTK_ORIENTATION_VERTICAL, 6);
 
   markup = g_markup_printf_escaped ("<span weight=\"bold\">%s</span>",
-                                    _("Other properties"));
+                                    _("Other Properties"));
   widget = gtk_label_new (markup);
   gtk_label_set_use_markup (GTK_LABEL (widget), TRUE);
   g_free (markup);
@@ -328,11 +328,11 @@ _create_widgets (FrogrDetailsDialog *self)
   gtk_container_add (GTK_CONTAINER (align), widget);
   gtk_box_pack_start (GTK_BOX (section_vbox), align, FALSE, FALSE, 0);
 
-  widget = gtk_check_button_new_with_mnemonic (_("Set geo_location data if available"));
+  widget = gtk_check_button_new_with_mnemonic (_("Set Geo_location Information"));
   gtk_box_pack_start (GTK_BOX (section_vbox), widget, FALSE, FALSE, 0);
   priv->send_location_cb = widget;
 
-  widget = gtk_check_button_new_with_mnemonic (_("_Show up in Global Search Results"));
+  widget = gtk_check_button_new_with_mnemonic (_("_Show Up in Global Search Results"));
   gtk_box_pack_start (GTK_BOX (section_vbox), widget, FALSE, FALSE, 0);
   priv->show_in_search_cb = widget;
 
diff --git a/src/frogr-settings-dialog.c b/src/frogr-settings-dialog.c
index bff3d76..095ec7a 100644
--- a/src/frogr-settings-dialog.c
+++ b/src/frogr-settings-dialog.c
@@ -309,7 +309,7 @@ _add_general_page (FrogrSettingsDialog *self, GtkNotebook *notebook)
   box1 = frogr_gtk_compat_box_new (GTK_ORIENTATION_VERTICAL, 6);
 
   _add_toggleable_item (self, GTK_BOX (box1), NULL, FALSE,
-                        _("Send Geo_location Data for Pictures"),
+                        _("Set Geo_location Information for Pictures"),
                         &priv->send_geolocation_data_cb);
   _add_toggleable_item (self, GTK_BOX (box1), NULL, FALSE,
                         _("_Show Pictures in Global Search Results"),
@@ -504,12 +504,12 @@ _add_misc_page (FrogrSettingsDialog *self, GtkNotebook *notebook)
 
 #ifdef GTK_API_VERSION_3
   _add_toggleable_item (self, GTK_BOX (box), NULL, FALSE,
-                        _("Use _Dark Theme (if available)"),
+                        _("Use _Dark GTK Theme"),
                         &priv->use_dark_theme_cb);
 #endif
 
   _add_toggleable_item (self, GTK_BOX (box), NULL, FALSE,
-                        _("_Keep File Extensions in Titles when Loading Pictures"),
+                        _("_Keep File Extensions in Titles when Loading"),
                         &priv->keep_file_extensions_cb);
 
   gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, FALSE, 0);
@@ -820,7 +820,7 @@ _on_button_toggled (GtkToggleButton *button, gpointer data)
   if (GTK_WIDGET (button) == priv->use_dark_theme_cb)
     {
       priv->use_dark_theme = active;
-      DEBUG ("Use Dark Theme if Available set to %s", active ? "TRUE" : "FALSE");
+      DEBUG ("Use Dark Theme set to %s", active ? "TRUE" : "FALSE");
     }
 #endif
 



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