Update Ukrainian transliteration

* lisp/language/cyril-util.el (standard-display-cyrillic-translit):
Add missing letter "ґ"; tweak letter "г".  (Bug#41683)
This commit is contained in:
Andrii Kolomoiets 2020-06-03 14:14:57 +03:00 committed by Eli Zaretskii
parent 30a7ee505a
commit 73749efa13

View file

@ -152,6 +152,7 @@ If the argument is nil, we return the display table to its standard state."
(aset standard-display-table [?l ?j])
(aset standard-display-table [?n ?j])
(aset standard-display-table [?d ?z])
(aset standard-display-table [?g])
(aset standard-display-table [?Y ?e])
(aset standard-display-table [?Y ?i])
@ -166,6 +167,7 @@ If the argument is nil, we return the display table to its standard state."
(aset standard-display-table [?L ?j])
(aset standard-display-table [?N ?j])
(aset standard-display-table [?D ?j])
(aset standard-display-table [?G])
(when (equal cyrillic-language "Bulgarian")
(aset standard-display-table [?s ?h ?t])
@ -182,7 +184,9 @@ If the argument is nil, we return the display table to its standard state."
(aset standard-display-table [?i])
(aset standard-display-table [?Y])
(aset standard-display-table [?i ?u])
(aset standard-display-table [?i ?a]))))
(aset standard-display-table [?i ?a])
(aset standard-display-table ?г [?h])
(aset standard-display-table [?H]))))
;;
(provide 'cyril-util)