summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2002-02-22 01:12:42 +0000
committerKjartan Maraas <kmaraas@src.gnome.org>2002-02-22 01:12:42 +0000
commit4d3325dbcc6e064dfd2f4ade4540afbdf57541c7 (patch)
tree7ba0474435e4d2533e5cf4c28e1e3baa9e9ea591
parentde3285877f23ad1425b822ce5b2d1ca8dfc1768d (diff)
downloadnautilus-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--ChangeLog9
-rw-r--r--components/hardware/main.c6
-rw-r--r--components/history/nautilus-history-view.c2
-rw-r--r--components/music/main.c2
-rw-r--r--components/news/nautilus-news.c2
-rw-r--r--components/notes/nautilus-notes.c2
-rw-r--r--components/text/main.c2
7 files changed, 17 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 45d9f7c79..b28a42342 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,