aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/calendar/ea-day-view.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2005-01-31 22:42:52 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2005-01-31 22:42:52 +0800
commit650fe13ee000f98774f321e0b0ca0fd86f24ccbf (patch)
treec6170a890229b4c756cd9d1bce3e3bd7e5f23e92 /a11y/calendar/ea-day-view.c
parent8c19ca8cca35ede70bb147115e5645dd058624f5 (diff)
downloadgsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.tar
gsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.tar.gz
gsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.tar.bz2
gsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.tar.lz
gsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.tar.xz
gsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.tar.zst
gsoc2013-evolution-650fe13ee000f98774f321e0b0ca0fd86f24ccbf.zip
Fixes #71929
2005-01-31 Rodrigo Moya <rodrigo@novell.com> Fixes #71929 * calendar/ea-day-view.c (ea_day_view_get_name): * calendar/ea-week-view.c (ea_week_view_get_name): don't use spaces before colons. svn path=/trunk/; revision=28631
Diffstat (limited to 'a11y/calendar/ea-day-view.c')
-rw-r--r--a11y/calendar/ea-day-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/a11y/calendar/ea-day-view.c b/a11y/calendar/ea-day-view.c
index ff72613b35..7374783606 100644
--- a/a11y/calendar/ea-day-view.c
+++ b/a11y/calendar/ea-day-view.c
@@ -147,11 +147,11 @@ ea_day_view_get_name (AtkObject *accessible)
g_snprintf (buffer, sizeof (buffer), ngettext ( _(", %d event"), _(", %d events"), n_events), n_events);
view_type = gnome_calendar_get_view (gcal);
if (view_type == GNOME_CAL_WORK_WEEK_VIEW)
- accessible->name = g_strconcat (_("work week view :"),
+ accessible->name = g_strconcat (_("work week view:"),
label_text, buffer,
NULL);
else
- accessible->name = g_strconcat (_("day view :"),
+ accessible->name = g_strconcat (_("day view:"),
label_text, buffer,
NULL);
return accessible->name;