encoder: add 'l.' letter, cs
This commit is contained in:
parent
84b79160c8
commit
855b42ff02
1 changed files with 16 additions and 31 deletions
47
encoder.c
47
encoder.c
|
@ -13,37 +13,22 @@ struct encoder_tuple {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct encoder_tuple table[] = {
|
static const struct encoder_tuple table[] = {
|
||||||
{"a-", "ā"},
|
{"a-", "ā"}, {"A-", "Ā"},
|
||||||
{"i-", "ī"},
|
{"i-", "ī"}, {"I-", "Ī"},
|
||||||
{"u-", "ū"},
|
{"u-", "ū"}, {"U-", "Ū"},
|
||||||
{"r.", "ṛ"},
|
{"r.", "ṛ"}, {"R.", "Ṛ"},
|
||||||
{"r.-", "ṝ"},
|
{"r.-", "ṝ"}, {"R.-", "Ṝ"},
|
||||||
{"l.-", "ḹ"},
|
{"l.", "ḷ"}, {"L.", "Ḷ"},
|
||||||
{"n^.", "ṅ"},
|
{"l.-", "ḹ"}, {"L.-", "Ḹ"},
|
||||||
{"n~", "ñ"},
|
{"n^.", "ṅ"}, {"N^.", "Ṅ"},
|
||||||
{"s,", "ś"},
|
{"n~", "ñ"}, {"N~", "Ñ"},
|
||||||
{"t.", "ṭ"},
|
{"s,", "ś"}, {"S,", "Ś"},
|
||||||
{"d.", "ḍ"},
|
{"t.", "ṭ"}, {"T.", "Ṭ"},
|
||||||
{"n.", "ṇ"},
|
{"d.", "ḍ"}, {"D.", "Ḍ"},
|
||||||
{"s.", "ṣ"},
|
{"n.", "ṇ"}, {"N.", "Ṇ"},
|
||||||
{"m.", "ṃ"},
|
{"s.", "ṣ"}, {"S.", "Ṣ"},
|
||||||
{"h.", "ḥ"},
|
{"m.", "ṃ"}, {"M.", "Ṃ"},
|
||||||
|
{"h.", "ḥ"}, {"H.", "Ḥ"},
|
||||||
{"A-", "Ā"},
|
|
||||||
{"I-", "Ī"},
|
|
||||||
{"U-", "Ū"},
|
|
||||||
{"R.", "Ṛ"},
|
|
||||||
{"R.-", "Ṝ"},
|
|
||||||
{"L.-", "Ḹ"},
|
|
||||||
{"N^.", "Ṅ"},
|
|
||||||
{"N~", "Ñ"},
|
|
||||||
{"S,", "Ś"},
|
|
||||||
{"T.", "Ṭ"},
|
|
||||||
{"D.", "Ḍ"},
|
|
||||||
{"N.", "Ṇ"},
|
|
||||||
{"S.", "Ṣ"},
|
|
||||||
{"M.", "Ṃ"},
|
|
||||||
{"H.", "Ḥ"},
|
|
||||||
|
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue