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

Commit 9c893bc0 authored by Doris Ling's avatar Doris Ling
Browse files

Split the plurals strings with zero quantity.

- plurals string with 0 quantity does not work as expect. Remove the
zero quantity string from the plurals string and put it as a separate
string instead.

Bug: 36376411
Test: builds
Change-Id: I5ee532b35969326b03d73edd28e4a213fa90f899
parent f5960f55
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -6353,9 +6353,11 @@
    <!-- Notification Settings: Title for the option managing notifications per application. [CHAR LIMIT=30] -->
    <string name="app_notifications_title">Notifications</string>
    <!-- Notification Settings: Summary for the option managing notifications per application. [CHAR LIMIT=60] -->
    <plurals name="app_notifications_summary">
        <item quantity="zero">On for all apps</item>
    <!-- Notification Settings: Summary for managing notifications when notifications is on for all apps. [CHAR LIMIT=60] -->
    <string name="app_notifications_summary_on">On for all apps</string>
    <!-- Notification Settings: Summary for managing notifications when notifications is off for some apps. [CHAR LIMIT=60] -->
    <plurals name="app_notifications_summary_off">
        <item quantity="one">Off for 1 app</item>
        <item quantity="other">Off for <xliff:g id="off_count" example="10">%d</xliff:g> apps</item>
    </plurals>
@@ -7010,9 +7012,11 @@
    <!-- Summary of an app that can open several domain's URLs [CHAR LIMIT=45] -->
    <string name="domain_urls_summary_some">Open <xliff:g id="domain" example="mail.google.com">%s</xliff:g> and other URLs</string>
    <!-- Description of settings item that leads to list of all apps that can open web links [CHAR LIMIT=NONE] -->
    <plurals name="domain_urls_apps_summary">
        <item quantity="zero">No app opening supported links</item>
    <!-- Summary of open web links settings when no app can open supported links [CHAR LIMIT=NONE] -->
    <string name="domain_urls_apps_summary_off">No app opening supported links</string>
    <!-- Summary of open web links settings when at least one app can open supported links [CHAR LIMIT=NONE] -->
    <plurals name="domain_urls_apps_summary_on">
        <item quantity="one">One app opening supported links</item>
        <item quantity="other"><xliff:g id="count" example="10">%d</xliff:g> apps opening supported links</item>
    </plurals>