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-rm | |
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-rm')
-rw-r--r-- | java/res/values-rm/donottranslate-more-keys.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/java/res/values-rm/donottranslate-more-keys.xml b/java/res/values-rm/donottranslate-more-keys.xml index c40c29b13..22af05fc2 100644 --- a/java/res/values-rm/donottranslate-more-keys.xml +++ b/java/res/values-rm/donottranslate-more-keys.xml @@ -18,5 +18,12 @@ */ --> <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="more_keys_for_o">ò,ó,ö,ô,õ,œ,ø</string> + <!-- \u00f2: "ò" LATIN SMALL LETTER O WITH GRAVE + \u00f3: "ó" LATIN SMALL LETTER O WITH ACUTE + \u00f6: "ö" LATIN SMALL LETTER O WITH DIAERESIS + \u00f4: "ô" LATIN SMALL LETTER O WITH CIRCUMFLEX + \u00f5: "õ" LATIN SMALL LETTER O WITH TILDE + \u0153: "œ" LATIN SMALL LIGATURE OE + \u00f8: "ø" LATIN SMALL LETTER O WITH STROKE --> + <string name="more_keys_for_o">\u00f2,\u00f3,\u00f6,\u00f4,\u00f5,\u0153,\u00f8</string> </resources> |