encoder: add conversion of uppercased letters

This commit is contained in:
Vlasta Vesely 2018-05-18 11:09:14 +02:00
parent cc7d8439ee
commit fa53226433

View file

@ -28,6 +28,23 @@ static const struct encoder_tuple table[] = {
{"s.", ""}, {"s.", ""},
{"m.", ""}, {"m.", ""},
{"h.", ""}, {"h.", ""},
{"A-", "Ā"},
{"I-", "Ī"},
{"U-", "Ū"},
{"R.", ""},
{"R.-", ""},
{"L.-", ""},
{"N^.", ""},
{"N~", "Ñ"},
{"S,", "Ś"},
{"T.", ""},
{"D.", ""},
{"N.", ""},
{"S.", ""},
{"M.", ""},
{"H.", ""},
{NULL, NULL} {NULL, NULL}
}; };