-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mongolian cyrillic work march 2025 #187
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -5,54 +5,34 @@ general: | |||||
|
||||||
roman_to_script: | ||||||
map: | ||||||
"G": "\u0413" | ||||||
"g": "\u0433" | ||||||
# this conversion shouldn't be needed, but does no harm | ||||||
"ZH": "\u0416" | ||||||
"Zh": "\u0416" | ||||||
"zh": "\u0436" | ||||||
"I\uFE20E\uFE21": "\u0462" | ||||||
# this conversion shouldn't be needed, but does no harm | ||||||
"I\uFE20e\uFE21": "\u0462" | ||||||
# this conversion shouldn't be needed, but does no harm | ||||||
# this conversion shouldn't be needed, but does no harm | ||||||
"I": "\u0418" | ||||||
"i\uFE20e\uFE21": "\u0463" | ||||||
"i": "\u0438" | ||||||
# this conversion shouldn't be needed, but does no harm | ||||||
"SHT": "\u0429" | ||||||
"Sht": "\u0429" | ||||||
"sht": "\u0449" | ||||||
"T\uFE20S\uFE21": "\u0426" | ||||||
# this conversion shouldn't be needed, but does no harm | ||||||
"T\uFE20s\uFE21": "\u0426" | ||||||
"t\uFE20s\uFE21": "\u0446" | ||||||
"U\u0310": "\u046A" | ||||||
"U\u0306": "\u042A" | ||||||
# Mapping from precomposed non-MARC-8 Latin equivalent | ||||||
"\u016C": "\u042A" | ||||||
"u\u0306": "\u044A" | ||||||
# Mapping from precomposed non-MARC-8 Latin equivalent | ||||||
"\u016D": "\u044A" | ||||||
"U\u0310": "\u046A" | ||||||
"u\u0310": "\u046B" | ||||||
# this conversion is ambiguous - \u042A is also theoretically possible | ||||||
"\u02BA": "\u044A" | ||||||
# upper case hard sign is unlikely to occur | ||||||
"\u02BA\u0332": "\u042A" | ||||||
|
||||||
script_to_roman: | ||||||
map: | ||||||
"\u044C": "" | ||||||
"\u042C": "" | ||||||
"\u044A": "" | ||||||
"\u042A%": "u\u0306" | ||||||
"\u042A": "" | ||||||
"\u0413": "G" | ||||||
"\u0433": "g" | ||||||
"\u0416": "Zh" | ||||||
"\u0436": "zh" | ||||||
"\u0462": "I\uFE20E\uFE21" | ||||||
"\u0418": "I" | ||||||
"\u0463": "i\uFE20e\uFE21" | ||||||
"\u0438": "i" | ||||||
"\u0429": "Sht" | ||||||
"\u042A": "U\u0306" | ||||||
# Capital letter hard sign at the end of a word (rare) | ||||||
"%\u042A": "\u02BA\u0332" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that SS has an opposite behavior to Transliterator when it comes to the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"\u042C": "\u02B9\u0332" | ||||||
"\u0449": "sht" | ||||||
"\u0426": "T\uFE20S\uFE21" | ||||||
"\u0446": "t\uFE20s\uFE21" | ||||||
"\u044A": "u\u0306" | ||||||
# Small letter hard sign at the end of a word (rare) | ||||||
"%\u044A": "\u02BA" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto as above.
Suggested change
|
||||||
"\u044C": "\u02B9" | ||||||
"\u046A": "U\u0310" | ||||||
"\u046B": "u\u0310" | ||||||
"\u042A": "u\u016C" | ||||||
"\u044A": "u\u016D" | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a transliteration task, specific to Cyrillic, or a normalization task that applies elsewhere?
We have now a
normalize
section available in the configuration. It is only available in S2R at the moment but I could implement it for the other direction too.