From ab670aebec65304dbf09fcc9419bd1eee948eec7 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Wed, 21 Apr 2004 15:28:23 +0000 Subject: [PATCH] Add an Israel Hebrew locale: he_IL.UTF-8. PR: 65826 Submitted by: Hye-Shik Chang --- etc/mtree/BSD.local.dist | 2 + etc/mtree/BSD.usr.dist | 4 ++ share/colldef/Makefile | 7 ++- share/mklocale/Makefile | 7 ++- share/monetdef/Makefile | 1 + share/monetdef/he_IL.UTF-8.src | 36 ++++++++++++ share/msgdef/Makefile | 1 + share/msgdef/he_IL.UTF-8.src | 10 ++++ share/numericdef/Makefile | 2 + share/timedef/Makefile | 1 + share/timedef/he_IL.UTF-8.src | 101 +++++++++++++++++++++++++++++++++ 11 files changed, 166 insertions(+), 6 deletions(-) create mode 100644 share/monetdef/he_IL.UTF-8.src create mode 100644 share/msgdef/he_IL.UTF-8.src create mode 100644 share/timedef/he_IL.UTF-8.src diff --git a/etc/mtree/BSD.local.dist b/etc/mtree/BSD.local.dist index a3386f577764..15982d6b0d1e 100644 --- a/etc/mtree/BSD.local.dist +++ b/etc/mtree/BSD.local.dist @@ -411,6 +411,8 @@ .. fr_FR.UTF-8 .. + he_IL.UTF-8 + .. hi_IN.ISCII-DEV .. hr_HR.ISO8859-2 diff --git a/etc/mtree/BSD.usr.dist b/etc/mtree/BSD.usr.dist index 0e54ed7b6d1f..d38ecfe8e6a6 100644 --- a/etc/mtree/BSD.usr.dist +++ b/etc/mtree/BSD.usr.dist @@ -471,6 +471,8 @@ .. fr_FR.UTF-8 .. + he_IL.UTF-8 + .. hi_IN.ISCII-DEV .. hr_HR.ISO8859-2 @@ -933,6 +935,8 @@ .. fr_FR.UTF-8 .. + he_IL.UTF-8 + .. hi_IN.ISCII-DEV .. hr_HR.ISO8859-2 diff --git a/share/colldef/Makefile b/share/colldef/Makefile index 42dcc18ee28b..0b533d680bf1 100644 --- a/share/colldef/Makefile +++ b/share/colldef/Makefile @@ -58,9 +58,10 @@ LATIN2LINKS= hr_HR hu_HU ro_RO sr_YU UTF8LINKS= af_ZA be_BY bg_BG ca_ES cs_CZ da_DK de_AT de_CH de_DE el_GR \ en_AU en_CA en_GB en_IE en_NZ en_US es_ES et_EE fi_FI fr_BE \ - fr_CA fr_CH fr_FR hr_HR hu_HU hy_AM is_IS it_CH it_IT ja_JP \ - kk_KZ ko_KR lt_LT nl_BE nl_NL no_NO pl_PL pt_BR pt_PT ro_RO \ - ru_RU sk_SK sl_SI sr_YU sv_SE tr_TR uk_UA zh_CN zh_HK zh_TW + fr_CA fr_CH fr_FR he_IL hr_HR hu_HU hy_AM is_IS it_CH it_IT \ + ja_JP kk_KZ ko_KR lt_LT nl_BE nl_NL no_NO pl_PL pt_BR pt_PT \ + ro_RO ru_RU sk_SK sl_SI sr_YU sv_SE tr_TR uk_UA zh_CN zh_HK \ + zh_TW .SUFFIXES: .src .out diff --git a/share/mklocale/Makefile b/share/mklocale/Makefile index 83f3dbaec0b3..d463b16c160a 100644 --- a/share/mklocale/Makefile +++ b/share/mklocale/Makefile @@ -46,9 +46,10 @@ LATIN5LINKS= sr_YU uk_UA be_BY CP1251LINKS= ru_RU be_BY UTF8LINKS= af_ZA be_BY bg_BG ca_ES cs_CZ da_DK de_AT de_CH de_DE el_GR \ en_AU en_CA en_GB en_IE en_NZ en_US es_ES et_EE fi_FI fr_BE \ - fr_CA fr_CH fr_FR hr_HR hu_HU hy_AM is_IS it_CH it_IT ja_JP \ - kk_KZ ko_KR lt_LT nl_BE nl_NL no_NO pl_PL pt_BR pt_PT ro_RO \ - ru_RU sk_SK sl_SI sr_YU sv_SE tr_TR uk_UA zh_CN zh_HK zh_TW + fr_CA fr_CH fr_FR he_IL hr_HR hu_HU hy_AM is_IS it_CH it_IT \ + ja_JP kk_KZ ko_KR lt_LT nl_BE nl_NL no_NO pl_PL pt_BR pt_PT \ + ro_RO ru_RU sk_SK sl_SI sr_YU sv_SE tr_TR uk_UA zh_CN zh_HK \ + zh_TW .SUFFIXES: .src .out diff --git a/share/monetdef/Makefile b/share/monetdef/Makefile index 0c3e5a1e9ac5..d20050bf49c4 100644 --- a/share/monetdef/Makefile +++ b/share/monetdef/Makefile @@ -32,6 +32,7 @@ LOCALES= af_ZA.ISO8859-1 \ fr_BE.ISO8859-1 \ fr_CA.ISO8859-1 \ fr_FR.ISO8859-1 \ + he_IL.UTF-8 \ hi_IN.ISCII-DEV \ hr_HR.ISO8859-2 \ hu_HU.ISO8859-2 \ diff --git a/share/monetdef/he_IL.UTF-8.src b/share/monetdef/he_IL.UTF-8.src new file mode 100644 index 000000000000..b0bf2dc4cb5a --- /dev/null +++ b/share/monetdef/he_IL.UTF-8.src @@ -0,0 +1,36 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# int_curr_symbol (last character always SPACE) +ILS +# currency_symbol +שח +# mon_decimal_point +. +# mon_thousands_sep +, +# mon_grouping, separated by ; +3;3 +# positive_sign + +# negative_sign +- +# int_frac_digits +2 +# frac_digits +2 +# p_cs_precedes +1 +# p_sep_by_space +1 +# n_cs_precedes +1 +# n_sep_by_space +1 +# p_sign_posn +1 +# n_sign_posn +1 +# EOF diff --git a/share/msgdef/Makefile b/share/msgdef/Makefile index 941fcbc99b5f..f2100d949df9 100644 --- a/share/msgdef/Makefile +++ b/share/msgdef/Makefile @@ -26,6 +26,7 @@ LOCALES= af_ZA.ISO8859-1 \ fr_BE.ISO8859-1 \ fr_CH.ISO8859-1 \ fr_FR.ISO8859-1 \ + he_IL.UTF-8 \ hi_IN.ISCII-DEV \ hr_HR.ISO8859-2 \ hu_HU.ISO8859-2 \ diff --git a/share/msgdef/he_IL.UTF-8.src b/share/msgdef/he_IL.UTF-8.src new file mode 100644 index 000000000000..ef87399e0769 --- /dev/null +++ b/share/msgdef/he_IL.UTF-8.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYכ].* +# noexpr +^[nNל].* +# EOF diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile index 3d916b87085d..aa588ee794e9 100644 --- a/share/numericdef/Makefile +++ b/share/numericdef/Makefile @@ -213,6 +213,8 @@ afterinstall: ${LOCALEDIR}/be_BY.UTF-8/LC_NUMERIC ln -sf ../bg_BG.CP1251/LC_NUMERIC \ ${LOCALEDIR}/bg_BG.UTF-8/LC_NUMERIC + ln -sf ../en_US.US-ASCII/LC_NUMERIC \ + ${LOCALEDIR}/he_IL.UTF-8/LC_NUMERIC ln -sf ../ja_JP.eucJP/LC_NUMERIC \ ${LOCALEDIR}/ja_JP.UTF-8/LC_NUMERIC ln -sf ../kk_KZ.PT154/LC_NUMERIC \ diff --git a/share/timedef/Makefile b/share/timedef/Makefile index 261f9bea8afc..36f6f763084b 100644 --- a/share/timedef/Makefile +++ b/share/timedef/Makefile @@ -32,6 +32,7 @@ LOCALES= am_ET.UTF-8 \ fi_FI.UTF-8 \ fr_FR.ISO8859-1 \ fr_FR.UTF-8 \ + he_IL.UTF-8 \ hi_IN.ISCII-DEV \ hr_HR.ISO8859-2 \ hr_HR.UTF-8 \ diff --git a/share/timedef/he_IL.UTF-8.src b/share/timedef/he_IL.UTF-8.src new file mode 100644 index 000000000000..5194c8bf40d5 --- /dev/null +++ b/share/timedef/he_IL.UTF-8.src @@ -0,0 +1,101 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# Short month names +ינו +פבר +מרץ +אפר +מאי +יונ +יול +אוג +ספט +אוק +נוב +דצמ +# +# Long month names +# +ינואר +פברואר +מרץ +אפריל +מאי +יוני +יולי +אוגוסט +ספטמבר +אוקטובר +נובמבר +דצמבר +# +# Short weekday names +# +א' +ב' +ג' +ד' +ה' +ו' +ש' +# +# Long weekday names +# +ראשון +שני +שלישי +רביעי +חמישי +שישי +שבת +# +# X_fmt +# +%H:%M:%S +# +# x_fmt +# +%d/%m/%y +# +# c_fmt +# +%Z %H:%M:%S %Y %b %d %a +# +# am +# +AM +# +# pm +# +PM +# +# date_fmt +# +%a %b %e %H:%M:%S %Z %Y +# +# Long months names (alternative) +# +ינואר +פברואר +מרץ +אפריל +מאי +יוני +יולי +אוגוסט +ספטמבר +אוקטובר +נובמבר +דצמבר +# +# md_order +# +md +# +# ampm_fmt +# +%I:%M:%S %p +# EOF