libs-base/Resources/Languages
Adam Fedor 377fd7db34 Libffi support
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13506 72102866-910b-0410-8b05-ffd578937521
2002-04-18 16:02:12 +00:00
..
Dutch Change to Euro 2002-01-07 15:34:43 +00:00
Dutch.old 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
French More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
French.old Change to Euro 2002-01-07 15:34:43 +00:00
German More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
German.old Change to Euro 2002-01-07 15:34:43 +00:00
Italian More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
Italian.old Change to Euro 2002-01-07 15:34:43 +00:00
Locale.aliases traditional chinese extensions 2002-03-08 11:50:42 +00:00
README More character encoding fixes ... correct language files. 2002-04-07 18:56:08 +00:00
Russian Oops ... missed files in commit 2002-04-08 14:37:53 +00:00
Slovak Libffi support 2002-04-18 16:02:12 +00:00
UkraineRussian Oops ... missed files in commit 2002-04-08 14:37:53 +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