diff options
author | DaeHyun Sung <sungdh86+git@gmail.com> | 2021-06-28 23:04:10 +0900 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2021-07-05 01:51:57 +0200 |
commit | 0afa7e64d547a8f2a48402660acf5c95a468a0ab (patch) | |
tree | 9cac6c36b251d45ed91017db5824d8a5ce101113 /i18npool | |
parent | 57e0b8637a0c6f53a43c987df51a00a5a0f3909f (diff) |
Fix Line break rule in Korean
I found the bug, Line break rule in Korea don't work
using `" -U+0022: Quotation Mark` & `' - U+0027: Apostrophe`
So I fixed the bug in xml file.
`'` to `' - U+0027: Apostrophe`
`"` to `" - U+0022: Quotation Mark`
Because, `'` and `"` are still displayed in several other line break rules.
such as, zh_CN.xml and zh_TW.xml, etc.
Reference1: HWP Guide - 금칙문자(Forbidden Characters)
http://help.hancom.com/hoffice/webhelp/9.0/ko_kr/hshow/tool/forbid.htm
Reference2: OOXML ISO/IEC 29500–1:2016(E)
Korean
* Cannot start a line: !%),.:;?]}¢°'"′″℃〉》」』】〕!%),.:;?]}¢
(Unicode character values: U+0021, U+0025, U+0029, U+002C, U+002E, U+003A, U+003B, U+003F, U+005D, U+007D, U+00A2, U+00B0, U+2019, U+201D, U+2032, U+2033, U+2103, U+3009, U+300B, U+300D, U+300F, U+3011, U+3015, U+FF01, U+FF05, U+FF09, U+FF0C, U+FF0E, U+FF1A, U+FF1B, U+FF1F, U+FF3D, U+FF5D and U+FFE0, respectively)
* Cannot end a line: $([\{£¥'"〈《「『【〔$([{£¥₩
(Unicode character values: U+0024, U+0028, U+005B, U+005C, U+007B, U+00A3, U+00A5, U+2018, U+201C, U+3008, U+300A, U+300C, U+300E, U+3010, U+3014, U+FF04, U+FF08, U+FF3B, U+FF5B, U+FFE1, U+FFE5, and U+FFE6, respectively)
Change-Id: I07f6afc60d0a83508a8ba971f31d2ca66846cd23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118027
Tested-by: Eike Rathke <erack@redhat.com>
Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/localedata/data/ko_KR.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/source/localedata/data/ko_KR.xml b/i18npool/source/localedata/data/ko_KR.xml index a3e6121ba832..fcb92702923e 100644 --- a/i18npool/source/localedata/data/ko_KR.xml +++ b/i18npool/source/localedata/data/ko_KR.xml @@ -723,8 +723,8 @@ </LC_TRANSLITERATION> <LC_MISC> <ForbiddenCharacters> - <ForbiddenLineBeginCharacters>!%),.:;?]}¢¢'"′″℃>〉>》」』】〕!%),.:;?]}。」、・ ゙゚、。’”°</ForbiddenLineBeginCharacters> - <ForbiddenLineEndCharacters>$(¥£[\{£¥'"<<《「『【〔$([{₩₩「‘“〈</ForbiddenLineEndCharacters> + <ForbiddenLineBeginCharacters>!%),.:;?]}¢¢'"′″℃>〉>》」』】〕!%),.:;?]}。」、・ ゙゚、。’”°</ForbiddenLineBeginCharacters> + <ForbiddenLineEndCharacters>$(¥£[\{£¥'"<<《「『【〔$([{₩₩「‘“〈</ForbiddenLineEndCharacters> <LineBreakHangingCharacters>!,.:;?、。!,.:;?</LineBreakHangingCharacters> </ForbiddenCharacters> <ReservedWords> |