diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2002-02-22 01:12:42 +0000 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2002-02-22 01:12:42 +0000 |
commit | 4d3325dbcc6e064dfd2f4ade4540afbdf57541c7 (patch) | |
tree | 7ba0474435e4d2533e5cf4c28e1e3baa9e9ea591 | |
parent | de3285877f23ad1425b822ce5b2d1ca8dfc1768d (diff) | |
download | nautilus-4d3325dbcc6e064dfd2f4ade4540afbdf57541c7.tar.gz |
Use GETTEXT_PACKAGE. Same here. Same here. Same here. Same. Same
2002-02-22 Kjartan Maraas <kmaraas@gnome.org>
* components/hardware/main.c: Use GETTEXT_PACKAGE.
* components/history/nautilus-history-view.c: Same here.
* components/music/main.c: Same here.
* components/news/nautilus-news.c: Same here.
* components/notes/nautilus-notes.c: Same.
* components/text/main.c: Same
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | components/hardware/main.c | 6 | ||||
-rw-r--r-- | components/history/nautilus-history-view.c | 2 | ||||
-rw-r--r-- | components/music/main.c | 2 | ||||
-rw-r--r-- | components/news/nautilus-news.c | 2 | ||||
-rw-r--r-- | components/notes/nautilus-notes.c | 2 | ||||
-rw-r--r-- | components/text/main.c | 2 |
7 files changed, 17 insertions, 8 deletions
@@ -1,3 +1,12 @@ +2002-02-22 Kjartan Maraas <kmaraas@gnome.org> + + * components/hardware/main.c: Use GETTEXT_PACKAGE. + * components/history/nautilus-history-view.c: Same here. + * components/music/main.c: Same here. + * components/news/nautilus-news.c: Same here. + * components/notes/nautilus-notes.c: Same. + * components/text/main.c: Same + 2002-02-21 Jody Goldberg <jody@gnome.org> * components/adapter/nautilus-adapter-control-factory-embed-strategy.c diff --git a/components/hardware/main.c b/components/hardware/main.c index 1dc8b94ad..d379fef65 100644 --- a/components/hardware/main.c +++ b/components/hardware/main.c @@ -73,9 +73,9 @@ int main(int argc, char *argv[]) /* Initialize gettext support */ #ifdef ENABLE_NLS /* sadly we need this ifdef because otherwise the following get empty statement warnings */ - bindtextdomain (PACKAGE, GNOMELOCALEDIR); - bind_textdomain_codeset (PACKAGE, "UTF-8"); - textdomain (PACKAGE); + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + textdomain (GETTEXT_PACKAGE); #endif if (g_getenv ("NAUTILUS_DEBUG") != NULL) { diff --git a/components/history/nautilus-history-view.c b/components/history/nautilus-history-view.c index a84541d26..44d21f52e 100644 --- a/components/history/nautilus-history-view.c +++ b/components/history/nautilus-history-view.c @@ -304,7 +304,7 @@ main (int argc, char *argv[]) return nautilus_view_standard_main ("nautilus_history-view", VERSION, - PACKAGE, + GETTEXT_PACKAGE, GNOMELOCALEDIR, argc, argv, diff --git a/components/music/main.c b/components/music/main.c index 74a22eab1..8a05bc45b 100644 --- a/components/music/main.c +++ b/components/music/main.c @@ -44,7 +44,7 @@ main (int argc, char *argv[]) return nautilus_view_standard_main ("nautilus-music-view", VERSION, - PACKAGE, + GETTEXT_PACKAGE, GNOMELOCALEDIR, argc, argv, diff --git a/components/news/nautilus-news.c b/components/news/nautilus-news.c index 591036e01..2b3c3e83e 100644 --- a/components/news/nautilus-news.c +++ b/components/news/nautilus-news.c @@ -2601,7 +2601,7 @@ main(int argc, char *argv[]) return nautilus_view_standard_main ("nautilus-news", VERSION, - PACKAGE, + GETTEXT_PACKAGE, GNOMELOCALEDIR, argc, argv, diff --git a/components/notes/nautilus-notes.c b/components/notes/nautilus-notes.c index 8d0297266..beda69999 100644 --- a/components/notes/nautilus-notes.c +++ b/components/notes/nautilus-notes.c @@ -441,7 +441,7 @@ main(int argc, char *argv[]) return nautilus_view_standard_main ("nautilus-notes", VERSION, - PACKAGE, + GETTEXT_PACKAGE, GNOMELOCALEDIR, argc, argv, diff --git a/components/text/main.c b/components/text/main.c index 308b9cbd4..47b23fe0c 100644 --- a/components/text/main.c +++ b/components/text/main.c @@ -44,7 +44,7 @@ main (int argc, char *argv[]) return nautilus_view_standard_main ("nautilus-text-view", VERSION, - PACKAGE, + GETTEXT_PACKAGE, GNOMELOCALEDIR, argc, argv, |