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

Commit 355eb0a2 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Keyguard: Update SPN/PLMN strings on locale changes"

parents 70302163 b12d2eb3
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -163,4 +163,8 @@
    <item quantity="one" msgid="3256893607561060649">"SIM 卡已被停用,需要输入 PUK 码才能继续使用。您还有<xliff:g id="NUMBER">%d</xliff:g>次尝试机会。如果仍然失败,SIM 卡将永远无法使用。有关详情,请联系您的运营商。"</item>
    <item quantity="other" msgid="5477305226026342036">"SIM 卡已被停用,需要输入 PUK 码才能继续使用。您还有<xliff:g id="NUMBER">%d</xliff:g>次尝试机会。如果仍然失败,SIM 卡将永远无法使用。有关详情,请联系您的运营商。"</item>
  </plurals>
    <string name="China_Mobile">中国移动</string>
    <string name="China_Unicom">中国联通</string>
    <string name="China_Telecom">中国电信</string>
    <string name="roamingTextSearching">"正在搜索服务"</string>
</resources>
+4 −0
Original line number Diff line number Diff line
@@ -154,4 +154,8 @@
    <string name="keyguard_transport_play_description" msgid="2924628863741150956">"[播放] 按鈕"</string>
    <string name="keyguard_transport_stop_description" msgid="3084179324810575787">"[停止] 按鈕"</string>
    <string name="keyguard_carrier_default" msgid="8700650403054042153">"沒有服務。"</string>
    <string name="China_Mobile">中國移動</string>
    <string name="China_Unicom">中國聯通</string>
    <string name="China_Telecom">中國電信</string>
    <string name="roamingTextSearching">"正在搜索服務"</string>
</resources>
+24 −0
Original line number Diff line number Diff line
@@ -90,4 +90,28 @@
        <item>TUV</item><!-- 8 -->
        <item>WXYZ</item><!-- 9 -->
    </string-array>

    <string-array name="origin_carrier_names" translateable="false">
        <item>CHINA\u0020\u0020MOBILE</item>
        <item>CHN-UNICOM</item>
        <item>China Mobile</item>
        <item>China Unicom</item>
        <item>China Telecom</item>
        <item>中国移动</item>
        <item>中国联通</item>
        <item>中国电信</item>
        <item>Searching for Service</item>
    </string-array>

    <string-array name="locale_carrier_names" translatable="false">
        <item>China_Mobile</item>
        <item>China_Unicom</item>
        <item>China_Mobile</item>
        <item>China_Unicom</item>
        <item>China_Telecom</item>
        <item>China_Mobile</item>
        <item>China_Unicom</item>
        <item>China_Telecom</item>
        <item>roamingTextSearching</item>
    </string-array>
</resources>
+3 −0
Original line number Diff line number Diff line
@@ -34,4 +34,7 @@

    <!-- display for radio tech -->
    <bool name="config_display_RAT">false</bool>

    <!-- monitor locale change -->
    <bool name="config_monitor_locale_change">false</bool>
</resources>
+5 −0
Original line number Diff line number Diff line
@@ -418,4 +418,9 @@
        <item quantity="one">SIM is now disabled. Enter PUK code to continue. You have <xliff:g id="number">%d</xliff:g> remaining attempt before SIM becomes permanently unusable. Contact carrier for details.</item>
        <item quantity="other">SIM is now disabled. Enter PUK code to continue. You have <xliff:g id="number">%d</xliff:g> remaining attempts before SIM becomes permanently unusable. Contact carrier for details.</item>
    </plurals>
    <!-- Carrier Name -->
    <string name="China_Mobile">China Mobile</string>
    <string name="China_Unicom">China Unicom</string>
    <string name="China_Telecom">China Telecom</string>
    <string name="roamingTextSearching">Searching for Service</string>
</resources>
Loading