• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

作図ソフト dia の改良版


Commit MetaInfo

Révisionc5d9413922cf45ec763fae36ed9f0c59b5c3fcde (tree)
l'heure2001-06-10 00:55:27
AuteurCyrille Chepelov <cyrille@src....>
CommiterCyrille Chepelov

Message de Log

ask gettext to give us UTF8 strings.

Change Summary

Modification

--- a/ChangeLog
+++ b/ChangeLog
@@ -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+
17 2001-06-08 Cyrille Chepelov <chepelov@calixo.net>
28
39 * plug-ins/xfig/xfig-import.c: corrected a typo (fixes #55910)
--- a/app/app_procs.c
+++ b/app/app_procs.c
@@ -170,6 +170,9 @@ app_init (int argc, char **argv)
170170 #endif
171171
172172 bindtextdomain(PACKAGE, LOCALEDIR);
173+#ifdef UNICODE_WORK_IN_PROGRESS
174+ bind_textdomain_codeset(PACKAGE,"UTF-8");
175+#endif
173176 textdomain(PACKAGE);
174177
175178 if (argv) {