diff options
Diffstat (limited to 'share/msgdef')
70 files changed, 1000 insertions, 0 deletions
diff --git a/share/msgdef/Makefile b/share/msgdef/Makefile new file mode 100644 index 000000000000..59a538340faf --- /dev/null +++ b/share/msgdef/Makefile @@ -0,0 +1,144 @@ +# $FreeBSD$ + +LOCALES= af_ZA.ISO8859-1 \ + am_ET.UTF-8 \ + be_BY.CP1131 \ + be_BY.CP1251 \ + be_BY.ISO8859-5 \ + be_BY.UTF-8 \ + bg_BG.CP1251 \ + bg_BG.UTF-8 \ + ca_ES.ISO8859-1 \ + cs_CZ.ISO8859-2 \ + da_DK.ISO8859-1 \ + de_DE.ISO8859-1 \ + el_GR.ISO8859-7 \ + el_GR.UTF-8 \ + en_CA.ISO8859-1 \ + en_GB.ISO8859-1 \ + en_US.ISO8859-1 \ + es_ES.ISO8859-1 \ + et_EE.ISO8859-15 \ + eu_ES.ISO8859-1 \ + fi_FI.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 \ + hy_AM.ARMSCII-8 \ + hy_AM.UTF-8 \ + is_IS.ISO8859-1 \ + it_IT.ISO8859-1 \ + ja_JP.eucJP \ + ja_JP.SJIS \ + ja_JP.UTF-8 \ + kk_KZ.PT154 \ + kk_KZ.UTF-8 \ + ko_KR.UTF-8 \ + ko_KR.eucKR \ + lt_LT.ISO8859-13 \ + lv_LV.ISO8859-13 \ + lv_LV.UTF-8 \ + mn_MN.UTF-8 \ + nl_NL.ISO8859-1 \ + no_NO.ISO8859-1 \ + pl_PL.ISO8859-2 \ + pt_PT.ISO8859-1 \ + ro_RO.ISO8859-2 \ + ru_RU.CP1251 \ + ru_RU.CP866 \ + ru_RU.ISO8859-5 \ + ru_RU.KOI8-R \ + ru_RU.UTF-8 \ + sl_SI.ISO8859-2 \ + sr_YU.ISO8859-2 \ + sr_YU.ISO8859-5 \ + sr_YU.UTF-8 \ + sv_SE.ISO8859-1 \ + tr_TR.ISO8859-9 \ + uk_UA.CP1251 \ + uk_UA.ISO8859-5 \ + uk_UA.KOI8-U \ + uk_UA.UTF-8 \ + zh_CN.eucCN \ + zh_CN.GB18030 \ + zh_CN.GB2312 \ + zh_CN.UTF-8 \ + zh_TW.Big5 \ + zh_TW.UTF-8 + +LOCALEDIR= /usr/share/locale + +.SUFFIXES: .src .out + +.src.out: + grep -v '^#' < ${.IMPSRC} > ${.TARGET} + +FILES= ${LOCALES:S/$/.out/} +FILESNAME= LC_MESSAGES + +.for locale in ${LOCALES} +FILESDIR_${locale}.out= ${LOCALEDIR}/${locale} +.endfor + +CLEANFILES= ${FILES} + +CA_LINKS= ca_ES:ca_AD ca_ES:ca_FR ca_ES:ca_IT +CZ_LINKS= cs_CZ:sk_SK +DE_LINKS= de_DE:de_AT de_DE:de_CH +FR_LINKS= fr_FR:fr_CA +GB_LINKS= en_GB:en_AU en_GB:en_NZ +IT_LINKS= it_IT:it_CH +NL_LINKS= nl_NL:nl_BE +NO_LINKS= no_NO:nb_NO no_NO:nn_NO +PT_LINKS= pt_PT:pt_BR + +ENCODINGS= Big5 Big5HKSCS CP949 eucKR GB2312 GBK \ + ISO8859-1 ISO8859-2 ISO8859-4 ISO8859-9 ISO8859-13 ISO8859-15 \ + US-ASCII UTF-8 + +Big5_Big5HKSCS= zh_TW:zh_HK +eucKR_CP949= ko_KR +GB2312_GBK= zh_CN +ISO8859-1_ISO8859-1= ${CA_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \ + ${IT_LINKS} ${NL_LINKS} ${NO_LINKS} ${PT_LINKS} +ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_DE en_CA en_GB en_US es_ES \ + eu_ES fi_FI fr_BE fr_CH fr_FR is_IS it_IT nl_NL no_NO \ + pt_PT sv_SE \ + ${CA_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} ${IT_LINKS} \ + ${NL_LINKS} ${NO_LINKS} +ISO8859-1_US-ASCII= ${GB_LINKS} en_CA en_GB en_US +ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_DE en_CA en_GB en_US es_ES eu_ES \ + fi_FI fr_BE fr_CH fr_FR is_IS it_IT nl_NL no_NO \ + pt_PT sv_SE +ISO8859-2_ISO8859-2= ${CZ_LINKS} +ISO8859-2_UTF-8= cs_CZ hr_HR hu_HU pl_PL ro_RO sl_SI +ISO8859-9_UTF-8= tr_TR +ISO8859-13_ISO8859-4= lt_LT +ISO8859-13_UTF-8= lt_LT +ISO8859-15_UTF-8= et_EE +UTF-8_UTF-8= ${CA_LINKS} ${CZ_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \ + en_GB:en_IE \ + ${IT_LINKS} ${NL_LINKS} ${NO_LINKS} ${PT_LINKS} zh_TW:zh_HK + +SYMLINKS= +.for enc1 in ${ENCODINGS} +.for enc2 in ${ENCODINGS} +.for lang_terr in ${${enc1}_${enc2}} +SYMLINKS+= ../${lang_terr:C/:.*$//}.${enc1}/${FILESNAME} \ + ${LOCALEDIR}/${lang_terr:C/^.*://}.${enc2} +.endfor +.endfor +.endfor + +beforeinstall: +.for locale in ${LOCALES} +.if exists(${DESTDIR}${LOCALEDIR}/${locale}/LC_MESSAGES/) + rm -rf ${DESTDIR}${LOCALEDIR}/${locale}/LC_MESSAGES +.endif +.endfor + +.include <bsd.prog.mk> diff --git a/share/msgdef/af_ZA.ISO8859-1.src b/share/msgdef/af_ZA.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/af_ZA.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/am_ET.UTF-8.src b/share/msgdef/am_ET.UTF-8.src new file mode 100644 index 000000000000..a2b25ed14958 --- /dev/null +++ b/share/msgdef/am_ET.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[ይሁንyY].* +# noexpr +^[አይሁንnN].* +# yesstr +ይሁን +# nostr +አይሁን +# EOF diff --git a/share/msgdef/be_BY.CP1131.src b/share/msgdef/be_BY.CP1131.src new file mode 100644 index 000000000000..ed0a05eea079 --- /dev/null +++ b/share/msgdef/be_BY.CP1131.src @@ -0,0 +1,13 @@ +# $FreeBSD$ +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr +⠪ +# nostr + +# EOF diff --git a/share/msgdef/be_BY.CP1251.src b/share/msgdef/be_BY.CP1251.src new file mode 100644 index 000000000000..a401228e58b2 --- /dev/null +++ b/share/msgdef/be_BY.CP1251.src @@ -0,0 +1,13 @@ +# $FreeBSD$ +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/be_BY.ISO8859-5.src b/share/msgdef/be_BY.ISO8859-5.src new file mode 100644 index 000000000000..a36e12673ee1 --- /dev/null +++ b/share/msgdef/be_BY.ISO8859-5.src @@ -0,0 +1,13 @@ +# $FreeBSD$ +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[ݽnN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/be_BY.UTF-8.src b/share/msgdef/be_BY.UTF-8.src new file mode 100644 index 000000000000..8d23237784f7 --- /dev/null +++ b/share/msgdef/be_BY.UTF-8.src @@ -0,0 +1,13 @@ +# $FreeBSD$ +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[тТyY].* +# noexpr +^[нНnN].* +# yesstr +так +# nostr +не +# EOF diff --git a/share/msgdef/bg_BG.CP1251.src b/share/msgdef/bg_BG.CP1251.src new file mode 100644 index 000000000000..e52d30d64cf3 --- /dev/null +++ b/share/msgdef/bg_BG.CP1251.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/bg_BG.UTF-8.src b/share/msgdef/bg_BG.UTF-8.src new file mode 100644 index 000000000000..72dca12b49a9 --- /dev/null +++ b/share/msgdef/bg_BG.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[дДyY].* +# noexpr +^[нНnN].* +# yesstr +да +# nostr +не +# EOF diff --git a/share/msgdef/ca_ES.ISO8859-1.src b/share/msgdef/ca_ES.ISO8859-1.src new file mode 100644 index 000000000000..e839a0a217ba --- /dev/null +++ b/share/msgdef/ca_ES.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[sSyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/cs_CZ.ISO8859-2.src b/share/msgdef/cs_CZ.ISO8859-2.src new file mode 100644 index 000000000000..a6fc83634397 --- /dev/null +++ b/share/msgdef/cs_CZ.ISO8859-2.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[aAyY].* +# noexpr +^[nN].* +# yesstr +ano +# nostr +ne +# EOF diff --git a/share/msgdef/da_DK.ISO8859-1.src b/share/msgdef/da_DK.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/da_DK.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/de_DE.ISO8859-1.src b/share/msgdef/de_DE.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/de_DE.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/el_GR.ISO8859-7.src b/share/msgdef/el_GR.ISO8859-7.src new file mode 100644 index 000000000000..85d433e990cf --- /dev/null +++ b/share/msgdef/el_GR.ISO8859-7.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/el_GR.UTF-8.src b/share/msgdef/el_GR.UTF-8.src new file mode 100644 index 000000000000..560675e005c0 --- /dev/null +++ b/share/msgdef/el_GR.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[νΝyY].* +# noexpr +^[οΟnN].* +# yesstr +ΝΑΙ +# nostr +ΟΧΙ +# EOF diff --git a/share/msgdef/en_CA.ISO8859-1.src b/share/msgdef/en_CA.ISO8859-1.src new file mode 100644 index 000000000000..7a66f558ef57 --- /dev/null +++ b/share/msgdef/en_CA.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYoO].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/en_GB.ISO8859-1.src b/share/msgdef/en_GB.ISO8859-1.src new file mode 100644 index 000000000000..f80c8facd17b --- /dev/null +++ b/share/msgdef/en_GB.ISO8859-1.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/msgdef/en_US.ISO8859-1.src b/share/msgdef/en_US.ISO8859-1.src new file mode 100644 index 000000000000..bc2594ded3df --- /dev/null +++ b/share/msgdef/en_US.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYsS].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/es_ES.ISO8859-1.src b/share/msgdef/es_ES.ISO8859-1.src new file mode 100644 index 000000000000..e839a0a217ba --- /dev/null +++ b/share/msgdef/es_ES.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[sSyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/et_EE.ISO8859-15.src b/share/msgdef/et_EE.ISO8859-15.src new file mode 100644 index 000000000000..0d31afd0a2ec --- /dev/null +++ b/share/msgdef/et_EE.ISO8859-15.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[1JjYy].* +# noexpr +^[0EeNn].* +# EOF diff --git a/share/msgdef/eu_ES.ISO8859-1.src b/share/msgdef/eu_ES.ISO8859-1.src new file mode 100644 index 000000000000..8eaba389694b --- /dev/null +++ b/share/msgdef/eu_ES.ISO8859-1.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[bByY].* +# noexpr +^[eEnN].* +# yesstr +bai +# nostr +ez +# EOF diff --git a/share/msgdef/fi_FI.ISO8859-1.src b/share/msgdef/fi_FI.ISO8859-1.src new file mode 100644 index 000000000000..ac0092a84b3f --- /dev/null +++ b/share/msgdef/fi_FI.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[kKjJyY].* +# noexpr +^[nNeE].* +# EOF diff --git a/share/msgdef/fr_BE.ISO8859-1.src b/share/msgdef/fr_BE.ISO8859-1.src new file mode 100644 index 000000000000..14f8e236ee4a --- /dev/null +++ b/share/msgdef/fr_BE.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[oOyYjJ1].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/fr_CH.ISO8859-1.src b/share/msgdef/fr_CH.ISO8859-1.src new file mode 100644 index 000000000000..4af763873c0d --- /dev/null +++ b/share/msgdef/fr_CH.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[oOjJsSyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/fr_FR.ISO8859-1.src b/share/msgdef/fr_FR.ISO8859-1.src new file mode 100644 index 000000000000..80d0218e78e6 --- /dev/null +++ b/share/msgdef/fr_FR.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[oOyY].* +# noexpr +^[nN].* +# EOF 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/msgdef/hi_IN.ISCII-DEV.src b/share/msgdef/hi_IN.ISCII-DEV.src new file mode 100644 index 000000000000..f9ec934117f4 --- /dev/null +++ b/share/msgdef/hi_IN.ISCII-DEV.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/msgdef/hr_HR.ISO8859-2.src b/share/msgdef/hr_HR.ISO8859-2.src new file mode 100644 index 000000000000..a711ff76db9d --- /dev/null +++ b/share/msgdef/hr_HR.ISO8859-2.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[dDyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/hu_HU.ISO8859-2.src b/share/msgdef/hu_HU.ISO8859-2.src new file mode 100644 index 000000000000..4f009c700567 --- /dev/null +++ b/share/msgdef/hu_HU.ISO8859-2.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[iIyY].* +# noexpr +^[nN].* +# yesstr +igen +# nostr +nem +# EOF diff --git a/share/msgdef/hy_AM.ARMSCII-8.src b/share/msgdef/hy_AM.ARMSCII-8.src new file mode 100644 index 000000000000..c11b38e51caf --- /dev/null +++ b/share/msgdef/hy_AM.ARMSCII-8.src @@ -0,0 +1,17 @@ +# $FreeBSD$ +# +# msgdef source for ARMSCII-8 locale for FreeBSD +# Made available by Vahe Khachikyan <vahe@khachikyan.de> +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/hy_AM.UTF-8.src b/share/msgdef/hy_AM.UTF-8.src new file mode 100644 index 000000000000..749637de33c3 --- /dev/null +++ b/share/msgdef/hy_AM.UTF-8.src @@ -0,0 +1,17 @@ +# $FreeBSD$ +# +# msgdef source for ARMSCII-8 locale for FreeBSD +# Made available by Vahe Khachikyan <vahe@khachikyan.de> +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[աԱyY].* +# noexpr +^[ոՈnN].* +# yesstr +Այո +# nostr +Ոչ +# EOF diff --git a/share/msgdef/is_IS.ISO8859-1.src b/share/msgdef/is_IS.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/is_IS.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/it_IT.ISO8859-1.src b/share/msgdef/it_IT.ISO8859-1.src new file mode 100644 index 000000000000..e839a0a217ba --- /dev/null +++ b/share/msgdef/it_IT.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[sSyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/ja_JP.SJIS.src b/share/msgdef/ja_JP.SJIS.src new file mode 100644 index 000000000000..8a209e5b8526 --- /dev/null +++ b/share/msgdef/ja_JP.SJIS.src @@ -0,0 +1,13 @@ +# $FreeBSD$ +# +# XXX: ja_JP.SJIS contains english messages only. Someone familiar with +# this locale is wanted to complete it! +# +# 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/msgdef/ja_JP.UTF-8.src b/share/msgdef/ja_JP.UTF-8.src new file mode 100644 index 000000000000..476ef44b3d62 --- /dev/null +++ b/share/msgdef/ja_JP.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 +^[yYyYはハ].* +# noexpr +^[nNnNいイ].* +# EOF diff --git a/share/msgdef/ja_JP.eucJP.src b/share/msgdef/ja_JP.eucJP.src new file mode 100644 index 000000000000..2f06e015abae --- /dev/null +++ b/share/msgdef/ja_JP.eucJP.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/msgdef/kk_KZ.PT154.src b/share/msgdef/kk_KZ.PT154.src new file mode 100644 index 000000000000..583096f3ef5e --- /dev/null +++ b/share/msgdef/kk_KZ.PT154.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/kk_KZ.UTF-8.src b/share/msgdef/kk_KZ.UTF-8.src new file mode 100644 index 000000000000..23cd9cbb88a7 --- /dev/null +++ b/share/msgdef/kk_KZ.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[иИyY].* +# noexpr +^[жЖnN].* +# yesstr +ия +# nostr +жок +# EOF diff --git a/share/msgdef/ko_KR.UTF-8.src b/share/msgdef/ko_KR.UTF-8.src new file mode 100644 index 000000000000..7921ba0f9e0d --- /dev/null +++ b/share/msgdef/ko_KR.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYyY예].* +# noexpr +^[nNnN아].* +# yesstr +예 +# nostr +아니오 +# EOF diff --git a/share/msgdef/ko_KR.eucKR.src b/share/msgdef/ko_KR.eucKR.src new file mode 100644 index 000000000000..097d4ddf7b39 --- /dev/null +++ b/share/msgdef/ko_KR.eucKR.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYٿ].* +# noexpr +^[nNξ].* +# yesstr + +# nostr +ƴϿ +# EOF diff --git a/share/msgdef/lt_LT.ISO8859-13.src b/share/msgdef/lt_LT.ISO8859-13.src new file mode 100644 index 000000000000..296f1584c1b0 --- /dev/null +++ b/share/msgdef/lt_LT.ISO8859-13.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[tTyY].* +# noexpr +^[nN].* +# yesstr +taip +# nostr +ne +# EOF diff --git a/share/msgdef/lv_LV.ISO8859-13.src b/share/msgdef/lv_LV.ISO8859-13.src new file mode 100644 index 000000000000..d744ad86b30c --- /dev/null +++ b/share/msgdef/lv_LV.ISO8859-13.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# yesstr +j +# nostr +n +# EOF diff --git a/share/msgdef/lv_LV.UTF-8.src b/share/msgdef/lv_LV.UTF-8.src new file mode 100644 index 000000000000..85f1a73fc1ed --- /dev/null +++ b/share/msgdef/lv_LV.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# yesstr +jā +# nostr +nē +# EOF diff --git a/share/msgdef/mn_MN.UTF-8.src b/share/msgdef/mn_MN.UTF-8.src new file mode 100644 index 000000000000..8851f6a04361 --- /dev/null +++ b/share/msgdef/mn_MN.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[тТyY].* +# noexpr +^[үҮnN].* +# yesstr +тийм +# nostr +үгүй +# EOF diff --git a/share/msgdef/nl_NL.ISO8859-1.src b/share/msgdef/nl_NL.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/nl_NL.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/no_NO.ISO8859-1.src b/share/msgdef/no_NO.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/no_NO.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/pl_PL.ISO8859-2.src b/share/msgdef/pl_PL.ISO8859-2.src new file mode 100644 index 000000000000..a7acd2adf1f0 --- /dev/null +++ b/share/msgdef/pl_PL.ISO8859-2.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[tTyY].* +# noexpr +^[nN].* +# yesstr +tak +# nostr +nie +# EOF diff --git a/share/msgdef/pt_PT.ISO8859-1.src b/share/msgdef/pt_PT.ISO8859-1.src new file mode 100644 index 000000000000..e839a0a217ba --- /dev/null +++ b/share/msgdef/pt_PT.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[sSyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/ro_RO.ISO8859-2.src b/share/msgdef/ro_RO.ISO8859-2.src new file mode 100644 index 000000000000..a711ff76db9d --- /dev/null +++ b/share/msgdef/ro_RO.ISO8859-2.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[dDyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/ru_RU.CP1251.src b/share/msgdef/ru_RU.CP1251.src new file mode 100644 index 000000000000..5774d94f6f54 --- /dev/null +++ b/share/msgdef/ru_RU.CP1251.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/ru_RU.CP866.src b/share/msgdef/ru_RU.CP866.src new file mode 100644 index 000000000000..df2b035bb4b6 --- /dev/null +++ b/share/msgdef/ru_RU.CP866.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/ru_RU.ISO8859-5.src b/share/msgdef/ru_RU.ISO8859-5.src new file mode 100644 index 000000000000..360485e980e4 --- /dev/null +++ b/share/msgdef/ru_RU.ISO8859-5.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[ԴyY].* +# noexpr +^[ݽnN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/ru_RU.KOI8-R.src b/share/msgdef/ru_RU.KOI8-R.src new file mode 100644 index 000000000000..465cfa69f259 --- /dev/null +++ b/share/msgdef/ru_RU.KOI8-R.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/ru_RU.UTF-8.src b/share/msgdef/ru_RU.UTF-8.src new file mode 100644 index 000000000000..21882ca80b38 --- /dev/null +++ b/share/msgdef/ru_RU.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[дДyY].* +# noexpr +^[нНnN].* +# yesstr +да +# nostr +нет +# EOF diff --git a/share/msgdef/sl_SI.ISO8859-2.src b/share/msgdef/sl_SI.ISO8859-2.src new file mode 100644 index 000000000000..9686b4f232fc --- /dev/null +++ b/share/msgdef/sl_SI.ISO8859-2.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[YyJj].* +# noexpr +^[Nn].* +# EOF diff --git a/share/msgdef/sr_YU.ISO8859-2.src b/share/msgdef/sr_YU.ISO8859-2.src new file mode 100644 index 000000000000..a711ff76db9d --- /dev/null +++ b/share/msgdef/sr_YU.ISO8859-2.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[dDyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/sr_YU.ISO8859-5.src b/share/msgdef/sr_YU.ISO8859-5.src new file mode 100644 index 000000000000..24ec0c74090d --- /dev/null +++ b/share/msgdef/sr_YU.ISO8859-5.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[ԴyY].* +# noexpr +^[ݽnN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/sr_YU.UTF-8.src b/share/msgdef/sr_YU.UTF-8.src new file mode 100644 index 000000000000..72dca12b49a9 --- /dev/null +++ b/share/msgdef/sr_YU.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[дДyY].* +# noexpr +^[нНnN].* +# yesstr +да +# nostr +не +# EOF diff --git a/share/msgdef/sv_SE.ISO8859-1.src b/share/msgdef/sv_SE.ISO8859-1.src new file mode 100644 index 000000000000..a87da07feee2 --- /dev/null +++ b/share/msgdef/sv_SE.ISO8859-1.src @@ -0,0 +1,10 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[jJyY].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/tr_TR.ISO8859-9.src b/share/msgdef/tr_TR.ISO8859-9.src new file mode 100644 index 000000000000..47329944b040 --- /dev/null +++ b/share/msgdef/tr_TR.ISO8859-9.src @@ -0,0 +1,11 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +# XXX: I with dot above also should be included to yesexpr +^[IiYy].* +# noexpr +^[nN].* +# EOF diff --git a/share/msgdef/uk_UA.CP1251.src b/share/msgdef/uk_UA.CP1251.src new file mode 100644 index 000000000000..f3fd7765ad95 --- /dev/null +++ b/share/msgdef/uk_UA.CP1251.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/uk_UA.ISO8859-5.src b/share/msgdef/uk_UA.ISO8859-5.src new file mode 100644 index 000000000000..cc508146e827 --- /dev/null +++ b/share/msgdef/uk_UA.ISO8859-5.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[ݽnN].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/uk_UA.KOI8-U.src b/share/msgdef/uk_UA.KOI8-U.src new file mode 100644 index 000000000000..5eec97264d5d --- /dev/null +++ b/share/msgdef/uk_UA.KOI8-U.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nN].* +# yesstr + +# nostr +Φ +# EOF diff --git a/share/msgdef/uk_UA.UTF-8.src b/share/msgdef/uk_UA.UTF-8.src new file mode 100644 index 000000000000..cfc5a2e64bc0 --- /dev/null +++ b/share/msgdef/uk_UA.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[тТyY].* +# noexpr +^[нНnN].* +# yesstr +так +# nostr +ні +# EOF diff --git a/share/msgdef/zh_CN.GB18030.src b/share/msgdef/zh_CN.GB18030.src new file mode 100644 index 000000000000..6e9cd83e04e3 --- /dev/null +++ b/share/msgdef/zh_CN.GB18030.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nNβ].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/zh_CN.GB2312.src b/share/msgdef/zh_CN.GB2312.src new file mode 100644 index 000000000000..6e9cd83e04e3 --- /dev/null +++ b/share/msgdef/zh_CN.GB2312.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nNβ].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/zh_CN.UTF-8.src b/share/msgdef/zh_CN.UTF-8.src new file mode 100644 index 000000000000..975134e8173e --- /dev/null +++ b/share/msgdef/zh_CN.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYyY是].* +# noexpr +^[nNnN不否].* +# yesstr +是 +# nostr +否 +# EOF diff --git a/share/msgdef/zh_CN.eucCN.src b/share/msgdef/zh_CN.eucCN.src new file mode 100644 index 000000000000..6e9cd83e04e3 --- /dev/null +++ b/share/msgdef/zh_CN.eucCN.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yY].* +# noexpr +^[nNβ].* +# yesstr + +# nostr + +# EOF diff --git a/share/msgdef/zh_TW.Big5.src b/share/msgdef/zh_TW.Big5.src new file mode 100644 index 000000000000..cc1bfce72027 --- /dev/null +++ b/share/msgdef/zh_TW.Big5.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYBO].* +# noexpr +^[nNܤ_].* +# yesstr +O +# nostr +_ +# EOF diff --git a/share/msgdef/zh_TW.UTF-8.src b/share/msgdef/zh_TW.UTF-8.src new file mode 100644 index 000000000000..975134e8173e --- /dev/null +++ b/share/msgdef/zh_TW.UTF-8.src @@ -0,0 +1,14 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# yesexpr +^[yYyY是].* +# noexpr +^[nNnN不否].* +# yesstr +是 +# nostr +否 +# EOF |