encoder: add czech diacritics as encoding shortcuts
This commit is contained in:
parent
1f9eab3a7c
commit
48619fe120
1 changed files with 5 additions and 0 deletions
|
@ -14,15 +14,20 @@ struct encoder_tuple {
|
||||||
|
|
||||||
static const struct encoder_tuple table[] = {
|
static const struct encoder_tuple table[] = {
|
||||||
{"a-", "ā"}, {"A-", "Ā"},
|
{"a-", "ā"}, {"A-", "Ā"},
|
||||||
|
{"á", "ā"}, {"Á", "Ā"},
|
||||||
{"i-", "ī"}, {"I-", "Ī"},
|
{"i-", "ī"}, {"I-", "Ī"},
|
||||||
|
{"í", "ī"}, {"Í", "Ī"},
|
||||||
{"u-", "ū"}, {"U-", "Ū"},
|
{"u-", "ū"}, {"U-", "Ū"},
|
||||||
|
{"ú", "ū"}, {"Ú", "Ū"},
|
||||||
{"r.", "ṛ"}, {"R.", "Ṛ"},
|
{"r.", "ṛ"}, {"R.", "Ṛ"},
|
||||||
{"r.-", "ṝ"}, {"R.-", "Ṝ"},
|
{"r.-", "ṝ"}, {"R.-", "Ṝ"},
|
||||||
{"l.", "ḷ"}, {"L.", "Ḷ"},
|
{"l.", "ḷ"}, {"L.", "Ḷ"},
|
||||||
{"l.-", "ḹ"}, {"L.-", "Ḹ"},
|
{"l.-", "ḹ"}, {"L.-", "Ḹ"},
|
||||||
{"n^.", "ṅ"}, {"N^.", "Ṅ"},
|
{"n^.", "ṅ"}, {"N^.", "Ṅ"},
|
||||||
{"n~", "ñ"}, {"N~", "Ñ"},
|
{"n~", "ñ"}, {"N~", "Ñ"},
|
||||||
|
{"ň", "ñ"}, {"Ň", "Ñ"},
|
||||||
{"s,", "ś"}, {"S,", "Ś"},
|
{"s,", "ś"}, {"S,", "Ś"},
|
||||||
|
{"š", "ś"}, {"Š", "Ś"},
|
||||||
{"t.", "ṭ"}, {"T.", "Ṭ"},
|
{"t.", "ṭ"}, {"T.", "Ṭ"},
|
||||||
{"d.", "ḍ"}, {"D.", "Ḍ"},
|
{"d.", "ḍ"}, {"D.", "Ḍ"},
|
||||||
{"n.", "ṇ"}, {"N.", "Ṇ"},
|
{"n.", "ṇ"}, {"N.", "Ṇ"},
|
||||||
|
|
Loading…
Add table
Reference in a new issue