diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-08-02 01:48:45 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-02 01:48:45 +0800 |
commit | 5e6b7f53ffd1af356f0c07f3fec91ca2ac94021b (patch) | |
tree | 2d3580cf28c337105b009f6426ca60992f2be098 | |
parent | 30881fb65a7de5b8c254f871a724dffcb19ce3b8 (diff) | |
download | gsoc2013-evolution-5e6b7f53ffd1af356f0c07f3fec91ca2ac94021b.tar.gz gsoc2013-evolution-5e6b7f53ffd1af356f0c07f3fec91ca2ac94021b.tar.zst gsoc2013-evolution-5e6b7f53ffd1af356f0c07f3fec91ca2ac94021b.zip |
** Fixes bug #544860
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.
svn path=/trunk/; revision=35882
-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); |