diff options
author | 2012-02-10 01:08:01 +0900 | |
---|---|---|
committer | 2012-02-11 23:05:23 +0900 | |
commit | 09c677f56ac0f155c6ecce3776d8c93c20625562 (patch) | |
tree | 37aa4fcc155e1c31e150cf2904b5d4d39439b619 /java/res/values-sl | |
parent | 1bd181fefa348650412b20f89ad683002c206405 (diff) | |
download | latinime-09c677f56ac0f155c6ecce3776d8c93c20625562.tar.gz latinime-09c677f56ac0f155c6ecce3776d8c93c20625562.tar.xz latinime-09c677f56ac0f155c6ecce3776d8c93c20625562.zip |
Replace UTF-8 string resources with their hex representations
bug: 5988656
Change-Id: Ifc3c3a2eccfc23d75b4066c2c9c02c48dacda55b
Diffstat (limited to 'java/res/values-sl')
-rw-r--r-- | java/res/values-sl/donottranslate-more-keys.xml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/java/res/values-sl/donottranslate-more-keys.xml b/java/res/values-sl/donottranslate-more-keys.xml index b72c6799e..6890ac73f 100644 --- a/java/res/values-sl/donottranslate-more-keys.xml +++ b/java/res/values-sl/donottranslate-more-keys.xml @@ -18,8 +18,13 @@ */ --> <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="more_keys_for_s">š</string> - <string name="more_keys_for_c">č,ć</string> - <string name="more_keys_for_d">đ</string> - <string name="more_keys_for_z">ž</string> + <!-- \u0161: "š" LATIN SMALL LETTER S WITH CARON --> + <string name="more_keys_for_s">\u0161</string> + <!-- \u010d: "č" LATIN SMALL LETTER C WITH CARON + \u0107: "ć" LATIN SMALL LETTER C WITH ACUTE --> + <string name="more_keys_for_c">\u010d,\u0107</string> + <!-- \u0111: "đ" LATIN SMALL LETTER D WITH STROKE --> + <string name="more_keys_for_d">\u0111</string> + <!-- \u017e: "ž" LATIN SMALL LETTER Z WITH CARON --> + <string name="more_keys_for_z">\u017e</string> </resources> |