s/PACKAGE/GETTEXT_PACKAGE/g

2002-02-27  Kjartan Maraas  <kmaraas@gnome.org>

	* capplet-util.c: s/PACKAGE/GETTEXT_PACKAGE/g
This commit is contained in:
Kjartan Maraas 2002-02-27 22:13:26 +00:00 committed by Kjartan Maraas
parent 1074a1f27e
commit 06e9c965a8
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2002-02-27 Kjartan Maraas <kmaraas@gnome.org>
* capplet-util.c: s/PACKAGE/GETTEXT_PACKAGE/g
2002-02-12 Lauris Kaplinski <lauris@ximian.com>
* gconf-property-editor.c (peditor_font_value_changed): Kill warning

View file

@ -244,9 +244,9 @@ capplet_init (int argc,
{ NULL, '\0', 0, NULL, 0, NULL, NULL }
};
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);
gnome_program_init (argv[0], VERSION, LIBGNOMEUI_MODULE, argc, argv,
GNOME_PARAM_POPT_TABLE, cap_options,