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

Commit a14cfda8 authored by Alexandra Gherghina's avatar Alexandra Gherghina
Browse files

Adds missing accessibility string for accounts syncing

Change-Id: If84fd05c67d2bddfbbc197a6f961c10409744462
parent 62682096
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4211,6 +4211,8 @@
    <string name="accessibility_sync_enabled">Sync enabled</string>
    <!-- Content description of the disabled sync icon for accessibility. [CHAR LIMIT=NONE] -->
    <string name="accessibility_sync_disabled">Sync disabled</string>
    <!-- Content description of the in progress sync icon for accessibility. [CHAR LIMIT=NONE] -->
    <string name="accessibility_sync_in_progress">Syncing now</string>
    <!-- Content description of the disabled sync icon for accessibility. [CHAR LIMIT=NONE] -->
    <string name="accessibility_sync_error">Sync error.</string>
    <!-- Image description for the sync failed icon. -->
+2 −0
Original line number Diff line number Diff line
@@ -140,6 +140,8 @@ public class AccountPreference extends Preference {
                return getContext().getString(R.string.accessibility_sync_disabled);
            case SYNC_ERROR:
                return getContext().getString(R.string.accessibility_sync_error);
            case SYNC_IN_PROGRESS:
                return getContext().getString(R.string.accessibility_sync_in_progress);
            default:
                Log.e(TAG, "Unknown sync status: " + status);
                return getContext().getString(R.string.accessibility_sync_error);