libs-base/Resources/Languages
Gregory John Casamento b464e5a838 Merged from baseline.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/NibCompatibility@22884 72102866-910b-0410-8b05-ffd578937521
2006-05-10 03:18:08 +00:00
..
Dutch Change to Euro 2002-01-07 15:34:43 +00:00
English FIx mistake in date string, extra locale 2000-10-27 22:15:30 +00:00
Esperanto Merged from baseline. 2006-05-10 03:18:08 +00:00
French Merged changes to NibCompatibility. 2006-02-13 03:36:19 +00:00
German More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
Hungarian Add a missing ". 2004-05-07 21:53:51 +00:00
Italian More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
Korean Merged from baseline. 2006-05-10 03:18:08 +00:00
Locale.aliases * Resources/GNUmakefile 2005-05-10 10:28:42 +00:00
Locale.encodings Add thai encoding 2002-10-22 14:29:34 +00:00
README More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
Russian Merged from baseline. 2006-05-10 03:18:08 +00:00
Slovak Libffi support 2002-04-18 16:02:12 +00:00
Spanish * Resources/Languages/Spanish 2005-05-10 10:39:51 +00:00
TraditionalChinese * Tools/cvtenc.m (main): Write using local/set encoding when 2003-09-22 03:00:21 +00:00
Ukrainian Merged from baseline. 2006-05-10 03:18:08 +00:00

Language files which contain non-ascii characters should either be unicode
files or should encode those characters as \u escape sequences so that they
are usable on systems where the default C-String encoding is not the same
as the one on which the language files were created!

Since it is generally not easy to edit unicode directly, or enter the
correct unicode escape sequences, it is recommended that you use the
cvtenc tool to perform conversions of the files before and after editing
in the default encoding used by your system.

For example, to edit the French language file so that it contains an ascii
propertly list with \u escape sequeneces, you wcould do -

cvtenc -EscacpeIn yes French > tmpfile
vi tmpfile
cvtenc -EscapeOut yes tmpfile > French
rm tmpfile