Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 73c29481 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix Persian currency symbol

Change-Id: Iea202e6d6857cbc0a3d4374c76bd72ed992da9a6
parent ce607358
Loading
Loading
Loading
Loading
+2 −5
Original line number Original line Diff line number Diff line
@@ -105,12 +105,9 @@
        <case
        <case
            latin:languageCode="fa|hi|iw|mn|th|uk|vi"
            latin:languageCode="fa|hi|iw|mn|th|uk|vi"
        >
        >
            <!-- U+00A3: "£" POUND SIGN
                 U+20AC: "€" EURO SIGN
                 U+00A2: "¢" CENT SIGN -->
            <Key
            <Key
                latin:keyLabel="!text/keylabel_for_currency_generic"
                latin:keyLabel="!text/keylabel_for_currency"
                latin:moreKeys="!text/more_keys_for_currency_generic" />
                latin:moreKeys="!text/more_keys_for_currency" />
        </case>
        </case>
        <!-- GB: United Kingdom (Pound) -->
        <!-- GB: United Kingdom (Pound) -->
        <case
        <case
+6 −5
Original line number Original line Diff line number Diff line
@@ -153,8 +153,8 @@ public final class KeyboardTextsSet {
        /* 48 */ "single_angle_quotes",
        /* 48 */ "single_angle_quotes",
        /* 49 */ "double_angle_quotes",
        /* 49 */ "double_angle_quotes",
        /* 50 */ "more_keys_for_currency_dollar",
        /* 50 */ "more_keys_for_currency_dollar",
        /* 51 */ "keylabel_for_currency_generic",
        /* 51 */ "keylabel_for_currency",
        /* 52 */ "more_keys_for_currency_generic",
        /* 52 */ "more_keys_for_currency",
        /* 53 */ "more_keys_for_punctuation",
        /* 53 */ "more_keys_for_punctuation",
        /* 54 */ "more_keys_for_star",
        /* 54 */ "more_keys_for_star",
        /* 55 */ "more_keys_for_bullet",
        /* 55 */ "more_keys_for_bullet",
@@ -1401,9 +1401,10 @@ public final class KeyboardTextsSet {
        /* 47 */ null,
        /* 47 */ null,
        /* 48 */ "!text/single_laqm_raqm_rtl",
        /* 48 */ "!text/single_laqm_raqm_rtl",
        /* 49 */ "!text/double_laqm_raqm_rtl",
        /* 49 */ "!text/double_laqm_raqm_rtl",
        /* 50~ */
        /* 50 */ null,
        null, null, null,
        // U+FDFC: "﷼" RIAL SIGN
        /* ~52 */
        /* 51 */ "\uFDFC",
        /* 52 */ null,
        // U+061F: "؟" ARABIC QUESTION MARK
        // U+061F: "؟" ARABIC QUESTION MARK
        // U+060C: "،" ARABIC COMMA
        // U+060C: "،" ARABIC COMMA
        // U+061B: "؛" ARABIC SEMICOLON
        // U+061B: "؛" ARABIC SEMICOLON
+2 −0
Original line number Original line Diff line number Diff line
@@ -86,6 +86,8 @@
    <string name="keylabel_for_apostrophe">&#x060C;</string>
    <string name="keylabel_for_apostrophe">&#x060C;</string>
    <string name="keyhintlabel_for_apostrophe">&#x061F;</string>
    <string name="keyhintlabel_for_apostrophe">&#x061F;</string>
    <string name="more_keys_for_apostrophe">"!fixedColumnOrder!4,:,!,&#x061F;,&#x061B;,-,/,&#x00AB;|&#x00BB;,&#x00BB;|&#x00AB;"</string>
    <string name="more_keys_for_apostrophe">"!fixedColumnOrder!4,:,!,&#x061F;,&#x061B;,-,/,&#x00AB;|&#x00BB;,&#x00BB;|&#x00AB;"</string>
    <!-- U+FDFC: "﷼" RIAL SIGN -->
    <string name="keylabel_for_currency">&#xFDFC;</string>
    <!-- U+061F: "؟" ARABIC QUESTION MARK
    <!-- U+061F: "؟" ARABIC QUESTION MARK
         U+060C: "،" ARABIC COMMA
         U+060C: "،" ARABIC COMMA
         U+061B: "؛" ARABIC SEMICOLON -->
         U+061B: "؛" ARABIC SEMICOLON -->
+1 −1
Original line number Original line Diff line number Diff line
@@ -59,5 +59,5 @@
    <string name="additional_more_keys_for_symbols_9">9</string>
    <string name="additional_more_keys_for_symbols_9">9</string>
    <string name="additional_more_keys_for_symbols_0">0</string>
    <string name="additional_more_keys_for_symbols_0">0</string>
    <!-- U+20B9: "₹" INDIAN RUPEE SIGN -->
    <!-- U+20B9: "₹" INDIAN RUPEE SIGN -->
    <string name="keylabel_for_currency_generic">&#x20B9;</string>
    <string name="keylabel_for_currency">&#x20B9;</string>
</resources>
</resources>
+1 −1
Original line number Original line Diff line number Diff line
@@ -52,5 +52,5 @@
    <string name="single_angle_quotes">!text/single_laqm_raqm_rtl</string>
    <string name="single_angle_quotes">!text/single_laqm_raqm_rtl</string>
    <string name="double_angle_quotes">!text/double_laqm_raqm_rtl</string>
    <string name="double_angle_quotes">!text/double_laqm_raqm_rtl</string>
    <!-- U+20AA: "₪" NEW SHEQEL SIGN -->
    <!-- U+20AA: "₪" NEW SHEQEL SIGN -->
    <string name="keylabel_for_currency_generic">&#x20AA;</string>
    <string name="keylabel_for_currency">&#x20AA;</string>
</resources>
</resources>
Loading