aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-01-25 02:18:31 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-01-25 02:18:31 +0800
commit48571eab9cc611ae6d2ea285976b5cea5b502d03 (patch)
tree3b9211a8594e274d9805998b72c5e7085ebed924
parent1460590b4a586187109d28840af217d1c86248ae (diff)
downloadgsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.tar
gsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.tar.gz
gsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.tar.bz2
gsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.tar.lz
gsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.tar.xz
gsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.tar.zst
gsoc2013-evolution-48571eab9cc611ae6d2ea285976b5cea5b502d03.zip
Bug 607952 - "Hours" used as both singular and plural forms
-rw-r--r--calendar/gui/alarm-notify/alarm-notify-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c
index 90d56d35d7..59cf6c729f 100644
--- a/calendar/gui/alarm-notify/alarm-notify-dialog.c
+++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c
@@ -114,7 +114,7 @@ an_update_hrs_label (GtkSpinButton *sb, gpointer data)
an = (AlarmNotify *) data;
snooze_timeout_hrs = gtk_spin_button_get_value_as_int (sb);
- new_label = g_strdup (ngettext ("hours", "hours", snooze_timeout_hrs));
+ new_label = g_strdup (ngettext ("hour", "hours", snooze_timeout_hrs));
gtk_label_set_text (GTK_LABEL (an->hrs_label), new_label);
g_free (new_label);
}