diff options
author | Gediminas Paulauskas <menesis@src.gnome.org> | 2000-11-01 12:11:29 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2000-11-01 12:11:29 +0800 |
commit | a4985006cdfe326be362622065427c1f4fc81152 (patch) | |
tree | 78f6bfe81cbf470c775699fb8decc0fe6cccc35b /calendar | |
parent | 4e200646069e3701b11cf28f50e7d3a348176994 (diff) | |
download | gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.tar gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.tar.gz gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.tar.bz2 gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.tar.lz gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.tar.xz gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.tar.zst gsoc2013-evolution-a4985006cdfe326be362622065427c1f4fc81152.zip |
calendar: made all gui show localized
camel: updated charset info from newest libunicode
po: updated Lithuanian translation
svn path=/trunk/; revision=6308
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/main.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d791ff1eef..737de50376 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2000-11-01 Gediminas Paulauskas <menesis@delfi.lt> + + * gui/main.c: (main): added call to bindtextdomain and textdomain, so + all calendar gui shows up localized. + 2000-10-31 Federico Mena Quintero <federico@helixcode.com> * gui/event-editor.c (count_by_xxx): Hmmm. SHRT_MAX changed to diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 2faba00781..4ca766f95c 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -59,6 +59,9 @@ init_bonobo (int *argc, char **argv) int main (int argc, char **argv) { + bindtextdomain(PACKAGE, GNOMELOCALEDIR); + textdomain(PACKAGE); + init_bonobo (&argc, argv); glade_gnome_init (); alarm_init (); |