作図ソフト dia の改良版
Révision | c5d9413922cf45ec763fae36ed9f0c59b5c3fcde (tree) |
---|---|
l'heure | 2001-06-10 00:55:27 |
Auteur | Cyrille Chepelov <cyrille@src....> |
Commiter | Cyrille Chepelov |
ask gettext to give us UTF8 strings.
@@ -1,3 +1,9 @@ | ||
1 | +2001-06-09 Cyrille Chepelov <chepelov@calixo.net> | |
2 | + | |
3 | + * app/app_procs.c (app_init): added a call to | |
4 | + bind_textdomain_codeset() so that gettext gives us UTF-8 strings | |
5 | + (UNICODE_WORK_IN_PROGRESS). | |
6 | + | |
1 | 7 | 2001-06-08 Cyrille Chepelov <chepelov@calixo.net> |
2 | 8 | |
3 | 9 | * plug-ins/xfig/xfig-import.c: corrected a typo (fixes #55910) |
@@ -170,6 +170,9 @@ app_init (int argc, char **argv) | ||
170 | 170 | #endif |
171 | 171 | |
172 | 172 | bindtextdomain(PACKAGE, LOCALEDIR); |
173 | +#ifdef UNICODE_WORK_IN_PROGRESS | |
174 | + bind_textdomain_codeset(PACKAGE,"UTF-8"); | |
175 | +#endif | |
173 | 176 | textdomain(PACKAGE); |
174 | 177 | |
175 | 178 | if (argv) { |