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
This commit is contained in:
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
||||
2000-11-01 Gediminas Paulauskas <menesis@delfi.lt>
|
||||
|
||||
* 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 <menesis@delfi.lt>
|
||||
|
||||
* configure.in: added lt to ALL_LINGUAS.
|
||||
|
||||
3
addressbook/ename/.cvsignore
Normal file
3
addressbook/ename/.cvsignore
Normal file
@ -0,0 +1,3 @@
|
||||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
||||
@ -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);
|
||||
|
||||
|
||||
3
addressbook/gui/minicard/.cvsignore
Normal file
3
addressbook/gui/minicard/.cvsignore
Normal file
@ -0,0 +1,3 @@
|
||||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
||||
2
calendar/doc/.cvsignore
Normal file
2
calendar/doc/.cvsignore
Normal file
@ -0,0 +1,2 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
@ -11,3 +11,4 @@ getdate.c
|
||||
Evolution-Composer-common.c
|
||||
Evolution-Composer-skels.c
|
||||
Evolution-Composer-stubs.c
|
||||
Evolution-Composer.h
|
||||
@ -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 ();
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
core
|
||||
Makefile.in
|
||||
Makefile
|
||||
Makefile
|
||||
@ -3,4 +3,8 @@ Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
.libs
|
||||
evolution-executive-summary
|
||||
evolution-executive-summary
|
||||
Composer-common.c
|
||||
Composer.h
|
||||
Composer-stubs.c
|
||||
Composer-skels.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);
|
||||
|
||||
@ -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 );
|
||||
|
||||
|
||||
@ -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 ();
|
||||
|
||||
@ -9,4 +9,4 @@ gnome-objc.pot
|
||||
gnome.pot
|
||||
stamp-cat-id
|
||||
evolution.pot
|
||||
|
||||
messages
|
||||
|
||||
@ -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);
|
||||
|
||||
3
widgets/e-paned/.cvsignore
Normal file
3
widgets/e-paned/.cvsignore
Normal file
@ -0,0 +1,3 @@
|
||||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
||||
3
widgets/e-table/.cvsignore
Normal file
3
widgets/e-table/.cvsignore
Normal file
@ -0,0 +1,3 @@
|
||||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
||||
3
widgets/e-text/.cvsignore
Normal file
3
widgets/e-text/.cvsignore
Normal file
@ -0,0 +1,3 @@
|
||||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
||||
Reference in New Issue
Block a user