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[] = {
|
||||
{"a-", "ā"},
|
||||
{"i-", "ī"},
|
||||
{"u-", "ū"},
|
||||
{"r.", "ṛ"},
|
||||
{"r.-", "ṝ"},
|
||||
{"l.-", "ḹ"},
|
||||
{"n^.", "ṅ"},
|
||||
{"n~", "ñ"},
|
||||
{"s,", "ś"},
|
||||
{"t.", "ṭ"},
|
||||
{"d.", "ḍ"},
|
||||
{"n.", "ṇ"},
|
||||
{"s.", "ṣ"},
|
||||
{"m.", "ṃ"},
|
||||
{"h.", "ḥ"},
|
||||
|
||||
{"A-", "Ā"},
|
||||
{"I-", "Ī"},
|
||||
{"U-", "Ū"},
|
||||
{"R.", "Ṛ"},
|
||||
{"R.-", "Ṝ"},
|
||||
{"L.-", "Ḹ"},
|
||||
{"N^.", "Ṅ"},
|
||||
{"N~", "Ñ"},
|
||||
{"S,", "Ś"},
|
||||
{"T.", "Ṭ"},
|
||||
{"D.", "Ḍ"},
|
||||
{"N.", "Ṇ"},
|
||||
{"S.", "Ṣ"},
|
||||
{"M.", "Ṃ"},
|
||||
{"H.", "Ḥ"},
|
||||
{"a-", "ā"}, {"A-", "Ā"},
|
||||
{"i-", "ī"}, {"I-", "Ī"},
|
||||
{"u-", "ū"}, {"U-", "Ū"},
|
||||
{"r.", "ṛ"}, {"R.", "Ṛ"},
|
||||
{"r.-", "ṝ"}, {"R.-", "Ṝ"},
|
||||
{"l.", "ḷ"}, {"L.", "Ḷ"},
|
||||
{"l.-", "ḹ"}, {"L.-", "Ḹ"},
|
||||
{"n^.", "ṅ"}, {"N^.", "Ṅ"},
|
||||
{"n~", "ñ"}, {"N~", "Ñ"},
|
||||
{"s,", "ś"}, {"S,", "Ś"},
|
||||
{"t.", "ṭ"}, {"T.", "Ṭ"},
|
||||
{"d.", "ḍ"}, {"D.", "Ḍ"},
|
||||
{"n.", "ṇ"}, {"N.", "Ṇ"},
|
||||
{"s.", "ṣ"}, {"S.", "Ṣ"},
|
||||
{"m.", "ṃ"}, {"M.", "Ṃ"},
|
||||
{"h.", "ḥ"}, {"H.", "Ḥ"},
|
||||
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue