From fa3cf53363f2fe9da9380e91d5d6b0f81cede2bb Mon Sep 17 00:00:00 2001 From: Gediminas Paulauskas Date: Wed, 1 Nov 2000 10:44:51 +0000 Subject: 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 --- ChangeLog | 15 +++++++++++++++ addressbook/ename/.cvsignore | 3 +++ addressbook/gui/component/addressbook-factory.c | 2 ++ addressbook/gui/minicard/.cvsignore | 3 +++ calendar/doc/.cvsignore | 2 ++ calendar/gui/.cvsignore | 1 + calendar/gui/main.c | 4 +++- composer/.cvsignore | 4 ++++ executive-summary/.cvsignore | 2 +- executive-summary/component/.cvsignore | 6 +++++- executive-summary/component/main.c | 2 ++ mail/main.c | 2 ++ notes/main.c | 2 ++ po/.cvsignore | 2 +- shell/main.c | 2 ++ widgets/e-paned/.cvsignore | 3 +++ widgets/e-table/.cvsignore | 3 +++ widgets/e-text/.cvsignore | 3 +++ 18 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 addressbook/ename/.cvsignore create mode 100644 addressbook/gui/minicard/.cvsignore create mode 100644 calendar/doc/.cvsignore create mode 100644 widgets/e-paned/.cvsignore create mode 100644 widgets/e-table/.cvsignore create mode 100644 widgets/e-text/.cvsignore diff --git a/ChangeLog b/ChangeLog index b8a9b66404..543721e499 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2000-11-01 Gediminas Paulauskas + + * addressbook/ename/.cvsignore, addressbook/gui/minicard/.cvsignore, + calendar/doc/.cvsignore, widgets/e-paned/.cvsignore, + widgets/e-table/.cvsignore, widgets/e-text/.cvsignore: added these + files. + * calendar/gui/.cvsignore, composer/.cvsignore, + executive-summary/.cvsignore, executive-summary/component/.cvsignore, + po/.cvsignore: added some files to ignore. + + * addressbook/gui/component/addressbook-factory.c, mail/main.c, + shell/main.c, calendar/gui/main.c, notes/main.c, + executive-summary/component/main.c: call *textdomain() only if + ENABLE_NLS is defined. + 2000-11-01 Gediminas Paulauskas * configure.in: added lt to ALL_LINGUAS. diff --git a/addressbook/ename/.cvsignore b/addressbook/ename/.cvsignore new file mode 100644 index 0000000000..e995588475 --- /dev/null +++ b/addressbook/ename/.cvsignore @@ -0,0 +1,3 @@ +.deps +Makefile +Makefile.in diff --git a/addressbook/gui/component/addressbook-factory.c b/addressbook/gui/component/addressbook-factory.c index ebfd0d9cfd..623e0385de 100644 --- a/addressbook/gui/component/addressbook-factory.c +++ b/addressbook/gui/component/addressbook-factory.c @@ -43,8 +43,10 @@ init_bonobo (int argc, char **argv) int main (int argc, char **argv) { + #ifdef ENABLE_NLS bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); textdomain (PACKAGE); + #endif init_corba (&argc, argv); diff --git a/addressbook/gui/minicard/.cvsignore b/addressbook/gui/minicard/.cvsignore new file mode 100644 index 0000000000..e995588475 --- /dev/null +++ b/addressbook/gui/minicard/.cvsignore @@ -0,0 +1,3 @@ +.deps +Makefile +Makefile.in 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 (); diff --git a/composer/.cvsignore b/composer/.cvsignore index d418fe2d1c..fe01043d2c 100644 --- a/composer/.cvsignore +++ b/composer/.cvsignore @@ -13,3 +13,7 @@ HTMLEditor-stubs.c HTMLEditor-skels.c HTMLEditor.h HTMLEditor-common.c +Evolution-Addressbook-SelectNames-common.c +Evolution-Addressbook-SelectNames-skels.c +Evolution-Addressbook-SelectNames-stubs.c +Evolution-Addressbook-SelectNames.h diff --git a/executive-summary/.cvsignore b/executive-summary/.cvsignore index 1f22deae2b..aed809a312 100644 --- a/executive-summary/.cvsignore +++ b/executive-summary/.cvsignore @@ -1,3 +1,3 @@ core Makefile.in -Makefile +Makefile \ No newline at end of file diff --git a/executive-summary/component/.cvsignore b/executive-summary/component/.cvsignore index 40163816ad..75f1a012f2 100644 --- a/executive-summary/component/.cvsignore +++ b/executive-summary/component/.cvsignore @@ -3,4 +3,8 @@ Makefile.in Makefile .deps .libs -evolution-executive-summary \ No newline at end of file +evolution-executive-summary +Composer-common.c +Composer.h +Composer-stubs.c +Composer-skels.c \ No newline at end of file diff --git a/executive-summary/component/main.c b/executive-summary/component/main.c index 70fd5e4ae5..9c331ce813 100644 --- a/executive-summary/component/main.c +++ b/executive-summary/component/main.c @@ -47,8 +47,10 @@ main (int argc, { CORBA_ORB orb; +#ifdef ENABLE_NLS bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); textdomain (PACKAGE); +#endif gnome_init_with_popt_table ("evolution-executive-summary", VERSION, argc, argv, oaf_popt_options, 0, NULL); diff --git a/mail/main.c b/mail/main.c index d6ac8ee2ae..d81b456a98 100644 --- a/mail/main.c +++ b/mail/main.c @@ -50,8 +50,10 @@ main (int argc, char *argv []) mcheck(blowup); #endif #endif + #ifdef ENABLE_NLS bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); textdomain (PACKAGE); + #endif g_thread_init( NULL ); diff --git a/notes/main.c b/notes/main.c index f3198c0d63..4b483138da 100644 --- a/notes/main.c +++ b/notes/main.c @@ -35,8 +35,10 @@ init_bonobo (void) gint main (gint argc, gchar **argv) { + #ifdef ENABLE_NLS bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); textdomain (PACKAGE); + #endif init_corba (argc, argv); init_bonobo (); diff --git a/po/.cvsignore b/po/.cvsignore index 3d5b22df60..58842fd23a 100644 --- a/po/.cvsignore +++ b/po/.cvsignore @@ -9,4 +9,4 @@ gnome-objc.pot gnome.pot stamp-cat-id evolution.pot - +messages diff --git a/shell/main.c b/shell/main.c index 33ba37a868..609a20502e 100644 --- a/shell/main.c +++ b/shell/main.c @@ -143,8 +143,10 @@ main (int argc, char **argv) { char *evolution_directory; + #ifdef ENABLE_NLS bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); textdomain (PACKAGE); + #endif gnome_init_with_popt_table ("Evolution", VERSION, argc, argv, oaf_popt_options, 0, NULL); oaf_init (argc, argv); diff --git a/widgets/e-paned/.cvsignore b/widgets/e-paned/.cvsignore new file mode 100644 index 0000000000..e995588475 --- /dev/null +++ b/widgets/e-paned/.cvsignore @@ -0,0 +1,3 @@ +.deps +Makefile +Makefile.in diff --git a/widgets/e-table/.cvsignore b/widgets/e-table/.cvsignore new file mode 100644 index 0000000000..e995588475 --- /dev/null +++ b/widgets/e-table/.cvsignore @@ -0,0 +1,3 @@ +.deps +Makefile +Makefile.in diff --git a/widgets/e-text/.cvsignore b/widgets/e-text/.cvsignore new file mode 100644 index 0000000000..e995588475 --- /dev/null +++ b/widgets/e-text/.cvsignore @@ -0,0 +1,3 @@ +.deps +Makefile +Makefile.in -- cgit v1.2.3