diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-13 11:07:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-13 11:07:29 +0800 |
commit | 31cc887a7fb4d2fa813b3bbe0d6881681599e6d9 (patch) | |
tree | 1409c857d25de3f60dd6fda9b77ed49e2f0d515d | |
parent | a72eddc040229f070e26750cda28c89fa3af18da (diff) | |
download | gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.tar gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.tar.gz gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.tar.bz2 gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.tar.lz gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.tar.xz gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.tar.zst gsoc2013-evolution-31cc887a7fb4d2fa813b3bbe0d6881681599e6d9.zip |
Fixes #65820
2005-01-12 JP Rosevear <jpr@novell.com>
Fixes #65820
* gui/weekday-picker.c (get_day_text): add translator comment
svn path=/trunk/; revision=28385
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/weekday-picker.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 26f28a9a96..818895517c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2005-01-12 JP Rosevear <jpr@novell.com> + + Fixes #65820 + + * gui/weekday-picker.c (get_day_text): add translator comment + 2005-01-08 Not Zed <NotZed@Ximian.com> * gui/e-day-view.c (e_day_view_finish_resize): set diff --git a/calendar/gui/weekday-picker.c b/calendar/gui/weekday-picker.c index dc795c545d..7a7e8ad85f 100644 --- a/calendar/gui/weekday-picker.c +++ b/calendar/gui/weekday-picker.c @@ -315,6 +315,7 @@ colorize_items (WeekdayPicker *wp) static char * get_day_text (int day_index) { + /* The first letter of each day of the week starting with Sunday */ const char *str = _("SMTWTFS"); char *day; int char_size = 0; |