git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23145 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2006-07-07 11:16:49 +00:00
parent d446684f06
commit 0e65df2979
3 changed files with 38 additions and 25 deletions

View file

@ -1,3 +1,9 @@
2006-07-07 Richard Frith-Macdonald <rfm@gnu.org>
* Resources/Languages/README: describe how to deal with files where
the BOM is missing.
* Resources/Languages/Korean: update supplied by YunSong Hwang
2006-07-06 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gdomap.c: remove unnecessary include of config.h

View file

@ -1,37 +1,37 @@
/* English */
/* Korean */
{
NSLanguageName = "한국어";
NSLanguageName = "\Ud55c\Uad6d\Uc5b4";
NSLanguageCode = KOR;
NSFormalName = "한국어";
NSFormalName = "\Ud55c\Uad6d\Uc5b4";
NSCurrencySymbol = "";
NSPositiveCurrencyFormatString = "9,999.00";
NSNegativeCurrencyFormatString = "-9,999.00";
NSInternationalCurrencyString = "";
NSCurrencySymbol = "\Uffe6";
NSPositiveCurrencyFormatString = "\Uffe69,999.00";
NSNegativeCurrencyFormatString = "\Uffe6-9,999.00";
NSInternationalCurrencyString = "\Uc6d0";
NSDecimalDigits = ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9");
NSDecimalSeparator = ".";
NSThousandsSeparator = ",";
NSAMPMDesignation = (오전, 오후);
NSAMPMDesignation = (\Uc624\Uc804, \Uc624\Ud6c4);
NSDateFormatString = " %Y, %B %d, %A";
NSDateTimeOrdering = DMYH;
NSEarlierTimeDesignations = (이전, 마지막, 지나간, 이전);
NSHourNameDesignations = ((0, 한 밤중), (12, 한 낮, 점심), (10, 아침), (14, 오후, (19, 저녁));
NSLaterTimeDesignations = (다음);
NSMonthNameArray = (1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월);
NSNextDayDesignations = (내일);
NSNextNextDayDesignations = (다음 날);
NSPriorDayDesignations = (어제);
NSEarlierTimeDesignations = (\Uc774\Uc804, \Ub9c8\Uc9c0\Ub9c9, \Uc9c0\Ub098\Uac04, \Uc774\Uc804);
NSHourNameDesignations = ((0, \Ud55c \Ubc24\Uc911), (12, \Ud55c \Ub0ae, \Uc810\Uc2ec), (10, \Uc544\Uce68), (14, \Uc624\Ud6c4, (19, \Uc800\Ub141));
NSLaterTimeDesignations = (\Ub2e4\Uc74c);
NSMonthNameArray = (1\Uc6d4, 2\Uc6d4, 3\Uc6d4, 4\Uc6d4, 5\Uc6d4, 6\Uc6d4, 7\Uc6d4, 8\Uc6d4, 9\Uc6d4, 10\Uc6d4, 11\Uc6d4, 12\Uc6d4);
NSNextDayDesignations = (\Ub0b4\Uc77c);
NSNextNextDayDesignations = (\Ub2e4\Uc74c \Ub0a0);
NSPriorDayDesignations = (\Uc5b4\Uc81c);
NSShortDateFormatString = "%Y/%m/%d/";
NSShortMonthNameArray = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);
NSShortTimeDateFormatString = "%d %b, %Y %H:%M";
NSShortWeekDayNameArray = (일, 월, 화, 수, 목, 금, 토);
NSThisDayDesignations = (오늘);
NSShortWeekDayNameArray = (\Uc77c, \Uc6d4, \Ud654, \Uc218, \Ubaa9, \Uae08, \Ud1a0);
NSThisDayDesignations = (\Uc624\Ub298);
NSTimeDateFormatString = "%a %b %d %H:%M:%S %z %Y";
NSTimeFormatString = "%H:%M:%S";
NSWeekDayNameArray = (일요일, 월요일, 화요일, 수요일, 목요일, 금요일, 토요일);
NSYearMonthWeekDesignations = (년, 월, 일);
NSWeekDayNameArray = (\Uc77c\Uc694\Uc77c, \Uc6d4\Uc694\Uc77c, \Ud654\Uc694\Uc77c, \Uc218\Uc694\Uc77c, \Ubaa9\Uc694\Uc77c, \Uae08\Uc694\Uc77c, \Ud1a0\Uc694\Uc77c);
NSYearMonthWeekDesignations = (\Ub144, \Uc6d4, \Uc77c);
}

View file

@ -1,8 +1,9 @@
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!
Language files which contain non-ascii characters should either be properly
marked unicode files (UTF-8 with a leading Byte Order Mark or UTF-16 with a
leading Byte Order Mark) 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
@ -10,10 +11,16 @@ 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 -
propertly list with \u escape sequeneces, you could do -
cvtenc -EscacpeIn yes French > tmpfile
cvtenc -EscapeIn yes French > tmpfile
vi tmpfile
cvtenc -EscapeOut yes tmpfile > French
rm tmpfile
A common case is where you have a file in UTF-8, but the Byte Order Mark is
missing, so you need to fix it up ...
cvtenc -Encoding 'UNICODE UTF-8' FileWithMissingBOM >tmpFile
cvtenc -EscapeOut yes tmpFile > French