diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 06:04:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 06:04:21 +0800 |
commit | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch) | |
tree | 2e1e96f33404781354c422a7e9beaf458ebeb655 /a11y/calendar/ea-day-view.c | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip |
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Remove trailing whitespace from source code.
svn path=/trunk/; revision=34537
Diffstat (limited to 'a11y/calendar/ea-day-view.c')
-rw-r--r-- | a11y/calendar/ea-day-view.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/a11y/calendar/ea-day-view.c b/a11y/calendar/ea-day-view.c index 8a397c8fe2..66537c0f3f 100644 --- a/a11y/calendar/ea-day-view.c +++ b/a11y/calendar/ea-day-view.c @@ -100,7 +100,7 @@ ea_day_view_class_init (EaDayViewClass *klass) class->ref_child = ea_day_view_ref_child; } -AtkObject* +AtkObject* ea_day_view_new (GtkWidget *widget) { GObject *object; @@ -146,24 +146,24 @@ ea_day_view_get_name (AtkObject *accessible) /* the child main item is always there */ --n_events; if (n_events >= 1) - /* To translators: Here, "It" is either like "Work Week View: July + /* To translators: Here, "It" is either like "Work Week View: July 10th - July 14th, 2006." or "Day View: Thursday July 13th, 2006." */ event_str = g_strdup_printf (ngettext ("It has %d event.", "It has %d events.", n_events), n_events); else - /* To translators: Here, "It" is either like "Work Week View: July + /* To translators: Here, "It" is either like "Work Week View: July 10th - July 14th, 2006." or "Day View: Thursday July 13th, 2006." */ event_str = g_strdup (_("It has no events.")); view_type = gnome_calendar_get_view (gcal); if (view_type == GNOME_CAL_WORK_WEEK_VIEW) - /* To translators: First %s is the week, for example "July 10th - - July 14th, 2006". Second %s is the number of events in this work + /* To translators: First %s is the week, for example "July 10th - + July 14th, 2006". Second %s is the number of events in this work week, for example "It has %d event/events." or "It has no events." */ name_str = g_strdup_printf (_("Work Week View: %s. %s"), label_text, event_str); else - /* To translators: First %s is the day, for example "Thursday July - 13th, 2006". Second %s is the number of events on this day, for + /* To translators: First %s is the day, for example "Thursday July + 13th, 2006". Second %s is the number of events on this day, for example "It has %d event/events." or "It has no events." */ name_str = g_strdup_printf (_("Day View: %s. %s"), label_text, event_str); |