diff options
-rw-r--r-- | plugins/google-account-setup/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/google-account-setup/google-contacts-source.c | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/plugins/google-account-setup/ChangeLog b/plugins/google-account-setup/ChangeLog index 66c51b677a..403bdd0333 100644 --- a/plugins/google-account-setup/ChangeLog +++ b/plugins/google-account-setup/ChangeLog @@ -1,3 +1,10 @@ +2008-08-01 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #544860 + + * google-contacts-source.c (plugin_google_contacts): + Add translator comments for split "update every" sentence. + 2008-07-31 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #545568 diff --git a/plugins/google-account-setup/google-contacts-source.c b/plugins/google-account-setup/google-contacts-source.c index 64d3363ea9..d0c8e71e63 100644 --- a/plugins/google-account-setup/google-contacts-source.c +++ b/plugins/google-account-setup/google-contacts-source.c @@ -227,6 +227,9 @@ plugin_google_contacts (EPlugin *epl, } else { refresh_interval = -1; } + + /* Translators: This is the first half of the sentence "Update + * every NNN minute(s)", where NNN is a spin button widget. */ update_cb = gtk_check_button_new_with_label (_("Update every")); gtk_box_pack_start (GTK_BOX (hbox), update_cb, FALSE, FALSE, 0); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (update_cb), @@ -239,6 +242,8 @@ plugin_google_contacts (EPlugin *epl, refresh_interval > 0 ? refresh_interval / 60 : 30); gtk_box_pack_start (GTK_BOX (hbox), interval_sb, FALSE, FALSE, 0); + /* Translators: This is the second half of the sentence "Update + * every NNN minute(s)", where NNN is a spin button widget. */ label = gtk_label_new (_("minute(s)")); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); |