blob: d22ae45d72f7323f2e5010f1b2e84900fdf71445 (
plain) (
tree)
|
|
ďťż // -*- Coding: utf-8; -*-
//--------------------------------------------------------------------
// Copyright 2001, CrossWire Bible Society (http://www.crosswire.org)
// Use freely.
//--------------------------------------------------------------------
// Based upon SBL standard transliteration system from
// the SBL Handbook of Style p.31
//--------------------------------------------------------------------
// Latin-Ugaritic
translit_Latin_Ugaritic {
Rule {
":: NFD (NFC) ;"
":: lower() ;"
// completeness
"c> | k;"
"e> | i;"
"f> | w;"
"j> | i;"
"o> | a;"
"v> | w;"
"x> | k;"
// ugaritic cuneiform
"h ĚŁ <> đ;"
"d Ěą <> đ;"
"z ĚŁ <> đ;"
"s ĚŁ <> đ;"
"g Ě <> đ;"
"s Ě <> đ;"
"a <> đ;"
"b <> đ;"
"g <> đ;"
"h ĚŽ<> đ;"
"d <> đ;"
"h <> đ
;"
"w <> đ;"
"z <> đ;"
"t ĚŁ <> đ;"
"y <> đ;"
"k <> đ;"
"s Ě <> đ;"
"l <> đ;"
"m <> đ;"
"n <> đ;"
"s <> đ;"
"Ęż <> đ;"
"p <> đ;"
"q <> đ;"
"r <> đ;"
"t Ěą <> đ;"
"t <> đ;"
"i <> đ;"
"u <> đ;"
"' ' <> đ;"
":: NFC (NFD) ;"
}
}
|