diff options
author | Gediminas Paulauskas <menesis@src.gnome.org> | 2000-11-01 18:44:51 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2000-11-01 18:44:51 +0800 |
commit | fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb (patch) | |
tree | 806b3b471f0e7b2b30c48d9efad8d6b0ee57eb0d /calendar | |
parent | bf684c2bef88772c30f4e282a60b1c11d8073e10 (diff) | |
download | gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.tar gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.tar.gz gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.tar.bz2 gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.tar.lz gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.tar.xz gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.tar.zst gsoc2013-evolution-fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb.zip |
modified or added a bunch of .cvsignore to ignore generated files, which
* modified or added a bunch of .cvsignore to ignore
generated files, which are not in repository.
* call *textdomain() in various files only when
ENABLE_NLS is defined
svn path=/trunk/; revision=6310
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/doc/.cvsignore | 2 | ||||
-rw-r--r-- | calendar/gui/.cvsignore | 1 | ||||
-rw-r--r-- | calendar/gui/main.c | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/calendar/doc/.cvsignore b/calendar/doc/.cvsignore new file mode 100644 index 0000000000..282522db03 --- /dev/null +++ b/calendar/doc/.cvsignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/calendar/gui/.cvsignore b/calendar/gui/.cvsignore index e5b953b4f9..1396e98066 100644 --- a/calendar/gui/.cvsignore +++ b/calendar/gui/.cvsignore @@ -11,3 +11,4 @@ getdate.c Evolution-Composer-common.c Evolution-Composer-skels.c Evolution-Composer-stubs.c +Evolution-Composer.h
\ No newline at end of file diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 4ca766f95c..b11a28f33f 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -59,8 +59,10 @@ init_bonobo (int *argc, char **argv) int main (int argc, char **argv) { - bindtextdomain(PACKAGE, GNOMELOCALEDIR); + #ifdef ENABLE_NLS + bindtextdomain(PACKAGE, EVOLUTION_LOCALEDIR); textdomain(PACKAGE); + #endif init_bonobo (&argc, argv); glade_gnome_init (); |