Merge "Remove WRITE_MEDIA_STORAGE from car dev options" into qt-qpr1-dev
diff --git a/car-bugreportd/main.cpp b/car-bugreportd/main.cpp
index ebb2d5f..581bb03 100644
--- a/car-bugreportd/main.cpp
+++ b/car-bugreportd/main.cpp
@@ -61,9 +61,10 @@
 constexpr const int kMaxDumpstateConnectAttempts = 20;
 // Wait time between connect attempts
 constexpr const int kWaitTimeBetweenConnectAttemptsInSec = 1;
-// Wait time for dumpstate. No timeout in dumpstate is longer than 60 seconds. Choose
-// a value that is twice longer.
-constexpr const int kDumpstateTimeoutInSec = 120;
+// Wait time for dumpstate. Set a timeout so that if nothing is read in 10 minutes, we'll stop
+// reading and quit. No timeout in dumpstate is longer than 60 seconds, so this gives lots of leeway
+// in case of unforeseen time outs.
+constexpr const int kDumpstateTimeoutInSec = 600;
 // The prefix for screenshot filename in the generated zip file.
 constexpr const char* kScreenshotPrefix = "/screenshot";
 
@@ -197,6 +198,7 @@
 bool copyFile(const std::string& zip_path, int output_socket) {
     android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(zip_path.c_str(), O_RDONLY)));
     if (fd == -1) {
+        ALOGE("Failed to open zip file %s.", zip_path.c_str());
         return false;
     }
     while (1) {
@@ -206,6 +208,7 @@
             break;
         }
         if (bytes_copied == -1) {
+            ALOGE("Failed to copy zip file %s to the output_socket.", zip_path.c_str());
             return false;
         }
     }
@@ -239,13 +242,14 @@
 
     std::string line;
     std::string last_nonempty_line;
+    char buffer[65536];
     while (true) {
-        char buffer[65536];
         ssize_t bytes_read = copyTo(s, progress_socket, buffer, sizeof(buffer));
         if (bytes_read == 0) {
             break;
         }
         if (bytes_read == -1) {
+            ALOGE("Failed to copy progress to the progress_socket.");
             return false;
         }
         // Process the buffer line by line. this is needed for the filename.
@@ -468,12 +472,12 @@
     bool ret_val = doBugreport(progress_socket, &bytes_written, &zip_path);
     close(progress_socket);
 
-    int output_socket = openSocket(kCarBrOutputSocket);
-    if (output_socket != -1 && ret_val) {
-        ret_val = copyFile(zip_path, output_socket);
-    }
-    if (output_socket != -1) {
-        close(output_socket);
+    if (ret_val) {
+        int output_socket = openSocket(kCarBrOutputSocket);
+        if (output_socket != -1) {
+            ret_val = copyFile(zip_path, output_socket);
+            close(output_socket);
+        }
     }
 
     int extra_output_socket = openSocket(kCarBrExtraOutputSocket);
diff --git a/car-lib/src/android/car/Car.java b/car-lib/src/android/car/Car.java
index 1912803..cc18688 100644
--- a/car-lib/src/android/car/Car.java
+++ b/car-lib/src/android/car/Car.java
@@ -16,11 +16,16 @@
 
 package android.car;
 
+import static android.car.CarLibLog.TAG_CAR;
+
 import android.annotation.IntDef;
+import android.annotation.NonNull;
 import android.annotation.Nullable;
 import android.annotation.SdkConstant;
 import android.annotation.SdkConstant.SdkConstantType;
 import android.annotation.SystemApi;
+import android.app.Activity;
+import android.app.Service;
 import android.car.cluster.CarInstrumentClusterManager;
 import android.car.cluster.ClusterActivityState;
 import android.car.content.pm.CarPackageManager;
@@ -57,9 +62,12 @@
 
 import com.android.internal.annotations.GuardedBy;
 import com.android.internal.annotations.VisibleForTesting;
+import com.android.internal.util.Preconditions;
 
+import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
 import java.util.HashMap;
 
 /**
@@ -607,22 +615,84 @@
     public static final String CAR_EXTRA_CLUSTER_ACTIVITY_STATE =
             "android.car.cluster.ClusterActivityState";
 
+
+    /**
+     * Callback to notify the Lifecycle of car service.
+     *
+     * <p>Access to car service should happen
+     * after {@link CarServiceLifecycleListener#onLifecycleChanged(Car, boolean)} call with
+     * {@code ready} set {@code true}.</p>
+     *
+     * <p>When {@link CarServiceLifecycleListener#onLifecycleChanged(Car, boolean)} is
+     * called with ready set to false, access to car service should stop until car service is ready
+     * again from {@link CarServiceLifecycleListener#onLifecycleChanged(Car, boolean)} call
+     * with {@code ready} set to {@code true}.</p>
+     * @hide
+     */
+    public interface CarServiceLifecycleListener {
+        /**
+         * Car service has gone through status change.
+         *
+         * <p>This is always called in the main thread context.</p>
+         *
+         * @param car {@code Car} object that was originally associated with this lister from
+         *            {@link #createCar(Context, Handler, long, Car.CarServiceLifecycleListener)}
+         *            call.
+         * @param ready When {@code true, car service is ready and all accesses are ok.
+         *              Otherwise car service has crashed or killed and will be restarted.
+         */
+        void onLifecycleChanged(@NonNull Car car, boolean ready);
+    }
+
+    /**
+     * {@link #createCar(Context, Handler, long, CarServiceLifecycleListener)}'s
+     * waitTimeoutMs value to use to wait forever inside the call until car service is ready.
+     * @hide
+     */
+    public static final long CAR_WAIT_TIMEOUT_WAIT_FOREVER = -1;
+
+    /**
+     * {@link #createCar(Context, Handler, long, CarServiceLifecycleListener)}'s
+     * waitTimeoutMs value to use to skip any waiting inside the call.
+     * @hide
+     */
+    public static final long CAR_WAIT_TIMEOUT_DO_NOT_WAIT = 0;
+
     private static final long CAR_SERVICE_BIND_RETRY_INTERVAL_MS = 500;
     private static final long CAR_SERVICE_BIND_MAX_RETRY = 20;
 
     private static final long CAR_SERVICE_BINDER_POLLING_INTERVAL_MS = 50;
     private static final long CAR_SERVICE_BINDER_POLLING_MAX_RETRY = 100;
 
-    private final Context mContext;
-    @GuardedBy("this")
-    private ICar mService;
-    private final boolean mOwnsService;
     private static final int STATE_DISCONNECTED = 0;
     private static final int STATE_CONNECTING = 1;
     private static final int STATE_CONNECTED = 2;
-    @GuardedBy("this")
+
+    /** @hide */
+    @Retention(RetentionPolicy.SOURCE)
+    @IntDef(prefix = "STATE_", value = {
+            STATE_DISCONNECTED,
+            STATE_CONNECTING,
+            STATE_CONNECTED,
+    })
+    @Target({ElementType.TYPE_USE})
+    public @interface StateTypeEnum {}
+
+    private static final boolean DBG = false;
+
+    private final Context mContext;
+
+    private final Object mLock = new Object();
+
+    @GuardedBy("mLock")
+    private ICar mService;
+    @GuardedBy("mLock")
+    private boolean mServiceBound;
+
+    @GuardedBy("mLock")
+    @StateTypeEnum
     private int mConnectionState;
-    @GuardedBy("this")
+    @GuardedBy("mLock")
     private int mConnectionRetryCount;
 
     private final Runnable mConnectionRetryRunnable = new Runnable() {
@@ -642,33 +712,56 @@
 
     private final ServiceConnection mServiceConnectionListener =
             new ServiceConnection () {
+        @Override
         public void onServiceConnected(ComponentName name, IBinder service) {
-            synchronized (Car.this) {
-                mService = ICar.Stub.asInterface(service);
+            synchronized (mLock) {
+                ICar newService = ICar.Stub.asInterface(service);
+                if (newService == null) {
+                    Log.wtf(TAG_CAR, "null binder service", new RuntimeException());
+                    return;  // should not happen.
+                }
+                if (mService != null && mService.asBinder().equals(newService.asBinder())) {
+                    // already connected.
+                    return;
+                }
                 mConnectionState = STATE_CONNECTED;
+                mService = newService;
             }
-            if (mServiceConnectionListenerClient != null) {
+            if (mStatusChangeCallback != null) {
+                mStatusChangeCallback.onLifecycleChanged(Car.this, true);
+            } else if (mServiceConnectionListenerClient != null) {
                 mServiceConnectionListenerClient.onServiceConnected(name, service);
             }
         }
 
+        @Override
         public void onServiceDisconnected(ComponentName name) {
-            synchronized (Car.this) {
+            synchronized (mLock) {
                 if (mConnectionState  == STATE_DISCONNECTED) {
+                    // can happen when client calls disconnect before onServiceDisconnected call.
                     return;
                 }
+                handleCarDisconnectLocked();
             }
-            // unbind explicitly and set connectionState to STATE_DISCONNECTED here.
-            disconnect();
-            if (mServiceConnectionListenerClient != null) {
+            if (mStatusChangeCallback != null) {
+                mStatusChangeCallback.onLifecycleChanged(Car.this, false);
+            } else if (mServiceConnectionListenerClient != null) {
                 mServiceConnectionListenerClient.onServiceDisconnected(name);
+            } else {
+                // This client does not handle car service restart, so should be terminated.
+                finishClient();
             }
         }
     };
 
+    @Nullable
     private final ServiceConnection mServiceConnectionListenerClient;
-    private final Object mCarManagerLock = new Object();
-    @GuardedBy("mCarManagerLock")
+
+    /** Can be added after ServiceManager.getService call */
+    @Nullable
+    private final CarServiceLifecycleListener mStatusChangeCallback;
+
+    @GuardedBy("mLock")
     private final HashMap<String, CarManagerBase> mServiceMap = new HashMap<>();
 
     /** Handler for generic event dispatching. */
@@ -691,13 +784,14 @@
     public static Car createCar(Context context, ServiceConnection serviceConnectionListener,
             @Nullable Handler handler) {
         if (!context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE)) {
-            Log.e(CarLibLog.TAG_CAR, "FEATURE_AUTOMOTIVE not declared while android.car is used");
+            Log.e(TAG_CAR, "FEATURE_AUTOMOTIVE not declared while android.car is used");
             return null;
         }
         try {
-          return new Car(context, serviceConnectionListener, handler);
+            return new Car(context, /* service= */ null , serviceConnectionListener,
+                    /* statusChangeListener= */ null, handler);
         } catch (IllegalArgumentException e) {
-          // Expected when car service loader is not available.
+            // Expected when car service loader is not available.
         }
         return null;
     }
@@ -746,7 +840,8 @@
             service = ServiceManager.getService(CAR_SERVICE_BINDER_SERVICE_NAME);
             if (car == null) {
                 // service can be still null. The constructor is safe for null service.
-                car = new Car(context, ICar.Stub.asInterface(service), handler);
+                car = new Car(context, ICar.Stub.asInterface(service),
+                        null /*serviceConnectionListener*/, null /*statusChangeListener*/, handler);
             }
             if (service != null) {
                 if (!started) {  // specialization for most common case.
@@ -760,7 +855,7 @@
             }
             retryCount++;
             if (retryCount > CAR_SERVICE_BINDER_POLLING_MAX_RETRY) {
-                Log.e(CarLibLog.TAG_CAR, "cannot get car_service, waited for car service (ms):"
+                Log.e(TAG_CAR, "cannot get car_service, waited for car service (ms):"
                                 + CAR_SERVICE_BINDER_POLLING_INTERVAL_MS
                                 * CAR_SERVICE_BINDER_POLLING_MAX_RETRY,
                         new RuntimeException());
@@ -778,7 +873,7 @@
         synchronized (car) {
             if (car.mService == null) {
                 car.mService = ICar.Stub.asInterface(service);
-                Log.w(CarLibLog.TAG_CAR,
+                Log.w(TAG_CAR,
                         "waited for car_service (ms):"
                                 + CAR_SERVICE_BINDER_POLLING_INTERVAL_MS * retryCount,
                         new RuntimeException());
@@ -788,24 +883,141 @@
         return car;
     }
 
-    private Car(Context context, ServiceConnection serviceConnectionListener,
-            @Nullable Handler handler) {
-        mContext = context;
-        mEventHandler = determineEventHandler(handler);
-        mMainThreadEventHandler = determineMainThreadEventHandler(mEventHandler);
-
-        mService = null;
-        mConnectionState = STATE_DISCONNECTED;
-        mOwnsService = true;
-        mServiceConnectionListenerClient = serviceConnectionListener;
-    }
-
-
     /**
-     * Car constructor when ICar binder is already available.
+     * Creates new {@link Car} object with {@link CarServiceLifecycleListener}.
+     *
+     * <p> If car service is ready inside this call and if the caller is running in the main thread,
+     * {@link CarServiceLifecycleListener#onLifecycleChanged(Car, boolean)} will be called
+     * with ready set to be true. Otherwise,
+     * {@link CarServiceLifecycleListener#onLifecycleChanged(Car, boolean)} will be called
+     * from the main thread later. </p>
+     *
+     * <p>This call can block up to specified waitTimeoutMs to wait for car service to be ready.
+     * If car service is not ready within the given time, it will return a Car instance in
+     * disconnected state. Blocking main thread forever can lead into getting ANR (Application Not
+     * Responding) killing from system and should not be used if the app is supposed to survive
+     * across the crash / restart of car service. It can be still useful in case the app cannot do
+     * anything without car service being ready. In any waiting, if the thread is getting
+     * interrupted, it will return immediately.
+     * </p>
+     *
+     * <p>Note that returned {@link Car} object is not guaranteed to be connected when there is
+     * a limited timeout. Regardless of returned car being connected or not, it is recommended to
+     * implement all car related initialization inside
+     * {@link CarServiceLifecycleListener#onLifecycleChanged(Car, boolean)} and avoid the
+     * needs to check if returned {@link Car} is connected or not from returned {@link Car}.</p>
+     *
+     * @param handler dispatches all Car*Manager events to this Handler. Exception is
+     *                {@link CarServiceLifecycleListener} which will be always dispatched to main
+     *                thread. Passing null leads into dispatching all Car*Manager callbacks to main
+     *                thread as well.
+     * @param waitTimeoutMs Setting this to {@link #CAR_WAIT_TIMEOUT_DO_NOT_WAIT} will guarantee
+     *                      that the API does not wait for the car service at all. Setting this to
+     *                      to {@link #CAR_WAIT_TIMEOUT_WAIT_FOREVER} will block the call forever
+     *                      until the car service is ready. Setting any positive value will be
+     *                      interpreted as timeout value.
+     *
      * @hide
      */
-    public Car(Context context, @Nullable ICar service, @Nullable Handler handler) {
+    @NonNull
+    public static Car createCar(@NonNull Context context,
+            @Nullable Handler handler, long waitTimeoutMs,
+            @NonNull CarServiceLifecycleListener statusChangeListener) {
+        Preconditions.checkNotNull(context);
+        Preconditions.checkNotNull(statusChangeListener);
+        Car car = null;
+        IBinder service = null;
+        boolean started = false;
+        int retryCount = 0;
+        long maxRetryCount = 0;
+        if (waitTimeoutMs > 0) {
+            maxRetryCount = waitTimeoutMs / CAR_SERVICE_BINDER_POLLING_INTERVAL_MS;
+            // at least wait once if it is positive value.
+            if (maxRetryCount == 0) {
+                maxRetryCount = 1;
+            }
+        }
+        boolean isMainThread = Looper.myLooper() == Looper.getMainLooper();
+        while (true) {
+            service = ServiceManager.getService(CAR_SERVICE_BINDER_SERVICE_NAME);
+            if (car == null) {
+                // service can be still null. The constructor is safe for null service.
+                car = new Car(context, ICar.Stub.asInterface(service), null, statusChangeListener,
+                        handler);
+            }
+            if (service != null) {
+                if (!started) {  // specialization for most common case : car service already ready
+                    car.dispatchCarReadyToMainThread(isMainThread);
+                    // Needs this for CarServiceLifecycleListener. Note that ServiceConnection
+                    // will skip the callback as valid mService is set already.
+                    car.startCarService();
+                    return car;
+                }
+                // service available after starting.
+                break;
+            }
+            if (!started) {
+                car.startCarService();
+                started = true;
+            }
+            retryCount++;
+            if (waitTimeoutMs < 0 && retryCount >= CAR_SERVICE_BINDER_POLLING_MAX_RETRY
+                    && retryCount % CAR_SERVICE_BINDER_POLLING_MAX_RETRY == 0) {
+                // Log warning if car service is not alive even for waiting forever case.
+                Log.w(TAG_CAR, "car_service not ready, waited for car service (ms):"
+                                + retryCount * CAR_SERVICE_BINDER_POLLING_INTERVAL_MS,
+                        new RuntimeException());
+            } else if (waitTimeoutMs >= 0 && retryCount > maxRetryCount) {
+                if (waitTimeoutMs > 0) {
+                    Log.w(TAG_CAR, "car_service not ready, waited for car service (ms):"
+                                    + waitTimeoutMs,
+                            new RuntimeException());
+                }
+                return car;
+            }
+
+            try {
+                Thread.sleep(CAR_SERVICE_BINDER_POLLING_INTERVAL_MS);
+            } catch (InterruptedException e) {
+                Thread.currentThread().interrupt();
+                Log.w(TAG_CAR, "interrupted", new RuntimeException());
+                return car;
+            }
+        }
+        // Can be accessed from mServiceConnectionListener in main thread.
+        synchronized (car.mLock) {
+            Log.w(TAG_CAR,
+                    "waited for car_service (ms):"
+                            + retryCount * CAR_SERVICE_BINDER_POLLING_INTERVAL_MS,
+                    new RuntimeException());
+            // ServiceConnection has handled everything.
+            if (car.mService != null) {
+                return car;
+            }
+            // mService check in ServiceConnection prevents calling
+            // onLifecycleChanged. So onLifecycleChanged should be called explicitly
+            // but do it outside lock.
+            car.mService = ICar.Stub.asInterface(service);
+            car.mConnectionState = STATE_CONNECTED;
+        }
+        car.dispatchCarReadyToMainThread(isMainThread);
+        return car;
+    }
+
+    private void dispatchCarReadyToMainThread(boolean isMainThread) {
+        if (isMainThread) {
+            mStatusChangeCallback.onLifecycleChanged(this, true);
+        } else {
+            // should dispatch to main thread.
+            mMainThreadEventHandler.post(
+                    () -> mStatusChangeCallback.onLifecycleChanged(this, true));
+        }
+    }
+
+    private Car(Context context, @Nullable ICar service,
+            @Nullable ServiceConnection serviceConnectionListener,
+            @Nullable CarServiceLifecycleListener statusChangeListener,
+            @Nullable Handler handler) {
         mContext = context;
         mEventHandler = determineEventHandler(handler);
         mMainThreadEventHandler = determineMainThreadEventHandler(mEventHandler);
@@ -813,12 +1025,20 @@
         mService = service;
         if (service != null) {
             mConnectionState = STATE_CONNECTED;
-            mOwnsService = false;
         } else {
             mConnectionState = STATE_DISCONNECTED;
-            mOwnsService = true;
         }
-        mServiceConnectionListenerClient = null;
+        mServiceConnectionListenerClient = serviceConnectionListener;
+        mStatusChangeCallback = statusChangeListener;
+    }
+
+    /**
+     * Car constructor when ICar binder is already available. The binder can be null.
+     * @hide
+     */
+    public Car(Context context, @Nullable ICar service, @Nullable Handler handler) {
+        this(context, service, null /*serviceConnectionListener*/, null /*statusChangeListener*/,
+                handler);
     }
 
     private static Handler determineMainThreadEventHandler(Handler eventHandler) {
@@ -844,7 +1064,7 @@
      */
     @Deprecated
     public void connect() throws IllegalStateException {
-        synchronized (this) {
+        synchronized (mLock) {
             if (mConnectionState != STATE_DISCONNECTED) {
                 throw new IllegalStateException("already connected or connecting");
             }
@@ -853,25 +1073,30 @@
         }
     }
 
+    private void handleCarDisconnectLocked() {
+        if (mConnectionState == STATE_DISCONNECTED) {
+            // can happen when client calls disconnect with onServiceDisconnected already called.
+            return;
+        }
+        mEventHandler.removeCallbacks(mConnectionRetryRunnable);
+        mMainThreadEventHandler.removeCallbacks(mConnectionRetryFailedRunnable);
+        mConnectionRetryCount = 0;
+        tearDownCarManagersLocked();
+        mService = null;
+        mConnectionState = STATE_DISCONNECTED;
+    }
+
     /**
      * Disconnect from car service. This can be called while disconnected. Once disconnect is
      * called, all Car*Managers from this instance becomes invalid, and
      * {@link Car#getCarManager(String)} will return different instance if it is connected again.
      */
     public void disconnect() {
-        synchronized (this) {
-            if (mConnectionState == STATE_DISCONNECTED) {
-                return;
-            }
-            mEventHandler.removeCallbacks(mConnectionRetryRunnable);
-            mMainThreadEventHandler.removeCallbacks(mConnectionRetryFailedRunnable);
-            mConnectionRetryCount = 0;
-            tearDownCarManagers();
-            mService = null;
-            mConnectionState = STATE_DISCONNECTED;
-
-            if (mOwnsService) {
+        synchronized (mLock) {
+            handleCarDisconnectLocked();
+            if (mServiceBound) {
                 mContext.unbindService(mServiceConnectionListener);
+                mServiceBound = false;
             }
         }
     }
@@ -882,7 +1107,7 @@
      * @return
      */
     public boolean isConnected() {
-        synchronized (this) {
+        synchronized (mLock) {
             return mService != null;
         }
     }
@@ -892,7 +1117,7 @@
      * @return
      */
     public boolean isConnecting() {
-        synchronized (this) {
+        synchronized (mLock) {
             return mConnectionState == STATE_CONNECTING;
         }
     }
@@ -914,27 +1139,29 @@
     @Nullable
     public Object getCarManager(String serviceName) {
         CarManagerBase manager;
-        ICar service = getICarOrThrow();
-        synchronized (mCarManagerLock) {
+        synchronized (mLock) {
+            if (mService == null) {
+                Log.w(TAG_CAR, "getCarManager not working while car service not ready");
+                return null;
+            }
             manager = mServiceMap.get(serviceName);
             if (manager == null) {
                 try {
-                    IBinder binder = service.getCarService(serviceName);
+                    IBinder binder = mService.getCarService(serviceName);
                     if (binder == null) {
-                        Log.w(CarLibLog.TAG_CAR, "getCarManager could not get binder for service:" +
-                                serviceName);
+                        Log.w(TAG_CAR, "getCarManager could not get binder for service:"
+                                + serviceName);
                         return null;
                     }
                     manager = createCarManager(serviceName, binder);
                     if (manager == null) {
-                        Log.w(CarLibLog.TAG_CAR,
-                                "getCarManager could not create manager for service:" +
-                                        serviceName);
+                        Log.w(TAG_CAR, "getCarManager could not create manager for service:"
+                                        + serviceName);
                         return null;
                     }
                     mServiceMap.put(serviceName, manager);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
             }
         }
@@ -950,84 +1177,139 @@
         return CONNECTION_TYPE_EMBEDDED;
     }
 
+    /** @hide */
+    Context getContext() {
+        return mContext;
+    }
+
+    /** @hide */
+    Handler getEventHandler() {
+        return mEventHandler;
+    }
+
+    /** @hide */
+    <T> T handleRemoteExceptionFromCarService(RemoteException e, T returnValue) {
+        handleRemoteExceptionFromCarService(e);
+        return returnValue;
+    }
+
+    /** @hide */
+    void handleRemoteExceptionFromCarService(RemoteException e) {
+        Log.w(TAG_CAR, "Car service has crashed", e);
+    }
+
+
+    private void finishClient() {
+        if (mContext == null) {
+            throw new IllegalStateException("Car service has crashed, null Context");
+        }
+        if (mContext instanceof Activity) {
+            Activity activity = (Activity) mContext;
+            if (!activity.isFinishing()) {
+                Log.w(TAG_CAR, "Car service crashed, client not handling it, finish Activity");
+                activity.finish();
+            }
+            return;
+        } else if (mContext instanceof Service) {
+            Service service = (Service) mContext;
+            throw new RuntimeException("Car service has crashed, client not handle it:"
+                    + service.getPackageName() + "," + service.getClass().getSimpleName());
+        }
+        throw new IllegalStateException("Car service crashed, client not handling it.");
+    }
+
+    /** @hide */
+    public static <T> T handleRemoteExceptionFromCarService(Service service, RemoteException e,
+            T returnValue) {
+        handleRemoteExceptionFromCarService(service, e);
+        return returnValue;
+    }
+
+    /** @hide */
+    public static  void handleRemoteExceptionFromCarService(Service service, RemoteException e) {
+        Log.w(TAG_CAR,
+                "Car service has crashed, client:" + service.getPackageName() + ","
+                        + service.getClass().getSimpleName(), e);
+        service.stopSelf();
+    }
+
     @Nullable
     private CarManagerBase createCarManager(String serviceName, IBinder binder) {
         CarManagerBase manager = null;
         switch (serviceName) {
             case AUDIO_SERVICE:
-                manager = new CarAudioManager(binder, mContext, mEventHandler);
+                manager = new CarAudioManager(this, binder);
                 break;
             case SENSOR_SERVICE:
-                manager = new CarSensorManager(binder, mContext, mEventHandler);
+                manager = new CarSensorManager(this, binder);
                 break;
             case INFO_SERVICE:
-                manager = new CarInfoManager(binder);
+                manager = new CarInfoManager(this, binder);
                 break;
             case APP_FOCUS_SERVICE:
-                manager = new CarAppFocusManager(binder, mEventHandler);
+                manager = new CarAppFocusManager(this, binder);
                 break;
             case PACKAGE_SERVICE:
-                manager = new CarPackageManager(binder, mContext);
+                manager = new CarPackageManager(this, binder);
                 break;
             case CAR_NAVIGATION_SERVICE:
-                manager = new CarNavigationStatusManager(binder);
+                manager = new CarNavigationStatusManager(this, binder);
                 break;
             case CABIN_SERVICE:
-                manager = new CarCabinManager(binder, mContext, mEventHandler);
+                manager = new CarCabinManager(this, binder);
                 break;
             case DIAGNOSTIC_SERVICE:
-                manager = new CarDiagnosticManager(binder, mContext, mEventHandler);
+                manager = new CarDiagnosticManager(this, binder);
                 break;
             case HVAC_SERVICE:
-                manager = new CarHvacManager(binder, mContext, mEventHandler);
+                manager = new CarHvacManager(this, binder);
                 break;
             case POWER_SERVICE:
-                manager = new CarPowerManager(binder, mContext, mEventHandler);
+                manager = new CarPowerManager(this, binder);
                 break;
             case PROJECTION_SERVICE:
-                manager = new CarProjectionManager(binder, mEventHandler);
+                manager = new CarProjectionManager(this, binder);
                 break;
             case PROPERTY_SERVICE:
-                manager = new CarPropertyManager(ICarProperty.Stub.asInterface(binder),
-                    mEventHandler);
+                manager = new CarPropertyManager(this, ICarProperty.Stub.asInterface(binder));
                 break;
             case VENDOR_EXTENSION_SERVICE:
-                manager = new CarVendorExtensionManager(binder, mEventHandler);
+                manager = new CarVendorExtensionManager(this, binder);
                 break;
             case CAR_INSTRUMENT_CLUSTER_SERVICE:
-                manager = new CarInstrumentClusterManager(binder, mEventHandler);
+                manager = new CarInstrumentClusterManager(this, binder);
                 break;
             case TEST_SERVICE:
                 /* CarTestManager exist in static library. So instead of constructing it here,
                  * only pass binder wrapper so that CarTestManager can be constructed outside. */
-                manager = new CarTestManagerBinderWrapper(binder);
+                manager = new CarTestManagerBinderWrapper(this, binder);
                 break;
             case VMS_SUBSCRIBER_SERVICE:
-                manager = new VmsSubscriberManager(binder);
+                manager = new VmsSubscriberManager(this, binder);
                 break;
             case BLUETOOTH_SERVICE:
-                manager = new CarBluetoothManager(binder, mContext);
+                manager = new CarBluetoothManager(this, binder);
                 break;
             case STORAGE_MONITORING_SERVICE:
-                manager = new CarStorageMonitoringManager(binder, mEventHandler);
+                manager = new CarStorageMonitoringManager(this, binder);
                 break;
             case CAR_DRIVING_STATE_SERVICE:
-                manager = new CarDrivingStateManager(binder, mContext, mEventHandler);
+                manager = new CarDrivingStateManager(this, binder);
                 break;
             case CAR_UX_RESTRICTION_SERVICE:
-                manager = new CarUxRestrictionsManager(binder, mContext, mEventHandler);
+                manager = new CarUxRestrictionsManager(this, binder);
                 break;
             case CAR_CONFIGURATION_SERVICE:
-                manager = new CarConfigurationManager(binder);
+                manager = new CarConfigurationManager(this, binder);
                 break;
             case CAR_TRUST_AGENT_ENROLLMENT_SERVICE:
-                manager = new CarTrustAgentEnrollmentManager(binder, mContext, mEventHandler);
+                manager = new CarTrustAgentEnrollmentManager(this, binder);
                 break;
             case CAR_MEDIA_SERVICE:
-                manager = new CarMediaManager(binder);
+                manager = new CarMediaManager(this, binder);
                 break;
             case CAR_BUGREPORT_SERVICE:
-                manager = new CarBugreportManager(binder, mContext);
+                manager = new CarBugreportManager(this, binder);
                 break;
             default:
                 break;
@@ -1041,33 +1323,30 @@
         intent.setAction(Car.CAR_SERVICE_INTERFACE_NAME);
         boolean bound = mContext.bindServiceAsUser(intent, mServiceConnectionListener,
                 Context.BIND_AUTO_CREATE, UserHandle.CURRENT_OR_SELF);
-        if (!bound) {
-            mConnectionRetryCount++;
-            if (mConnectionRetryCount > CAR_SERVICE_BIND_MAX_RETRY) {
-                Log.w(CarLibLog.TAG_CAR, "cannot bind to car service after max retry");
-                mMainThreadEventHandler.post(mConnectionRetryFailedRunnable);
+        synchronized (mLock) {
+            if (!bound) {
+                mConnectionRetryCount++;
+                if (mConnectionRetryCount > CAR_SERVICE_BIND_MAX_RETRY) {
+                    Log.w(TAG_CAR, "cannot bind to car service after max retry");
+                    mMainThreadEventHandler.post(mConnectionRetryFailedRunnable);
+                } else {
+                    mEventHandler.postDelayed(mConnectionRetryRunnable,
+                            CAR_SERVICE_BIND_RETRY_INTERVAL_MS);
+                }
             } else {
-                mEventHandler.postDelayed(mConnectionRetryRunnable,
-                        CAR_SERVICE_BIND_RETRY_INTERVAL_MS);
+                mEventHandler.removeCallbacks(mConnectionRetryRunnable);
+                mMainThreadEventHandler.removeCallbacks(mConnectionRetryFailedRunnable);
+                mConnectionRetryCount = 0;
+                mServiceBound = true;
             }
-        } else {
-            mConnectionRetryCount = 0;
         }
     }
 
-    private synchronized ICar getICarOrThrow() throws IllegalStateException {
-        if (mService == null) {
-            throw new IllegalStateException("not connected");
+    private void tearDownCarManagersLocked() {
+        // All disconnected handling should be only doing its internal cleanup.
+        for (CarManagerBase manager: mServiceMap.values()) {
+            manager.onCarDisconnected();
         }
-        return mService;
-    }
-
-    private void tearDownCarManagers() {
-        synchronized (mCarManagerLock) {
-            for (CarManagerBase manager: mServiceMap.values()) {
-                manager.onCarDisconnected();
-            }
-            mServiceMap.clear();
-        }
+        mServiceMap.clear();
     }
 }
diff --git a/car-lib/src/android/car/CarAppFocusManager.java b/car-lib/src/android/car/CarAppFocusManager.java
index ff0c25d..b8936af 100644
--- a/car-lib/src/android/car/CarAppFocusManager.java
+++ b/car-lib/src/android/car/CarAppFocusManager.java
@@ -17,7 +17,6 @@
 package android.car;
 
 import android.annotation.IntDef;
-import android.os.Handler;
 import android.os.IBinder;
 import android.os.RemoteException;
 
@@ -35,7 +34,7 @@
  * should run in the system, and other app setting the flag for the matching app should
  * lead into other app to stop.
  */
-public final class CarAppFocusManager implements CarManagerBase {
+public final class CarAppFocusManager extends CarManagerBase {
     /**
      * Listener to get notification for app getting information on application type status changes.
      */
@@ -114,7 +113,6 @@
     public @interface AppFocusRequestResult {}
 
     private final IAppFocus mService;
-    private final Handler mHandler;
     private final Map<OnAppFocusChangedListener, IAppFocusListenerImpl> mChangeBinders =
             new HashMap<>();
     private final Map<OnAppFocusOwnershipCallback, IAppFocusOwnershipCallbackImpl>
@@ -123,9 +121,9 @@
     /**
      * @hide
      */
-    CarAppFocusManager(IBinder service, Handler handler) {
+    CarAppFocusManager(Car car, IBinder service) {
+        super(car);
         mService = IAppFocus.Stub.asInterface(service);
-        mHandler = handler;
     }
 
     /**
@@ -149,7 +147,7 @@
         try {
             mService.registerFocusListener(binder, appType);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -169,7 +167,8 @@
         try {
             mService.unregisterFocusListener(binder, appType);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
+            // continue for local clean-up
         }
         synchronized (this) {
             binder.removeAppType(appType);
@@ -197,7 +196,7 @@
                 mService.unregisterFocusListener(binder, appType);
             }
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -209,7 +208,7 @@
         try {
             return mService.getActiveAppTypes();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, new int[0]);
         }
     }
 
@@ -229,7 +228,7 @@
         try {
             return mService.isOwningFocus(binder, appType);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -261,7 +260,7 @@
         try {
             return mService.requestAppFocus(binder, appType);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, APP_FOCUS_REQUEST_FAILED);
         }
     }
 
@@ -286,7 +285,8 @@
         try {
             mService.abandonAppFocus(binder, appType);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
+            // continue for local clean-up
         }
         synchronized (this) {
             binder.removeAppType(appType);
@@ -314,7 +314,7 @@
                 mService.abandonAppFocus(binder, appType);
             }
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -359,11 +359,8 @@
             if (manager == null || listener == null) {
                 return;
             }
-            manager.mHandler.post(new Runnable() {
-                @Override
-                public void run() {
-                    listener.onAppFocusChanged(appType, active);
-                }
+            manager.getEventHandler().post(() -> {
+                listener.onAppFocusChanged(appType, active);
             });
         }
     }
@@ -403,11 +400,8 @@
             if (manager == null || callback == null) {
                 return;
             }
-            manager.mHandler.post(new Runnable() {
-                @Override
-                public void run() {
-                    callback.onAppFocusOwnershipLost(appType);
-                }
+            manager.getEventHandler().post(() -> {
+                callback.onAppFocusOwnershipLost(appType);
             });
         }
 
@@ -418,11 +412,8 @@
             if (manager == null || callback == null) {
                 return;
             }
-            manager.mHandler.post(new Runnable() {
-                @Override
-                public void run() {
-                    callback.onAppFocusOwnershipGranted(appType);
-                }
+            manager.getEventHandler().post(() -> {
+                callback.onAppFocusOwnershipGranted(appType);
             });
         }
     }
diff --git a/car-lib/src/android/car/CarBluetoothManager.java b/car-lib/src/android/car/CarBluetoothManager.java
index c85cec7..c8e46ca 100644
--- a/car-lib/src/android/car/CarBluetoothManager.java
+++ b/car-lib/src/android/car/CarBluetoothManager.java
@@ -17,7 +17,6 @@
 
 import android.Manifest;
 import android.annotation.RequiresPermission;
-import android.content.Context;
 import android.os.IBinder;
 import android.os.RemoteException;
 
@@ -26,9 +25,8 @@
  *
  * @hide
  */
-public final class CarBluetoothManager implements CarManagerBase {
+public final class CarBluetoothManager extends CarManagerBase {
     private static final String TAG = "CarBluetoothManager";
-    private final Context mContext;
     private final ICarBluetooth mService;
 
     /**
@@ -50,7 +48,7 @@
         try {
             mService.connectDevices();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -59,8 +57,8 @@
      *
      * @hide
      */
-    public CarBluetoothManager(IBinder service, Context context) {
-        mContext = context;
+    public CarBluetoothManager(Car car, IBinder service) {
+        super(car);
         mService = ICarBluetooth.Stub.asInterface(service);
     }
 
diff --git a/car-lib/src/android/car/CarBugreportManager.java b/car-lib/src/android/car/CarBugreportManager.java
index f5d3b1d..99f2c7c 100644
--- a/car-lib/src/android/car/CarBugreportManager.java
+++ b/car-lib/src/android/car/CarBugreportManager.java
@@ -20,7 +20,6 @@
 import android.annotation.IntDef;
 import android.annotation.NonNull;
 import android.annotation.RequiresPermission;
-import android.content.Context;
 import android.os.Handler;
 import android.os.IBinder;
 import android.os.ParcelFileDescriptor;
@@ -39,10 +38,9 @@
  *
  * @hide
  */
-public final class CarBugreportManager implements CarManagerBase {
+public final class CarBugreportManager extends CarManagerBase {
 
     private final ICarBugreportService mService;
-    private Handler mHandler;
 
     /**
      * Callback from carbugreport manager. Callback methods are always called on the main thread.
@@ -153,9 +151,9 @@
      *
      * Should not be obtained directly by clients, use {@link Car#getCarManager(String)} instead.
      */
-    public CarBugreportManager(IBinder service, Context context) {
+    public CarBugreportManager(Car car, IBinder service) {
+        super(car);
         mService = ICarBugreportService.Stub.asInterface(service);
-        mHandler = new Handler(context.getMainLooper());
     }
 
     /**
@@ -185,10 +183,10 @@
         Preconditions.checkNotNull(callback);
         try {
             CarBugreportManagerCallbackWrapper wrapper =
-                    new CarBugreportManagerCallbackWrapper(callback, mHandler);
+                    new CarBugreportManagerCallbackWrapper(callback, getEventHandler());
             mService.requestBugreport(output, extraOutput, wrapper);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         } finally {
             IoUtils.closeQuietly(output);
             IoUtils.closeQuietly(extraOutput);
diff --git a/car-lib/src/android/car/CarInfoManager.java b/car-lib/src/android/car/CarInfoManager.java
index bf09495..e9a170d 100644
--- a/car-lib/src/android/car/CarInfoManager.java
+++ b/car-lib/src/android/car/CarInfoManager.java
@@ -29,7 +29,7 @@
  * Utility to retrieve various static information from car. Each data are grouped as {@link Bundle}
  * and relevant data can be checked from {@link Bundle} using pre-specified keys.
  */
-public final class CarInfoManager implements CarManagerBase{
+public final class CarInfoManager extends CarManagerBase {
 
     private final CarPropertyManager mCarPropertyMgr;
     /**
@@ -261,9 +261,10 @@
     }
 
     /** @hide */
-    CarInfoManager(IBinder service) {
+    CarInfoManager(Car car, IBinder service) {
+        super(car);
         ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service);
-        mCarPropertyMgr = new CarPropertyManager(mCarPropertyService, null);
+        mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService);
     }
 
     /** @hide */
diff --git a/car-lib/src/android/car/CarManagerBase.java b/car-lib/src/android/car/CarManagerBase.java
index 737f356..8d30fdf 100644
--- a/car-lib/src/android/car/CarManagerBase.java
+++ b/car-lib/src/android/car/CarManagerBase.java
@@ -16,10 +16,44 @@
 
 package android.car;
 
+import android.content.Context;
+import android.os.Handler;
+import android.os.RemoteException;
+
 /**
- * Common interface for Car*Manager
+ * Common base class for Car*Manager
  * @hide
  */
-public interface CarManagerBase {
-    void onCarDisconnected();
+public abstract class CarManagerBase {
+
+    protected final Car mCar;
+
+    public CarManagerBase(Car car) {
+        mCar = car;
+    }
+
+    protected Context getContext() {
+        return mCar.getContext();
+    }
+
+    protected Handler getEventHandler() {
+        return mCar.getEventHandler();
+    }
+
+    protected <T> T handleRemoteExceptionFromCarService(RemoteException e, T returnValue) {
+        return mCar.handleRemoteExceptionFromCarService(e, returnValue);
+    }
+
+    protected void handleRemoteExceptionFromCarService(RemoteException e) {
+        mCar.handleRemoteExceptionFromCarService(e);
+    }
+
+    /**
+     * Handle disconnection of car service (=crash). As car service has crashed already, this call
+     * should only clean up any listeners / callbacks passed from client. Clearing object passed
+     * to car service is not necessary as car service has crashed. Note that Car*Manager will not
+     * work any more as all binders are invalid. Client should re-create all Car*Managers when
+     * car service is restarted.
+     */
+    protected abstract void onCarDisconnected();
 }
diff --git a/car-lib/src/android/car/CarProjectionManager.java b/car-lib/src/android/car/CarProjectionManager.java
index 4c177f7..bc4107f 100644
--- a/car-lib/src/android/car/CarProjectionManager.java
+++ b/car-lib/src/android/car/CarProjectionManager.java
@@ -69,7 +69,7 @@
  * @hide
  */
 @SystemApi
-public final class CarProjectionManager implements CarManagerBase {
+public final class CarProjectionManager extends CarManagerBase {
     private static final String TAG = CarProjectionManager.class.getSimpleName();
 
     private final Binder mToken = new Binder();
@@ -194,7 +194,6 @@
     public static final int PROJECTION_AP_FAILED = 2;
 
     private final ICarProjection mService;
-    private final Handler mHandler;
     private final Executor mHandlerExecutor;
 
     @GuardedBy("mLock")
@@ -241,9 +240,10 @@
     /**
      * @hide
      */
-    public CarProjectionManager(IBinder service, Handler handler) {
+    public CarProjectionManager(Car car, IBinder service) {
+        super(car);
         mService = ICarProjection.Stub.asInterface(service);
-        mHandler = handler;
+        Handler handler = getEventHandler();
         mHandlerExecutor = handler::post;
     }
 
@@ -448,7 +448,8 @@
                 mService.unregisterKeyEventHandler(mBinderHandler);
             }
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
+            return;
         }
 
         mHandledEvents = events;
@@ -466,7 +467,7 @@
             try {
                 mService.registerProjectionRunner(serviceIntent);
             } catch (RemoteException e) {
-                throw e.rethrowFromSystemServer();
+                handleRemoteExceptionFromCarService(e);
             }
         }
     }
@@ -483,7 +484,7 @@
             try {
                 mService.unregisterProjectionRunner(serviceIntent);
             } catch (RemoteException e) {
-                throw e.rethrowFromSystemServer();
+                handleRemoteExceptionFromCarService(e);
             }
         }
     }
@@ -507,14 +508,14 @@
     public void startProjectionAccessPoint(@NonNull ProjectionAccessPointCallback callback) {
         Preconditions.checkNotNull(callback, "callback cannot be null");
         synchronized (mLock) {
-            Looper looper = mHandler.getLooper();
+            Looper looper = getEventHandler().getLooper();
             ProjectionAccessPointCallbackProxy proxy =
                     new ProjectionAccessPointCallbackProxy(this, looper, callback);
             try {
                 mService.startProjectionAccessPoint(proxy.getMessenger(), mAccessPointProxyToken);
                 mProjectionAccessPointCallbackProxy = proxy;
             } catch (RemoteException e) {
-                throw e.rethrowFromSystemServer();
+                handleRemoteExceptionFromCarService(e);
             }
         }
     }
@@ -535,7 +536,7 @@
             }
             return channelList;
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Collections.emptyList());
         }
     }
 
@@ -556,7 +557,7 @@
         try {
             mService.stopProjectionAccessPoint(mAccessPointProxyToken);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -575,7 +576,7 @@
         try {
             return mService.requestBluetoothProfileInhibit(device, profile, mToken);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -593,7 +594,7 @@
         try {
             return mService.releaseBluetoothProfileInhibit(device, profile, mToken);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -611,7 +612,7 @@
         try {
             mService.updateProjectionStatus(status, mToken);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -634,12 +635,12 @@
                 try {
                     mService.registerProjectionStatusListener(mCarProjectionStatusListener);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
             } else {
                 // Already subscribed to Car Service, immediately notify listener with the current
                 // projection status in the event handler thread.
-                mHandler.post(() ->
+                getEventHandler().post(() ->
                         listener.onProjectionStatusChanged(
                                 mCarProjectionStatusListener.mCurrentState,
                                 mCarProjectionStatusListener.mCurrentPackageName,
@@ -671,7 +672,7 @@
             mService.unregisterProjectionStatusListener(mCarProjectionStatusListener);
             mCarProjectionStatusListener = null;
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -695,7 +696,7 @@
         try {
             return mService.getProjectionOptions();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Bundle.EMPTY);
         }
     }
 
@@ -838,7 +839,7 @@
                 List<ProjectionStatus> details) {
             CarProjectionManager mgr = mManagerRef.get();
             if (mgr != null) {
-                mgr.mHandler.post(() -> {
+                mgr.getEventHandler().post(() -> {
                     mCurrentState = projectionState;
                     mCurrentPackageName = packageName;
                     mDetails = Collections.unmodifiableList(details);
diff --git a/car-lib/src/android/car/VehiclePropertyIds.java b/car-lib/src/android/car/VehiclePropertyIds.java
index c335e58..ada2b2d 100644
--- a/car-lib/src/android/car/VehiclePropertyIds.java
+++ b/car-lib/src/android/car/VehiclePropertyIds.java
@@ -338,38 +338,44 @@
     /**
      * Distance units for display
      * Requires permission {@link Car#PERMISSION_READ_DISPLAY_UNITS} to read the property.
-     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} to write the property.
+     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} and
+     * {@link Car#PERMISSION_VENDOR_EXTENSION}to write the property.
      */
     public static final int DISTANCE_DISPLAY_UNITS = 289408512;
     /**
      * Fuel volume units for display
      * Requires permission {@link Car#PERMISSION_READ_DISPLAY_UNITS} to read the property.
-     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} to write the property.
+     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} and
+     * {@link Car#PERMISSION_VENDOR_EXTENSION}to write the property.
      */
     public static final int FUEL_VOLUME_DISPLAY_UNITS = 289408513;
     /**
      * Tire pressure units for display
      * Requires permission {@link Car#PERMISSION_READ_DISPLAY_UNITS} to read the property.
-     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} to write the property.
+     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} and
+     * {@link Car#PERMISSION_VENDOR_EXTENSION}to write the property.
      */
     public static final int TIRE_PRESSURE_DISPLAY_UNITS = 289408514;
     /**
      * EV battery units for display
      * Requires permission {@link Car#PERMISSION_READ_DISPLAY_UNITS} to read the property.
-     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} to write the property.
+     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} and
+     * {@link Car#PERMISSION_VENDOR_EXTENSION}to write the property.
      */
     public static final int EV_BATTERY_DISPLAY_UNITS = 289408515;
     /**
      * Speed Units for display
      * Requires permission {@link Car#PERMISSION_READ_DISPLAY_UNITS} to read the property.
-     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} to write the property.
+     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} and
+     * {@link Car#PERMISSION_VENDOR_EXTENSION}to write the property.
      * @hide
      */
     public static final int VEHICLE_SPEED_DISPLAY_UNITS = 289408516;
     /**
      * Fuel consumption units for display
      * Requires permission {@link Car#PERMISSION_READ_DISPLAY_UNITS} to read the property.
-     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} to write the property.
+     * Requires permission {@link Car#PERMISSION_CONTROL_DISPLAY_UNITS} and
+     * {@link Car#PERMISSION_VENDOR_EXTENSION}to write the property.
      */
     public static final int FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME = 287311364;
     /**
diff --git a/car-lib/src/android/car/cluster/CarInstrumentClusterManager.java b/car-lib/src/android/car/cluster/CarInstrumentClusterManager.java
index 54d10e2..2b633a0 100644
--- a/car-lib/src/android/car/cluster/CarInstrumentClusterManager.java
+++ b/car-lib/src/android/car/cluster/CarInstrumentClusterManager.java
@@ -17,10 +17,10 @@
 package android.car.cluster;
 
 import android.annotation.SystemApi;
+import android.car.Car;
 import android.car.CarManagerBase;
 import android.content.Intent;
 import android.os.Bundle;
-import android.os.Handler;
 import android.os.IBinder;
 
 /**
@@ -35,7 +35,7 @@
  */
 @Deprecated
 @SystemApi
-public class CarInstrumentClusterManager implements CarManagerBase {
+public class CarInstrumentClusterManager extends CarManagerBase {
     /**
      * @deprecated use {@link android.car.Car#CATEGORY_NAVIGATION} instead
      *
@@ -101,7 +101,8 @@
     }
 
     /** @hide */
-    public CarInstrumentClusterManager(IBinder service, Handler handler) {
+    public CarInstrumentClusterManager(Car car, IBinder service) {
+        super(car);
         // No-op
     }
 
diff --git a/car-lib/src/android/car/cluster/renderer/IInstrumentCluster.aidl b/car-lib/src/android/car/cluster/renderer/IInstrumentCluster.aidl
index 7deecc7..4f41796 100644
--- a/car-lib/src/android/car/cluster/renderer/IInstrumentCluster.aidl
+++ b/car-lib/src/android/car/cluster/renderer/IInstrumentCluster.aidl
@@ -28,6 +28,8 @@
     /**
      * Returns {@link IInstrumentClusterNavigation} that will be passed to the navigation
      * application.
+     *
+     * TODO(b/141992448) : remove blocking call
      */
     IInstrumentClusterNavigation getNavigationService();
 
diff --git a/car-lib/src/android/car/cluster/renderer/IInstrumentClusterHelper.aidl b/car-lib/src/android/car/cluster/renderer/IInstrumentClusterHelper.aidl
new file mode 100644
index 0000000..680e241
--- /dev/null
+++ b/car-lib/src/android/car/cluster/renderer/IInstrumentClusterHelper.aidl
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package android.car.cluster.renderer;
+
+import android.content.Intent;
+import android.os.Bundle;
+
+/**
+ * Helper binder API for InstrumentClusterRenderingService. This contains binder calls to car
+ * service.
+ *
+ * @hide
+ */
+interface IInstrumentClusterHelper {
+    /**
+     * Start an activity to specified display / user. The activity is considered as
+     * in fixed mode for the display and will be re-launched if the activity crashes, the package
+     * is updated or goes to background for whatever reason.
+     * Only one activity can exist in fixed mode for the target display and calling this multiple
+     * times with different {@code Intent} will lead into making all previous activities into
+     * non-fixed normal state (= will not be re-launched.)
+     *
+     * Do not change binder transaction number.
+     */
+    boolean startFixedActivityModeForDisplayAndUser(in Intent intent,
+            in Bundle activityOptionsBundle, int userId) = 0;
+    /**
+     * The activity lauched on the display is no longer in fixed mode. Re-launching or finishing
+     * should not trigger re-launfhing any more. Note that Activity for non-current user will
+     * be auto-stopped and there is no need to call this for user swiching. Note that this does not
+     * stop the activity but it will not be re-launched any more.
+     *
+     * Do not change binder transaction number.
+     */
+    void stopFixedActivityMode(int displayId) = 1;
+}
diff --git a/car-lib/src/android/car/cluster/renderer/InstrumentClusterRenderingService.java b/car-lib/src/android/car/cluster/renderer/InstrumentClusterRenderingService.java
index b692c02..3e463d1 100644
--- a/car-lib/src/android/car/cluster/renderer/InstrumentClusterRenderingService.java
+++ b/car-lib/src/android/car/cluster/renderer/InstrumentClusterRenderingService.java
@@ -22,6 +22,7 @@
 import android.annotation.NonNull;
 import android.annotation.Nullable;
 import android.annotation.SystemApi;
+import android.annotation.UserIdInt;
 import android.app.ActivityOptions;
 import android.app.Service;
 import android.car.Car;
@@ -82,6 +83,15 @@
  */
 @SystemApi
 public abstract class InstrumentClusterRenderingService extends Service {
+    /**
+     * Key to pass IInstrumentClusterHelper binder in onBind call {@link Intent} through extra
+     * {@link Bundle). Both extra bundle and binder itself use this key.
+     *
+     * @hide
+     */
+    public static final String EXTRA_BUNDLE_KEY_FOR_INSTRUMENT_CLUSTER_HELPER =
+            "android.car.cluster.renderer.IInstrumentClusterHelper";
+
     private static final String TAG = CarLibLog.TAG_CLUSTER;
 
     /**
@@ -93,16 +103,22 @@
     private static final int NAVIGATION_STATE_EVENT_ID = 1;
     private static final String BITMAP_QUERY_WIDTH = "w";
     private static final String BITMAP_QUERY_HEIGHT = "h";
+    private static final String BITMAP_QUERY_OFFLANESALPHA = "offLanesAlpha";
+
+    private final Handler mUiHandler = new Handler(Looper.getMainLooper());
 
     private final Object mLock = new Object();
+    // Main thread only
     private RendererBinder mRendererBinder;
-    private Handler mUiHandler = new Handler(Looper.getMainLooper());
     private ActivityOptions mActivityOptions;
     private ClusterActivityState mActivityState;
     private ComponentName mNavigationComponent;
     @GuardedBy("mLock")
     private ContextOwner mNavContextOwner;
 
+    @GuardedBy("mLock")
+    private IInstrumentClusterHelper mInstrumentClusterHelper;
+
     private static final int IMAGE_CACHE_SIZE_BYTES = 4 * 1024 * 1024; /* 4 mb */
     private final LruCache<String, Bitmap> mCache = new LruCache<String, Bitmap>(
             IMAGE_CACHE_SIZE_BYTES) {
@@ -164,6 +180,18 @@
             Log.d(TAG, "onBind, intent: " + intent);
         }
 
+        Bundle bundle = intent.getBundleExtra(EXTRA_BUNDLE_KEY_FOR_INSTRUMENT_CLUSTER_HELPER);
+        IBinder binder = null;
+        if (bundle != null) {
+            binder = bundle.getBinder(EXTRA_BUNDLE_KEY_FOR_INSTRUMENT_CLUSTER_HELPER);
+        }
+        if (binder == null) {
+            Log.wtf(TAG, "IInstrumentClusterHelper not passed through binder");
+        } else {
+            synchronized (mLock) {
+                mInstrumentClusterHelper = IInstrumentClusterHelper.Stub.asInterface(binder);
+            }
+        }
         if (mRendererBinder == null) {
             mRendererBinder = new RendererBinder(getNavigationRenderer());
         }
@@ -203,6 +231,76 @@
     public void onNavigationComponentReleased() {
     }
 
+    @Nullable
+    private IInstrumentClusterHelper getClusterHelper() {
+        synchronized (mLock) {
+            if (mInstrumentClusterHelper == null) {
+                Log.w("mInstrumentClusterHelper still null, should wait until onBind",
+                        new RuntimeException());
+            }
+            return mInstrumentClusterHelper;
+        }
+    }
+
+    /**
+     * Start Activity in fixed mode.
+     *
+     * <p>Activity launched in this way will stay visible across crash, package updatge
+     * or other Activity launch. So this should be carefully used for case like apps running
+     * in instrument cluster.</p>
+     *
+     * <p> Only one Activity can stay in this mode for a display and launching other Activity
+     * with this call means old one get out of the mode. Alternatively
+     * {@link #stopFixedActivityMode(int)} can be called to get the top activitgy out of this
+     * mode.</p>
+     *
+     * @param intent Should include specific {@code ComponentName}.
+     * @param options Should include target display.
+     * @param userId Target user id
+     * @return {@code true} if succeeded. {@code false} may mean the target component is not ready
+     *         or available. Note that failure can happen during early boot-up stage even if the
+     *         target Activity is in normal state and client should retry when it fails. Once it is
+     *         successfully launched, car service will guarantee that it is running across crash or
+     *         other events.
+     *
+     * @hide
+     */
+    protected boolean startFixedActivityModeForDisplayAndUser(@NonNull Intent intent,
+            @NonNull ActivityOptions options, @UserIdInt int userId) {
+        IInstrumentClusterHelper helper = getClusterHelper();
+        if (helper == null) {
+            return false;
+        }
+        try {
+            return helper.startFixedActivityModeForDisplayAndUser(intent, options.toBundle(),
+                    userId);
+        } catch (RemoteException e) {
+            Log.w("Remote exception from car service", e);
+            // Probably car service will restart and rebind. So do nothing.
+        }
+        return false;
+    }
+
+
+    /**
+     * Stop fixed mode for top Activity in the display. Crashing or launching other Activity
+     * will not re-launch the top Activity any more.
+     *
+     * @hide
+     */
+    protected void stopFixedActivityMode(int displayId) {
+        IInstrumentClusterHelper helper = getClusterHelper();
+        if (helper == null) {
+            return;
+        }
+        try {
+            helper.stopFixedActivityMode(displayId);
+        } catch (RemoteException e) {
+            Log.w("Remote exception from car service, displayId:" + displayId, e);
+            // Probably car service will restart and rebind. So do nothing.
+        }
+    }
+
     /**
      * Updates the cluster navigation activity by checking which activity to show (an activity of
      * the {@link #mNavContextOwner}). If not yet launched, it will do so.
@@ -379,16 +477,19 @@
     @CallSuper
     @Override
     protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
-        writer.println("**" + getClass().getSimpleName() + "**");
-        writer.println("renderer binder: " + mRendererBinder);
-        if (mRendererBinder != null) {
-            writer.println("navigation renderer: " + mRendererBinder.mNavigationRenderer);
+        synchronized (mLock) {
+            writer.println("**" + getClass().getSimpleName() + "**");
+            writer.println("renderer binder: " + mRendererBinder);
+            if (mRendererBinder != null) {
+                writer.println("navigation renderer: " + mRendererBinder.mNavigationRenderer);
+            }
+            writer.println("navigation focus owner: " + getNavigationContextOwner());
+            writer.println("activity options: " + mActivityOptions);
+            writer.println("activity state: " + mActivityState);
+            writer.println("current nav component: " + mNavigationComponent);
+            writer.println("current nav packages: " + getNavigationContextOwner().mPackageNames);
+            writer.println("mInstrumentClusterHelper" + mInstrumentClusterHelper);
         }
-        writer.println("navigation focus owner: " + getNavigationContextOwner());
-        writer.println("activity options: " + mActivityOptions);
-        writer.println("activity state: " + mActivityState);
-        writer.println("current nav component: " + mNavigationComponent);
-        writer.println("current nav packages: " + getNavigationContextOwner().mPackageNames);
     }
 
     private class RendererBinder extends IInstrumentCluster.Stub {
@@ -547,8 +648,18 @@
     }
 
     /**
+     * See {@link #getBitmap(Uri, int, int, float)}
+     *
+     * @hide
+     */
+    @Nullable
+    public Bitmap getBitmap(Uri uri, int width, int height) {
+        return getBitmap(uri, width, height, 1f);
+    }
+
+    /**
      * Fetches a bitmap from the navigation context owner (application holding navigation focus)
-     * of the given width and height. The fetched bitmaps are cached.
+     * of the given width and height and off lane opacity. The fetched bitmaps are cached.
      * It returns null if:
      * <ul>
      * <li>there is no navigation context owner
@@ -557,12 +668,16 @@
      * </ul>
      * This is a costly operation. Returned bitmaps should be fetched on a secondary thread.
      *
+     * @throws IllegalArgumentException if width, height <= 0, or 0 > offLanesAlpha > 1
      * @hide
      */
     @Nullable
-    public Bitmap getBitmap(Uri uri, int width, int height) throws InvalidSizeException {
+    public Bitmap getBitmap(Uri uri, int width, int height, float offLanesAlpha) {
         if (width <= 0 || height <= 0) {
-            throw new InvalidSizeException("Width and height must be > 0");
+            throw new IllegalArgumentException("Width and height must be > 0");
+        }
+        if (offLanesAlpha < 0 || offLanesAlpha > 1) {
+            throw new IllegalArgumentException("offLanesAlpha must be between [0, 1]");
         }
 
         try {
@@ -575,6 +690,7 @@
             uri = uri.buildUpon()
                     .appendQueryParameter(BITMAP_QUERY_WIDTH, String.valueOf(width))
                     .appendQueryParameter(BITMAP_QUERY_HEIGHT, String.valueOf(height))
+                    .appendQueryParameter(BITMAP_QUERY_OFFLANESALPHA, String.valueOf(offLanesAlpha))
                     .build();
 
             String host = uri.getHost();
diff --git a/car-lib/src/android/car/cluster/renderer/InvalidSizeException.java b/car-lib/src/android/car/cluster/renderer/InvalidSizeException.java
deleted file mode 100644
index b89cd9f..0000000
--- a/car-lib/src/android/car/cluster/renderer/InvalidSizeException.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package android.car.cluster.renderer;
-
-/**
- * Exception denoting invalid size of an object.
- * eg.) Minimum size of an image
- *
- * @hide
- */
-public class InvalidSizeException extends Exception {
-    public InvalidSizeException(String message) {
-        super(message);
-    }
-
-    public InvalidSizeException(String message, Throwable cause) {
-        super(message, cause);
-    }
-
-    public InvalidSizeException(Throwable cause) {
-        super(cause);
-    }
-}
diff --git a/car-lib/src/android/car/content/pm/CarAppBlockingPolicyService.java b/car-lib/src/android/car/content/pm/CarAppBlockingPolicyService.java
index 5b0a6bd..f95063a 100644
--- a/car-lib/src/android/car/content/pm/CarAppBlockingPolicyService.java
+++ b/car-lib/src/android/car/content/pm/CarAppBlockingPolicyService.java
@@ -17,6 +17,7 @@
 
 import android.annotation.SystemApi;
 import android.app.Service;
+import android.car.Car;
 import android.content.Intent;
 import android.os.Handler;
 import android.os.IBinder;
@@ -76,7 +77,7 @@
             try {
                 setter.setAppBlockingPolicy(policy);
             } catch (RemoteException e) {
-                throw e.rethrowFromSystemServer();
+                Car.handleRemoteExceptionFromCarService(CarAppBlockingPolicyService.this, e);
             }
         }
     }
diff --git a/car-lib/src/android/car/content/pm/CarPackageManager.java b/car-lib/src/android/car/content/pm/CarPackageManager.java
index d23633d..7498c65 100644
--- a/car-lib/src/android/car/content/pm/CarPackageManager.java
+++ b/car-lib/src/android/car/content/pm/CarPackageManager.java
@@ -19,9 +19,9 @@
 import android.annotation.IntDef;
 import android.annotation.SystemApi;
 import android.annotation.TestApi;
+import android.car.Car;
 import android.car.CarManagerBase;
 import android.content.ComponentName;
-import android.content.Context;
 import android.os.IBinder;
 import android.os.Looper;
 import android.os.RemoteException;
@@ -32,7 +32,7 @@
 /**
  * Provides car specific API related with package management.
  */
-public final class CarPackageManager implements CarManagerBase {
+public final class CarPackageManager extends CarManagerBase {
     private static final String TAG = "CarPackageManager";
 
     /**
@@ -70,12 +70,11 @@
     public @interface SetPolicyFlags {}
 
     private final ICarPackageManager mService;
-    private final Context mContext;
 
     /** @hide */
-    public CarPackageManager(IBinder service, Context context) {
+    public CarPackageManager(Car car, IBinder service) {
+        super(car);
         mService = ICarPackageManager.Stub.asInterface(service);
-        mContext = context;
     }
 
     /** @hide */
@@ -115,7 +114,7 @@
         try {
             mService.setAppBlockingPolicy(packageName, policy, flags);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -128,7 +127,7 @@
         try {
             mService.restartTask(taskId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -151,7 +150,7 @@
         try {
             return mService.isActivityBackedBySafeActivity(activityName);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -165,7 +164,7 @@
         try {
             mService.setEnableActivityBlocking(enable);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -181,7 +180,7 @@
         try {
             return mService.isActivityDistractionOptimized(packageName, className);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -197,7 +196,7 @@
         try {
             return mService.isServiceDistractionOptimized(packageName, className);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 }
diff --git a/car-lib/src/android/car/diagnostic/CarDiagnosticManager.java b/car-lib/src/android/car/diagnostic/CarDiagnosticManager.java
index 1559dd4..c9c8b6f 100644
--- a/car-lib/src/android/car/diagnostic/CarDiagnosticManager.java
+++ b/car-lib/src/android/car/diagnostic/CarDiagnosticManager.java
@@ -23,8 +23,6 @@
 import android.car.CarLibLog;
 import android.car.CarManagerBase;
 import android.car.diagnostic.ICarDiagnosticEventListener.Stub;
-import android.content.Context;
-import android.os.Handler;
 import android.os.IBinder;
 import android.os.RemoteException;
 import android.util.Log;
@@ -47,7 +45,7 @@
  * @hide
  */
 @SystemApi
-public final class CarDiagnosticManager implements CarManagerBase {
+public final class CarDiagnosticManager extends CarManagerBase {
     public static final int FRAME_TYPE_LIVE = 0;
     public static final int FRAME_TYPE_FREEZE = 1;
 
@@ -70,15 +68,16 @@
     /** Handles call back into clients. */
     private final SingleMessageHandler<CarDiagnosticEvent> mHandlerCallback;
 
-    private CarDiagnosticEventListenerToService mListenerToService;
+    private final CarDiagnosticEventListenerToService mListenerToService;
 
     private final CarPermission mVendorExtensionPermission;
 
     /** @hide */
-    public CarDiagnosticManager(IBinder service, Context context, Handler handler) {
+    public CarDiagnosticManager(Car car, IBinder service) {
+        super(car);
         mService = ICarDiagnostic.Stub.asInterface(service);
-        mHandlerCallback = new SingleMessageHandler<CarDiagnosticEvent>(handler.getLooper(),
-            MSG_DIAGNOSTIC_EVENTS) {
+        mHandlerCallback = new SingleMessageHandler<CarDiagnosticEvent>(
+                getEventHandler().getLooper(), MSG_DIAGNOSTIC_EVENTS) {
             @Override
             protected void handleEvent(CarDiagnosticEvent event) {
                 CarDiagnosticListeners listeners;
@@ -90,7 +89,9 @@
                 }
             }
         };
-        mVendorExtensionPermission = new CarPermission(context, Car.PERMISSION_VENDOR_EXTENSION);
+        mVendorExtensionPermission = new CarPermission(getContext(),
+                Car.PERMISSION_VENDOR_EXTENSION);
+        mListenerToService = new CarDiagnosticEventListenerToService(this);
     }
 
     @Override
@@ -98,7 +99,6 @@
     public void onCarDisconnected() {
         synchronized(mActiveListeners) {
             mActiveListeners.clear();
-            mListenerToService = null;
         }
     }
 
@@ -137,9 +137,6 @@
             OnDiagnosticEventListener listener, @FrameType int frameType, int rate) {
         assertFrameType(frameType);
         synchronized(mActiveListeners) {
-            if (null == mListenerToService) {
-                mListenerToService = new CarDiagnosticEventListenerToService(this);
-            }
             boolean needsServerUpdate = false;
             CarDiagnosticListeners listeners = mActiveListeners.get(frameType);
             if (listeners == null) {
@@ -184,7 +181,8 @@
                     mService.unregisterDiagnosticListener(frameType,
                         mListenerToService);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
+                    // continue for local clean-up
                 }
                 mActiveListeners.remove(frameType);
             } else if (needsServerUpdate) {
@@ -197,7 +195,7 @@
         try {
             return mService.registerOrUpdateDiagnosticListener(frameType, rate, mListenerToService);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -212,7 +210,7 @@
         try {
             return mService.getLatestLiveFrame();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -229,7 +227,7 @@
         try {
             return mService.getFreezeFrameTimestamps();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, new long[0]);
         }
     }
 
@@ -246,7 +244,7 @@
         try {
             return mService.getFreezeFrame(timestamp);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -264,7 +262,7 @@
         try {
             return mService.clearFreezeFrames(timestamps);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -276,7 +274,7 @@
         try {
             return mService.isLiveFrameSupported();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -288,7 +286,7 @@
         try {
             return mService.isFreezeFrameNotificationSupported();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -300,7 +298,7 @@
         try {
             return mService.isGetFreezeFrameSupported();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -318,7 +316,7 @@
         try {
             return mService.isClearFreezeFramesSupported();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -336,7 +334,7 @@
         try {
             return mService.isSelectiveClearFreezeFramesSupported();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
diff --git a/car-lib/src/android/car/drivingstate/CarDrivingStateManager.java b/car-lib/src/android/car/drivingstate/CarDrivingStateManager.java
index 9b0626f..4053c5c 100644
--- a/car-lib/src/android/car/drivingstate/CarDrivingStateManager.java
+++ b/car-lib/src/android/car/drivingstate/CarDrivingStateManager.java
@@ -22,7 +22,6 @@
 import android.annotation.TestApi;
 import android.car.Car;
 import android.car.CarManagerBase;
-import android.content.Context;
 import android.os.Handler;
 import android.os.IBinder;
 import android.os.Looper;
@@ -40,13 +39,12 @@
  */
 @SystemApi
 @TestApi
-public final class CarDrivingStateManager implements CarManagerBase {
+public final class CarDrivingStateManager extends CarManagerBase {
     private static final String TAG = "CarDrivingStateMgr";
     private static final boolean DBG = false;
     private static final boolean VDBG = false;
     private static final int MSG_HANDLE_DRIVING_STATE_CHANGE = 0;
 
-    private final Context mContext;
     private final ICarDrivingState mDrivingService;
     private final EventCallbackHandler mEventCallbackHandler;
     private CarDrivingStateEventListener mDrvStateEventListener;
@@ -54,10 +52,10 @@
 
 
     /** @hide */
-    public CarDrivingStateManager(IBinder service, Context context, Handler handler) {
-        mContext = context;
+    public CarDrivingStateManager(Car car, IBinder service) {
+        super(car);
         mDrivingService = ICarDrivingState.Stub.asInterface(service);
-        mEventCallbackHandler = new EventCallbackHandler(this, handler.getLooper());
+        mEventCallbackHandler = new EventCallbackHandler(this, getEventHandler().getLooper());
     }
 
     /** @hide */
@@ -111,7 +109,7 @@
             // register to the Service for getting notified
             mDrivingService.registerDrivingStateChangeListener(mListenerToService);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -134,7 +132,7 @@
             mDrvStateEventListener = null;
             mListenerToService = null;
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -151,7 +149,7 @@
         try {
             return mDrivingService.getCurrentDrivingState();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -172,7 +170,7 @@
         try {
             mDrivingService.injectDrivingState(event);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
diff --git a/car-lib/src/android/car/drivingstate/CarUxRestrictionsManager.java b/car-lib/src/android/car/drivingstate/CarUxRestrictionsManager.java
index 9a3d5cf..be194b8 100644
--- a/car-lib/src/android/car/drivingstate/CarUxRestrictionsManager.java
+++ b/car-lib/src/android/car/drivingstate/CarUxRestrictionsManager.java
@@ -22,7 +22,6 @@
 import android.annotation.RequiresPermission;
 import android.car.Car;
 import android.car.CarManagerBase;
-import android.content.Context;
 import android.os.Handler;
 import android.os.IBinder;
 import android.os.Looper;
@@ -43,7 +42,7 @@
  * API to register and get the User Experience restrictions imposed based on the car's driving
  * state.
  */
-public final class CarUxRestrictionsManager implements CarManagerBase {
+public final class CarUxRestrictionsManager extends CarManagerBase {
     private static final String TAG = "CarUxRManager";
     private static final boolean DBG = false;
     private static final boolean VDBG = false;
@@ -80,7 +79,6 @@
     @Retention(RetentionPolicy.SOURCE)
     public @interface UxRestrictionMode {}
 
-    private final Context mContext;
     private int mDisplayId = Display.INVALID_DISPLAY;
     private final ICarUxRestrictionsManager mUxRService;
     private final EventCallbackHandler mEventCallbackHandler;
@@ -89,10 +87,11 @@
     private CarUxRestrictionsChangeListenerToService mListenerToService;
 
     /** @hide */
-    public CarUxRestrictionsManager(IBinder service, Context context, Handler handler) {
-        mContext = context;
+    public CarUxRestrictionsManager(Car car, IBinder service) {
+        super(car);
         mUxRService = ICarUxRestrictionsManager.Stub.asInterface(service);
-        mEventCallbackHandler = new EventCallbackHandler(this, handler.getLooper());
+        mEventCallbackHandler = new EventCallbackHandler(this,
+                getEventHandler().getLooper());
     }
 
     /** @hide */
@@ -152,7 +151,7 @@
             // register to the Service to listen for changes.
             mUxRService.registerUxRestrictionsChangeListener(mListenerToService, displayId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -172,7 +171,7 @@
         try {
             mUxRService.unregisterUxRestrictionsChangeListener(mListenerToService);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -197,7 +196,7 @@
         try {
             return mUxRService.saveUxRestrictionsConfigurationForNextBoot(configs);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -219,7 +218,7 @@
         try {
             return mUxRService.getCurrentUxRestrictions(displayId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -233,7 +232,7 @@
         try {
             return mUxRService.setRestrictionMode(mode);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -248,7 +247,7 @@
         try {
             return mUxRService.getRestrictionMode();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -288,7 +287,7 @@
         try {
             return mUxRService.getStagedConfigs();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -304,7 +303,7 @@
         try {
             return mUxRService.getConfigs();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -399,7 +398,7 @@
             return mDisplayId;
         }
 
-        mDisplayId = mContext.getDisplayId();
+        mDisplayId = getContext().getDisplayId();
         Log.i(TAG, "Context returns display ID " + mDisplayId);
 
         if (mDisplayId == Display.INVALID_DISPLAY) {
diff --git a/car-lib/src/android/car/hardware/CarSensorManager.java b/car-lib/src/android/car/hardware/CarSensorManager.java
index d61cb2e..082c8eb 100644
--- a/car-lib/src/android/car/hardware/CarSensorManager.java
+++ b/car-lib/src/android/car/hardware/CarSensorManager.java
@@ -26,9 +26,7 @@
 import android.car.hardware.property.CarPropertyManager;
 import android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback;
 import android.car.hardware.property.ICarProperty;
-import android.content.Context;
 import android.os.Bundle;
-import android.os.Handler;
 import android.os.IBinder;
 import android.util.ArraySet;
 import android.util.Log;
@@ -46,7 +44,7 @@
  *  API for monitoring car sensor data.
  */
 @Deprecated
-public final class CarSensorManager implements CarManagerBase {
+public final class CarSensorManager extends CarManagerBase {
     private static final String TAG = "CarSensorManager";
     private final CarPropertyManager mCarPropertyMgr;
     /** @hide */
@@ -304,9 +302,10 @@
 
     }
     /** @hide */
-    public CarSensorManager(IBinder service, Context context, Handler handler) {
+    public CarSensorManager(Car car, IBinder service) {
+        super(car);
         ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service);
-        mCarPropertyMgr = new CarPropertyManager(mCarPropertyService, handler);
+        mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService);
     }
 
     /** @hide */
diff --git a/car-lib/src/android/car/hardware/CarVendorExtensionManager.java b/car-lib/src/android/car/hardware/CarVendorExtensionManager.java
index e7df3b0..b796156 100644
--- a/car-lib/src/android/car/hardware/CarVendorExtensionManager.java
+++ b/car-lib/src/android/car/hardware/CarVendorExtensionManager.java
@@ -22,7 +22,6 @@
 import android.car.hardware.property.CarPropertyManager;
 import android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback;
 import android.car.hardware.property.ICarProperty;
-import android.os.Handler;
 import android.os.IBinder;
 import android.util.ArraySet;
 
@@ -44,7 +43,7 @@
  */
 @Deprecated
 @SystemApi
-public final class CarVendorExtensionManager implements CarManagerBase {
+public final class CarVendorExtensionManager extends CarManagerBase {
 
     private final static boolean DBG = false;
     private final static String TAG = CarVendorExtensionManager.class.getSimpleName();
@@ -84,9 +83,10 @@
      * <p>Should not be obtained directly by clients, use {@link Car#getCarManager(String)} instead.
      * @hide
      */
-    public CarVendorExtensionManager(IBinder service, Handler handler) {
+    public CarVendorExtensionManager(Car car, IBinder service) {
+        super(car);
         ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service);
-        mPropertyManager = new CarPropertyManager(mCarPropertyService, handler);
+        mPropertyManager = new CarPropertyManager(car, mCarPropertyService);
     }
 
     /**
@@ -206,6 +206,9 @@
     /** @hide */
     @Override
     public void onCarDisconnected() {
+        synchronized (mLock) {
+            mCallbacks.clear();
+        }
         mPropertyManager.onCarDisconnected();
     }
     private static class CarPropertyEventListenerToBase implements CarPropertyEventCallback {
diff --git a/car-lib/src/android/car/hardware/cabin/CarCabinManager.java b/car-lib/src/android/car/hardware/cabin/CarCabinManager.java
index 1c41a2b..7318176 100644
--- a/car-lib/src/android/car/hardware/cabin/CarCabinManager.java
+++ b/car-lib/src/android/car/hardware/cabin/CarCabinManager.java
@@ -25,8 +25,6 @@
 import android.car.hardware.property.CarPropertyManager;
 import android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback;
 import android.car.hardware.property.ICarProperty;
-import android.content.Context;
-import android.os.Handler;
 import android.os.IBinder;
 import android.util.ArraySet;
 
@@ -58,7 +56,7 @@
  */
 @Deprecated
 @SystemApi
-public final class CarCabinManager implements CarManagerBase {
+public final class CarCabinManager extends CarManagerBase {
     private final static boolean DBG = false;
     private final static String TAG = "CarCabinManager";
     private final CarPropertyManager mCarPropertyMgr;
@@ -470,9 +468,10 @@
      * @param handler
      * @hide
      */
-    public CarCabinManager(IBinder service, Context context, Handler handler) {
+    public CarCabinManager(Car car, IBinder service) {
+        super(car);
         ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service);
-        mCarPropertyMgr = new CarPropertyManager(mCarPropertyService, handler);
+        mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService);
     }
 
     /**
@@ -594,6 +593,10 @@
     /** @hide */
     @Override
     public void onCarDisconnected() {
+        // TODO(b/142730969) Fix synchronization to use separate mLock
+        synchronized (this) {
+            mCallbacks.clear();
+        }
         mCarPropertyMgr.onCarDisconnected();
     }
 }
diff --git a/car-lib/src/android/car/hardware/hvac/CarHvacManager.java b/car-lib/src/android/car/hardware/hvac/CarHvacManager.java
index b2b8014..3ab7631 100644
--- a/car-lib/src/android/car/hardware/hvac/CarHvacManager.java
+++ b/car-lib/src/android/car/hardware/hvac/CarHvacManager.java
@@ -25,8 +25,6 @@
 import android.car.hardware.property.CarPropertyManager;
 import android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback;
 import android.car.hardware.property.ICarProperty;
-import android.content.Context;
-import android.os.Handler;
 import android.os.IBinder;
 import android.util.ArraySet;
 import android.util.Log;
@@ -46,7 +44,7 @@
  */
 @Deprecated
 @SystemApi
-public final class CarHvacManager implements CarManagerBase {
+public final class CarHvacManager extends CarManagerBase {
     private final static boolean DBG = false;
     private final static String TAG = "CarHvacManager";
     private final CarPropertyManager mCarPropertyMgr;
@@ -301,14 +299,15 @@
      *
      * Should not be obtained directly by clients, use {@link Car#getCarManager(String)} instead.
      * @param service
-     * @param context
-     * @param handler
+     *
      * @hide
      */
-    public CarHvacManager(IBinder service, Context context, Handler handler) {
+    public CarHvacManager(Car car, IBinder service) {
+        super(car);
         ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service);
-        mCarPropertyMgr = new CarPropertyManager(mCarPropertyService, handler);
+        mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService);
     }
+
     /**
      * Implement wrappers for contained CarPropertyManager object
      * @param callback
@@ -432,6 +431,10 @@
 
     /** @hide */
     public void onCarDisconnected() {
+        // TODO(b/142730482) Fix synchronization to use separate mLock
+        synchronized (this) {
+            mCallbacks.clear();
+        }
         mCarPropertyMgr.onCarDisconnected();
     }
 }
diff --git a/car-lib/src/android/car/hardware/power/CarPowerManager.java b/car-lib/src/android/car/hardware/power/CarPowerManager.java
index 3d9a23a..4b0e8cf 100644
--- a/car-lib/src/android/car/hardware/power/CarPowerManager.java
+++ b/car-lib/src/android/car/hardware/power/CarPowerManager.java
@@ -19,8 +19,6 @@
 import android.annotation.SystemApi;
 import android.car.Car;
 import android.car.CarManagerBase;
-import android.content.Context;
-import android.os.Handler;
 import android.os.IBinder;
 import android.os.RemoteException;
 import android.util.Log;
@@ -35,15 +33,18 @@
  * @hide
  */
 @SystemApi
-public class CarPowerManager implements CarManagerBase {
+public class CarPowerManager extends CarManagerBase {
     private final static boolean DBG = false;
     private final static String TAG = "CarPowerManager";
 
     private final Object mLock = new Object();
     private final ICarPower mService;
 
+    @GuardedBy("mLock")
     private CarPowerStateListener mListener;
+    @GuardedBy("mLock")
     private CarPowerStateListenerWithCompletion mListenerWithCompletion;
+    @GuardedBy("mLock")
     private CompletableFuture<Void> mFuture;
     @GuardedBy("mLock")
     private ICarPowerStateListener mListenerToService;
@@ -131,7 +132,8 @@
      * @param handler
      * @hide
      */
-    public CarPowerManager(IBinder service, Context context, Handler handler) {
+    public CarPowerManager(Car car, IBinder service) {
+        super(car);
         mService = ICarPower.Stub.asInterface(service);
     }
 
@@ -143,7 +145,7 @@
         try {
             mService.requestShutdownOnNextSuspend();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -155,7 +157,7 @@
         try {
             mService.scheduleNextWakeupTime(seconds);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -209,13 +211,23 @@
                 @Override
                 public void onStateChanged(int state) throws RemoteException {
                     if (useCompletion) {
-                        // Update CompletableFuture. This will recreate it or just clean it up.
-                        updateFuture(state);
+                        CarPowerStateListenerWithCompletion listenerWithCompletion;
+                        CompletableFuture<Void> future;
+                        synchronized (mLock) {
+                            // Update CompletableFuture. This will recreate it or just clean it up.
+                            updateFutureLocked(state);
+                            listenerWithCompletion = mListenerWithCompletion;
+                            future = mFuture;
+                        }
                         // Notify user that the state has changed and supply a future
-                        mListenerWithCompletion.onStateChanged(state, mFuture);
+                        listenerWithCompletion.onStateChanged(state, future);
                     } else {
+                        CarPowerStateListener listener;
+                        synchronized (mLock) {
+                            listener = mListener;
+                        }
                         // Notify the user without supplying a future
-                        mListener.onStateChanged(state);
+                        listener.onStateChanged(state);
                     }
                 }
             };
@@ -227,7 +239,7 @@
                 }
                 mListenerToService = listenerToService;
             } catch (RemoteException e) {
-                throw e.rethrowFromSystemServer();
+                handleRemoteExceptionFromCarService(e);
             }
         }
     }
@@ -243,7 +255,7 @@
             mListenerToService = null;
             mListener = null;
             mListenerWithCompletion = null;
-            cleanupFuture();
+            cleanupFutureLocked();
         }
 
         if (listenerToService == null) {
@@ -254,12 +266,12 @@
         try {
             mService.unregisterListener(listenerToService);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
-    private void updateFuture(int state) {
-        cleanupFuture();
+    private void updateFutureLocked(int state) {
+        cleanupFutureLocked();
         if (state == CarPowerStateListener.SHUTDOWN_PREPARE) {
             // Create a CompletableFuture and pass it to the listener.
             // When the listener completes the future, tell
@@ -269,16 +281,20 @@
                 if (exception != null && !(exception instanceof CancellationException)) {
                     Log.e(TAG, "Exception occurred while waiting for future", exception);
                 }
+                ICarPowerStateListener listenerToService;
+                synchronized (mLock) {
+                    listenerToService = mListenerToService;
+                }
                 try {
-                    mService.finished(mListenerToService);
+                    mService.finished(listenerToService);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
             });
         }
     }
 
-    private void cleanupFuture() {
+    private void cleanupFutureLocked() {
         if (mFuture != null) {
             if (!mFuture.isDone()) {
                 mFuture.cancel(false);
@@ -290,13 +306,9 @@
     /** @hide */
     @Override
     public void onCarDisconnected() {
-        ICarPowerStateListener listenerToService;
         synchronized (mLock) {
-            listenerToService = mListenerToService;
-        }
-
-        if (listenerToService != null) {
-            clearListener();
+            mListener = null;
+            mListenerWithCompletion = null;
         }
     }
 }
diff --git a/car-lib/src/android/car/hardware/property/CarPropertyManager.java b/car-lib/src/android/car/hardware/property/CarPropertyManager.java
index 3f7da1d..e3651da 100644
--- a/car-lib/src/android/car/hardware/property/CarPropertyManager.java
+++ b/car-lib/src/android/car/hardware/property/CarPropertyManager.java
@@ -21,6 +21,7 @@
 import android.annotation.FloatRange;
 import android.annotation.NonNull;
 import android.annotation.Nullable;
+import android.car.Car;
 import android.car.CarManagerBase;
 import android.car.hardware.CarPropertyConfig;
 import android.car.hardware.CarPropertyValue;
@@ -44,7 +45,7 @@
  * For details about the individual properties, see the descriptions in
  * hardware/interfaces/automotive/vehicle/types.hal
  */
-public class CarPropertyManager implements CarManagerBase {
+public class CarPropertyManager extends CarManagerBase {
     private static final boolean DBG = false;
     private static final String TAG = "CarPropertyManager";
     private static final int MSG_GENERIC_EVENT = 0;
@@ -93,11 +94,12 @@
      * Get an instance of the CarPropertyManager.
      *
      * Should not be obtained directly by clients, use {@link Car#getCarManager(String)} instead.
+     * @param car Car instance
      * @param service ICarProperty instance
-     * @param handler The handler to deal with CarPropertyEvent.
      * @hide
      */
-    public CarPropertyManager(@NonNull ICarProperty service, @Nullable Handler handler) {
+    public CarPropertyManager(Car car, @NonNull ICarProperty service) {
+        super(car);
         mService = service;
         try {
             List<CarPropertyConfig> configs = mService.getPropertyList();
@@ -108,11 +110,12 @@
             Log.e(TAG, "getPropertyList exception ", e);
             throw new RuntimeException(e);
         }
-        if (handler == null) {
+        Handler eventHandler = getEventHandler();
+        if (eventHandler == null) {
             mHandler = null;
             return;
         }
-        mHandler = new SingleMessageHandler<CarPropertyEvent>(handler.getLooper(),
+        mHandler = new SingleMessageHandler<CarPropertyEvent>(eventHandler.getLooper(),
             MSG_GENERIC_EVENT) {
             @Override
             protected void handleEvent(CarPropertyEvent event) {
@@ -206,7 +209,7 @@
         try {
             mService.registerListener(propertyId, rate, mCarPropertyEventToService);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
         return true;
     }
@@ -274,7 +277,8 @@
                 try {
                     mService.unregisterListener(propertyId, mCarPropertyEventToService);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
+                    // continue for local clean-up
                 }
                 mActivePropertyListener.remove(propertyId);
             } else if (needsServerUpdate) {
@@ -327,7 +331,7 @@
         try {
             return mService.getReadPermission(propId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, "");
         }
     }
 
@@ -346,7 +350,7 @@
         try {
             return mService.getWritePermission(propId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, "");
         }
     }
 
@@ -363,7 +367,7 @@
             return (propValue != null)
                     && (propValue.getStatus() == CarPropertyValue.STATUS_AVAILABLE);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -449,7 +453,7 @@
             }
             return propVal;
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -466,7 +470,7 @@
             CarPropertyValue<E> propVal = mService.getProperty(propId, areaId);
             return propVal;
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -488,7 +492,7 @@
         try {
             mService.setProperty(new CarPropertyValue<>(propId, areaId, val));
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
diff --git a/car-lib/src/android/car/input/CarInputHandlingService.java b/car-lib/src/android/car/input/CarInputHandlingService.java
index 518cee1..0ea990f 100644
--- a/car-lib/src/android/car/input/CarInputHandlingService.java
+++ b/car-lib/src/android/car/input/CarInputHandlingService.java
@@ -19,6 +19,7 @@
 import android.annotation.MainThread;
 import android.annotation.SystemApi;
 import android.app.Service;
+import android.car.Car;
 import android.car.CarLibLog;
 import android.content.Intent;
 import android.os.Bundle;
@@ -101,7 +102,7 @@
         try {
             callbackBinder.transact(INPUT_CALLBACK_BINDER_CODE, dataIn, null, IBinder.FLAG_ONEWAY);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            Car.handleRemoteExceptionFromCarService(this, e);
         }
     }
 
diff --git a/car-lib/src/android/car/media/CarAudioManager.java b/car-lib/src/android/car/media/CarAudioManager.java
index dcd4514..2bc8fd7 100644
--- a/car-lib/src/android/car/media/CarAudioManager.java
+++ b/car-lib/src/android/car/media/CarAudioManager.java
@@ -22,10 +22,8 @@
 import android.car.Car;
 import android.car.CarLibLog;
 import android.car.CarManagerBase;
-import android.content.Context;
 import android.media.AudioAttributes;
 import android.os.Bundle;
-import android.os.Handler;
 import android.os.IBinder;
 import android.os.RemoteException;
 import android.util.Log;
@@ -52,7 +50,7 @@
  * - There is exactly one audio zone, which is the primary zone
  * - Each volume group represents a controllable STREAM_TYPE, same as AudioManager
  */
-public final class CarAudioManager implements CarManagerBase {
+public final class CarAudioManager extends CarManagerBase {
 
     /**
      * Zone id of the primary audio zone.
@@ -114,7 +112,7 @@
         try {
             return mService.isDynamicRoutingEnabled();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -147,7 +145,7 @@
         try {
             mService.setGroupVolume(zoneId, groupId, index, flags);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -177,7 +175,7 @@
         try {
             return mService.getGroupMaxVolume(zoneId, groupId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -207,7 +205,7 @@
         try {
             return mService.getGroupMinVolume(zoneId, groupId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -240,7 +238,7 @@
         try {
             return mService.getGroupVolume(zoneId, groupId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -259,7 +257,7 @@
         try {
             mService.setFadeTowardFront(value);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -278,7 +276,7 @@
         try {
             mService.setBalanceTowardRight(value);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -300,7 +298,8 @@
         try {
             return mService.getExternalSources();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
+            return new String[0];
         }
     }
 
@@ -330,7 +329,7 @@
         try {
             return mService.createAudioPatch(sourceAddress, usage, gainInMillibels);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -350,7 +349,7 @@
         try {
             mService.releaseAudioPatch(patch);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -379,7 +378,7 @@
         try {
             return mService.getVolumeGroupCount(zoneId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -409,7 +408,7 @@
         try {
             return mService.getVolumeGroupIdForUsage(zoneId, usage);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -436,7 +435,7 @@
         try {
             return mService.getAudioZoneIds();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, new int[0]);
         }
     }
 
@@ -453,7 +452,7 @@
         try {
             return mService.getZoneIdForUid(uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -470,7 +469,7 @@
         try {
             return mService.setZoneIdForUid(zoneId, uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -486,7 +485,7 @@
         try {
             return mService.clearZoneIdForUid(uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -523,7 +522,7 @@
         try {
             return mService.getZoneIdForDisplayPortId(displayPortId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -541,7 +540,7 @@
         try {
             return mService.getUsagesForVolumeGroupId(zoneId, groupId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, new int[0]);
         }
     }
 
@@ -552,16 +551,16 @@
             try {
                 mService.unregisterVolumeCallback(mCarVolumeCallbackImpl.asBinder());
             } catch (RemoteException e) {
-                throw e.rethrowFromSystemServer();
+                handleRemoteExceptionFromCarService(e);
             }
         }
     }
 
     /** @hide */
-    public CarAudioManager(IBinder service, Context context, Handler handler) {
+    public CarAudioManager(Car car, IBinder service) {
+        super(car);
         mService = ICarAudio.Stub.asInterface(service);
         mCarVolumeCallbacks = new ArrayList<>();
-
         try {
             mService.registerVolumeCallback(mCarVolumeCallbackImpl.asBinder());
         } catch (RemoteException e) {
diff --git a/car-lib/src/android/car/media/CarMediaManager.java b/car-lib/src/android/car/media/CarMediaManager.java
index 12c2dc8..8537ed6 100644
--- a/car-lib/src/android/car/media/CarMediaManager.java
+++ b/car-lib/src/android/car/media/CarMediaManager.java
@@ -29,7 +29,7 @@
  * API for updating and receiving updates to the primary media source in the car.
  * @hide
  */
-public final class CarMediaManager implements CarManagerBase {
+public final class CarMediaManager extends CarManagerBase {
 
     private final ICarMedia mService;
     private Map<MediaSourceChangedListener, ICarMediaSourceListener> mCallbackMap = new HashMap();
@@ -40,7 +40,8 @@
      * Should not be obtained directly by clients, use {@link Car#getCarManager(String)} instead.
      * @hide
      */
-    public CarMediaManager(IBinder service) {
+    public CarMediaManager(Car car, IBinder service) {
+        super(car);
         mService = ICarMedia.Stub.asInterface(service);
     }
 
@@ -67,7 +68,7 @@
         try {
             return mService.getMediaSource();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -81,7 +82,7 @@
         try {
             mService.setMediaSource(componentName);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -102,7 +103,7 @@
             mCallbackMap.put(callback, binderCallback);
             mService.registerMediaSourceListener(binderCallback);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -117,12 +118,14 @@
             ICarMediaSourceListener binderCallback = mCallbackMap.remove(callback);
             mService.unregisterMediaSourceListener(binderCallback);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
     /** @hide */
     @Override
     public synchronized void onCarDisconnected() {
+        // TODO(b/142733057) Fix synchronization to use separate mLock
+        mCallbackMap.clear();
     }
 }
diff --git a/car-lib/src/android/car/navigation/CarNavigationStatusManager.java b/car-lib/src/android/car/navigation/CarNavigationStatusManager.java
index a70e3c8..2aa2f10 100644
--- a/car-lib/src/android/car/navigation/CarNavigationStatusManager.java
+++ b/car-lib/src/android/car/navigation/CarNavigationStatusManager.java
@@ -24,14 +24,13 @@
 import android.os.Bundle;
 import android.os.IBinder;
 import android.os.RemoteException;
-import android.util.Log;
 
 /**
  * API for providing navigation status for instrument cluster.
  * @hide
  */
 @SystemApi
-public final class CarNavigationStatusManager implements CarManagerBase {
+public final class CarNavigationStatusManager extends CarManagerBase {
     private static final String TAG = CarLibLog.TAG_NAV;
 
     private final IInstrumentClusterNavigation mService;
@@ -40,7 +39,8 @@
      * Only for CarServiceLoader
      * @hide
      */
-    public CarNavigationStatusManager(IBinder service) {
+    public CarNavigationStatusManager(Car car, IBinder service) {
+        super(car);
         mService = IInstrumentClusterNavigation.Stub.asInterface(service);
     }
 
@@ -67,14 +67,13 @@
         try {
             mService.onNavigationStateChanged(bundle);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
     /** @hide */
     @Override
     public void onCarDisconnected() {
-        Log.e(TAG, "Car service disconnected");
     }
 
     /** Returns navigation features of instrument cluster */
@@ -83,7 +82,7 @@
         try {
             return mService.getInstrumentClusterInfo();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 }
diff --git a/car-lib/src/android/car/settings/CarConfigurationManager.java b/car-lib/src/android/car/settings/CarConfigurationManager.java
index 34d5f4a..626ad39 100644
--- a/car-lib/src/android/car/settings/CarConfigurationManager.java
+++ b/car-lib/src/android/car/settings/CarConfigurationManager.java
@@ -16,6 +16,7 @@
 
 package android.car.settings;
 
+import android.car.Car;
 import android.car.CarManagerBase;
 import android.os.IBinder;
 import android.os.RemoteException;
@@ -23,13 +24,14 @@
 /**
  * Manager that exposes car configuration values that are stored on the system.
  */
-public class CarConfigurationManager implements CarManagerBase {
+public class CarConfigurationManager extends CarManagerBase {
     private static final String TAG = "CarConfigurationManager";
 
     private final ICarConfigurationManager mConfigurationService;
 
     /** @hide */
-    public CarConfigurationManager(IBinder service) {
+    public CarConfigurationManager(Car car, IBinder service) {
+        super(car);
         mConfigurationService = ICarConfigurationManager.Stub.asInterface(service);
     }
 
@@ -42,7 +44,7 @@
         try {
             return mConfigurationService.getSpeedBumpConfiguration();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
diff --git a/car-lib/src/android/car/settings/CarSettings.java b/car-lib/src/android/car/settings/CarSettings.java
index c307cab..ab7c906 100644
--- a/car-lib/src/android/car/settings/CarSettings.java
+++ b/car-lib/src/android/car/settings/CarSettings.java
@@ -144,5 +144,14 @@
          */
         public static final String KEY_BLUETOOTH_PROFILES_INHIBITED =
                 "android.car.BLUETOOTH_PROFILES_INHIBITED";
+
+        /**
+         * Key to enable / disable initial notice screen that will be shown for all user-starting
+         * moments including cold boot, wake up from suspend, and user switching.
+         * The value is boolean (1 or 0).
+         * @hide
+         */
+        public static final String KEY_ENABLE_INITIAL_NOTICE_SCREEN_TO_USER =
+                "android.car.ENABLE_INITIAL_NOTICE_SCREEN_TO_USER";
     }
 }
diff --git a/car-lib/src/android/car/storagemonitoring/CarStorageMonitoringManager.java b/car-lib/src/android/car/storagemonitoring/CarStorageMonitoringManager.java
index ff7b099..69c092b 100644
--- a/car-lib/src/android/car/storagemonitoring/CarStorageMonitoringManager.java
+++ b/car-lib/src/android/car/storagemonitoring/CarStorageMonitoringManager.java
@@ -19,7 +19,6 @@
 import android.annotation.SystemApi;
 import android.car.Car;
 import android.car.CarManagerBase;
-import android.os.Handler;
 import android.os.IBinder;
 import android.os.RemoteException;
 
@@ -37,7 +36,7 @@
  * @hide
  */
 @SystemApi
-public final class CarStorageMonitoringManager implements CarManagerBase {
+public final class CarStorageMonitoringManager extends CarManagerBase {
     private static final String TAG = CarStorageMonitoringManager.class.getSimpleName();
     private static final int MSG_IO_STATS_EVENT = 0;
 
@@ -77,9 +76,10 @@
     /**
      * @hide
      */
-    public CarStorageMonitoringManager(IBinder service, Handler handler) {
+    public CarStorageMonitoringManager(Car car, IBinder service) {
+        super(car);
         mService = ICarStorageMonitoring.Stub.asInterface(service);
-        mMessageHandler = new SingleMessageHandler<IoStats>(handler, MSG_IO_STATS_EVENT) {
+        mMessageHandler = new SingleMessageHandler<IoStats>(getEventHandler(), MSG_IO_STATS_EVENT) {
             @Override
             protected void handleEvent(IoStats event) {
                 for (IoStatsListener listener : mListeners) {
@@ -112,7 +112,7 @@
         try {
             return mService.getPreEolIndicatorStatus();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, PRE_EOL_INFO_UNKNOWN);
         }
     }
 
@@ -130,7 +130,7 @@
         try {
             return mService.getWearEstimate();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -150,7 +150,7 @@
         try {
             return mService.getWearEstimateHistory();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Collections.emptyList());
         }
     }
 
@@ -169,7 +169,7 @@
         try {
             return mService.getBootIoStats();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Collections.emptyList());
         }
     }
 
@@ -199,7 +199,7 @@
         try {
             return mService.getShutdownDiskWriteAmount();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, 0);
         }
     }
 
@@ -216,7 +216,7 @@
         try {
             return mService.getAggregateIoStats();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Collections.emptyList());
         }
     }
 
@@ -236,7 +236,7 @@
         try {
             return mService.getIoStatsDeltas();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Collections.emptyList());
         }
     }
 
@@ -259,7 +259,7 @@
             }
             mListeners.add(listener);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -277,7 +277,7 @@
                 mListenerToService = null;
             }
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 }
diff --git a/car-lib/src/android/car/test/CarTestManagerBinderWrapper.java b/car-lib/src/android/car/test/CarTestManagerBinderWrapper.java
index 5e39ea3..0a167cf 100644
--- a/car-lib/src/android/car/test/CarTestManagerBinderWrapper.java
+++ b/car-lib/src/android/car/test/CarTestManagerBinderWrapper.java
@@ -15,6 +15,7 @@
  */
 package android.car.test;
 
+import android.car.Car;
 import android.car.CarManagerBase;
 import android.os.IBinder;
 
@@ -22,10 +23,17 @@
  * Only for system testing
  * @hide
  */
-public class CarTestManagerBinderWrapper implements CarManagerBase {
+public class CarTestManagerBinderWrapper extends CarManagerBase {
     public final IBinder binder;
 
     public CarTestManagerBinderWrapper(IBinder binder) {
+        super(null); // This will not work safely but is only for keeping API.
+        this.binder = binder;
+    }
+
+    /** @hide */
+    public CarTestManagerBinderWrapper(Car car, IBinder binder) {
+        super(car);
         this.binder = binder;
     }
 
diff --git a/car-lib/src/android/car/trust/CarTrustAgentEnrollmentManager.java b/car-lib/src/android/car/trust/CarTrustAgentEnrollmentManager.java
index c82d515..9881420 100644
--- a/car-lib/src/android/car/trust/CarTrustAgentEnrollmentManager.java
+++ b/car-lib/src/android/car/trust/CarTrustAgentEnrollmentManager.java
@@ -24,8 +24,8 @@
 import android.annotation.RequiresPermission;
 import android.annotation.SystemApi;
 import android.bluetooth.BluetoothDevice;
+import android.car.Car;
 import android.car.CarManagerBase;
-import android.content.Context;
 import android.os.Bundle;
 import android.os.Handler;
 import android.os.IBinder;
@@ -39,6 +39,7 @@
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.ref.WeakReference;
+import java.util.Collections;
 import java.util.List;
 
 
@@ -67,7 +68,7 @@
  * @hide
  */
 @SystemApi
-public final class CarTrustAgentEnrollmentManager implements CarManagerBase {
+public final class CarTrustAgentEnrollmentManager extends CarManagerBase {
     private static final String TAG = "CarTrustEnrollMgr";
     private static final String KEY_HANDLE = "handle";
     private static final String KEY_ACTIVE = "active";
@@ -81,7 +82,6 @@
     private static final int MSG_ENROLL_TOKEN_STATE_CHANGED = 7;
     private static final int MSG_ENROLL_TOKEN_REMOVED = 8;
 
-    private final Context mContext;
     private final ICarTrustAgentEnrollment mEnrollmentService;
     private Object mListenerLock = new Object();
     @GuardedBy("mListenerLock")
@@ -114,10 +114,10 @@
 
 
     /** @hide */
-    public CarTrustAgentEnrollmentManager(IBinder service, Context context, Handler handler) {
-        mContext = context;
+    public CarTrustAgentEnrollmentManager(Car car, IBinder service) {
+        super(car);
         mEnrollmentService = ICarTrustAgentEnrollment.Stub.asInterface(service);
-        mEventCallbackHandler = new EventCallbackHandler(this, handler.getLooper());
+        mEventCallbackHandler = new EventCallbackHandler(this, getEventHandler().getLooper());
     }
 
     /** @hide */
@@ -134,7 +134,7 @@
         try {
             mEnrollmentService.startEnrollmentAdvertising();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -146,7 +146,7 @@
         try {
             mEnrollmentService.stopEnrollmentAdvertising();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -161,7 +161,7 @@
         try {
             mEnrollmentService.enrollmentHandshakeAccepted(device);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -173,7 +173,7 @@
         try {
             mEnrollmentService.terminateEnrollmentHandshake();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -194,7 +194,7 @@
         try {
             return mEnrollmentService.isEscrowTokenActive(handle, uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, false);
         }
     }
 
@@ -209,7 +209,7 @@
         try {
             mEnrollmentService.removeEscrowToken(handle, uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -223,7 +223,7 @@
         try {
             mEnrollmentService.removeAllTrustedDevices(uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -238,7 +238,7 @@
         try {
             mEnrollmentService.setTrustedDeviceEnrollmentEnabled(isEnabled);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -253,7 +253,7 @@
         try {
             mEnrollmentService.setTrustedDeviceUnlockEnabled(isEnabled);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -278,7 +278,7 @@
                     mEnrollmentService.registerEnrollmentCallback(mListenerToEnrollmentService);
                     mEnrollmentCallback = callback;
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
             }
         }
@@ -290,7 +290,7 @@
                 try {
                     mEnrollmentService.unregisterEnrollmentCallback(mListenerToEnrollmentService);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
                 mEnrollmentCallback = null;
             }
@@ -318,7 +318,7 @@
                     mEnrollmentService.registerBleCallback(mListenerToBleService);
                     mBleCallback = callback;
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
             }
         }
@@ -330,7 +330,7 @@
                 try {
                     mEnrollmentService.unregisterBleCallback(mListenerToBleService);
                 } catch (RemoteException e) {
-                    throw e.rethrowFromSystemServer();
+                    handleRemoteExceptionFromCarService(e);
                 }
                 mBleCallback = null;
             }
@@ -351,7 +351,7 @@
         try {
             return mEnrollmentService.getEnrolledDeviceInfosForUser(uid);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, Collections.emptyList());
         }
     }
 
diff --git a/car-lib/src/android/car/user/IUserNotice.aidl b/car-lib/src/android/car/user/IUserNotice.aidl
new file mode 100644
index 0000000..1debc84
--- /dev/null
+++ b/car-lib/src/android/car/user/IUserNotice.aidl
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.car.user;
+
+/**
+ * Binder for UserNotice UI to notify status change to CarUserNoticeService/CarService.
+ * This binder is implemented inside CarService.
+ * @hide
+*/
+interface IUserNotice {
+    /**
+     * Notify CarUserNoticeService/CarSercice that UI dialog is dismissed.
+     * CarUserNoticeService will unbind the UI servie to finish it.
+     */
+    void onDialogDismissed();
+}
\ No newline at end of file
diff --git a/car-lib/src/android/car/user/IUserNoticeUI.aidl b/car-lib/src/android/car/user/IUserNoticeUI.aidl
new file mode 100644
index 0000000..44717d0
--- /dev/null
+++ b/car-lib/src/android/car/user/IUserNoticeUI.aidl
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.car.user;
+
+import android.car.user.IUserNotice;
+
+/**
+ * Binder for CarUserNoticeService/CarService to pass IUserNotice binder to UserNotice UI.
+ * UserNotice UI implements this binder.
+ * @hide
+*/
+oneway interface IUserNoticeUI {
+    /**
+     * CarUserNoticeService will use this call to pass IUserNotice binder which can be used
+     * to notify dismissal of UI dialog.
+     */
+    void setCallbackBinder(in IUserNotice binder);
+}
diff --git a/car-lib/src/android/car/vms/VmsPublisherClientService.java b/car-lib/src/android/car/vms/VmsPublisherClientService.java
index 5847b19..ea75707 100644
--- a/car-lib/src/android/car/vms/VmsPublisherClientService.java
+++ b/car-lib/src/android/car/vms/VmsPublisherClientService.java
@@ -20,6 +20,7 @@
 import android.annotation.NonNull;
 import android.annotation.SystemApi;
 import android.app.Service;
+import android.car.Car;
 import android.content.Intent;
 import android.os.Binder;
 import android.os.Build;
@@ -53,7 +54,7 @@
  */
 @SystemApi
 public abstract class VmsPublisherClientService extends Service {
-    private static final boolean DBG = true;
+    private static final boolean DBG = false;
     private static final String TAG = "VmsPublisherClientService";
 
     private final Object mLock = new Object();
@@ -66,17 +67,13 @@
 
     @Override
     public IBinder onBind(Intent intent) {
-        if (DBG) {
-            Log.d(TAG, "onBind, intent: " + intent);
-        }
+        if (DBG) Log.d(TAG, "onBind, intent: " + intent);
         return mVmsPublisherClient.asBinder();
     }
 
     @Override
     public boolean onUnbind(Intent intent) {
-        if (DBG) {
-            Log.d(TAG, "onUnbind, intent: " + intent);
-        }
+        if (DBG) Log.d(TAG, "onUnbind, intent: " + intent);
         stopSelf();
         return super.onUnbind(intent);
     }
@@ -111,16 +108,14 @@
      */
     public final void publish(@NonNull VmsLayer layer, int publisherId, byte[] payload) {
         Preconditions.checkNotNull(layer, "layer cannot be null");
-        if (DBG) {
-            Log.d(TAG, "Publishing for layer : " + layer);
-        }
+        if (DBG) Log.d(TAG, "Publishing for layer : " + layer);
 
         IBinder token = getTokenForPublisherServiceThreadSafe();
 
         try {
             mVmsPublisherService.publish(token, layer, publisherId, payload);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            Car.handleRemoteExceptionFromCarService(this, e);
         }
     }
 
@@ -132,9 +127,7 @@
      */
     public final void setLayersOffering(@NonNull VmsLayersOffering offering) {
         Preconditions.checkNotNull(offering, "offering cannot be null");
-        if (DBG) {
-            Log.d(TAG, "Setting layers offering : " + offering);
-        }
+        if (DBG) Log.d(TAG, "Setting layers offering : " + offering);
 
         IBinder token = getTokenForPublisherServiceThreadSafe();
 
@@ -142,7 +135,7 @@
             mVmsPublisherService.setLayersOffering(token, offering);
             VmsOperationRecorder.get().setLayersOffering(offering);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            Car.handleRemoteExceptionFromCarService(this, e);
         }
     }
 
@@ -177,9 +170,10 @@
         }
         int publisherId;
         try {
-            Log.i(TAG, "Getting publisher static ID");
             publisherId = mVmsPublisherService.getPublisherId(publisherInfo);
+            Log.i(TAG, "Assigned publisher ID: " + publisherId);
         } catch (RemoteException e) {
+            // This will crash. To prevent crash, safer invalid return value should be defined.
             throw e.rethrowFromSystemServer();
         }
         VmsOperationRecorder.get().getPublisherId(publisherId);
@@ -199,7 +193,7 @@
         try {
             return mVmsPublisherService.getSubscriptions();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return Car.handleRemoteExceptionFromCarService(this, e, null);
         }
     }
 
@@ -227,9 +221,7 @@
 
             VmsPublisherClientService vmsPublisherClientService = mVmsPublisherClientService.get();
             if (vmsPublisherClientService == null) return;
-            if (DBG) {
-                Log.d(TAG, "setting VmsPublisherService.");
-            }
+            if (DBG) Log.d(TAG, "setting VmsPublisherService.");
             Handler handler = vmsPublisherClientService.mHandler;
             handler.sendMessage(
                     handler.obtainMessage(VmsEventHandler.SET_SERVICE_CALLBACK, service));
@@ -242,9 +234,7 @@
 
             VmsPublisherClientService vmsPublisherClientService = mVmsPublisherClientService.get();
             if (vmsPublisherClientService == null) return;
-            if (DBG) {
-                Log.d(TAG, "subscription event: " + subscriptionState);
-            }
+            if (DBG) Log.d(TAG, "subscription event: " + subscriptionState);
             synchronized (mSequenceLock) {
                 if (subscriptionState.getSequenceNumber() <= mSequence) {
                     Log.w(TAG, "Sequence out of order. Current sequence = " + mSequence
diff --git a/car-lib/src/android/car/vms/VmsSubscriberManager.java b/car-lib/src/android/car/vms/VmsSubscriberManager.java
index 06a06ae..edde982 100644
--- a/car-lib/src/android/car/vms/VmsSubscriberManager.java
+++ b/car-lib/src/android/car/vms/VmsSubscriberManager.java
@@ -19,6 +19,7 @@
 import android.annotation.CallbackExecutor;
 import android.annotation.NonNull;
 import android.annotation.SystemApi;
+import android.car.Car;
 import android.car.CarManagerBase;
 import android.os.Binder;
 import android.os.IBinder;
@@ -39,8 +40,7 @@
  * @hide
  */
 @SystemApi
-public final class VmsSubscriberManager implements CarManagerBase {
-    private static final boolean DBG = true;
+public final class VmsSubscriberManager extends CarManagerBase {
     private static final String TAG = "VmsSubscriberManager";
 
     private final IVmsSubscriberService mVmsSubscriberService;
@@ -76,7 +76,8 @@
      *
      * @hide
      */
-    public VmsSubscriberManager(IBinder service) {
+    public VmsSubscriberManager(Car car, IBinder service) {
+        super(car);
         mVmsSubscriberService = IVmsSubscriberService.Stub.asInterface(service);
         mSubscriberManagerClient = new IVmsSubscriberClient.Stub() {
             @Override
@@ -86,9 +87,7 @@
                     executor = mExecutor;
                 }
                 if (executor == null) {
-                    if (DBG) {
-                        Log.d(TAG, "Executor is null in onVmsMessageReceived");
-                    }
+                    Log.w(TAG, "Executor is unset in onVmsMessageReceived");
                     return;
                 }
                 Binder.clearCallingIdentity();
@@ -104,9 +103,7 @@
                     executor = mExecutor;
                 }
                 if (executor == null) {
-                    if (DBG) {
-                        Log.d(TAG, "Executor is null in onLayersAvailabilityChanged");
-                    }
+                    Log.w(TAG, "Executor is unset in onLayersAvailabilityChanged");
                     return;
                 }
                 Binder.clearCallingIdentity();
@@ -138,7 +135,7 @@
         try {
             mVmsSubscriberService.addVmsSubscriberToNotifications(mSubscriberManagerClient);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -153,7 +150,7 @@
         try {
             mVmsSubscriberService.removeVmsSubscriberToNotifications(mSubscriberManagerClient);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         } finally {
             synchronized (mClientCallbackLock) {
                 mClientCallback = null;
@@ -173,7 +170,7 @@
         try {
             return mVmsSubscriberService.getPublisherInfo(publisherId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -187,7 +184,7 @@
         try {
             return mVmsSubscriberService.getAvailableLayers();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            return handleRemoteExceptionFromCarService(e, null);
         }
     }
 
@@ -204,7 +201,7 @@
             mVmsSubscriberService.addVmsSubscriber(mSubscriberManagerClient, layer);
             VmsOperationRecorder.get().subscribe(layer);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -223,7 +220,7 @@
                     mSubscriberManagerClient, layer, publisherId);
             VmsOperationRecorder.get().subscribe(layer, publisherId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -236,7 +233,7 @@
             mVmsSubscriberService.addVmsSubscriberPassive(mSubscriberManagerClient);
             VmsOperationRecorder.get().startMonitoring();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -253,7 +250,7 @@
             mVmsSubscriberService.removeVmsSubscriber(mSubscriberManagerClient, layer);
             VmsOperationRecorder.get().unsubscribe(layer);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -271,7 +268,7 @@
                     mSubscriberManagerClient, layer, publisherId);
             VmsOperationRecorder.get().unsubscribe(layer, publisherId);
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -283,7 +280,7 @@
             mVmsSubscriberService.removeVmsSubscriberPassive(mSubscriberManagerClient);
             VmsOperationRecorder.get().stopMonitoring();
         } catch (RemoteException e) {
-            throw e.rethrowFromSystemServer();
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -331,5 +328,9 @@
      */
     @Override
     public void onCarDisconnected() {
+        synchronized (mClientCallbackLock) {
+            mClientCallback = null;
+            mExecutor = null;
+        }
     }
 }
diff --git a/car-systemtest-lib/src/android/car/test/CarTestManager.java b/car-systemtest-lib/src/android/car/test/CarTestManager.java
index 52b01a6..3ee1067 100644
--- a/car-systemtest-lib/src/android/car/test/CarTestManager.java
+++ b/car-systemtest-lib/src/android/car/test/CarTestManager.java
@@ -27,18 +27,19 @@
  * @hide
  */
 @SystemApi
-public final class CarTestManager implements CarManagerBase {
+public final class CarTestManager extends CarManagerBase {
 
     private final ICarTest mService;
 
 
-    public CarTestManager(IBinder carServiceBinder) {
+    public CarTestManager(Car car, IBinder carServiceBinder) {
+        super(car);
         mService = ICarTest.Stub.asInterface(carServiceBinder);
     }
 
     @Override
     public void onCarDisconnected() {
-        // should not happen for embedded
+        // test will fail. nothing to do.
     }
 
     /**
@@ -52,7 +53,7 @@
         try {
             mService.stopCarService(token);
         } catch (RemoteException e) {
-            handleRemoteException(e);
+            handleRemoteExceptionFromCarService(e);
         }
     }
 
@@ -66,12 +67,7 @@
         try {
             mService.startCarService(token);
         } catch (RemoteException e) {
-            handleRemoteException(e);
+            handleRemoteExceptionFromCarService(e);
         }
     }
-
-    private static void handleRemoteException(RemoteException e) {
-        // let test fail
-        throw new RuntimeException(e);
-    }
 }
diff --git a/car-usb-handler/src/android/car/usb/handler/BootUsbService.java b/car-usb-handler/src/android/car/usb/handler/BootUsbService.java
index 698571a..909be07 100644
--- a/car-usb-handler/src/android/car/usb/handler/BootUsbService.java
+++ b/car-usb-handler/src/android/car/usb/handler/BootUsbService.java
@@ -107,7 +107,7 @@
         Intent manageDevice = new Intent(context, UsbHostManagementActivity.class);
         manageDevice.setAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
         manageDevice.putExtra(UsbManager.EXTRA_DEVICE, device);
-        manageDevice.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
+        manageDevice.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
         context.startActivityAsUser(manageDevice, UserHandle.CURRENT);
     }
 }
diff --git a/car-usb-handler/src/android/car/usb/handler/UsbHostManagementActivity.java b/car-usb-handler/src/android/car/usb/handler/UsbHostManagementActivity.java
index f710960..0a91089 100644
--- a/car-usb-handler/src/android/car/usb/handler/UsbHostManagementActivity.java
+++ b/car-usb-handler/src/android/car/usb/handler/UsbHostManagementActivity.java
@@ -80,7 +80,6 @@
         if (connectedDevice != null) {
             mController.processDevice(connectedDevice);
         } else {
-            unregisterResolveBroadcastReceiver();
             finish();
         }
     }
@@ -90,8 +89,8 @@
             // We could have been unregistered after receiving the intent but before processing it,
             // so make sure we are still registered.
             if (mReceiverRegistered) {
-                processDevice();
                 unregisterResolveBroadcastReceiver();
+                processDevice();
             }
         }
     }
diff --git a/car_product/overlay/frameworks/base/core/res/res/values/config.xml b/car_product/overlay/frameworks/base/core/res/res/values/config.xml
index b9d6179..6b5ddac 100644
--- a/car_product/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/car_product/overlay/frameworks/base/core/res/res/values/config.xml
@@ -91,4 +91,6 @@
     <bool name="config_supportsSystemDecorsOnSecondaryDisplays">false</bool>
 
     <string name="config_dataUsageSummaryComponent">com.android.car.settings/com.android.car.settings.datausage.DataWarningAndLimitActivity</string>
+
+    <bool name="config_automotiveHideNavBarForKeyboard">true</bool>
 </resources>
diff --git a/car_product/overlay/packages/apps/CertInstaller/res/values/config.xml b/car_product/overlay/packages/apps/CertInstaller/res/values/config.xml
new file mode 100644
index 0000000..6f94ffb
--- /dev/null
+++ b/car_product/overlay/packages/apps/CertInstaller/res/values/config.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+    Copyright 2019 The Android Open Source Project
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<resources>
+    <string name="config_system_install_component" translatable="false">com.android.car.settings/com.android.car.settings.security.CredentialStorageActivity</string>
+</resources>
diff --git a/car_product/sepolicy/private/bluetooth.te b/car_product/sepolicy/private/bluetooth.te
new file mode 100644
index 0000000..6ba74c2
--- /dev/null
+++ b/car_product/sepolicy/private/bluetooth.te
@@ -0,0 +1 @@
+allow bluetooth mediametrics_service:service_manager find;
diff --git a/car_product/sepolicy/private/platform_app.te b/car_product/sepolicy/private/platform_app.te
index 6f67594..65dd75d 100644
--- a/car_product/sepolicy/private/platform_app.te
+++ b/car_product/sepolicy/private/platform_app.te
@@ -1,2 +1,5 @@
-allow platform_app broadcastradio_service:service_manager find;
-allow platform_app carservice_service:service_manager find;
+allow platform_app {
+    broadcastradio_service
+    carservice_service
+    update_engine_service
+}:service_manager find;
diff --git a/car_product/sepolicy/public/property_contexts b/car_product/sepolicy/public/property_contexts
index 8dbe0bc..9646ac9 100644
--- a/car_product/sepolicy/public/property_contexts
+++ b/car_product/sepolicy/public/property_contexts
@@ -1 +1,3 @@
+android.car.number_pre_created_guests            u:object_r:car_bootuser_prop:s0
+android.car.number_pre_created_users             u:object_r:car_bootuser_prop:s0
 android.car.systemuser.bootuseroverrideid        u:object_r:car_bootuser_prop:s0
diff --git a/car_product/sepolicy/test/hal_vehicle_default.te b/car_product/sepolicy/test/hal_vehicle_default.te
new file mode 100644
index 0000000..8b9f6ee
--- /dev/null
+++ b/car_product/sepolicy/test/hal_vehicle_default.te
@@ -0,0 +1,4 @@
+typeattribute hal_vehicle_default hal_automotive_socket_exemption;
+
+unix_socket_connect(hal_vehicle_default, fwmarkd, netd)
+net_domain(hal_vehicle_default)
diff --git a/car_product/sepolicy/test/kitchensink_app.te b/car_product/sepolicy/test/kitchensink_app.te
index 297b3e7..0ab9c43 100644
--- a/car_product/sepolicy/test/kitchensink_app.te
+++ b/car_product/sepolicy/test/kitchensink_app.te
@@ -11,6 +11,7 @@
     activity_service
     activity_task_service
     autofill_service
+    carservice_service
     connectivity_service
     content_service
     deviceidle_service
diff --git a/service/AndroidManifest.xml b/service/AndroidManifest.xml
index 7d85445..e2db410 100644
--- a/service/AndroidManifest.xml
+++ b/service/AndroidManifest.xml
@@ -475,6 +475,16 @@
         android:label="@string/car_permission_label_enroll_trust"
         android:description="@string/car_permission_desc_enroll_trust" />
 
+    <!-- Allows a test application to control car service's testing mode.
+         This is only for platform level testing.
+         <p>Protection level: signature|privileged
+    -->
+    <permission
+        android:name="android.car.permission.CAR_TEST_SERVICE"
+        android:protectionLevel="signature|privileged"
+        android:label="@string/car_permission_label_car_test_service"
+        android:description="@string/car_permission_desc_car_test_service" />
+
     <uses-permission android:name="android.permission.CALL_PHONE" />
     <uses-permission android:name="android.permission.DEVICE_POWER" />
     <uses-permission android:name="android.permission.GRANT_RUNTIME_PERMISSIONS" />
@@ -492,6 +502,7 @@
     <uses-permission android:name="android.permission.WRITE_SETTINGS" />
     <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
     <uses-permission android:name="android.permission.BLUETOOTH" />
+    <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" />
     <uses-permission android:name="android.permission.MANAGE_USERS" />
     <uses-permission android:name="android.permission.LOCATION_HARDWARE" />
     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
diff --git a/service/res/values-af/strings.xml b/service/res/values-af/strings.xml
index 8da32cf..2d7a3fb 100644
--- a/service/res/values-af/strings.xml
+++ b/service/res/values-af/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Toegang tot motor se kragstaat."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Skryf vertroude toestel in"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Laat inskrywing van vertroude toestelle toe"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Beheer motordiens se toetsmodus"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Beheer motordiens se toetsmodus"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"My Toestel"</string>
 </resources>
diff --git a/service/res/values-am/strings.xml b/service/res/values-am/strings.xml
index 41b7622..2945357 100644
--- a/service/res/values-am/strings.xml
+++ b/service/res/values-am/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"የመኪናውን የኃይል ሁነታ ይድረሱበት።"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"የታመነ መሣሪያ ያስመዝግቡ"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"የታመነ መሣሪያ ምዝገባ ይፍቀዱ"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"የቁጥጥር መኪና አገልግሎቶች የሙከራ ሁነታ"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"የቁጥጥር መኪና አገልግሎቶች የሙከራ ሁነታ"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"የእኔ መሣሪያ"</string>
 </resources>
diff --git a/service/res/values-ar/strings.xml b/service/res/values-ar/strings.xml
index d9b7040..efbd57e 100644
--- a/service/res/values-ar/strings.xml
+++ b/service/res/values-ar/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"يمكنك الحصول على معلومات عن حالة قدرة السيارة."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"تسجيل الجهاز الموثوق به"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"السماح بتسجيل الأجهزة الموثوق بها"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"وضع اختبار خدمة التحكّم في السيارة"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"وضع اختبار خدمة التحكّم في السيارة"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"جهازي"</string>
 </resources>
diff --git a/service/res/values-as/strings.xml b/service/res/values-as/strings.xml
index 0cac303..80ea081 100644
--- a/service/res/values-as/strings.xml
+++ b/service/res/values-as/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"গাড়ীৰ শক্তিৰ স্থিতি এক্সেছ কৰিব।"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"বিশ্বাসী ডিভাইচ পঞ্জীয়ন কৰক"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"বিশ্বাসী ডিভাইচ পঞ্জীয়নৰ অনুমতি দিয়ক"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"বাহনৰ সেৱাৰ পৰীক্ষণ ম’ড নিয়ন্ত্ৰণ কৰক"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"বাহনৰ সেৱাৰ পৰীক্ষণ ম’ড নিয়ন্ত্ৰণ কৰক"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"মোৰ ডিভাইচ"</string>
 </resources>
diff --git a/service/res/values-az/strings.xml b/service/res/values-az/strings.xml
index 5cdfa3d..c877cd9 100644
--- a/service/res/values-az/strings.xml
+++ b/service/res/values-az/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Avtomobilin güc vəziyyətinə giriş."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Güvənli cihazı qeydiyyata alın"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Güvənli cihaz qeydiyyatına icazə verin"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Avtomobil xidmətinin sınaq rejimini idarə edin"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Avtomobil xidmətinin sınaq rejimini idarə edin"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Cihazım"</string>
 </resources>
diff --git a/service/res/values-b+sr+Latn/strings.xml b/service/res/values-b+sr+Latn/strings.xml
index e0da81d..3de91d4 100644
--- a/service/res/values-b+sr+Latn/strings.xml
+++ b/service/res/values-b+sr+Latn/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Pristup statusu napajanja automobila."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registruj pouzdani uređaj"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Omogući registrovanje pouzdanih uređaja"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrola režima za testiranje usluge automobila"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrola režima za testiranje usluge automobila"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moj uređaj"</string>
 </resources>
diff --git a/service/res/values-be/strings.xml b/service/res/values-be/strings.xml
index b5d46ae..173e372 100644
--- a/service/res/values-be/strings.xml
+++ b/service/res/values-be/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Доступ да інфармацыі пра сілкаванне аўтамабіля."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Зарэгістраваць давераную прыладу"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Дазволіць рэгістрацыю даверанай прылады"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Тэставы рэжым кіравання аўтасэрвісам"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Тэставы рэжым кіравання аўтасэрвісам"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Мая прылада"</string>
 </resources>
diff --git a/service/res/values-bg/strings.xml b/service/res/values-bg/strings.xml
index d5c1fa4..7ad3413 100644
--- a/service/res/values-bg/strings.xml
+++ b/service/res/values-bg/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Достъп до състоянието на захранването на автомобила."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Регистриране на надеждно устройство"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Разрешаване на регистрирането на надеждно устройство"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Управление на тестовия режим на автомобилната услуга"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Управление на тестовия режим на автомобилната услуга"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Моето устройство"</string>
 </resources>
diff --git a/service/res/values-bn/strings.xml b/service/res/values-bn/strings.xml
index 3b5957b..d39fe60 100644
--- a/service/res/values-bn/strings.xml
+++ b/service/res/values-bn/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"গাড়ির পাওয়ারের স্ট্যাটাস অ্যাক্সেস করা।"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"বিশ্বস্ত ডিভাইস নথিভুক্ত করুন"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"বিশ্বস্ত ডিভাইস নথিভুক্ত করার অনুমতি দিন"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"গাড়ির পরিষেবার জন্য পরীক্ষার মোড কন্ট্রোল করুন"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"গাড়ির পরিষেবার জন্য পরীক্ষার মোড কন্ট্রোল করুন"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"আমার ডিভাইস"</string>
 </resources>
diff --git a/service/res/values-bs/strings.xml b/service/res/values-bs/strings.xml
index 5770adf..78437e5 100644
--- a/service/res/values-bs/strings.xml
+++ b/service/res/values-bs/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Pristupiti podacima o stanju energije automobila."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Prijavi pouzdani uređaj"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Dozvoli prijavu pouzdanih uređaja"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrolirajte testnim načinom usluge automobila"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrolirajte testnim načinom usluge automobila"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moj uređaj"</string>
 </resources>
diff --git a/service/res/values-ca/strings.xml b/service/res/values-ca/strings.xml
index 535b403..7d2d970 100644
--- a/service/res/values-ca/strings.xml
+++ b/service/res/values-ca/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Accedeix a l\'estat de la potència del cotxe."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registra un dispositiu de confiança"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permet el registre de dispositius de confiança"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controla el mode de prova del servei del cotxe"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controla el mode de prova del servei del cotxe"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"El meu dispositiu"</string>
 </resources>
diff --git a/service/res/values-cs/strings.xml b/service/res/values-cs/strings.xml
index 369cdbc..c85c278 100644
--- a/service/res/values-cs/strings.xml
+++ b/service/res/values-cs/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Přístup ke stavu nabití auta."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Zaregistrovat důvěryhodné zařízení"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Povolit registraci důvěryhodného zařízení"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Režim testování služby ovládání auta"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Režim testování služby ovládání auta"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moje zařízení"</string>
 </resources>
diff --git a/service/res/values-da/strings.xml b/service/res/values-da/strings.xml
index 5513137..ad0a9d8 100644
--- a/service/res/values-da/strings.xml
+++ b/service/res/values-da/strings.xml
@@ -22,8 +22,8 @@
     <string name="car_permission_desc_camera" msgid="917024932164501426">"Få adgang til bilens kameraer."</string>
     <string name="car_permission_label_energy" msgid="7409144323527821558">"få adgang til oplysninger om bilens energiforbrug"</string>
     <string name="car_permission_desc_energy" msgid="3392963810053235407">"Få adgang til oplysninger om bilens energiforbrug"</string>
-    <string name="car_permission_label_hvac" msgid="1499454192558727843">"få adgang til bilens vvac"</string>
-    <string name="car_permission_desc_hvac" msgid="3754229695589774195">"Få adgang til bilens VVAC-system."</string>
+    <string name="car_permission_label_hvac" msgid="1499454192558727843">"få adgang til bilens ventilation"</string>
+    <string name="car_permission_desc_hvac" msgid="3754229695589774195">"Få adgang til bilens ventilationssystem."</string>
     <string name="car_permission_label_mileage" msgid="4661317074631150551">"få adgang til oplysninger om bilens kilometertal"</string>
     <string name="car_permission_desc_mileage" msgid="7179735693278681090">"Få adgang til oplysninger om bilens kilometertal."</string>
     <string name="car_permission_label_speed" msgid="1149027717860529745">"tjekke bilens hastighed"</string>
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Få adgang til bilens batteritilstand."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Tilmeld godkendt enhed"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Tillad tilmelding af godkendt enhed"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Styre testtilstand for autoservice"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Styre testtilstand for autoservice"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Min enhed"</string>
 </resources>
diff --git a/service/res/values-de/strings.xml b/service/res/values-de/strings.xml
index ff4c461..9b3a6ce 100644
--- a/service/res/values-de/strings.xml
+++ b/service/res/values-de/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Auf Informationen zum Energiestatus des Autos zugreifen."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Vertrauenswürdiges Gerät registrieren"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Registrieren eines vertrauenswürdigen Geräts erlauben"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Testmodus des Autodienstes steuern"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Testmodus des Autodienstes steuern"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mein Gerät"</string>
 </resources>
diff --git a/service/res/values-el/strings.xml b/service/res/values-el/strings.xml
index 8935d6d..2fbf52b 100644
--- a/service/res/values-el/strings.xml
+++ b/service/res/values-el/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Πρόσβαση στην κατάσταση ενέργειας του αυτοκινήτου."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Εγγραφή αξιόπιστης συσκευής"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Να επιτρέπεται η εγγραφή αξιόπιστης συσκευής"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Έλεγχος λειτουργίας δοκιμής υπηρεσίας αυτοκινήτου."</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Έλεγχος λειτουργίας δοκιμής υπηρεσίας αυτοκινήτου."</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Η συσκευή μου"</string>
 </resources>
diff --git a/service/res/values-en-rAU/strings.xml b/service/res/values-en-rAU/strings.xml
index 49741f1..d31c84e 100644
--- a/service/res/values-en-rAU/strings.xml
+++ b/service/res/values-en-rAU/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Access car’s power state."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Enrol Trusted Device"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Allow Trusted Device Enrollment"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Control car service’s test mode"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Control car service’s test mode"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"My Device"</string>
 </resources>
diff --git a/service/res/values-en-rCA/strings.xml b/service/res/values-en-rCA/strings.xml
index 49741f1..d31c84e 100644
--- a/service/res/values-en-rCA/strings.xml
+++ b/service/res/values-en-rCA/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Access car’s power state."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Enrol Trusted Device"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Allow Trusted Device Enrollment"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Control car service’s test mode"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Control car service’s test mode"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"My Device"</string>
 </resources>
diff --git a/service/res/values-en-rGB/strings.xml b/service/res/values-en-rGB/strings.xml
index 49741f1..d31c84e 100644
--- a/service/res/values-en-rGB/strings.xml
+++ b/service/res/values-en-rGB/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Access car’s power state."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Enrol Trusted Device"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Allow Trusted Device Enrollment"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Control car service’s test mode"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Control car service’s test mode"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"My Device"</string>
 </resources>
diff --git a/service/res/values-en-rIN/strings.xml b/service/res/values-en-rIN/strings.xml
index 49741f1..d31c84e 100644
--- a/service/res/values-en-rIN/strings.xml
+++ b/service/res/values-en-rIN/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Access car’s power state."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Enrol Trusted Device"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Allow Trusted Device Enrollment"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Control car service’s test mode"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Control car service’s test mode"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"My Device"</string>
 </resources>
diff --git a/service/res/values-en-rXC/strings.xml b/service/res/values-en-rXC/strings.xml
index 5bbe05b..4b98858 100644
--- a/service/res/values-en-rXC/strings.xml
+++ b/service/res/values-en-rXC/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‎‎‏‎‏‏‎‏‎‏‏‏‎‏‎‏‎‏‏‏‎‏‏‎‎‏‏‏‎‏‏‏‎‎‏‎‎‏‎‏‏‎‏‎‎‎‎‎‎‎Access car’s power state.‎‏‎‎‏‎"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‎‎‎‎‎‏‎‏‏‎‏‏‎‎‎‏‏‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‎‏‎‏‎‏‎‎Enroll Trusted Device‎‏‎‎‏‎"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‎‎‏‏‎‎‏‎‎‏‎‏‏‏‏‎‏‏‏‎‎‏‏‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‎‏‏‎‏‎‏‎‏‎‎Allow Trusted Device Enrollment‎‏‎‎‏‎"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‎‏‎‏‎‎‎‏‎‎‏‎‏‎‎‏‎‏‎‎‏‎‎‏‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‎Control car service’s test mode‎‏‎‎‏‎"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‏‏‏‎‎‏‎‏‎‏‎‎‎‎‎‏‎‏‎‎‎‎‎‏‎‎‏‎‏‏‎‏‎‏‏‎‎‎‏‎‎‎‏‎‎‎‏‎‏‏‏‏‏‏‏‏‎Control car service’s test mode‎‏‎‎‏‎"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‎‎‏‏‏‏‎‎‏‏‏‎‎‏‏‏‎‎‏‏‏‎‏‎‎‎‏‏‏‏‎‏‏‏‏‎‎‏‎‏‏‎‏‎‏‎‏‏‎‎‎‎‎‎‏‎‏‎My Device‎‏‎‎‏‎"</string>
 </resources>
diff --git a/service/res/values-es-rUS/strings.xml b/service/res/values-es-rUS/strings.xml
index ebcc08c..58ce6cb 100644
--- a/service/res/values-es-rUS/strings.xml
+++ b/service/res/values-es-rUS/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Acceder al estado de potencia del vehículo."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Inscribir dispositivo de confianza"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permitir inscripción de dispositivos de confianza"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controlar el modo de prueba del servicio del vehículo"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controlar el modo de prueba del servicio del vehículo"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mi dispositivo"</string>
 </resources>
diff --git a/service/res/values-es/strings.xml b/service/res/values-es/strings.xml
index e2a9e88..ac5f557 100644
--- a/service/res/values-es/strings.xml
+++ b/service/res/values-es/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Acceder al estado de la potencia del coche."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registrar dispositivo de confianza"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permitir registro de dispositivos de confianza"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controlar el modo de prueba del servicio del coche"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controlar el modo de prueba del servicio del coche"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mi dispositivo"</string>
 </resources>
diff --git a/service/res/values-et/strings.xml b/service/res/values-et/strings.xml
index cfaf748..ce3ce2f 100644
--- a/service/res/values-et/strings.xml
+++ b/service/res/values-et/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Juurdepääs auto võimsuse olekule."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Usaldusväärse seadme registreerimine"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Usaldusväärse seadme registreerimise lubamine"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Autoteenuse testrežiimi haldamine"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Autoteenuse testrežiimi haldamine"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Minu seade"</string>
 </resources>
diff --git a/service/res/values-eu/strings.xml b/service/res/values-eu/strings.xml
index eed4c05..b5d44df 100644
--- a/service/res/values-eu/strings.xml
+++ b/service/res/values-eu/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Atzitu autoaren energia-egoera."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Erregistratu gailu fidagarria"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Eman gailu fidagarriak erregistratzeko baimena"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrolatu auto-zerbitzuaren proba modua"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrolatu auto-zerbitzuaren proba modua"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Nire gailua"</string>
 </resources>
diff --git a/service/res/values-fa/strings.xml b/service/res/values-fa/strings.xml
index 2e29029..9db314e 100644
--- a/service/res/values-fa/strings.xml
+++ b/service/res/values-fa/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"به وضعیت توان خودرو دسترسی پیدا کنید."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ثبت‌نام دستگاه مطمئن"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"مجاز کردن ثبت‌نام دستگاه مطمئن"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"کنترل حالت آزمایش سرویس خودرو"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"کنترل حالت آزمایش سرویس خودرو"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"دستگاه من"</string>
 </resources>
diff --git a/service/res/values-fi/strings.xml b/service/res/values-fi/strings.xml
index 256cdfa..c4fb61f 100644
--- a/service/res/values-fi/strings.xml
+++ b/service/res/values-fi/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"käyttää auton virtatilaa"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Rekisteröi luotettu laite"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Salli luotetun laitteen rekisteröinti"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Hallitse autopalvelun testaustilaa"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Hallitse autopalvelun testaustilaa"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Oma laite"</string>
 </resources>
diff --git a/service/res/values-fr-rCA/strings.xml b/service/res/values-fr-rCA/strings.xml
index 470879d..526ddcf 100644
--- a/service/res/values-fr-rCA/strings.xml
+++ b/service/res/values-fr-rCA/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Accéder à l\'état de l\'alimentation de la voiture."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Inscription d\'un appareil de confiance"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Autoriser l\'inscription d\'un appareil de confiance"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Contrôler le mode de test du service automobile"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Contrôler le mode de test du service automobile"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mon appareil"</string>
 </resources>
diff --git a/service/res/values-fr/strings.xml b/service/res/values-fr/strings.xml
index 6d562be..46eef14 100644
--- a/service/res/values-fr/strings.xml
+++ b/service/res/values-fr/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Accéder à l\'état de la puissance de la voiture."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Enregistrer l\'appareil vérifié"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Autoriser l\'enregistrement de l\'appareil vérifié"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Contrôler le mode de test du service automobile"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Contrôler le mode de test du service automobile"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mon appareil"</string>
 </resources>
diff --git a/service/res/values-gl/strings.xml b/service/res/values-gl/strings.xml
index efcf7b2..9ba333e 100644
--- a/service/res/values-gl/strings.xml
+++ b/service/res/values-gl/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Acceder ao estado da potencia do coche."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Inscribir dispositivo de confianza"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permitir inscrición de dispositivos de confianza"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controlar o modo de proba do servizo do coche"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controlar o modo de proba do servizo do coche"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Dispositivo"</string>
 </resources>
diff --git a/service/res/values-gu/strings.xml b/service/res/values-gu/strings.xml
index 7c00a7d..3a1b7db 100644
--- a/service/res/values-gu/strings.xml
+++ b/service/res/values-gu/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"કારના પાવરની સ્થિતિને ઍક્સેસ કરો."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"વિશ્વસનીય ડિવાઇસની નોંધણી કરો"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"વિશ્વસનીય ડિવાઇસના નોંધણીની મંજૂરી આપો"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"કાર સેવાના પરીક્ષણ મોડને નિયંત્રિત કરો"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"કાર સેવાના પરીક્ષણ મોડને નિયંત્રિત કરો"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"મારું ડિવાઇસ"</string>
 </resources>
diff --git a/service/res/values-hi/strings.xml b/service/res/values-hi/strings.xml
index ff8429a..ea5513e 100644
--- a/service/res/values-hi/strings.xml
+++ b/service/res/values-hi/strings.xml
@@ -16,27 +16,27 @@
 
 <resources xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-    <string name="car_permission_label" msgid="741004755205554376">"कार की जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc" msgid="162499818870052725">"आपकी कार की जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_label_camera" msgid="3725702064841827180">"कार का कैमरा एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_camera" msgid="917024932164501426">"आपकी कार के कैमरे एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_energy" msgid="7409144323527821558">"कार की ऊर्जा की जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_energy" msgid="3392963810053235407">"आपकी कार की ऊर्जा से जुड़ी जानकारी एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_hvac" msgid="1499454192558727843">"कार का एचवीएसी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_hvac" msgid="3754229695589774195">"आपकी कार का एचवीएसी एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_mileage" msgid="4661317074631150551">"कार के माइलेज की जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_mileage" msgid="7179735693278681090">"आपकी कार की माइलेज से जुड़ी जानकारी एक्सेस कर सकता है."</string>
+    <string name="car_permission_label" msgid="741004755205554376">"कार की जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc" msgid="162499818870052725">"आपकी कार की जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_label_camera" msgid="3725702064841827180">"कार का कैमरा ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_camera" msgid="917024932164501426">"आपकी कार के कैमरे ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_energy" msgid="7409144323527821558">"कार की ऊर्जा की जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_energy" msgid="3392963810053235407">"आपकी कार की ऊर्जा से जुड़ी जानकारी ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_hvac" msgid="1499454192558727843">"कार का एचवीएसी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_hvac" msgid="3754229695589774195">"आपकी कार का एचवीएसी ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_mileage" msgid="4661317074631150551">"कार के माइलेज की जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_mileage" msgid="7179735693278681090">"आपकी कार की माइलेज से जुड़ी जानकारी ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_speed" msgid="1149027717860529745">"कार की रफ़्तार की जानकारी देख सकता है"</string>
-    <string name="car_permission_desc_speed" msgid="2047965198165448241">"आपकी कार की रफ़्तार की जानकारी एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_vehicle_dynamics_state" msgid="313779267420048367">"कार के चलने की स्थिति एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_vehicle_dynamics_state" msgid="8891506193446375660">"आपकी कार के चलने से जुड़ी जानकारी एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_vendor_extension" msgid="7141601811734127361">"कार बनाने वाली कंपनी से जुड़ी जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_vendor_extension" msgid="2970718502334714035">"कार की खास जानकारी लेने-देने के लिए आपकी कार का विक्रेता, चैनल एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_speed" msgid="2047965198165448241">"आपकी कार की रफ़्तार की जानकारी ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_vehicle_dynamics_state" msgid="313779267420048367">"कार के चलने की स्थिति ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_vehicle_dynamics_state" msgid="8891506193446375660">"आपकी कार के चलने से जुड़ी जानकारी ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_vendor_extension" msgid="7141601811734127361">"कार बनाने वाली कंपनी से जुड़ी जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_vendor_extension" msgid="2970718502334714035">"कार की खास जानकारी लेने-देने के लिए आपकी कार का विक्रेता, चैनल ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_radio" msgid="6009465291685935112">"कार का रेडियो मैनेज कर सकता है"</string>
-    <string name="car_permission_desc_radio" msgid="3385999027478186964">"आपकी कार का रेडियो एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_radio" msgid="3385999027478186964">"आपकी कार का रेडियो ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_projection" msgid="9107156380287576787">"फ़ोन से कार की डिसप्ले पर किसी इंटरफ़ेस को प्रोजेक्ट कर सकता है"</string>
     <string name="car_permission_desc_projection" msgid="2352178999656292944">"ऐप्लिकेशन कार की डिसप्ले पर, फ़ोन से किसी इंटरफ़ेस को प्रोजेक्ट कर सकता है."</string>
-    <string name="car_permission_label_access_projection_status" msgid="4231618890836627402">"प्रोजेक्ट करने की स्थिति को एक्सेस कर सकता है"</string>
+    <string name="car_permission_label_access_projection_status" msgid="4231618890836627402">"प्रोजेक्ट करने की स्थिति को ऐक्सेस कर सकता है"</string>
     <string name="car_permission_desc_access_projection_status" msgid="8497351979100616278">"ऐप्लिकेशन, कार की डिसप्ले पर प्रोजेक्ट किए जा रहे दूसरे ऐप्लिकेशन की स्थिति देख सकता है."</string>
     <string name="car_permission_label_bind_projection_service" msgid="5362076216606651526">"प्रोजेक्ट करने की सुविधा इस्तेमाल कर सकता है"</string>
     <string name="car_permission_desc_bind_projection_service" msgid="2282657787853408639">"उपोयगकर्ता को किसी प्रोजेक्ट करने की सुविधा के टॉप-लेवल इंटरफ़ेस से जोड़ता है. सामान्य ऐप्लिकेशन के लिए इसकी कभी ज़रूरत नहीं होती."</string>
@@ -83,12 +83,12 @@
     <string name="car_permission_desc_storage_monitoring" msgid="2075712271139671318">"फ़्लैश डिवाइस की मेमोरी के इस्तेमाल की निगरानी कर सकता है"</string>
     <string name="car_permission_label_driving_state" msgid="7754624599537393650">"गाड़ी चलाते समय होने वाले बदलावों की स्थिति को सुन सकता है"</string>
     <string name="car_permission_desc_driving_state" msgid="2684025262811635737">"गाड़ी चलाते समय होने वाले बदलावों को सुन सकता है."</string>
-    <string name="car_permission_label_car_engine_detailed" msgid="8911992719173587337">"कार के इंजन की जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_car_engine_detailed" msgid="1746863362811347700">"आपकी कार के इंजन की पूरी जानकारी एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_car_energy_ports" msgid="8548990315169219454">"कार की ईंधन टंकी का ढक्कन और चार्जिंग पोर्ट एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_car_energy_ports" msgid="7771185999828794949">"कार की ईंधन टंकी का ढक्कन और चार्जिंग पोर्ट एक्सेस कर सकता है."</string>
+    <string name="car_permission_label_car_engine_detailed" msgid="8911992719173587337">"कार के इंजन की जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_car_engine_detailed" msgid="1746863362811347700">"आपकी कार के इंजन की पूरी जानकारी ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_car_energy_ports" msgid="8548990315169219454">"कार की ईंधन टंकी का ढक्कन और चार्जिंग पोर्ट ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_car_energy_ports" msgid="7771185999828794949">"कार की ईंधन टंकी का ढक्कन और चार्जिंग पोर्ट ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_car_identification" msgid="5896712510164020478">"कार की पहचान देख सकता है"</string>
-    <string name="car_permission_desc_car_identification" msgid="4132040867171275059">"कार की पहचान एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_identification" msgid="4132040867171275059">"कार की पहचान ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_control_car_doors" msgid="3032058819250195700">"कार के दरवाज़े नियंत्रित कर सकता है"</string>
     <string name="car_permission_desc_control_car_doors" msgid="6287353311980590092">"कार के दरवाज़े नियंत्रित कर सकता है."</string>
     <string name="car_permission_label_control_car_windows" msgid="2452854429996653029">"कार की खिड़कियां नियंत्रित कर सकता है"</string>
@@ -97,31 +97,33 @@
     <string name="car_permission_desc_control_car_mirrors" msgid="1224135684068855032">"कार के शीशे नियंत्रित कर सकता है."</string>
     <string name="car_permission_label_control_car_seats" msgid="1826934820585497135">"कार की सीटें नियंत्रित कर सकता है"</string>
     <string name="car_permission_desc_control_car_seats" msgid="2407536601226470563">"कार की सीटें नियंत्रित कर सकता है."</string>
-    <string name="car_permission_label_car_info" msgid="4707513570676492315">"कार की बुनियादी जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_car_info" msgid="2118081474543537653">"कार की बुनियादी जानकारी एक्सेस कर सकता है."</string>
+    <string name="car_permission_label_car_info" msgid="4707513570676492315">"कार की बुनियादी जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_car_info" msgid="2118081474543537653">"कार की बुनियादी जानकारी ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_car_exterior_lights" msgid="541304469604902110">"कार के बाहरी हिस्से में लगी लाइटों की स्थिति देख सकता है"</string>
-    <string name="car_permission_desc_car_exterior_lights" msgid="4038037584100849318">"कार के बाहरी हिस्से में लगी लाइटों की स्थिति एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_exterior_lights" msgid="4038037584100849318">"कार के बाहरी हिस्से में लगी लाइटों की स्थिति ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_control_car_exterior_lights" msgid="101357531386232141">"कार के बाहरी हिस्से में लगी लाइटें नियंत्रित कर सकता है"</string>
     <string name="car_permission_desc_control_car_exterior_lights" msgid="6332252612685264180">"कार के बाहरी हिस्से में लगी लाइटें नियंत्रित कर सकता है."</string>
     <string name="car_permission_label_car_interior_lights" msgid="8506302199784427680">"कार के अंदर लगी लाइटों की स्थिति देख सकता है"</string>
-    <string name="car_permission_desc_car_interior_lights" msgid="6204775354692372506">"कार के अंदर लगी लाइटों की स्थिति एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_interior_lights" msgid="6204775354692372506">"कार के अंदर लगी लाइटों की स्थिति ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_control_car_interior_lights" msgid="6685386372012664281">"कार के अंदर लगी लाइटें नियंत्रित कर सकता है"</string>
     <string name="car_permission_desc_control_car_interior_lights" msgid="797201814109701538">"कार के अंदर लगी लाइटें नियंत्रित कर सकता है."</string>
     <string name="car_permission_label_car_exterior_environment" msgid="3385924985991299436">"कार के बाहर के तापमान की जानकारी देख सकता है"</string>
-    <string name="car_permission_desc_car_exterior_environment" msgid="1716656004731603379">"कार के बाहर के तापमान की जानकारी एक्सेस कर सकता है."</string>
-    <string name="car_permission_label_car_tires" msgid="4379255261197836840">"कार के टायरों की जानकारी एक्सेस कर सकता है"</string>
-    <string name="car_permission_desc_car_tires" msgid="8134496466769810134">"कार के टायर की जानकारी एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_exterior_environment" msgid="1716656004731603379">"कार के बाहर के तापमान की जानकारी ऐक्सेस कर सकता है."</string>
+    <string name="car_permission_label_car_tires" msgid="4379255261197836840">"कार के टायरों की जानकारी ऐक्सेस कर सकता है"</string>
+    <string name="car_permission_desc_car_tires" msgid="8134496466769810134">"कार के टायर की जानकारी ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_car_steering" msgid="7779530447441232479">"कार के स्टीयरिंग एंगल की जानकारी देख सकता है"</string>
-    <string name="car_permission_desc_car_steering" msgid="1357331844530708138">"कार के स्टीयरिंग एंगल की जानकारी एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_steering" msgid="1357331844530708138">"कार के स्टीयरिंग एंगल की जानकारी ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_read_car_display_units" msgid="7617008314862097183">"कार के डिसप्ले यूनिट की जानकारी देख सकता है"</string>
     <string name="car_permission_desc_read_car_display_units" msgid="6891898275208542385">"डिसप्ले यूनिट देख सकता है."</string>
     <string name="car_permission_label_control_car_display_units" msgid="4975303668183173076">"कार के डिसप्ले यूनिट नियंत्रित कर सकता है"</string>
     <string name="car_permission_desc_control_car_display_units" msgid="8744397195158556945">"डिसप्ले यूनिट नियंत्रित कर सकता है."</string>
     <string name="car_permission_label_car_powertrain" msgid="4586122326622134886">"कार के पावरट्रेन की जानकारी देख सकता है"</string>
-    <string name="car_permission_desc_car_powertrain" msgid="1116007372551797796">"कार के पावरट्रेन की जानकारी एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_powertrain" msgid="1116007372551797796">"कार के पावरट्रेन की जानकारी ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_car_power" msgid="8111448088314368268">"कार के पावर की स्थिति देख सकता है"</string>
-    <string name="car_permission_desc_car_power" msgid="9202079903668652864">"कार के पावर की स्थिति एक्सेस कर सकता है."</string>
+    <string name="car_permission_desc_car_power" msgid="9202079903668652864">"कार के पावर की स्थिति ऐक्सेस कर सकता है."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"भरोसेमंद डिवाइस का नाम दर्ज करें"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"भरोसेमंद डिवाइस का नाम दर्ज करने की अनुमति दें"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"कार की सेवा के जांच मोड को नियंत्रित करें"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"कार की सेवा के जांच मोड को नियंत्रित करें"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"मेरा डिवाइस"</string>
 </resources>
diff --git a/service/res/values-hr/strings.xml b/service/res/values-hr/strings.xml
index 2d2060b..90b9888 100644
--- a/service/res/values-hr/strings.xml
+++ b/service/res/values-hr/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"pristupiti stanju napajanja automobila"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Prijavi pouzdani uređaj"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Dopusti prijavu pouzdanih uređaja"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrolirajte testnim načinom usluge automobila"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrolirajte testnim načinom usluge automobila"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moj uređaj"</string>
 </resources>
diff --git a/service/res/values-hu/strings.xml b/service/res/values-hu/strings.xml
index f427b07..f37b25b 100644
--- a/service/res/values-hu/strings.xml
+++ b/service/res/values-hu/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Hozzáférhet az autó energiaszintjével kapcsolatos adataihoz."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Megbízható eszköz regisztrálása"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Megbízható eszköz regisztrálásának engedélyezése"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Autós szolgáltatás tesztelési üzemmódjának irányítása"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Autós szolgáltatás tesztelési üzemmódjának irányítása"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Saját eszköz"</string>
 </resources>
diff --git a/service/res/values-hy/strings.xml b/service/res/values-hy/strings.xml
index a706dc4..eba92d2 100644
--- a/service/res/values-hy/strings.xml
+++ b/service/res/values-hy/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Օգտագործել մեքենայի էլեկտրասնուցման կարգավիճակի մասին տվյալները։"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Գրանցել վստահելի սարք"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Թույլատրել վստահելի սարքի գրանցումը"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Կառավարել ավտոծառայության փորձնական ռեժիմը"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Կառավարել ավտոծառայության փորձնական ռեժիմը"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Իմ սարքը"</string>
 </resources>
diff --git a/service/res/values-in/strings.xml b/service/res/values-in/strings.xml
index 3651eaa..da22f7c 100644
--- a/service/res/values-in/strings.xml
+++ b/service/res/values-in/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Mengakses status daya mobil."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Daftarkan Perangkat Dipercaya"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Izinkan Pendaftaran Perangkat Dipercaya"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrol mode uji coba layanan mobil"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrol mode uji coba layanan mobil"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Perangkat Saya"</string>
 </resources>
diff --git a/service/res/values-is/strings.xml b/service/res/values-is/strings.xml
index 64f68f5..50c90c0 100644
--- a/service/res/values-is/strings.xml
+++ b/service/res/values-is/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Fá aðgang að orkustöðu bílsins."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Skrá sem traust tæki"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Heimila skráningu sem traust tæki"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Stjórna prufustillingu bílaþjónustu"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Stjórna prufustillingu bílaþjónustu"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Tækið mitt"</string>
 </resources>
diff --git a/service/res/values-it/strings.xml b/service/res/values-it/strings.xml
index 07aad4e..609e446 100644
--- a/service/res/values-it/strings.xml
+++ b/service/res/values-it/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Consente di accedere allo stato di alimentazione dell\'automobile."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registrazione di dispositivi attendibili"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Consenti la registrazione di dispositivi attendibili"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controllo della modalità test del servizio auto"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controllo della modalità test del servizio auto"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mio dispositivo"</string>
 </resources>
diff --git a/service/res/values-iw/strings.xml b/service/res/values-iw/strings.xml
index 1770cf9..b195bba 100644
--- a/service/res/values-iw/strings.xml
+++ b/service/res/values-iw/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"גישה למצב הטעינה של הרכב."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"רישום מכשיר מהימן"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"הפעלת רישום של מכשירים מהימנים"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"שליטה במצב הבדיקה של שירות המכונית"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"שליטה במצב הבדיקה של שירות המכונית"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"המכשיר שלי"</string>
 </resources>
diff --git a/service/res/values-ja/strings.xml b/service/res/values-ja/strings.xml
index 9c8ad93..d6113b8 100644
--- a/service/res/values-ja/strings.xml
+++ b/service/res/values-ja/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"車の電力状態にアクセスします。"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"信頼できるデバイスの登録"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"信頼できるデバイスの登録を許可"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"車載サービスのテストモードの管理"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"車載サービスのテストモードの管理"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"自分のデバイス"</string>
 </resources>
diff --git a/service/res/values-ka/strings.xml b/service/res/values-ka/strings.xml
index d8343a8..353fe9e 100644
--- a/service/res/values-ka/strings.xml
+++ b/service/res/values-ka/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"მანქანის ელკვების მდგომარეობაზე წვდომა."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"სანდო მოწყობილობის რეგისტრაცია"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"სანდო მოწყობილობის რეგისტრაციის დაშვება"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"მანქანის სერვისის სატესტო რეჟიმის მართვა"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"მანქანის სერვისის სატესტო რეჟიმის მართვა"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ჩემი მოწყობილობა"</string>
 </resources>
diff --git a/service/res/values-kk/strings.xml b/service/res/values-kk/strings.xml
index b031e9d..3b1b746 100644
--- a/service/res/values-kk/strings.xml
+++ b/service/res/values-kk/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Көлік қуатының күйін көру."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Сенімді құрылғыларды тіркеу"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Сенімді құрылғыларды тіркеуге рұқсат ету"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Көлікке қызмет көрсетудің сынақ режимін басқару"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Көлікке қызмет көрсетудің сынақ режимін басқару"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Құрылғым"</string>
 </resources>
diff --git a/service/res/values-km/strings.xml b/service/res/values-km/strings.xml
index 3039b03..ecc3126 100644
--- a/service/res/values-km/strings.xml
+++ b/service/res/values-km/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"ចូលប្រើស្ថានភាព​ថាមពល​របស់រថយន្ត។"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ចុះ​ឈ្មោះ​ឧបករណ៍​ដែល​ទុក​ចិត្ត"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"អនុញ្ញាតឱ្យចុះ​ឈ្មោះឧបករណ៍​ដែល​ទុក​ចិត្ត"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"គ្រប់គ្រងមុខងារ​ធ្វើតេស្តរបស់​សេវាកម្មរថយន្ត"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"គ្រប់គ្រងមុខងារ​ធ្វើតេស្តរបស់​សេវាកម្មរថយន្ត"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ឧបករណ៍របស់ខ្ញុំ"</string>
 </resources>
diff --git a/service/res/values-kn/strings.xml b/service/res/values-kn/strings.xml
index 0473b2d..c391382 100644
--- a/service/res/values-kn/strings.xml
+++ b/service/res/values-kn/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"ಕಾರಿನ ಶಕ್ತಿಯ ಸ್ಥಿತಿಯ ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಿ."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ವಿಶ್ವಾಸಾರ್ಹ ಸಾಧನಗಳನ್ನು ನೋಂದಾಯಿಸಿ"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"ವಿಶ್ವಾಸಾರ್ಹ ಸಾಧನಗಳ ನೋಂದಣಿಯನ್ನು ಅನುಮತಿಸಿ"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"ಕಾರು ಸೇವೆಯ ಪರೀಕ್ಷಾ ಮೋಡ್ ಅನ್ನು ನಿಯಂತ್ರಿಸಿ"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"ಕಾರು ಸೇವೆಯ ಪರೀಕ್ಷಾ ಮೋಡ್ ಅನ್ನು ನಿಯಂತ್ರಿಸಿ"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ನನ್ನ ಸಾಧನ"</string>
 </resources>
diff --git a/service/res/values-ko/strings.xml b/service/res/values-ko/strings.xml
index 4853d47..bcefcdc 100644
--- a/service/res/values-ko/strings.xml
+++ b/service/res/values-ko/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"차량 전원 상태에 액세스합니다."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"신뢰할 수 있는 기기 등록"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"신뢰할 수 있는 기기 등록 허용"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"차량 서비스 테스트 모드 제어"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"차량 서비스 테스트 모드 제어"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"내 기기"</string>
 </resources>
diff --git a/service/res/values-ky/strings.xml b/service/res/values-ky/strings.xml
index f2a21df..ce28794 100644
--- a/service/res/values-ky/strings.xml
+++ b/service/res/values-ky/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Унаанын кубаттуулук абалын көрүү."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Ишенимдүү түзмөктү каттоо"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Ишенимдүү түзмөктү каттоого уруксат берүү"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Унаа кызматынын сыноо режимин көзөмөлдөө"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Унаа кызматынын сыноо режимин көзөмөлдөө"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Түзмөгүм"</string>
 </resources>
diff --git a/service/res/values-lo/strings.xml b/service/res/values-lo/strings.xml
index 2fe6c4f..cc900ed 100644
--- a/service/res/values-lo/strings.xml
+++ b/service/res/values-lo/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"ເຂົ້າເຖິງສະຖານະພະລັງງານຂອງລົດ."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ລົງທະບຽນອຸປະກອນທີ່ເຊື່ອຖືໄດ້"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"ອະນຸຍາດການລົງທະບຽນອຸປະກອນທີ່ເຊື່ອຖືໄດ້"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"ຄວບຄຸມໂໝດທົດສອບຂອງການບໍລິການລົດ"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"ຄວບຄຸມໂໝດທົດສອບຂອງການບໍລິການລົດ"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ອຸປະກອນຂອງຂ້ອຍ"</string>
 </resources>
diff --git a/service/res/values-lt/strings.xml b/service/res/values-lt/strings.xml
index 2342259..136f58d 100644
--- a/service/res/values-lt/strings.xml
+++ b/service/res/values-lt/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Pasiekti automobilio maitinimo būseną."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Užregistruoti patikimą įrenginį"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Leisti užregistruoti patikimą įrenginį"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Valdykite automobilio paslaugos bandomąjį režimą"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Valdykite automobilio paslaugos bandomąjį režimą"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mano įrenginys"</string>
 </resources>
diff --git a/service/res/values-lv/strings.xml b/service/res/values-lv/strings.xml
index f926f13..c39cf4e 100644
--- a/service/res/values-lv/strings.xml
+++ b/service/res/values-lv/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Piekļūt automašīnas aizdedzes stāvoklim."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Reģistrēt uzticamu ierīci"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Atļaut uzticamu ierīču reģistrāciju"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrolēt automašīnas pakalpojuma testa režīmu"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrolēt automašīnas pakalpojuma testa režīmu"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mana ierīce"</string>
 </resources>
diff --git a/service/res/values-mk/strings.xml b/service/res/values-mk/strings.xml
index b419e52..3566077 100644
--- a/service/res/values-mk/strings.xml
+++ b/service/res/values-mk/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Пристапува до состојбата на моќност на автомобилот."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Регистрирајте доверлив уред"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Дозволете регистрација на доверлив уред"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Контролирање на режимот за тестирање на услугата за автомобил"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Контролирање на режимот за тестирање на услугата за автомобил"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Мојот уред"</string>
 </resources>
diff --git a/service/res/values-ml/strings.xml b/service/res/values-ml/strings.xml
index 6e6007f..86f9714 100644
--- a/service/res/values-ml/strings.xml
+++ b/service/res/values-ml/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"കാറിൻ്റെ പവർ നില ആക്‌സസ് ചെയ്യുക."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"വിശ്വസ്‌ത ഉപകരണം എൻറോൾ ചെയ്യുക"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"വിശ്വസ്‌ത ഉപകരണ എൻറോൾമെന്റ് അനുവദിക്കുക"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"കാർ സേവനത്തിന്റെ പരീക്ഷണ മോഡ് നിയന്ത്രിക്കുക"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"കാർ സേവനത്തിന്റെ പരീക്ഷണ മോഡ് നിയന്ത്രിക്കുക"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"എന്റെ ഉപകരണം"</string>
 </resources>
diff --git a/service/res/values-mn/strings.xml b/service/res/values-mn/strings.xml
index 83da614..767097c 100644
--- a/service/res/values-mn/strings.xml
+++ b/service/res/values-mn/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Машины хөдөлгүүрийн хүчний төлөвт хандах."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Итгэмжлэгдсэн төхөөрөмж бүртгэх"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Итгэмжлэгдсэн төхөөрөмж бүртгэхийг зөвшөөрөх"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Машины үйлчилгээний тест горимыг хянах"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Машины үйлчилгээний тест горимыг хянах"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Миний төхөөрөмж"</string>
 </resources>
diff --git a/service/res/values-mr/strings.xml b/service/res/values-mr/strings.xml
index efdc646..d735722 100644
--- a/service/res/values-mr/strings.xml
+++ b/service/res/values-mr/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"कारची पॉवर स्थिती अ‍ॅक्सेस करा."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"विश्वसनीय डिव्हाइसची नोंदणी करा"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"विश्वसनीय डिव्हाइसच्या नोंदणीला अनुमती द्या"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"कारच्या सेवेचा चाचणी मोड नियंत्रित करा"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"कारच्या सेवेचा चाचणी मोड नियंत्रित करा"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"माझे डिव्हाइस"</string>
 </resources>
diff --git a/service/res/values-ms/strings.xml b/service/res/values-ms/strings.xml
index 6869364..254d4a4 100644
--- a/service/res/values-ms/strings.xml
+++ b/service/res/values-ms/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Akses keadaan kuasa kereta."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Daftarkan Peranti yang Dipercayai"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Benarkan Pendaftaran Peranti yang Dipercayai"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kawal mod ujian perkhidmatan kereta"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kawal mod ujian perkhidmatan kereta"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Peranti Saya"</string>
 </resources>
diff --git a/service/res/values-my/strings.xml b/service/res/values-my/strings.xml
index e2e8572..b53caa8 100644
--- a/service/res/values-my/strings.xml
+++ b/service/res/values-my/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"ကား၏ ပါဝါအခြေအနေကို ရယူပါမည်။"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ယုံကြည်ရသည့် ကိရိယာကို စာရင်းသွင်းရန်"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"ယုံကြည်ရသည့် ကိရိယာအား စာရင်းသွင်းခြင်းကို ခွင့်ပြုရန်"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"ကားဝန်ဆောင်မှု၏ စမ်းသပ်မုဒ်ကို ထိန်းချုပ်ပါ"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"ကားဝန်ဆောင်မှု၏ စမ်းသပ်မုဒ်ကို ထိန်းချုပ်ပါ"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ကျွန်ုပ်၏စက်"</string>
 </resources>
diff --git a/service/res/values-nb/strings.xml b/service/res/values-nb/strings.xml
index 62108e6..478783c 100644
--- a/service/res/values-nb/strings.xml
+++ b/service/res/values-nb/strings.xml
@@ -121,7 +121,9 @@
     <string name="car_permission_desc_car_powertrain" msgid="1116007372551797796">"Tilgang til informasjon om bilens drivlinje."</string>
     <string name="car_permission_label_car_power" msgid="8111448088314368268">"lese bilens batterinivå"</string>
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Tilgang til bilens batterinivå."</string>
-    <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registrer en pålitelig enhet"</string>
-    <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Tillat registrering av pålitelige enheter"</string>
+    <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registrer en godkjent enhet"</string>
+    <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Tillat registrering av godkjente enheter"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrollér testmodus for biltjenesten"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrollér testmodus for biltjenesten"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Enheten min"</string>
 </resources>
diff --git a/service/res/values-ne/strings.xml b/service/res/values-ne/strings.xml
index add0fb9..dbaefa6 100644
--- a/service/res/values-ne/strings.xml
+++ b/service/res/values-ne/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"कारको शक्तिको स्थितिमाथि पहुँच राख्ने।"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"विश्वसनीय यन्त्र दर्ता गर्नुहोस्"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"विश्वसनीय यन्त्र दर्ता गर्ने अनुमति दिनुहोस्"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"कार सेवाको परीक्षण मोड नियन्त्रण गर्नुहोस्"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"कार सेवाको परीक्षण मोड नियन्त्रण गर्नुहोस्"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"मेरो यन्त्र"</string>
 </resources>
diff --git a/service/res/values-nl/strings.xml b/service/res/values-nl/strings.xml
index 0959bb8..6dab08c 100644
--- a/service/res/values-nl/strings.xml
+++ b/service/res/values-nl/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Toegang tot stroomstatus van auto."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Vertrouwd apparaat inschrijven"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Inschrijving van vertrouwd apparaat toestaan"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Testmodus van autoservice bedienen"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Testmodus van autoservice bedienen"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Mijn apparaat"</string>
 </resources>
diff --git a/service/res/values-or/strings.xml b/service/res/values-or/strings.xml
index 2d90b94..6635757 100644
--- a/service/res/values-or/strings.xml
+++ b/service/res/values-or/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"କାର୍\'ର ପାୱାର୍ ଷ୍ଟେଟ୍‌କୁ ଆକ୍‍‍ସେସ୍ କରନ୍ତୁ।"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ଚିହ୍ନା ଡିଭାଇସ୍‌ର ନାମାଙ୍କନ କରନ୍ତୁ"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"ଚିହ୍ନା ଡିଭାଇସ୍‌ ନାମାଙ୍କନକୁ ଅନୁମତି ଦିଅନ୍ତୁ"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"କାର୍ ସେବାର ପରୀକ୍ଷଣ ମୋଡ୍ ନିୟନ୍ତ୍ରଣ କରନ୍ତୁ"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"କାର୍ ସେବାର ପରୀକ୍ଷଣ ମୋଡ୍ ନିୟନ୍ତ୍ରଣ କରନ୍ତୁ"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ମୋ ଡିଭାଇସ୍"</string>
 </resources>
diff --git a/service/res/values-pa/strings.xml b/service/res/values-pa/strings.xml
index d3700ed..179b8ad 100644
--- a/service/res/values-pa/strings.xml
+++ b/service/res/values-pa/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"ਕਾਰ ਦੀ ਪਾਵਰ ਸਥਿਤੀ ਤੱਕ ਪਹੁੰਚ।"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ਭਰੋਸੇਯੋਗ ਡੀਵਾਈਸਾਂ ਦਰਜ ਕਰੋ"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"ਭਰੋਸੇਯੋਗ ਡੀਵਾਈਸਾਂ ਨੂੰ ਦਰਜਾਬੰਦੀ ਕਰਨ ਦਿਓ"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"ਕਾਰ ਸੇਵਾ ਦੇ ਟੈਸਟ ਮੋਡ ਨੂੰ ਕੰਟਰੋਲ ਕਰੋ"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"ਕਾਰ ਸੇਵਾ ਦੇ ਟੈਸਟ ਮੋਡ ਨੂੰ ਕੰਟਰੋਲ ਕਰੋ"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"ਮੇਰਾ ਡੀਵਾਈਸ"</string>
 </resources>
diff --git a/service/res/values-pl/strings.xml b/service/res/values-pl/strings.xml
index 593181e..5b3c369 100644
--- a/service/res/values-pl/strings.xml
+++ b/service/res/values-pl/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Dostęp do stanu zasilania w samochodzie."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Zarejestruj zaufane urządzenie"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Zezwalaj na rejestrowanie zaufanych urządzeń"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Sterowanie trybem testowym usługi samochodowej"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Sterowanie trybem testowym usługi samochodowej"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moje urządzenie"</string>
 </resources>
diff --git a/service/res/values-pt-rPT/strings.xml b/service/res/values-pt-rPT/strings.xml
index 3ba192b..7660b97 100644
--- a/service/res/values-pt-rPT/strings.xml
+++ b/service/res/values-pt-rPT/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Aceder ao estado de energia do automóvel."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Inscrever dispositivo fidedigno"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permitir a inscrição de dispositivos fidedignos"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controlar o modo de teste do serviço de automóvel"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controlar o modo de teste do serviço de automóvel"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Dispositivo"</string>
 </resources>
diff --git a/service/res/values-pt/strings.xml b/service/res/values-pt/strings.xml
index 3a002c3..b6a8fee 100644
--- a/service/res/values-pt/strings.xml
+++ b/service/res/values-pt/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Acessar estado da potência do carro."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Inscrever dispositivo confiável"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permitir inscrição de dispositivo confiável"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controlar o modo de teste do serviço do carro"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controlar o modo de teste do serviço do carro"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Meu dispositivo"</string>
 </resources>
diff --git a/service/res/values-ro/strings.xml b/service/res/values-ro/strings.xml
index 6f48c30..e5b8a6b 100644
--- a/service/res/values-ro/strings.xml
+++ b/service/res/values-ro/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Accesează starea de încărcare a mașinii."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Înscrieți un dispozitiv de încredere"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Permiteți înscrierea unui dispozitiv de încredere"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Controlați modul de testare al serviciului mașinii"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Controlați modul de testare al serviciului mașinii"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Dispozitivul meu"</string>
 </resources>
diff --git a/service/res/values-ru/strings.xml b/service/res/values-ru/strings.xml
index 205d54a..944e5d9 100644
--- a/service/res/values-ru/strings.xml
+++ b/service/res/values-ru/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Доступ к данным об электропитании автомобиля."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Регистрация надежных устройств"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Разрешить регистрацию надежных устройств."</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Управление тестовым режимом приложений"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Управление тестовым режимом приложений"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Мое устройство"</string>
 </resources>
diff --git a/service/res/values-si/strings.xml b/service/res/values-si/strings.xml
index 49e9ce4..4c3ebea 100644
--- a/service/res/values-si/strings.xml
+++ b/service/res/values-si/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"මෝටර් රථයේ බල තත්ත්වයට ප්‍රවේශ වන්න."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"විශ්වාසී උපාංගය ඇතුළත් කරන්න"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"විශ්වාසී උපාංග ඇතුළත් කිරීමට ඉඩ දෙන්න"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"මෝටර් රථ සේවාවේ පරීක්ෂණ ප්‍රකාරය පාලනය"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"මෝටර් රථ සේවාවේ පරීක්ෂණ ප්‍රකාරය පාලනය"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"මගේ උපාංගය"</string>
 </resources>
diff --git a/service/res/values-sk/strings.xml b/service/res/values-sk/strings.xml
index 8e5cb3e..805e985 100644
--- a/service/res/values-sk/strings.xml
+++ b/service/res/values-sk/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Prístup k stavu napájania auta."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registrovať dôveryhodné zariadenie"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Povoliť registráciu dôveryhodného zariadenia"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Režim testovania služby ovládania auta"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Režim testovania služby ovládania auta"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moje zariadenie"</string>
 </resources>
diff --git a/service/res/values-sl/strings.xml b/service/res/values-sl/strings.xml
index 2e00b3a..2250554 100644
--- a/service/res/values-sl/strings.xml
+++ b/service/res/values-sl/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Dostop do stanja napajanja avtomobila."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Včlani zaupanja vredno napravo"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Omogočanje včlanitve zaupanja vredne naprave"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Nadziranje preizkusnega načina storitve avtomobila"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Nadziranje preizkusnega načina storitve avtomobila"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Moja naprava"</string>
 </resources>
diff --git a/service/res/values-sq/strings.xml b/service/res/values-sq/strings.xml
index f7f4684..363f739 100644
--- a/service/res/values-sq/strings.xml
+++ b/service/res/values-sq/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Qasu te gjendja e fuqisë së makinës."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Regjistro pajisjen e besuar"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Lejo regjistrimin e pajisjes së besuar"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrollo modalitetin e testimit të shërbimit të makinës"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrollo modalitetin e testimit të shërbimit të makinës"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Pajisja ime"</string>
 </resources>
diff --git a/service/res/values-sr/strings.xml b/service/res/values-sr/strings.xml
index 0983a07..42f6ece 100644
--- a/service/res/values-sr/strings.xml
+++ b/service/res/values-sr/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Приступ статусу напајања аутомобила."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Региструј поуздани уређај"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Омогући регистровање поузданих уређаја"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Контрола режима за тестирање услуге аутомобила"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Контрола режима за тестирање услуге аутомобила"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Мој уређај"</string>
 </resources>
diff --git a/service/res/values-sv/strings.xml b/service/res/values-sv/strings.xml
index 3f0ea0c..16f9b99 100644
--- a/service/res/values-sv/strings.xml
+++ b/service/res/values-sv/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Åtkomst till bilens laddning."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Registrera betrodd enhet"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Tillåt registrering av betrodda enheter"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Styra biltjänstens testläge"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Styra biltjänstens testläge"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Min enhet"</string>
 </resources>
diff --git a/service/res/values-sw/strings.xml b/service/res/values-sw/strings.xml
index 0619eac..df6dd01 100644
--- a/service/res/values-sw/strings.xml
+++ b/service/res/values-sw/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Kufikia hali ya nishati ya gari."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Sajili Vifaa Unavyoviamini"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Ruhusu Usajili wa Vifaa Unavyoviamini"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Dhibiti hali ya jaribio la huduma ya gari"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Dhibiti hali ya jaribio la huduma ya gari"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Kifaa Changu"</string>
 </resources>
diff --git a/service/res/values-ta/strings.xml b/service/res/values-ta/strings.xml
index 8eab4ef..adb0f2e 100644
--- a/service/res/values-ta/strings.xml
+++ b/service/res/values-ta/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"காரின் ஆற்றல் நிலையை அணுக வேண்டும்."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"’நம்பகமான சாதனம்’ என்று பதிவு செய்"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"’நம்பகமான சாதனம்’ என்று பதிவு செய்வதை அனுமதிக்கும்"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"கார் சேவையின் சோதனைப் பயன்முறையை நிர்வகி"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"கார் சேவையின் சோதனைப் பயன்முறையை நிர்வகி"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"எனது சாதனம்"</string>
 </resources>
diff --git a/service/res/values-te/strings.xml b/service/res/values-te/strings.xml
index 494e476..517faf8 100644
--- a/service/res/values-te/strings.xml
+++ b/service/res/values-te/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"కారు పవర్ స్థితిని యాక్సెస్ చేయగలవు."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"విశ్వసనీయ పరికరాన్ని నమోదు చేయండి"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"విశ్వసనీయ పరికర నమోదును అనుమతించండి"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"కారు సేవ యొక్క పరీక్ష మోడ్‌ను నియంత్రించండి"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"కారు సేవ యొక్క పరీక్ష మోడ్‌ను నియంత్రించండి"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"నా పరికరం"</string>
 </resources>
diff --git a/service/res/values-th/strings.xml b/service/res/values-th/strings.xml
index 197bc75..0fc6c62 100644
--- a/service/res/values-th/strings.xml
+++ b/service/res/values-th/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"เข้าถึงสถานะพลังงานของรถ"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"ลงทะเบียนอุปกรณ์ที่เชื่อถือได้"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"อนุญาตการลงทะเบียนอุปกรณ์ที่เชื่อถือได้"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"ควบคุมโหมดทดสอบของบริการรถยนต์"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"ควบคุมโหมดทดสอบของบริการรถยนต์"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"อุปกรณ์ของฉัน"</string>
 </resources>
diff --git a/service/res/values-tl/strings.xml b/service/res/values-tl/strings.xml
index d50637f..d3e6321 100644
--- a/service/res/values-tl/strings.xml
+++ b/service/res/values-tl/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"I-access ang status ng power ng sasakyan."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Mag-enroll ng Pinagkakatiwalaang Device"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Payagan ang Pag-enroll ng Pinagkakatiwalaang Device"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Test mode ng serbisyo sa control car"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Test mode ng serbisyo sa control car"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Aking Device"</string>
 </resources>
diff --git a/service/res/values-tr/strings.xml b/service/res/values-tr/strings.xml
index 861d4cb..11275a0 100644
--- a/service/res/values-tr/strings.xml
+++ b/service/res/values-tr/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Aracın güç durumuna erişim."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Güvenilen Cihazı Kaydet"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Güvenilen Cihaz Kaydına İzin Ver"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kontrol aracı hizmeti test modu"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kontrol aracı hizmeti test modu"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Cihazım"</string>
 </resources>
diff --git a/service/res/values-uk/strings.xml b/service/res/values-uk/strings.xml
index 24fc867..4157438 100644
--- a/service/res/values-uk/strings.xml
+++ b/service/res/values-uk/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Доступ до даних про рівень заряду автомобіля."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Зареєструвати надійний пристрій"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Дозволити реєстрацію надійних пристроїв"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Контролювати тестовий режим автомобільної служби"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Контролювати тестовий режим автомобільної служби"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Мій пристрій"</string>
 </resources>
diff --git a/service/res/values-ur/strings.xml b/service/res/values-ur/strings.xml
index 58f1aca..7741938 100644
--- a/service/res/values-ur/strings.xml
+++ b/service/res/values-ur/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"کار کے پاور کی صورتحال تک رسائی حاصل کریں۔"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"بھروسہ مند آلات کا اندراج کریں"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"بھروسہ مند آلات کے اندراج کی اجازت دیں"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"کار سروس کی ٹیسٹ وضع کنٹرول کریں"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"کار سروس کی ٹیسٹ وضع کنٹرول کریں"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"میرا آلہ"</string>
 </resources>
diff --git a/service/res/values-uz/strings.xml b/service/res/values-uz/strings.xml
index f6bfb87..d1cfe90 100644
--- a/service/res/values-uz/strings.xml
+++ b/service/res/values-uz/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Avtomobilning elektr quvvati haqidagi axborotga kirish"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Ishonchli qurilma registratsiyasi"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Ishonchli qurilma registratsiyasiga ruxsat berish"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Ilovalarning sinov rejimini boshqarish"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Ilovalarning sinov rejimini boshqarish"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Qurilmam"</string>
 </resources>
diff --git a/service/res/values-vi/strings.xml b/service/res/values-vi/strings.xml
index 57be52a..8b1b975 100644
--- a/service/res/values-vi/strings.xml
+++ b/service/res/values-vi/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Truy cập vào trạng thái nguồn của ô tô."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Đăng ký thiết bị tin cậy"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Cho phép đăng ký thiết bị tin cậy"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Kiểm soát chế độ kiểm tra dịch vụ trên ô tô"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Kiểm soát chế độ kiểm tra dịch vụ trên ô tô"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Thiết bị của tôi"</string>
 </resources>
diff --git a/service/res/values-zh-rCN/strings.xml b/service/res/values-zh-rCN/strings.xml
index b30acc4..097fa12 100644
--- a/service/res/values-zh-rCN/strings.xml
+++ b/service/res/values-zh-rCN/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"访问汽车的电源状态信息。"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"注册可信设备"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"允许注册可信设备"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"控制汽车服务的测试模式"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"控制汽车服务的测试模式"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"我的设备"</string>
 </resources>
diff --git a/service/res/values-zh-rHK/strings.xml b/service/res/values-zh-rHK/strings.xml
index e344bfb..2b916fc 100644
--- a/service/res/values-zh-rHK/strings.xml
+++ b/service/res/values-zh-rHK/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"存取汽車的能源狀態。"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"註冊信任的裝置"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"允許註冊信任的裝置"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"控制汽車服務的測試模式"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"控制汽車服務的測試模式"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"我的裝置"</string>
 </resources>
diff --git a/service/res/values-zh-rTW/strings.xml b/service/res/values-zh-rTW/strings.xml
index 1848811..c522769 100644
--- a/service/res/values-zh-rTW/strings.xml
+++ b/service/res/values-zh-rTW/strings.xml
@@ -73,8 +73,8 @@
     <string name="car_permission_desc_diag_read" msgid="1121426363040966178">"讀取車輛的診斷資料。"</string>
     <string name="car_permission_label_diag_clear" msgid="4783070510879698157">"清除診斷資料"</string>
     <string name="car_permission_desc_diag_clear" msgid="7453222114866042786">"清除車輛的診斷資料。"</string>
-    <string name="car_permission_label_vms_publisher" msgid="3049934078926106641">"VMS 發佈者"</string>
-    <string name="car_permission_desc_vms_publisher" msgid="5589489298597386828">"發佈 VMS 訊息"</string>
+    <string name="car_permission_label_vms_publisher" msgid="3049934078926106641">"VMS 發布者"</string>
+    <string name="car_permission_desc_vms_publisher" msgid="5589489298597386828">"發布 VMS 訊息"</string>
     <string name="car_permission_label_vms_subscriber" msgid="5648841182059222299">"VMS 訂閱者"</string>
     <string name="car_permission_desc_vms_subscriber" msgid="7551009457847673620">"訂閱 VMS 訊息"</string>
     <string name="car_permission_label_bind_vms_client" msgid="4889732900973280313">"VMS 用戶端服務"</string>
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"存取車輛的電源狀態。"</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"註冊信任的裝置"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"允許註冊信任的裝置"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"控制車用服務的測試模式"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"控制車用服務的測試模式"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"我的裝置"</string>
 </resources>
diff --git a/service/res/values-zu/strings.xml b/service/res/values-zu/strings.xml
index 7225857..2d02b44 100644
--- a/service/res/values-zu/strings.xml
+++ b/service/res/values-zu/strings.xml
@@ -123,5 +123,7 @@
     <string name="car_permission_desc_car_power" msgid="9202079903668652864">"Finyelela amandla emoto."</string>
     <string name="car_permission_label_enroll_trust" msgid="3512907900486690218">"Bhalisa Amadivayisi Athenjwayo"</string>
     <string name="car_permission_desc_enroll_trust" msgid="4148649994602185130">"Vumela ukubhaliswa kwamadivayisi athenjwayo"</string>
+    <string name="car_permission_label_car_test_service" msgid="7561621437339123856">"Lawula imodi yokuhlola yamasevisi wemoto"</string>
+    <string name="car_permission_desc_car_test_service" msgid="5829137040891060991">"Lawula imodi yokuhlola yamasevisi wemoto"</string>
     <string name="trust_device_default_name" msgid="4213625926070261253">"Idivayisi yami"</string>
 </resources>
diff --git a/service/res/values/config.xml b/service/res/values/config.xml
index 95382da..3eb1007 100644
--- a/service/res/values/config.xml
+++ b/service/res/values/config.xml
@@ -68,7 +68,7 @@
           The current implementations expects the following system packages/activities to be
           whitelisted. For general guidelines to design distraction optimized apps, please refer
           to Android Auto Driver Distraction Guidelines. -->
-    <string name="systemActivityWhitelist" translatable="false">com.android.systemui,com.google.android.permissioncontroller/com.android.packageinstaller.permission.ui.GrantPermissionsActivity,android/com.android.internal.app.ResolverActivity,com.android.mtp/com.android.mtp.ReceiverActivity</string>
+    <string name="systemActivityWhitelist" translatable="false">com.android.systemui,com.google.android.permissioncontroller/com.android.packageinstaller.permission.ui.GrantPermissionsActivity,com.android.permissioncontroller/com.android.packageinstaller.permission.ui.GrantPermissionsActivity,android/com.android.internal.app.ResolverActivity,com.android.mtp/com.android.mtp.ReceiverActivity</string>
     <!--  Comma separated list of activities that will be blocked during restricted state.
           Format of each entry is either to specify package name to whitelist the whole package
           or use format of "packagename/activity_classname" for tagging each activities.-->
@@ -78,6 +78,8 @@
     </string-array>
     <!-- Default home activity -->
     <string name="defaultHomeActivity" translatable="false"><!--com.your.package/com.your.package.Activity--></string>
+    <!-- The vendor-defined HAL property used to collect VMS client metrics. Disabled by default.-->
+    <integer name="vmsHalClientMetricsProperty">0</integer>
     <!--  The com.android.car.vms.VmsClientManager will bind to this list of clients running as system user -->
     <string-array translatable="false" name="vmsPublisherSystemClients">
     </string-array>
@@ -227,4 +229,11 @@
          There is no default bugreporting app.-->
     <string name="config_car_bugreport_application" translatable="false"></string>
 
+    <!-- Specifies notice UI that will be launched when user starts a car or do user
+         switching. It is recommended to use dialog with at least TYPE_APPLICATION_OVERLAY window
+         type to show the UI regardless of activity launches. Target package will be auto-granted
+         necessary permission for TYPE_APPLICATION_OVERLAY window type. The UI package should
+         resolve permission by itself to use any higher priority window type.
+         Setting this string to empty will disable the feature. -->
+    <string name="config_userNoticeUiService" translatable="false">com.google.android.car.kitchensink/.UserNoiticeDemoUiService</string>
 </resources>
diff --git a/service/res/values/strings.xml b/service/res/values/strings.xml
index ef731b8..11dd845 100644
--- a/service/res/values/strings.xml
+++ b/service/res/values/strings.xml
@@ -256,6 +256,11 @@
     <string name="car_permission_label_enroll_trust">Enroll Trusted Device</string>
     <string name="car_permission_desc_enroll_trust">Allow Trusted Device Enrollment</string>
 
+    <!-- Permission text: Control car service's test mode [CHAR LIMIT=NONE] -->
+    <string name="car_permission_label_car_test_service">Control car service\u2019s test mode</string>
+    <!-- Permission text: Control car service's test mode [CHAR LIMIT=NONE] -->
+    <string name="car_permission_desc_car_test_service">Control car service\u2019s test mode</string>
+
     <!-- The default name of device enrolled as trust device [CHAR LIMIT=NONE] -->
     <string name="trust_device_default_name">My Device</string>
 
diff --git a/service/src/com/android/car/CarDrivingStateService.java b/service/src/com/android/car/CarDrivingStateService.java
index 584228d..59a3a8c 100644
--- a/service/src/com/android/car/CarDrivingStateService.java
+++ b/service/src/com/android/car/CarDrivingStateService.java
@@ -35,6 +35,8 @@
 import android.os.SystemClock;
 import android.util.Log;
 
+import com.android.internal.annotations.VisibleForTesting;
+
 import java.io.PrintWriter;
 import java.util.LinkedList;
 import java.util.List;
@@ -316,7 +318,8 @@
      * Handle events coming from {@link CarPropertyService}.  Compute the driving state, map it to
      * the corresponding UX Restrictions and dispatch the events to the registered clients.
      */
-    private synchronized void handlePropertyEvent(CarPropertyEvent event) {
+    @VisibleForTesting
+    synchronized void handlePropertyEvent(CarPropertyEvent event) {
         if (event.getEventType() != CarPropertyEvent.PROPERTY_EVENT_PROPERTY_CHANGE) {
             return;
         }
diff --git a/service/src/com/android/car/CarLocalServices.java b/service/src/com/android/car/CarLocalServices.java
index 6c756b8..ea1b6f1 100644
--- a/service/src/com/android/car/CarLocalServices.java
+++ b/service/src/com/android/car/CarLocalServices.java
@@ -17,6 +17,7 @@
 package com.android.car;
 
 import android.annotation.Nullable;
+import android.car.Car;
 import android.car.hardware.power.CarPowerManager;
 import android.content.Context;
 import android.util.ArrayMap;
@@ -90,10 +91,12 @@
      */
     @Nullable
     public static CarPowerManager createCarPowerManager(Context context) {
+        // This does not require connection as binder will be passed to CarPowerManager directly.
+        Car car = new Car(context, /* service= */null, /* handler= */ null);
         CarPowerManagementService service = getService(CarPowerManagementService.class);
         if (service == null) {
             return null;
         }
-        return new CarPowerManager(service, context, null);
+        return new CarPowerManager(car, service);
     }
 }
diff --git a/service/src/com/android/car/CarLog.java b/service/src/com/android/car/CarLog.java
index ede5565..a77a549 100644
--- a/service/src/com/android/car/CarLog.java
+++ b/service/src/com/android/car/CarLog.java
@@ -26,9 +26,9 @@
     public static final String TAG_CAMERA = "CAR.CAMERA";
     public static final String TAG_CAN_BUS = "CAR.CAN_BUS";
     public static final String TAG_CLUSTER = "CAR.CLUSTER";
+    public static final String TAG_DIAGNOSTIC = "CAR.DIAGNOSTIC";
     public static final String TAG_HAL = "CAR.HAL";
     public static final String TAG_HVAC = "CAR.HVAC";
-    public static final String TAG_VENDOR_EXT = "CAR.VENDOR_EXT";
     public static final String TAG_INFO = "CAR.INFO";
     public static final String TAG_INPUT = "CAR.INPUT";
     public static final String TAG_MEDIA = "CAR.MEDIA";
@@ -40,10 +40,11 @@
     public static final String TAG_PROPERTY = "CAR.PROPERTY";
     public static final String TAG_SENSOR = "CAR.SENSOR";
     public static final String TAG_SERVICE = "CAR.SERVICE";
+    public static final String TAG_STORAGE = "CAR.STORAGE";
     public static final String TAG_SYS = "CAR.SYS";
     public static final String TAG_TEST = "CAR.TEST";
-    public static final String TAG_DIAGNOSTIC = "CAR.DIAGNOSTIC";
-    public static final String TAG_STORAGE = "CAR.STORAGE";
+    public static final String TAG_USER = "CAR.USER";
+    public static final String TAG_VENDOR_EXT = "CAR.VENDOR_EXT";
 
     public static String concatTag(String tagPrefix, Class clazz) {
         String tag = tagPrefix + "." + clazz.getSimpleName();
diff --git a/service/src/com/android/car/CarMediaService.java b/service/src/com/android/car/CarMediaService.java
index 70d3b7e..f66df4b 100644
--- a/service/src/com/android/car/CarMediaService.java
+++ b/service/src/com/android/car/CarMediaService.java
@@ -77,6 +77,7 @@
     private static final String SHARED_PREF = "com.android.car.media.car_media_service";
     private static final String COMPONENT_NAME_SEPARATOR = ",";
     private static final String MEDIA_CONNECTION_ACTION = "com.android.car.media.MEDIA_CONNECTION";
+    private static final String EXTRA_AUTOPLAY = "com.android.car.media.autoplay";
 
     private final Context mContext;
     private final UserManager mUserManager;
@@ -89,6 +90,8 @@
     // null if playback has not been started yet.
     private MediaController mActiveUserMediaController;
     private SessionChangedListener mSessionsListener;
+    // This field is used ONLY for starting playback on source switch, and is specified by an
+    // OEM-overridable resource flag.
     private boolean mStartPlayback;
     private boolean mPlayOnMediaSourceChanged;
 
@@ -203,16 +206,20 @@
         mPrimaryMediaComponent = getLastMediaSource();
         mActiveUserMediaController = null;
         String key = PLAYBACK_STATE_KEY + mCurrentUser;
-        mStartPlayback =
+        boolean startPlayback =
                 mSharedPrefs.getInt(key, PlaybackState.STATE_NONE) == PlaybackState.STATE_PLAYING;
+
         updateMediaSessionCallbackForCurrentUser();
         notifyListeners();
 
         // Start a service on the current user that binds to the media browser of the current media
         // source. We start a new service because this one runs on user 0, and MediaBrowser doesn't
-        // provide an API to connect on a specific user.
+        // provide an API to connect on a specific user. Additionally, this service will attempt to
+        // resume playback using the MediaSession obtained via the media browser connection, which
+        // is more reliable than using active MediaSessions from MediaSessionManager.
         Intent serviceStart = new Intent(MEDIA_CONNECTION_ACTION);
         serviceStart.setPackage(mContext.getResources().getString(R.string.serviceMediaConnection));
+        serviceStart.putExtra(EXTRA_AUTOPLAY, startPlayback);
         mContext.startForegroundServiceAsUser(serviceStart, currentUser);
     }
 
@@ -529,9 +536,18 @@
                 if (!matchPrimaryMediaSource(newPackageName, newClassName)) {
                     ComponentName mediaSource = getMediaSource(newPackageName, newClassName);
                     if (Log.isLoggable(CarLog.TAG_MEDIA, Log.INFO)) {
-                        Log.i(CarLog.TAG_MEDIA,
-                                "Changing media source due to playback state change: "
-                                + mediaSource.flattenToString());
+                        if (mediaSource != null) {
+                            Log.i(CarLog.TAG_MEDIA,
+                                    "MediaController changed, updating media source to: "
+                                            + mediaSource.flattenToString());
+                        } else {
+                            // Some apps, like Chrome, have a MediaSession but no
+                            // MediaBrowseService. Media Center doesn't consider such apps as
+                            // valid media sources.
+                            Log.i(CarLog.TAG_MEDIA,
+                                    "MediaController changed, but no media browse service found "
+                                            + "in package: " + newPackageName);
+                        }
                     }
                     setPrimaryMediaSource(mediaSource);
                 }
@@ -659,6 +675,8 @@
         }
     }
 
+    // This call is used to automatically start playback for a new source.
+    // TODO(b/139497602): Remove this, use same logic for resource flag and boot autoplay.
     private void maybeRestartPlayback(PlaybackState state) {
         if (mStartPlayback && state != null
                 && (state.getActions() & PlaybackState.ACTION_PLAY) != 0) {
diff --git a/service/src/com/android/car/CarPropertyService.java b/service/src/com/android/car/CarPropertyService.java
index 3b4e388..c9a14c9 100644
--- a/service/src/com/android/car/CarPropertyService.java
+++ b/service/src/com/android/car/CarPropertyService.java
@@ -18,6 +18,7 @@
 
 import static java.lang.Integer.toHexString;
 
+import android.car.Car;
 import android.car.hardware.CarPropertyConfig;
 import android.car.hardware.CarPropertyValue;
 import android.car.hardware.property.CarPropertyEvent;
@@ -348,6 +349,10 @@
             return;
         }
         ICarImpl.assertPermission(mContext, mHal.getWritePermission(propId));
+        // need an extra permission for writing display units properties.
+        if (mHal.isDisplayUnitsProperty(propId)) {
+            ICarImpl.assertPermission(mContext, Car.PERMISSION_VENDOR_EXTENSION);
+        }
         mHal.setProperty(prop);
     }
 
diff --git a/service/src/com/android/car/CarService.java b/service/src/com/android/car/CarService.java
index 509ecdd..fdc4995 100644
--- a/service/src/com/android/car/CarService.java
+++ b/service/src/com/android/car/CarService.java
@@ -25,6 +25,7 @@
 import android.os.Build;
 import android.os.IBinder;
 import android.os.IHwBinder.DeathRecipient;
+import android.os.Process;
 import android.os.RemoteException;
 import android.os.ServiceManager;
 import android.os.SystemClock;
@@ -41,6 +42,8 @@
 
 public class CarService extends Service {
 
+    private static final boolean RESTART_CAR_SERVICE_WHEN_VHAL_CRASH = true;
+
     private static final long WAIT_FOR_VEHICLE_HAL_TIMEOUT_MS = 10_000;
 
     private static final boolean IS_USER_BUILD = "user".equals(Build.TYPE);
@@ -178,7 +181,13 @@
 
         @Override
         public void serviceDied(long cookie) {
-            Log.w(CarLog.TAG_SERVICE, "Vehicle HAL died.");
+            if (RESTART_CAR_SERVICE_WHEN_VHAL_CRASH) {
+                Log.wtf(CarLog.TAG_SERVICE, "***Vehicle HAL died. Car service will restart***");
+                Process.killProcess(Process.myPid());
+                return;
+            }
+
+            Log.wtf(CarLog.TAG_SERVICE, "***Vehicle HAL died.***");
 
             try {
                 mVehicle.unlinkToDeath(this);
diff --git a/service/src/com/android/car/CarTestService.java b/service/src/com/android/car/CarTestService.java
index 8c3f64d..776fd53 100644
--- a/service/src/com/android/car/CarTestService.java
+++ b/service/src/com/android/car/CarTestService.java
@@ -22,6 +22,8 @@
 import android.os.RemoteException;
 import android.util.Log;
 
+import com.android.internal.annotations.GuardedBy;
+
 import java.io.PrintWriter;
 import java.util.Arrays;
 import java.util.HashMap;
@@ -39,6 +41,9 @@
     private final Context mContext;
     private final ICarImpl mICarImpl;
 
+    private final Object mLock = new Object();
+
+    @GuardedBy("mLock")
     private final Map<IBinder, TokenDeathRecipient> mTokens = new HashMap<>();
 
     CarTestService(Context context, ICarImpl carImpl) {
@@ -69,7 +74,7 @@
         Log.d(TAG, "stopCarService, token: " + token);
         ICarImpl.assertPermission(mContext, Car.PERMISSION_CAR_TEST_SERVICE);
 
-        synchronized (this) {
+        synchronized (mLock) {
             if (mTokens.containsKey(token)) {
                 Log.w(TAG, "Calling stopCarService twice with the same token.");
                 return;
@@ -80,7 +85,7 @@
             token.linkToDeath(deathRecipient, 0);
 
             if (mTokens.size() == 1) {
-                mICarImpl.release();
+                CarServiceUtils.runOnMainSync(mICarImpl::release);
             }
         }
     }
@@ -92,15 +97,17 @@
         releaseToken(token);
     }
 
-    private synchronized void releaseToken(IBinder token) {
+    private void releaseToken(IBinder token) {
         Log.d(TAG, "releaseToken, token: " + token);
-        DeathRecipient deathRecipient = mTokens.remove(token);
-        if (deathRecipient != null) {
-            token.unlinkToDeath(deathRecipient, 0);
-        }
+        synchronized (mLock) {
+            DeathRecipient deathRecipient = mTokens.remove(token);
+            if (deathRecipient != null) {
+                token.unlinkToDeath(deathRecipient, 0);
+            }
 
-        if (mTokens.size() == 0) {
-            CarServiceUtils.runOnMain(mICarImpl::init);
+            if (mTokens.size() == 0) {
+                CarServiceUtils.runOnMainSync(mICarImpl::init);
+            }
         }
     }
 
diff --git a/service/src/com/android/car/ICarImpl.java b/service/src/com/android/car/ICarImpl.java
index aef43b9..3c6129e 100644
--- a/service/src/com/android/car/ICarImpl.java
+++ b/service/src/com/android/car/ICarImpl.java
@@ -37,6 +37,7 @@
 import android.util.Slog;
 import android.util.TimingsTraceLog;
 
+import com.android.car.am.FixedActivityService;
 import com.android.car.audio.CarAudioService;
 import com.android.car.cluster.InstrumentClusterService;
 import com.android.car.garagemode.GarageModeService;
@@ -45,6 +46,7 @@
 import com.android.car.pm.CarPackageManagerService;
 import com.android.car.systeminterface.SystemInterface;
 import com.android.car.trust.CarTrustedDeviceService;
+import com.android.car.user.CarUserNoticeService;
 import com.android.car.user.CarUserService;
 import com.android.car.vms.VmsBrokerService;
 import com.android.car.vms.VmsClientManager;
@@ -79,6 +81,7 @@
     private final CarPropertyService mCarPropertyService;
     private final CarNightService mCarNightService;
     private final AppFocusService mAppFocusService;
+    private final FixedActivityService mFixedActivityService;
     private final GarageModeService mGarageModeService;
     private final InstrumentClusterService mInstrumentClusterService;
     private final CarLocationService mCarLocationService;
@@ -92,6 +95,7 @@
     private final CarMediaService mCarMediaService;
     private final CarUserManagerHelper mUserManagerHelper;
     private final CarUserService mCarUserService;
+    private final CarUserNoticeService mCarUserNoticeService;
     private final VmsClientManager mVmsClientManager;
     private final VmsBrokerService mVmsBrokerService;
     private final VmsSubscriberService mVmsSubscriberService;
@@ -118,7 +122,7 @@
             CanBusErrorNotifier errorNotifier, String vehicleInterfaceName) {
         mContext = serviceContext;
         mSystemInterface = systemInterface;
-        mHal = new VehicleHal(vehicle);
+        mHal = new VehicleHal(serviceContext, vehicle);
         mVehicleInterfaceName = vehicleInterfaceName;
         mUserManagerHelper = new CarUserManagerHelper(serviceContext);
         final Resources res = mContext.getResources();
@@ -129,6 +133,7 @@
         mSystemActivityMonitoringService = new SystemActivityMonitoringService(serviceContext);
         mCarPowerManagementService = new CarPowerManagementService(mContext, mHal.getPowerHal(),
                 systemInterface, mUserManagerHelper);
+        mCarUserNoticeService = new CarUserNoticeService(serviceContext);
         mCarPropertyService = new CarPropertyService(serviceContext, mHal.getPropertyHal());
         mCarDrivingStateService = new CarDrivingStateService(serviceContext, mCarPropertyService);
         mCarUXRestrictionsService = new CarUxRestrictionsManagerService(serviceContext,
@@ -146,15 +151,17 @@
         mAppFocusService = new AppFocusService(serviceContext, mSystemActivityMonitoringService);
         mCarAudioService = new CarAudioService(serviceContext);
         mCarNightService = new CarNightService(serviceContext, mCarPropertyService);
+        mFixedActivityService = new FixedActivityService(serviceContext);
         mInstrumentClusterService = new InstrumentClusterService(serviceContext,
                 mAppFocusService, mCarInputService);
         mSystemStateControllerService = new SystemStateControllerService(
                 serviceContext, mCarAudioService, this);
-        mVmsBrokerService = new VmsBrokerService(mContext.getPackageManager());
+        mVmsBrokerService = new VmsBrokerService();
         mVmsClientManager = new VmsClientManager(
-                serviceContext, mCarUserService, mUserManagerHelper, mHal.getVmsHal());
+                serviceContext, mVmsBrokerService, mCarUserService, mUserManagerHelper,
+                mHal.getVmsHal());
         mVmsSubscriberService = new VmsSubscriberService(
-                serviceContext, mVmsBrokerService, mHal.getVmsHal());
+                serviceContext, mVmsBrokerService, mVmsClientManager, mHal.getVmsHal());
         mVmsPublisherService = new VmsPublisherService(
                 serviceContext, mVmsBrokerService, mVmsClientManager);
         mCarDiagnosticService = new CarDiagnosticService(serviceContext, mHal.getDiagnosticHal());
@@ -173,6 +180,7 @@
         CarLocalServices.addService(SystemInterface.class, mSystemInterface);
         CarLocalServices.addService(CarDrivingStateService.class, mCarDrivingStateService);
         CarLocalServices.addService(PerUserCarServiceHelper.class, mPerUserCarServiceHelper);
+        CarLocalServices.addService(FixedActivityService.class, mFixedActivityService);
 
         // Be careful with order. Service depending on other service should be inited later.
         List<CarServiceBase> allServices = new ArrayList<>();
@@ -185,9 +193,11 @@
         allServices.add(mCarPackageManagerService);
         allServices.add(mCarInputService);
         allServices.add(mGarageModeService);
+        allServices.add(mCarUserNoticeService);
         allServices.add(mAppFocusService);
         allServices.add(mCarAudioService);
         allServices.add(mCarNightService);
+        allServices.add(mFixedActivityService);
         allServices.add(mInstrumentClusterService);
         allServices.add(mSystemStateControllerService);
         allServices.add(mPerUserCarServiceHelper);
@@ -472,6 +482,8 @@
         } else if ("--metrics".equals(args[0])) {
             writer.println("*Dump car service metrics*");
             dumpAllServices(writer, true);
+        } else if ("--vms-hal".equals(args[0])) {
+            mHal.getVmsHal().dumpMetrics(fd);
         } else if (Build.IS_USERDEBUG || Build.IS_ENG) {
             execShellCmd(args, writer);
         } else {
diff --git a/service/src/com/android/car/VmsLayersAvailability.java b/service/src/com/android/car/VmsLayersAvailability.java
index 200b347..2e17a89 100644
--- a/service/src/com/android/car/VmsLayersAvailability.java
+++ b/service/src/com/android/car/VmsLayersAvailability.java
@@ -22,14 +22,13 @@
 import android.car.vms.VmsLayerDependency;
 import android.car.vms.VmsLayersOffering;
 import android.util.Log;
+
 import com.android.internal.annotations.GuardedBy;
 
-import java.util.ArrayList;
 import java.util.Collection;
 import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
-import java.util.List;
 import java.util.Map;
 import java.util.Set;
 import java.util.stream.Collectors;
@@ -45,8 +44,7 @@
  */
 
 public class VmsLayersAvailability {
-
-    private static final boolean DBG = true;
+    private static final boolean DBG = false;
     private static final String TAG = "VmsLayersAvailability";
 
     private final Object mLock = new Object();
diff --git a/service/src/com/android/car/VmsPublisherService.java b/service/src/com/android/car/VmsPublisherService.java
index 8e3beeb..3029a9e 100644
--- a/service/src/com/android/car/VmsPublisherService.java
+++ b/service/src/com/android/car/VmsPublisherService.java
@@ -46,8 +46,8 @@
  * Binds to publishers and configures them to use this service.
  * Notifies publishers of subscription changes.
  */
-public class VmsPublisherService implements CarServiceBase, VmsClientManager.ConnectionListener {
-    private static final boolean DBG = true;
+public class VmsPublisherService implements CarServiceBase {
+    private static final boolean DBG = false;
     private static final String TAG = "VmsPublisherService";
 
     @VisibleForTesting
@@ -65,8 +65,8 @@
             "Total packet failure size for layer %s from %s to %s: %d (bytes)\n";
 
     private final Context mContext;
-    private final VmsClientManager mClientManager;
     private final VmsBrokerService mBrokerService;
+    private final VmsClientManager mClientManager;
     private final Map<String, PublisherProxy> mPublisherProxies = Collections.synchronizedMap(
             new ArrayMap<>());
 
@@ -117,9 +117,9 @@
             VmsBrokerService brokerService,
             VmsClientManager clientManager) {
         mContext = context;
-        mClientManager = clientManager;
         mBrokerService = brokerService;
-        mClientManager.registerConnectionListener(this);
+        mClientManager = clientManager;
+        mClientManager.setPublisherService(this);
     }
 
     @Override
@@ -164,11 +164,15 @@
         }
     }
 
-    @Override
-    public void onClientConnected(String publisherName, IBinder binder) {
+    /**
+     * Called when a client connection is established or re-established.
+     *
+     * @param publisherName    String that uniquely identifies the service and user.
+     * @param publisherClient The client's communication channel.
+     */
+    public void onClientConnected(String publisherName, IVmsPublisherClient publisherClient) {
         if (DBG) Log.d(TAG, "onClientConnected: " + publisherName);
         IBinder publisherToken = new Binder();
-        IVmsPublisherClient publisherClient = IVmsPublisherClient.Stub.asInterface(binder);
 
         PublisherProxy publisherProxy = new PublisherProxy(publisherName, publisherToken,
                 publisherClient);
@@ -186,7 +190,11 @@
         }
     }
 
-    @Override
+    /**
+     * Called when a client connection is terminated.
+     *
+     * @param publisherName String that uniquely identifies the service and user.
+     */
     public void onClientDisconnected(String publisherName) {
         if (DBG) Log.d(TAG, "onClientDisconnected: " + publisherName);
         PublisherProxy proxy = mPublisherProxies.remove(publisherName);
@@ -278,7 +286,7 @@
                 try {
                     listener.onVmsMessageReceived(layer, payload);
                 } catch (RemoteException ex) {
-                    String subscriberName = mBrokerService.getPackageName(listener);
+                    String subscriberName = mClientManager.getPackageName(listener);
                     incrementPacketFailure(layer, mName, subscriberName, payloadLength);
                     Log.e(TAG, String.format("Unable to publish to listener: %s", subscriberName));
                 }
diff --git a/service/src/com/android/car/VmsPublishersInfo.java b/service/src/com/android/car/VmsPublishersInfo.java
index 78ec9fb..94bc794 100644
--- a/service/src/com/android/car/VmsPublishersInfo.java
+++ b/service/src/com/android/car/VmsPublishersInfo.java
@@ -17,7 +17,6 @@
 package com.android.car;
 
 import android.util.ArrayMap;
-import android.util.Log;
 
 import com.android.internal.annotations.GuardedBy;
 
@@ -25,8 +24,6 @@
 import java.util.Arrays;
 
 public class VmsPublishersInfo {
-    private static final String TAG = "VmsPublishersInfo";
-    private static final boolean DBG = true;
     private static final byte[] EMPTY_RESPONSE = new byte[0];
 
     private final Object mLock = new Object();
@@ -81,9 +78,6 @@
                 mPublishersIds.put(wrappedPublisherInfo, publisherId);
             }
         }
-        if (DBG) {
-            Log.i(TAG, "Publisher ID is: " + publisherId);
-        }
         return publisherId;
     }
 
diff --git a/service/src/com/android/car/VmsSubscriberService.java b/service/src/com/android/car/VmsSubscriberService.java
index aaadf4f..16cebf3 100644
--- a/service/src/com/android/car/VmsSubscriberService.java
+++ b/service/src/com/android/car/VmsSubscriberService.java
@@ -16,246 +16,81 @@
 
 package com.android.car;
 
-import android.car.Car;
 import android.car.vms.IVmsSubscriberClient;
 import android.car.vms.IVmsSubscriberService;
 import android.car.vms.VmsAvailableLayers;
 import android.car.vms.VmsLayer;
 import android.content.Context;
-import android.os.IBinder;
 import android.os.RemoteException;
 import android.util.Log;
 
 import com.android.car.hal.VmsHalService;
 import com.android.car.vms.VmsBrokerService;
-import com.android.internal.annotations.GuardedBy;
+import com.android.car.vms.VmsClientManager;
 
 import java.io.PrintWriter;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
 
 /**
- * + Receives HAL updates by implementing VmsHalService.VmsHalListener.
- * + Offers subscriber/publisher services by implementing IVmsService.Stub.
+ * Offers subscriber services by implementing IVmsSubscriberService.Stub.
  */
 public class VmsSubscriberService extends IVmsSubscriberService.Stub implements CarServiceBase,
         VmsBrokerService.SubscriberListener {
-    private static final boolean DBG = true;
-    private static final String PERMISSION = Car.PERMISSION_VMS_SUBSCRIBER;
     private static final String TAG = "VmsSubscriberService";
 
     private final Context mContext;
     private final VmsBrokerService mBrokerService;
-
-    @GuardedBy("mSubscriberServiceLock")
-    private final VmsSubscribersManager mSubscribersManager = new VmsSubscribersManager();
-    private final Object mSubscriberServiceLock = new Object();
+    private final VmsClientManager mClientManager;
 
     /**
-     * Keeps track of subscribers of this service.
+     * Constructor for client manager.
+     *
+     * @param context           Context to use for registering receivers and binding services.
+     * @param brokerService     Service managing the VMS publisher/subscriber state.
+     * @param clientManager     Service for monitoring VMS subscriber clients.
+     * @param hal               Service providing the HAL client interface
      */
-    class VmsSubscribersManager {
-        /**
-         * Allows to modify mSubscriberMap and mListenerDeathRecipientMap as a single unit.
-         */
-        private final Object mListenerManagerLock = new Object();
-        @GuardedBy("mListenerManagerLock")
-        private final Map<IBinder, ListenerDeathRecipient> mListenerDeathRecipientMap =
-                new HashMap<>();
-        @GuardedBy("mListenerManagerLock")
-        private final Map<IBinder, IVmsSubscriberClient> mSubscriberMap = new HashMap<>();
-
-        class ListenerDeathRecipient implements IBinder.DeathRecipient {
-            private IBinder mSubscriberBinder;
-
-            ListenerDeathRecipient(IBinder subscriberBinder) {
-                mSubscriberBinder = subscriberBinder;
-            }
-
-            /**
-             * Listener died. Remove it from this service.
-             */
-            @Override
-            public void binderDied() {
-                if (DBG) {
-                    Log.d(TAG, "binderDied " + mSubscriberBinder);
-                }
-
-                // Get the Listener from the Binder
-                IVmsSubscriberClient subscriber = mSubscriberMap.get(mSubscriberBinder);
-
-                // Remove the subscriber subscriptions.
-                if (subscriber != null) {
-                    Log.d(TAG, "Removing subscriptions for dead subscriber: " + subscriber);
-                    mBrokerService.removeDeadSubscriber(subscriber);
-                } else {
-                    Log.d(TAG, "Handling dead binder with no matching subscriber");
-
-                }
-
-                // Remove binder
-                VmsSubscribersManager.this.removeListener(mSubscriberBinder);
-            }
-
-            void release() {
-                mSubscriberBinder.unlinkToDeath(this, 0);
-            }
-        }
-
-        public void release() {
-            for (ListenerDeathRecipient recipient : mListenerDeathRecipientMap.values()) {
-                recipient.release();
-            }
-            mListenerDeathRecipientMap.clear();
-            mSubscriberMap.clear();
-        }
-
-        /**
-         * Adds the subscriber and a death recipient associated to it.
-         *
-         * @param subscriber to be added.
-         * @throws IllegalArgumentException if the subscriber is null.
-         * @throws IllegalStateException    if it was not possible to link a death recipient to the
-         *                                  subscriber.
-         */
-        public void add(IVmsSubscriberClient subscriber) {
-            ICarImpl.assertVmsSubscriberPermission(mContext);
-            if (subscriber == null) {
-                Log.e(TAG, "Trying to add a null subscriber.");
-                throw new IllegalArgumentException("subscriber cannot be null.");
-            }
-            IBinder subscriberBinder = subscriber.asBinder();
-            synchronized (mListenerManagerLock) {
-                if (mSubscriberMap.containsKey(subscriberBinder)) {
-                    if (DBG) {
-                        Log.d(TAG, "Subscriber already registered: " + subscriber);
-                    }
-                    return;
-                }
-                if (DBG) {
-                    Log.d(TAG, "Registering subscriber: " + subscriber);
-                }
-                ListenerDeathRecipient deathRecipient =
-                        new ListenerDeathRecipient(subscriberBinder);
-                try {
-                    subscriberBinder.linkToDeath(deathRecipient, 0);
-                } catch (RemoteException e) {
-                    throw new IllegalStateException("Client already dead", e);
-                }
-                mListenerDeathRecipientMap.put(subscriberBinder, deathRecipient);
-                mSubscriberMap.put(subscriberBinder, subscriber);
-            }
-        }
-
-        /**
-         * Removes the subscriber and associated death recipient.
-         *
-         * @param subscriber to be removed.
-         * @throws IllegalArgumentException if subscriber is null.
-         */
-        public void remove(IVmsSubscriberClient subscriber) {
-            if (DBG) {
-                Log.d(TAG, "unregisterListener");
-            }
-            ICarImpl.assertPermission(mContext, PERMISSION);
-            if (subscriber == null) {
-                Log.e(TAG, "unregister: subscriber is null.");
-                throw new IllegalArgumentException("Listener is null");
-            }
-            IBinder subscriberBinder = subscriber.asBinder();
-            removeListener(subscriberBinder);
-        }
-
-        // Removes the subscriberBinder from the current state.
-        // The function assumes that binder will exist both in subscriber and death recipients list.
-        private void removeListener(IBinder subscriberBinder) {
-            synchronized (mListenerManagerLock) {
-                boolean found = mSubscriberMap.remove(subscriberBinder) != null;
-                if (found) {
-                    mListenerDeathRecipientMap.get(subscriberBinder).release();
-                    mListenerDeathRecipientMap.remove(subscriberBinder);
-                } else {
-                    Log.e(TAG, "removeListener: subscriber was not previously registered.");
-                }
-            }
-        }
-
-        /**
-         * Returns list of subscribers currently registered.
-         *
-         * @return list of subscribers.
-         */
-        public List<IVmsSubscriberClient> getListeners() {
-            synchronized (mListenerManagerLock) {
-                return new ArrayList<>(mSubscriberMap.values());
-            }
-        }
-    }
-
-    public VmsSubscriberService(Context context, VmsBrokerService brokerService,
-            VmsHalService hal) {
+    VmsSubscriberService(Context context, VmsBrokerService brokerService,
+            VmsClientManager clientManager, VmsHalService hal) {
         mContext = context;
         mBrokerService = brokerService;
-        hal.setVmsSubscriberService(this, mBrokerService::removeDeadSubscriber);
-    }
-
-    // Implements CarServiceBase interface.
-    @Override
-    public void init() {
+        mClientManager = clientManager;
         mBrokerService.addSubscriberListener(this);
+        hal.setVmsSubscriberService(this);
     }
 
     @Override
-    public void release() {
-        mBrokerService.removeSubscriberListener(this);
-        mSubscribersManager.release();
-    }
+    public void init() {}
+
+    @Override
+    public void release() {}
 
     @Override
     public void dump(PrintWriter writer) {
     }
 
-    // Implements IVmsService interface.
     @Override
     public void addVmsSubscriberToNotifications(IVmsSubscriberClient subscriber) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            // Add the subscriber so it can subscribe.
-            mSubscribersManager.add(subscriber);
-        }
+        mClientManager.addSubscriber(subscriber);
     }
 
     @Override
     public void removeVmsSubscriberToNotifications(IVmsSubscriberClient subscriber) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            mSubscribersManager.remove(subscriber);
-        }
+        mClientManager.removeSubscriber(subscriber);
     }
 
     @Override
     public void addVmsSubscriber(IVmsSubscriberClient subscriber, VmsLayer layer) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            // Add the subscriber so it can subscribe.
-            mSubscribersManager.add(subscriber);
-
-            // Add the subscription for the layer.
-            mBrokerService.addSubscription(subscriber, layer);
-        }
+        mClientManager.addSubscriber(subscriber);
+        mBrokerService.addSubscription(subscriber, layer);
     }
 
     @Override
     public void removeVmsSubscriber(IVmsSubscriberClient subscriber, VmsLayer layer) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            // Remove the subscription.
-            mBrokerService.removeSubscription(subscriber, layer);
-        }
+        mBrokerService.removeSubscription(subscriber, layer);
     }
 
     @Override
@@ -263,13 +98,8 @@
             VmsLayer layer,
             int publisherId) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            // Add the subscriber so it can subscribe.
-            mSubscribersManager.add(subscriber);
-
-            // Add the subscription for the layer.
-            mBrokerService.addSubscription(subscriber, layer, publisherId);
-        }
+        mClientManager.addSubscriber(subscriber);
+        mBrokerService.addSubscription(subscriber, layer, publisherId);
     }
 
     @Override
@@ -277,76 +107,42 @@
             VmsLayer layer,
             int publisherId) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            // Remove the subscription.
-            mBrokerService.removeSubscription(subscriber, layer, publisherId);
-        }
+        mBrokerService.removeSubscription(subscriber, layer, publisherId);
     }
 
     @Override
     public void addVmsSubscriberPassive(IVmsSubscriberClient subscriber) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            mSubscribersManager.add(subscriber);
-            mBrokerService.addSubscription(subscriber);
-        }
+        mClientManager.addSubscriber(subscriber);
+        mBrokerService.addSubscription(subscriber);
     }
 
     @Override
     public void removeVmsSubscriberPassive(IVmsSubscriberClient subscriber) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            // Remove the subscription.
-            mBrokerService.removeSubscription(subscriber);
-        }
+        mBrokerService.removeSubscription(subscriber);
     }
 
     @Override
     public byte[] getPublisherInfo(int publisherId) {
         ICarImpl.assertVmsSubscriberPermission(mContext);
-        synchronized (mSubscriberServiceLock) {
-            return mBrokerService.getPublisherInfo(publisherId);
-        }
+        return mBrokerService.getPublisherInfo(publisherId);
     }
 
     @Override
     public VmsAvailableLayers getAvailableLayers() {
+        ICarImpl.assertVmsSubscriberPermission(mContext);
         return mBrokerService.getAvailableLayers();
-
-    }
-
-    @Override
-    public void onMessageReceived(VmsLayer layer, int publisherId, byte[] payload) {
-        if (DBG) Log.d(TAG, "Publishing a message for layer: " + layer);
-
-        Set<IVmsSubscriberClient> subscribers =
-                mBrokerService.getSubscribersForLayerFromPublisher(layer, publisherId);
-
-        for (IVmsSubscriberClient subscriber : subscribers) {
-            try {
-                subscriber.onVmsMessageReceived(layer, payload);
-            } catch (RemoteException e) {
-                // If we could not send a record, its likely the connection snapped. Let the binder
-                // death handle the situation.
-                Log.e(TAG, "onVmsMessageReceived calling failed: ", e);
-            }
-        }
     }
 
     @Override
     public void onLayersAvailabilityChange(VmsAvailableLayers availableLayers) {
-        if (DBG) Log.d(TAG, "Publishing layers availability change: " + availableLayers);
-
-        Set<IVmsSubscriberClient> subscribers;
-        subscribers = new HashSet<>(mSubscribersManager.getListeners());
-
-        for (IVmsSubscriberClient subscriber : subscribers) {
+        for (IVmsSubscriberClient subscriber : mClientManager.getAllSubscribers()) {
             try {
                 subscriber.onLayersAvailabilityChanged(availableLayers);
             } catch (RemoteException e) {
-                // If we could not send a record, its likely the connection snapped. Let the binder
-                // death handle the situation.
-                Log.e(TAG, "onLayersAvailabilityChanged calling failed: ", e);
+                Log.e(TAG, "onLayersAvailabilityChanged failed: "
+                        + mClientManager.getPackageName(subscriber), e);
             }
         }
     }
diff --git a/service/src/com/android/car/am/FixedActivityService.java b/service/src/com/android/car/am/FixedActivityService.java
new file mode 100644
index 0000000..b8f8608
--- /dev/null
+++ b/service/src/com/android/car/am/FixedActivityService.java
@@ -0,0 +1,427 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.car.am;
+
+import static com.android.car.CarLog.TAG_AM;
+
+import android.annotation.NonNull;
+import android.annotation.Nullable;
+import android.annotation.UserIdInt;
+import android.app.ActivityManager;
+import android.app.ActivityManager.StackInfo;
+import android.app.ActivityOptions;
+import android.app.IActivityManager;
+import android.app.IProcessObserver;
+import android.app.TaskStackListener;
+import android.content.BroadcastReceiver;
+import android.content.ComponentName;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.content.pm.ActivityInfo;
+import android.content.pm.PackageInfo;
+import android.content.pm.PackageManager;
+import android.os.RemoteException;
+import android.os.UserHandle;
+import android.os.UserManager;
+import android.util.Log;
+import android.util.SparseArray;
+import android.view.Display;
+
+import com.android.car.CarLocalServices;
+import com.android.car.CarServiceBase;
+import com.android.car.user.CarUserService;
+import com.android.internal.annotations.GuardedBy;
+
+import java.io.PrintWriter;
+import java.util.List;
+
+/**
+ * Monitors top activity for a display and guarantee activity in fixed mode is re-launched if it has
+ * crashed or gone to background for whatever reason.
+ *
+ * <p>This component also monitors the upddate of the target package and re-launch it once
+ * update is complete.</p>
+ */
+public final class FixedActivityService implements CarServiceBase {
+
+    private static final boolean DBG = false;
+
+    private static class RunningActivityInfo {
+        @NonNull
+        public final Intent intent;
+
+        @NonNull
+        public final ActivityOptions activityOptions;
+
+        @UserIdInt
+        public final int userId;
+
+        // Only used in a method for local book-keeping. So do not need a lock.
+        // This does not represent the current visibility.
+        public boolean isVisible;
+
+        RunningActivityInfo(@NonNull Intent intent, @NonNull ActivityOptions activityOptions,
+                @UserIdInt int userId) {
+            this.intent = intent;
+            this.activityOptions = activityOptions;
+            this.userId = userId;
+        }
+
+        @Override
+        public String toString() {
+            return "RunningActivityInfo{intent:" + intent + ",activityOptions:" + activityOptions
+                    + ",userId:" + userId + "}";
+        }
+    }
+
+    private final Context mContext;
+
+    private final IActivityManager mAm;
+
+    private final UserManager mUm;
+
+    private final CarUserService.UserCallback mUserCallback = new CarUserService.UserCallback() {
+        @Override
+        public void onUserLockChanged(@UserIdInt int userId, boolean unlocked) {
+            // Nothing to do
+        }
+
+        @Override
+        public void onSwitchUser(@UserIdInt int userId) {
+            synchronized (mLock) {
+                mRunningActivities.clear();
+            }
+        }
+    };
+
+    private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            final String action = intent.getAction();
+            if (Intent.ACTION_PACKAGE_CHANGED.equals(action)
+                    || Intent.ACTION_PACKAGE_REPLACED.equals(
+                    action)) {
+                launchIfNecessary();
+            }
+        }
+    };
+
+    // It says listener but is actually callback.
+    private final TaskStackListener mTaskStackListener = new TaskStackListener() {
+        @Override
+        public void onTaskStackChanged() {
+            launchIfNecessary();
+        }
+    };
+
+    private final IProcessObserver mProcessObserver = new IProcessObserver.Stub() {
+        @Override
+        public void onForegroundActivitiesChanged(int pid, int uid, boolean foregroundActivities) {
+            launchIfNecessary();
+        }
+
+        @Override
+        public void onForegroundServicesChanged(int pid, int uid, int fgServiceTypes) {
+          // ignore
+        }
+
+        @Override
+        public void onProcessDied(int pid, int uid) {
+            launchIfNecessary();
+        }
+    };
+
+    private final Object mLock = new Object();
+
+    // key: displayId
+    @GuardedBy("mLock")
+    private final SparseArray<RunningActivityInfo> mRunningActivities =
+            new SparseArray<>(/* capacity= */ 1); // default to one cluster only case
+
+    @GuardedBy("mLock")
+    private boolean mEventMonitoringActive;
+
+    public FixedActivityService(Context context) {
+        mContext = context;
+        mAm = ActivityManager.getService();
+        mUm = context.getSystemService(UserManager.class);
+    }
+
+
+    @Override
+    public void init() {
+        // nothing to do
+    }
+
+    @Override
+    public void release() {
+        stopMonitoringEvents();
+    }
+
+    @Override
+    public void dump(PrintWriter writer) {
+        writer.println("*FixedActivityService*");
+        synchronized (mLock) {
+            writer.println("mRunningActivities:" + mRunningActivities
+                    + " ,mEventMonitoringActive:" + mEventMonitoringActive);
+        }
+    }
+
+    private void startMonitoringEvents() {
+        synchronized (mLock) {
+            if (mEventMonitoringActive) {
+                return;
+            }
+            mEventMonitoringActive = true;
+        }
+        CarUserService userService = CarLocalServices.getService(CarUserService.class);
+        userService.addUserCallback(mUserCallback);
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
+        filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
+        mContext.registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL, filter,
+                /* broadcastPermission= */ null, /* scheduler= */ null);
+        try {
+            mAm.registerTaskStackListener(mTaskStackListener);
+            mAm.registerProcessObserver(mProcessObserver);
+        } catch (RemoteException e) {
+            Log.e(TAG_AM, "remote exception from AM", e);
+        }
+    }
+
+    private void stopMonitoringEvents() {
+        synchronized (mLock) {
+            if (!mEventMonitoringActive) {
+                return;
+            }
+            mEventMonitoringActive = false;
+        }
+        CarUserService userService = CarLocalServices.getService(CarUserService.class);
+        userService.removeUserCallback(mUserCallback);
+        try {
+            mAm.unregisterTaskStackListener(mTaskStackListener);
+            mAm.unregisterProcessObserver(mProcessObserver);
+        } catch (RemoteException e) {
+            Log.e(TAG_AM, "remote exception from AM", e);
+        }
+    }
+
+    @Nullable
+    private List<StackInfo> getStackInfos() {
+        try {
+            return mAm.getAllStackInfos();
+        } catch (RemoteException e) {
+            Log.e(TAG_AM, "remote exception from AM", e);
+        }
+        return null;
+    }
+
+    /**
+     * Launches all stored fixed mode activities if necessary.
+     * @param displayId Display id to check if it is visible. If check is not necessary, should pass
+     *        {@link Display#INVALID_DISPLAY}.
+     * @return true if fixed Activity for given {@code displayId} is visible / successfully
+     *         launched. It will return false for {@link Display#INVALID_DISPLAY} {@code displayId}.
+     */
+    private boolean launchIfNecessary(int displayId) {
+        List<StackInfo> infos = getStackInfos();
+        if (infos == null) {
+            Log.e(TAG_AM, "cannot get StackInfo from AM");
+            return false;
+        }
+        synchronized (mLock) {
+            if (mRunningActivities.size() == 0) {
+                // it must have been stopped.
+                if (DBG) {
+                    Log.i(TAG_AM, "empty activity list", new RuntimeException());
+                }
+                return false;
+            }
+            for (int i = 0; i < mRunningActivities.size(); i++) {
+                mRunningActivities.valueAt(i).isVisible = false;
+            }
+            for (StackInfo stackInfo : infos) {
+                RunningActivityInfo activityInfo = mRunningActivities.get(stackInfo.displayId);
+                if (activityInfo == null) {
+                    continue;
+                }
+                int topUserId = stackInfo.taskUserIds[stackInfo.taskUserIds.length - 1];
+                if (activityInfo.intent.getComponent().equals(stackInfo.topActivity)
+                        && activityInfo.userId == topUserId && stackInfo.visible) {
+                    // top one is matching.
+                    activityInfo.isVisible = true;
+                    continue;
+                }
+                if (DBG) {
+                    Log.i(TAG_AM, "Unmatched top activity:" + stackInfo.topActivity
+                            + " user:" + topUserId + " display:" + stackInfo.displayId);
+                }
+            }
+            for (int i = 0; i < mRunningActivities.size(); i++) {
+                RunningActivityInfo activityInfo = mRunningActivities.valueAt(i);
+                if (activityInfo.isVisible) {
+                    continue;
+                }
+                if (!isComponentAvailable(activityInfo.intent.getComponent(),
+                        activityInfo.userId) || !isUserAllowedToLaunchActivity(
+                        activityInfo.userId)) {
+                    continue;
+                }
+                Log.i(TAG_AM, "Launching Activity for fixed mode. Intent:" + activityInfo.intent
+                        + ",userId:" + UserHandle.of(activityInfo.userId) + ",displayId:"
+                        + mRunningActivities.keyAt(i));
+                try {
+                    mContext.startActivityAsUser(activityInfo.intent,
+                            activityInfo.activityOptions.toBundle(),
+                            UserHandle.of(activityInfo.userId));
+                    activityInfo.isVisible = true;
+                } catch (Exception e) { // Catch all for any app related issues.
+                    Log.w(TAG_AM, "Cannot start activity:" + activityInfo.intent, e);
+                }
+            }
+            RunningActivityInfo activityInfo = mRunningActivities.get(displayId);
+            if (activityInfo == null) {
+                return false;
+            }
+            return activityInfo.isVisible;
+        }
+    }
+
+    private void launchIfNecessary() {
+        launchIfNecessary(Display.INVALID_DISPLAY);
+    }
+
+    private void logComponentNotFound(ComponentName component, @UserIdInt  int userId,
+            Exception e) {
+        Log.e(TAG_AM, "Specified Component not found:" + component
+                + " for userid:" + userId, e);
+    }
+
+    private boolean isComponentAvailable(ComponentName component, @UserIdInt int userId) {
+        PackageInfo packageInfo;
+        try {
+            packageInfo = mContext.getPackageManager().getPackageInfoAsUser(
+                    component.getPackageName(), PackageManager.GET_ACTIVITIES, userId);
+        } catch (PackageManager.NameNotFoundException e) {
+            logComponentNotFound(component, userId, e);
+            return false;
+        }
+        if (packageInfo == null || packageInfo.activities == null) {
+            // may not be necessary but additional safety check
+            logComponentNotFound(component, userId, new RuntimeException());
+            return false;
+        }
+        String fullName = component.getClassName();
+        String shortName = component.getShortClassName();
+        for (ActivityInfo info : packageInfo.activities) {
+            if (info.name.equals(fullName) || info.name.equals(shortName)) {
+                return true;
+            }
+        }
+        logComponentNotFound(component, userId, new RuntimeException());
+        return false;
+    }
+
+    private boolean isUserAllowedToLaunchActivity(@UserIdInt int userId) {
+        int currentUser = ActivityManager.getCurrentUser();
+        if (userId == currentUser) {
+            return true;
+        }
+        int[] profileIds = mUm.getEnabledProfileIds(currentUser);
+        for (int id : profileIds) {
+            if (id == userId) {
+                return true;
+            }
+        }
+        return false;
+    }
+
+    private boolean isDisplayAllowedForFixedMode(int displayId) {
+        if (displayId == Display.DEFAULT_DISPLAY || displayId == Display.INVALID_DISPLAY) {
+            Log.w(TAG_AM, "Target display cannot be used for fixed mode, displayId:" + displayId,
+                    new RuntimeException());
+            return false;
+        }
+        return true;
+    }
+
+    /**
+     * Checks {@link InstrumentClusterRenderingService#startFixedActivityModeForDisplayAndUser(
+     * Intent, ActivityOptions, int)}
+     */
+    public boolean startFixedActivityModeForDisplayAndUser(@NonNull Intent intent,
+            @NonNull ActivityOptions options, int displayId, @UserIdInt int userId) {
+        if (!isDisplayAllowedForFixedMode(displayId)) {
+            return false;
+        }
+        if (!isUserAllowedToLaunchActivity(userId)) {
+            Log.e(TAG_AM, "startFixedActivityModeForDisplayAndUser, requested user:" + userId
+                    + " cannot launch activity, Intent:" + intent);
+            return false;
+        }
+        ComponentName component = intent.getComponent();
+        if (component == null) {
+            Log.e(TAG_AM,
+                    "startFixedActivityModeForDisplayAndUser: No component specified for "
+                            + "requested Intent"
+                            + intent);
+            return false;
+        }
+        if (!isComponentAvailable(component, userId)) {
+            return false;
+        }
+        boolean startMonitoringEvents = false;
+        synchronized (mLock) {
+            if (mRunningActivities.size() == 0) {
+                startMonitoringEvents = true;
+            }
+            RunningActivityInfo activityInfo = mRunningActivities.get(displayId);
+            if (activityInfo == null) {
+                activityInfo = new RunningActivityInfo(intent, options, userId);
+                mRunningActivities.put(displayId, activityInfo);
+            }
+        }
+        boolean launched = launchIfNecessary(displayId);
+        if (!launched) {
+            synchronized (mLock) {
+                mRunningActivities.remove(displayId);
+            }
+        }
+        // If first trial fails, let client know and do not retry as it can be wrong setting.
+        if (startMonitoringEvents && launched) {
+            startMonitoringEvents();
+        }
+        return launched;
+    }
+
+    /** Check {@link InstrumentClusterRenderingService#stopFixedActivityMode(int)} */
+    public void stopFixedActivityMode(int displayId) {
+        if (!isDisplayAllowedForFixedMode(displayId)) {
+            return;
+        }
+        boolean stopMonitoringEvents = false;
+        synchronized (mLock) {
+            mRunningActivities.remove(displayId);
+            if (mRunningActivities.size() == 0) {
+                stopMonitoringEvents = true;
+            }
+        }
+        if (stopMonitoringEvents) {
+            stopMonitoringEvents();
+        }
+    }
+}
diff --git a/service/src/com/android/car/cluster/InstrumentClusterService.java b/service/src/com/android/car/cluster/InstrumentClusterService.java
index fd16da5..df6c476 100644
--- a/service/src/com/android/car/cluster/InstrumentClusterService.java
+++ b/service/src/com/android/car/cluster/InstrumentClusterService.java
@@ -15,17 +15,22 @@
  */
 package com.android.car.cluster;
 
+import static android.car.cluster.renderer.InstrumentClusterRenderingService.EXTRA_BUNDLE_KEY_FOR_INSTRUMENT_CLUSTER_HELPER;
+
 import android.annotation.Nullable;
 import android.annotation.SystemApi;
+import android.app.ActivityOptions;
 import android.car.CarAppFocusManager;
 import android.car.cluster.IInstrumentClusterManagerCallback;
 import android.car.cluster.IInstrumentClusterManagerService;
 import android.car.cluster.renderer.IInstrumentCluster;
+import android.car.cluster.renderer.IInstrumentClusterHelper;
 import android.car.cluster.renderer.IInstrumentClusterNavigation;
 import android.content.ComponentName;
 import android.content.Context;
 import android.content.Intent;
 import android.content.ServiceConnection;
+import android.os.Bundle;
 import android.os.Handler;
 import android.os.IBinder;
 import android.os.Message;
@@ -43,6 +48,7 @@
 import com.android.car.CarLog;
 import com.android.car.CarServiceBase;
 import com.android.car.R;
+import com.android.car.am.FixedActivityService;
 import com.android.car.user.CarUserService;
 import com.android.internal.annotations.GuardedBy;
 
@@ -69,16 +75,18 @@
      */
     @Deprecated
     private final ClusterManagerService mClusterManagerService = new ClusterManagerService();
-    private final Object mSync = new Object();
-    @GuardedBy("mSync")
+    private final Object mLock = new Object();
+    @GuardedBy("mLock")
     private ContextOwner mNavContextOwner = NO_OWNER;
-    @GuardedBy("mSync")
+    @GuardedBy("mLock")
     private IInstrumentCluster mRendererService;
     // If renderer service crashed / stopped and this class fails to rebind with it immediately,
     // we should wait some time before next attempt. This may happen during APK update for example.
+    @GuardedBy("mLock")
     private DeferredRebinder mDeferredRebinder;
     // Whether {@link android.car.cluster.renderer.InstrumentClusterRendererService} is bound
     // (although not necessarily connected)
+    @GuardedBy("mLock")
     private boolean mRendererBound = false;
 
     /**
@@ -92,7 +100,7 @@
             }
             IInstrumentCluster service = IInstrumentCluster.Stub.asInterface(binder);
             ContextOwner navContextOwner;
-            synchronized (mSync) {
+            synchronized (mLock) {
                 mRendererService = service;
                 navContextOwner = mNavContextOwner;
             }
@@ -107,19 +115,39 @@
                 Log.d(TAG, "onServiceDisconnected, name: " + name);
             }
             mContext.unbindService(this);
-            mRendererBound = false;
-
-            synchronized (mSync) {
+            DeferredRebinder rebinder;
+            synchronized (mLock) {
+                mRendererBound = false;
                 mRendererService = null;
+                if (mDeferredRebinder == null) {
+                    mDeferredRebinder = new DeferredRebinder();
+                }
+                rebinder = mDeferredRebinder;
             }
-
-            if (mDeferredRebinder == null) {
-                mDeferredRebinder = new DeferredRebinder();
-            }
-            mDeferredRebinder.rebind();
+            rebinder.rebind();
         }
     };
 
+    private final IInstrumentClusterHelper mInstrumentClusterHelper =
+            new IInstrumentClusterHelper.Stub() {
+                @Override
+                public boolean startFixedActivityModeForDisplayAndUser(Intent intent,
+                        Bundle activityOptionsBundle, int userId) {
+                    ActivityOptions options = new ActivityOptions(activityOptionsBundle);
+                    FixedActivityService service = CarLocalServices.getService(
+                            FixedActivityService.class);
+                    return service.startFixedActivityModeForDisplayAndUser(intent, options,
+                            options.getLaunchDisplayId(), userId);
+                }
+
+                @Override
+                public void stopFixedActivityMode(int displayId) {
+                    FixedActivityService service = CarLocalServices.getService(
+                            FixedActivityService.class);
+                    service.stopFixedActivityMode(displayId);
+                }
+            };
+
     public InstrumentClusterService(Context context, AppFocusService appFocusService,
             CarInputService carInputService) {
         mContext = context;
@@ -181,7 +209,7 @@
         IInstrumentCluster service;
         ContextOwner requester = new ContextOwner(uid, pid);
         ContextOwner newOwner = acquire ? requester : NO_OWNER;
-        synchronized (mSync) {
+        synchronized (mLock) {
             if ((acquire && Objects.equals(mNavContextOwner, requester))
                     || (!acquire && !Objects.equals(mNavContextOwner, requester))) {
                 // Nothing to do here. Either the same owner is acquiring twice, or someone is
@@ -221,6 +249,11 @@
 
         Intent intent = new Intent();
         intent.setComponent(ComponentName.unflattenFromString(rendererService));
+        // Litle bit inefficiency here as Intent.getIBinderExtra() is a hidden API.
+        Bundle bundle = new Bundle();
+        bundle.putBinder(EXTRA_BUNDLE_KEY_FOR_INSTRUMENT_CLUSTER_HELPER,
+                mInstrumentClusterHelper.asBinder());
+        intent.putExtra(EXTRA_BUNDLE_KEY_FOR_INSTRUMENT_CLUSTER_HELPER, bundle);
         return mContext.bindServiceAsUser(intent, mRendererServiceConnection,
                 Context.BIND_AUTO_CREATE | Context.BIND_IMPORTANT, UserHandle.SYSTEM);
     }
@@ -262,7 +295,7 @@
 
     private IInstrumentCluster getInstrumentClusterRendererService() {
         IInstrumentCluster service;
-        synchronized (mSync) {
+        synchronized (mLock) {
             service = mRendererService;
         }
         return service;
diff --git a/service/src/com/android/car/hal/PropertyHalService.java b/service/src/com/android/car/hal/PropertyHalService.java
index 545fc2b..484e667 100644
--- a/service/src/com/android/car/hal/PropertyHalService.java
+++ b/service/src/com/android/car/hal/PropertyHalService.java
@@ -183,6 +183,14 @@
     }
 
     /**
+     * Return true if property is a display_units property
+     * @param propId
+     */
+    public boolean isDisplayUnitsProperty(int propId) {
+        return mPropIds.isPropertyToChangeUnits(propId);
+    }
+
+    /**
      * Set the property value.
      * @param prop
      */
diff --git a/service/src/com/android/car/hal/PropertyHalServiceIds.java b/service/src/com/android/car/hal/PropertyHalServiceIds.java
index 5409b4d..82a89d7 100644
--- a/service/src/com/android/car/hal/PropertyHalServiceIds.java
+++ b/service/src/com/android/car/hal/PropertyHalServiceIds.java
@@ -26,6 +26,8 @@
 import android.util.Pair;
 import android.util.SparseArray;
 
+import java.util.HashSet;
+
 /**
  * Helper class to define which property IDs are used by PropertyHalService.  This class binds the
  * read and write permissions to the property ID.
@@ -39,11 +41,12 @@
      * properties.
      */
     private final SparseArray<Pair<String, String>> mProps;
+    private final HashSet<Integer> mPropForUnits;
     private static final String TAG = "PropertyHalServiceIds";
 
     public PropertyHalServiceIds() {
         mProps = new SparseArray<>();
-
+        mPropForUnits = new HashSet<>();
         // Add propertyId and read/write permissions
         // Cabin Properties
         mProps.put(VehicleProperty.DOOR_POS, new Pair<>(
@@ -385,24 +388,31 @@
         mProps.put(VehicleProperty.CABIN_LIGHTS_SWITCH, new Pair<>(
                 Car.PERMISSION_CONTROL_INTERIOR_LIGHTS,
                 Car.PERMISSION_CONTROL_INTERIOR_LIGHTS));
+        // Display_Units
         mProps.put(VehicleProperty.DISTANCE_DISPLAY_UNITS, new Pair<>(
                 Car.PERMISSION_READ_DISPLAY_UNITS,
                 Car.PERMISSION_CONTROL_DISPLAY_UNITS));
+        mPropForUnits.add(VehicleProperty.DISTANCE_DISPLAY_UNITS);
         mProps.put(VehicleProperty.FUEL_VOLUME_DISPLAY_UNITS, new Pair<>(
                 Car.PERMISSION_READ_DISPLAY_UNITS,
                 Car.PERMISSION_CONTROL_DISPLAY_UNITS));
+        mPropForUnits.add(VehicleProperty.FUEL_VOLUME_DISPLAY_UNITS);
         mProps.put(VehicleProperty.TIRE_PRESSURE_DISPLAY_UNITS, new Pair<>(
                 Car.PERMISSION_READ_DISPLAY_UNITS,
                 Car.PERMISSION_CONTROL_DISPLAY_UNITS));
+        mPropForUnits.add(VehicleProperty.TIRE_PRESSURE_DISPLAY_UNITS);
         mProps.put(VehicleProperty.EV_BATTERY_DISPLAY_UNITS, new Pair<>(
                 Car.PERMISSION_READ_DISPLAY_UNITS,
                 Car.PERMISSION_CONTROL_DISPLAY_UNITS));
+        mPropForUnits.add(VehicleProperty.EV_BATTERY_DISPLAY_UNITS);
         mProps.put(VehicleProperty.FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME, new Pair<>(
                 Car.PERMISSION_READ_DISPLAY_UNITS,
                 Car.PERMISSION_CONTROL_DISPLAY_UNITS));
+        mPropForUnits.add(VehicleProperty.FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME);
         mProps.put(VehicleProperty.VEHICLE_SPEED_DISPLAY_UNITS, new Pair<>(
                 Car.PERMISSION_READ_DISPLAY_UNITS,
                 Car.PERMISSION_CONTROL_DISPLAY_UNITS));
+        mPropForUnits.add(VehicleProperty.VEHICLE_SPEED_DISPLAY_UNITS);
     }
 
     /**
@@ -469,4 +479,11 @@
             return insertVendorProperty(propId);
         }
     }
+
+    /**
+     * Check if the property is one of display units properties.
+     */
+    public boolean isPropertyToChangeUnits(int propertyId) {
+        return mPropForUnits.contains(propertyId);
+    }
 }
diff --git a/service/src/com/android/car/hal/VehicleHal.java b/service/src/com/android/car/hal/VehicleHal.java
index 374ae7b..d85a357 100644
--- a/service/src/com/android/car/hal/VehicleHal.java
+++ b/service/src/com/android/car/hal/VehicleHal.java
@@ -23,6 +23,7 @@
 import static java.lang.Integer.toHexString;
 
 import android.annotation.CheckResult;
+import android.content.Context;
 import android.hardware.automotive.vehicle.V2_0.IVehicle;
 import android.hardware.automotive.vehicle.V2_0.IVehicleCallback;
 import android.hardware.automotive.vehicle.V2_0.SubscribeFlags;
@@ -89,14 +90,14 @@
     // Used by injectVHALEvent for testing purposes.  Delimiter for an array of data
     private static final String DATA_DELIMITER = ",";
 
-    public VehicleHal(IVehicle vehicle) {
+    public VehicleHal(Context context, IVehicle vehicle) {
         mHandlerThread = new HandlerThread("VEHICLE-HAL");
         mHandlerThread.start();
         // passing this should be safe as long as it is just kept and not used in constructor
         mPowerHal = new PowerHalService(this);
         mPropertyHal = new PropertyHalService(this);
         mInputHal = new InputHalService(this);
-        mVmsHal = new VmsHalService(this);
+        mVmsHal = new VmsHalService(context, this);
         mDiagnosticHal = new DiagnosticHalService(this);
         mAllServices.addAll(Arrays.asList(mPowerHal,
                 mInputHal,
diff --git a/service/src/com/android/car/hal/VmsHalService.java b/service/src/com/android/car/hal/VmsHalService.java
index 3f39f48..bba5d5f 100644
--- a/service/src/com/android/car/hal/VmsHalService.java
+++ b/service/src/com/android/car/hal/VmsHalService.java
@@ -31,9 +31,11 @@
 import android.car.vms.VmsLayersOffering;
 import android.car.vms.VmsOperationRecorder;
 import android.car.vms.VmsSubscriptionState;
+import android.content.Context;
 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
 import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
+import android.hardware.automotive.vehicle.V2_0.VehiclePropertyGroup;
 import android.hardware.automotive.vehicle.V2_0.VmsBaseMessageIntegerValuesIndex;
 import android.hardware.automotive.vehicle.V2_0.VmsMessageType;
 import android.hardware.automotive.vehicle.V2_0.VmsMessageWithLayerAndPublisherIdIntegerValuesIndex;
@@ -53,7 +55,11 @@
 import androidx.annotation.VisibleForTesting;
 
 import com.android.car.CarLog;
+import com.android.car.vms.VmsClientManager;
 
+import java.io.FileDescriptor;
+import java.io.FileOutputStream;
+import java.io.IOException;
 import java.io.PrintWriter;
 import java.util.ArrayList;
 import java.util.Arrays;
@@ -62,7 +68,6 @@
 import java.util.HashSet;
 import java.util.List;
 import java.util.Set;
-import java.util.function.Consumer;
 import java.util.function.Supplier;
 
 /**
@@ -72,7 +77,7 @@
  * @see android.hardware.automotive.vehicle.V2_0
  */
 public class VmsHalService extends HalServiceBase {
-    private static final boolean DBG = true;
+    private static final boolean DBG = false;
     private static final String TAG = "VmsHalService";
     private static final int HAL_PROPERTY_ID = VehicleProperty.VEHICLE_MAP_SERVICE;
     private static final int NUM_INTEGERS_IN_VMS_LAYER = 3;
@@ -81,15 +86,13 @@
     private final VehicleHal mVehicleHal;
     private final int mCoreId;
     private final MessageQueue mMessageQueue;
+    private final int mClientMetricsProperty;
     private volatile boolean mIsSupported = false;
 
+    private VmsClientManager mClientManager;
     private IVmsPublisherService mPublisherService;
-    private Consumer<IBinder> mPublisherOnHalConnected;
-    private Runnable mPublisherOnHalDisconnected;
     private IBinder mPublisherToken;
-
     private IVmsSubscriberService mSubscriberService;
-    private Consumer<IVmsSubscriberClient> mSuscriberOnHalDisconnected;
 
     private int mSubscriptionStateSequence = -1;
     private int mAvailableLayersSequence = -1;
@@ -195,15 +198,33 @@
     /**
      * Constructor used by {@link VehicleHal}
      */
-    VmsHalService(VehicleHal vehicleHal) {
-        this(vehicleHal, SystemClock::uptimeMillis);
+    VmsHalService(Context context, VehicleHal vehicleHal) {
+        this(context, vehicleHal, SystemClock::uptimeMillis);
     }
 
     @VisibleForTesting
-    VmsHalService(VehicleHal vehicleHal, Supplier<Long> getCoreId) {
+    VmsHalService(Context context, VehicleHal vehicleHal, Supplier<Long> getCoreId) {
         mVehicleHal = vehicleHal;
         mCoreId = (int) (getCoreId.get() % Integer.MAX_VALUE);
         mMessageQueue = new MessageQueue();
+        mClientMetricsProperty = getClientMetricsProperty(context);
+    }
+
+    private static int getClientMetricsProperty(Context context) {
+        int propId = context.getResources().getInteger(
+                com.android.car.R.integer.vmsHalClientMetricsProperty);
+        if (propId == 0) {
+            Log.i(TAG, "Metrics collection disabled");
+            return 0;
+        }
+        if ((propId & VehiclePropertyGroup.MASK) != VehiclePropertyGroup.VENDOR) {
+            Log.w(TAG, String.format("Metrics collection disabled, non-vendor property: 0x%x",
+                    propId));
+            return 0;
+        }
+
+        Log.i(TAG, String.format("Metrics collection property: 0x%x", propId));
+        return propId;
     }
 
     /**
@@ -215,21 +236,17 @@
     }
 
     /**
-     * Gets the {@link IVmsPublisherClient} implementation for the HAL's publisher callback.
+     * Sets a reference to the {@link VmsClientManager} implementation for use by the HAL.
      */
-    public void setPublisherConnectionCallbacks(Consumer<IBinder> onHalConnected,
-            Runnable onHalDisconnected) {
-        mPublisherOnHalConnected = onHalConnected;
-        mPublisherOnHalDisconnected = onHalDisconnected;
+    public void setClientManager(VmsClientManager clientManager) {
+        mClientManager = clientManager;
     }
 
     /**
      * Sets a reference to the {@link IVmsSubscriberService} implementation for use by the HAL.
      */
-    public void setVmsSubscriberService(IVmsSubscriberService service,
-            Consumer<IVmsSubscriberClient> onHalDisconnected) {
+    public void setVmsSubscriberService(IVmsSubscriberService service) {
         mSubscriberService = service;
-        mSuscriberOnHalDisconnected = onHalDisconnected;
     }
 
     @Override
@@ -247,10 +264,10 @@
     @Override
     public void init() {
         if (mIsSupported) {
-            if (DBG) Log.d(TAG, "Initializing VmsHalService VHAL property");
+            Log.i(TAG, "Initializing VmsHalService VHAL property");
             mVehicleHal.subscribeProperty(this, HAL_PROPERTY_ID);
         } else {
-            if (DBG) Log.d(TAG, "VmsHalService VHAL property not supported");
+            Log.i(TAG, "VmsHalService VHAL property not supported");
             return; // Do not continue initialization
         }
 
@@ -296,6 +313,37 @@
     }
 
     /**
+     * Dumps HAL client metrics obtained by reading the VMS HAL property.
+     *
+     * @param fd Dumpsys file descriptor to write client metrics to.
+     */
+    public void dumpMetrics(FileDescriptor fd) {
+        if (mClientMetricsProperty == 0) {
+            Log.w(TAG, "Metrics collection is disabled");
+            return;
+        }
+
+        VehiclePropValue vehicleProp = null;
+        try {
+            vehicleProp = mVehicleHal.get(mClientMetricsProperty);
+        } catch (PropertyTimeoutException e) {
+            Log.e(TAG, "Timeout while reading metrics from client");
+        }
+        if (vehicleProp == null) {
+            if (DBG) Log.d(TAG, "Metrics unavailable");
+            return;
+        }
+
+        FileOutputStream fout = new FileOutputStream(fd);
+        try {
+            fout.write(toByteArray(vehicleProp.value.bytes));
+            fout.flush();
+        } catch (IOException e) {
+            Log.e(TAG, "Error writing metrics to output stream");
+        }
+    }
+
+    /**
      * Consumes/produces HAL messages.
      *
      * The format of these messages is defined in:
@@ -363,22 +411,13 @@
     private void handleStartSessionEvent(List<Integer> message) {
         int coreId = message.get(VmsStartSessionMessageIntegerValuesIndex.SERVICE_ID);
         int clientId = message.get(VmsStartSessionMessageIntegerValuesIndex.CLIENT_ID);
-        if (DBG) {
-            Log.d(TAG,
-                    "Handling a session start event with coreId: " + coreId + " client: "
-                            + clientId);
-        }
+        Log.i(TAG, "Starting new session with coreId: " + coreId + " client: " + clientId);
 
         if (coreId != mCoreId) {
-            if (mPublisherOnHalDisconnected != null) {
-                mPublisherOnHalDisconnected.run();
+            if (mClientManager != null) {
+                mClientManager.onHalDisconnected();
             } else {
-                Log.w(TAG, "Publisher disconnect callback not registered");
-            }
-            if (mSuscriberOnHalDisconnected != null) {
-                mSuscriberOnHalDisconnected.accept(mSubscriberClient);
-            } else {
-                Log.w(TAG, "Subscriber disconnect callback not registered");
+                Log.w(TAG, "Client manager not registered");
             }
 
             // Drop all queued messages and client state
@@ -392,20 +431,13 @@
         }
 
         // Notify client manager of connection
-        if (mPublisherOnHalConnected != null) {
-            mPublisherOnHalConnected.accept(mPublisherClient);
+        if (mClientManager != null) {
+            mClientManager.onHalConnected(mPublisherClient, mSubscriberClient);
         } else {
-            Log.w(TAG, "Publisher connect callback not registered");
+            Log.w(TAG, "Client manager not registered");
         }
 
-        // Notify subscriber service of connection
         if (mSubscriberService != null) {
-            try {
-                mSubscriberService.addVmsSubscriberToNotifications(mSubscriberClient);
-            } catch (RemoteException e) {
-                Log.e(TAG, "While adding subscriber callback", e);
-            }
-
             // Publish layer availability to HAL clients (this triggers HAL client initialization)
             try {
                 mSubscriberClient.onLayersAvailabilityChanged(
diff --git a/service/src/com/android/car/pm/ActivityBlockingActivity.java b/service/src/com/android/car/pm/ActivityBlockingActivity.java
index 9dcb70a..9756523 100644
--- a/service/src/com/android/car/pm/ActivityBlockingActivity.java
+++ b/service/src/com/android/car/pm/ActivityBlockingActivity.java
@@ -79,14 +79,19 @@
         // restrictions are lifted.
         // This Activity should be launched only after car service is initialized. Currently this
         // Activity is only launched from CPMS. So this is safe to do.
-        mCar = Car.createCar(this);
-        mUxRManager = (CarUxRestrictionsManager) mCar.getCarManager(
-                Car.CAR_UX_RESTRICTION_SERVICE);
-        // This activity would have been launched only in a restricted state.
-        // But ensuring when the service connection is established, that we are still
-        // in a restricted state.
-        handleUxRChange(mUxRManager.getCurrentCarUxRestrictions());
-        mUxRManager.registerListener(ActivityBlockingActivity.this::handleUxRChange);
+        mCar = Car.createCar(this, /* handler= */ null, Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER,
+                (car, ready) -> {
+                    if (!ready) {
+                        return;
+                    }
+                    mUxRManager = (CarUxRestrictionsManager) car.getCarManager(
+                            Car.CAR_UX_RESTRICTION_SERVICE);
+                    // This activity would have been launched only in a restricted state.
+                    // But ensuring when the service connection is established, that we are still
+                    // in a restricted state.
+                    handleUxRChange(mUxRManager.getCurrentCarUxRestrictions());
+                    mUxRManager.registerListener(ActivityBlockingActivity.this::handleUxRChange);
+                });
     }
 
     @Override
diff --git a/service/src/com/android/car/pm/CarAppMetadataReader.java b/service/src/com/android/car/pm/CarAppMetadataReader.java
index 648fded..3363d12 100644
--- a/service/src/com/android/car/pm/CarAppMetadataReader.java
+++ b/service/src/com/android/car/pm/CarAppMetadataReader.java
@@ -56,11 +56,13 @@
         final PackageManager pm = context.getPackageManager();
 
         // Check if any of the activities in the package are DO by checking all the
-        // <activity> elements.
+        // <activity> elements. MATCH_DISABLED_COMPONENTS is included so that we are immediately
+        // prepared to respond to any components that toggle from disabled to enabled.
         PackageInfo pkgInfo =
                 pm.getPackageInfoAsUser(
                         packageName, PackageManager.GET_ACTIVITIES
                                 | PackageManager.GET_META_DATA
+                                | PackageManager.MATCH_DISABLED_COMPONENTS
                                 | PackageManager.MATCH_DIRECT_BOOT_AWARE
                                 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE,
                         userId);
diff --git a/service/src/com/android/car/pm/CarPackageManagerService.java b/service/src/com/android/car/pm/CarPackageManagerService.java
index d00c7f1..01d5500 100644
--- a/service/src/com/android/car/pm/CarPackageManagerService.java
+++ b/service/src/com/android/car/pm/CarPackageManagerService.java
@@ -435,8 +435,6 @@
             mUxRestrictionsListeners.put(displayId, listener);
             mCarUxRestrictionsService.registerUxRestrictionsChangeListener(listener, displayId);
         }
-        mSystemActivityMonitoringService.registerActivityLaunchListener(
-                mActivityLaunchListener);
         mVendorServiceController.init();
     }
 
@@ -446,6 +444,10 @@
         synchronized (this) {
             mHasParsedPackages = true;
         }
+        // Once the activity launch listener is registered we attempt to block any non-whitelisted
+        // activities that are launched. For this reason, we need to wait until after the whitelist
+        // has been created.
+        mSystemActivityMonitoringService.registerActivityLaunchListener(mActivityLaunchListener);
         blockTopActivitiesIfNecessary();
     }
 
@@ -1032,6 +1034,15 @@
         if (topTask.topActivity == null) {
             return;
         }
+
+        // We are not handling the UI blocking until we know what is allowed and what is not.
+        if (!mHasParsedPackages) {
+            if (Log.isLoggable(CarLog.TAG_PACKAGE, Log.INFO)) {
+                Log.i(CarLog.TAG_PACKAGE, "Packages not parsed, so ignoring block for " + topTask);
+            }
+            return;
+        }
+
         boolean allowed = isActivityDistractionOptimized(
                 topTask.topActivity.getPackageName(),
                 topTask.topActivity.getClassName());
diff --git a/service/src/com/android/car/systeminterface/DisplayInterface.java b/service/src/com/android/car/systeminterface/DisplayInterface.java
index 4d8f180..d20a177 100644
--- a/service/src/com/android/car/systeminterface/DisplayInterface.java
+++ b/service/src/com/android/car/systeminterface/DisplayInterface.java
@@ -28,6 +28,7 @@
 import android.database.ContentObserver;
 import android.hardware.display.DisplayManager;
 import android.hardware.display.DisplayManager.DisplayListener;
+import android.hardware.input.InputManager;
 import android.os.Handler;
 import android.os.Looper;
 import android.os.PowerManager;
@@ -41,6 +42,7 @@
 import android.view.Display;
 import android.view.DisplayAddress;
 import android.view.IWindowManager;
+import android.view.InputDevice;
 
 import com.android.car.CarLog;
 import com.android.car.CarPowerManagementService;
@@ -76,6 +78,7 @@
         private final ContentResolver mContentResolver;
         private final Context mContext;
         private final DisplayManager mDisplayManager;
+        private final InputManager mInputManager;
         private final int mMaximumBacklight;
         private final int mMinimumBacklight;
         private final PowerManager mPowerManager;
@@ -117,6 +120,7 @@
             mContext = context;
             mContentResolver = mContext.getContentResolver();
             mDisplayManager = (DisplayManager) context.getSystemService(Context.DISPLAY_SERVICE);
+            mInputManager = (InputManager) mContext.getSystemService(Context.INPUT_SERVICE);
             mPowerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
             mMaximumBacklight = mPowerManager.getMaximumScreenBrightnessSetting();
             mMinimumBacklight = mPowerManager.getMinimumScreenBrightnessSetting();
@@ -209,6 +213,19 @@
                 Log.i(CarLog.TAG_POWER, "off display");
                 mPowerManager.goToSleep(SystemClock.uptimeMillis());
             }
+            // Turn touchscreen input devices on or off, the same as the display
+            for (int deviceId : mInputManager.getInputDeviceIds()) {
+                InputDevice inputDevice = mInputManager.getInputDevice(deviceId);
+                if (inputDevice != null
+                        && (inputDevice.getSources() & InputDevice.SOURCE_TOUCHSCREEN)
+                        == InputDevice.SOURCE_TOUCHSCREEN) {
+                    if (on) {
+                        mInputManager.enableInputDevice(deviceId);
+                    } else {
+                        mInputManager.disableInputDevice(deviceId);
+                    }
+                }
+            }
         }
 
         @Override
diff --git a/service/src/com/android/car/user/CarUserNoticeService.java b/service/src/com/android/car/user/CarUserNoticeService.java
new file mode 100644
index 0000000..22640e2
--- /dev/null
+++ b/service/src/com/android/car/user/CarUserNoticeService.java
@@ -0,0 +1,397 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.car.user;
+
+import static android.car.hardware.power.CarPowerManager.CarPowerStateListener;
+
+import static com.android.car.CarLog.TAG_USER;
+
+import android.annotation.Nullable;
+import android.annotation.UserIdInt;
+import android.app.ActivityManager;
+import android.app.AppOpsManager;
+import android.car.CarNotConnectedException;
+import android.car.hardware.power.CarPowerManager;
+import android.car.settings.CarSettings;
+import android.car.user.IUserNotice;
+import android.car.user.IUserNoticeUI;
+import android.content.BroadcastReceiver;
+import android.content.ComponentName;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.content.ServiceConnection;
+import android.content.pm.PackageManager;
+import android.content.res.Resources;
+import android.os.Handler;
+import android.os.IBinder;
+import android.os.Looper;
+import android.os.PowerManager;
+import android.os.RemoteException;
+import android.os.UserHandle;
+import android.provider.Settings;
+import android.util.Log;
+import android.view.IWindowManager;
+import android.view.WindowManagerGlobal;
+
+import com.android.car.CarLocalServices;
+import com.android.car.CarServiceBase;
+import com.android.car.R;
+import com.android.internal.annotations.GuardedBy;
+
+import java.io.PrintWriter;
+
+/**
+ * Service to show initial notice UI to user. It only launches it when setting is enabled and
+ * it is up to notice UI (=Service) to dismiss itself upon user's request.
+ *
+ * <p>Conditions to show notice UI are:
+ * <ol>
+ *   <li>Cold boot
+ *   <li><User switching
+ *   <li>Car power state change to ON (happens in wakeup from suspend to RAM)
+ * </ol>
+ */
+public final class CarUserNoticeService implements CarServiceBase {
+
+    // Keyguard unlocking can be only polled as we cannot dismiss keyboard.
+    // Polling will stop when keyguard is unlocked.
+    private static final long KEYGUARD_POLLING_INTERVAL_MS = 100;
+
+    private final Context mContext;
+
+    // null means feature disabled.
+    @Nullable
+    private final Intent mServiceIntent;
+
+    private final Handler mMainHandler = new Handler(Looper.getMainLooper());
+
+    private final Object mLock = new Object();
+
+    // This one records if there is a service bound. This will be cleared as soon as service is
+    // unbound (=UI dismissed)
+    @GuardedBy("mLock")
+    private boolean mServiceBound = false;
+
+    // This one represents if UI is shown for the current session. This should be kept until
+    // next event to show UI comes up.
+    @GuardedBy("mLock")
+    private boolean mUiShown = false;
+
+    @GuardedBy("mLock")
+    @UserIdInt
+    private int mUserId = UserHandle.USER_NULL;
+
+    @GuardedBy("mLock")
+    private CarPowerManager mCarPowerManager;
+
+    @GuardedBy("mLock")
+    private IUserNoticeUI mUiService;
+
+    private final CarUserService.UserCallback mUserCallback = new CarUserService.UserCallback() {
+        @Override
+        public void onUserLockChanged(@UserIdInt int userId, boolean unlocked) {
+            // Nothing to do
+        }
+
+        @Override
+        public void onSwitchUser(@UserIdInt int userId) {
+            mMainHandler.post(() -> {
+                stopUi(/* clearUiShown= */ true);
+                synchronized (mLock) {
+                    // This should be the only place to change user
+                    mUserId = userId;
+                }
+                startNoticeUiIfNecessary();
+            });
+        }
+    };
+
+    private final CarPowerStateListener mPowerStateListener = new CarPowerStateListener() {
+        @Override
+        public void onStateChanged(int state) {
+            if (state == CarPowerManager.CarPowerStateListener.SHUTDOWN_PREPARE) {
+                mMainHandler.post(() -> stopUi(/* clearUiShown= */ true));
+            } else if (state == CarPowerManager.CarPowerStateListener.ON) {
+                // Only ON can be relied on as car can restart while in garage mode.
+                mMainHandler.post(() -> startNoticeUiIfNecessary());
+            }
+        }
+    };
+
+    private final BroadcastReceiver mDisplayBroadcastReceiver = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            // Runs in main thread, so do not use Handler.
+            if (Intent.ACTION_SCREEN_OFF.equals(intent.getAction())) {
+                if (isDisplayOn()) {
+                    Log.i(TAG_USER, "SCREEN_OFF while display is already on");
+                    return;
+                }
+                Log.i(TAG_USER, "Display off, stopping UI");
+                stopUi(/* clearUiShown= */ true);
+            } else if (Intent.ACTION_SCREEN_ON.equals(intent.getAction())) {
+                if (!isDisplayOn()) {
+                    Log.i(TAG_USER, "SCREEN_ON while display is already off");
+                    return;
+                }
+                Log.i(TAG_USER, "Display on, starting UI");
+                startNoticeUiIfNecessary();
+            }
+        }
+    };
+
+    private final IUserNotice.Stub mIUserNotice = new IUserNotice.Stub() {
+        @Override
+        public void onDialogDismissed() {
+            mMainHandler.post(() -> stopUi(/* clearUiShown= */ false));
+        }
+    };
+
+    private final ServiceConnection mUiServiceConnection = new ServiceConnection() {
+        public void onServiceConnected(ComponentName name, IBinder service) {
+            synchronized (mLock) {
+                if (!mServiceBound) {
+                    // already unbound but passed due to timing. This should be just ignored.
+                    return;
+                }
+            }
+            IUserNoticeUI binder = IUserNoticeUI.Stub.asInterface(service);
+            try {
+                binder.setCallbackBinder(mIUserNotice);
+            } catch (RemoteException e) {
+                Log.w(TAG_USER, "UserNoticeUI Service died", e);
+                // Wait for reconnect
+                binder = null;
+            }
+            synchronized (mLock) {
+                mUiService = binder;
+            }
+        }
+
+        public void onServiceDisconnected(ComponentName name) {
+            // UI crashed. Stop it so that it does not come again.
+            stopUi(/* clearUiShown= */ true);
+        }
+    };
+
+    // added for debugging purpose
+    @GuardedBy("mLock")
+    private int mKeyguardPollingCounter;
+
+    private final Runnable mKeyguardPollingRunnable = () -> {
+        synchronized (mLock) {
+            mKeyguardPollingCounter++;
+        }
+        startNoticeUiIfNecessary();
+    };
+
+    public CarUserNoticeService(Context context) {
+        Resources res = context.getResources();
+        String componentName = res.getString(R.string.config_userNoticeUiService);
+        if (componentName.isEmpty()) {
+            // feature disabled
+            mContext = null;
+            mServiceIntent = null;
+            return;
+        }
+        mContext = context;
+        mServiceIntent = new Intent();
+        mServiceIntent.setComponent(ComponentName.unflattenFromString(componentName));
+    }
+
+    private boolean checkKeyguardLockedWithPolling() {
+        mMainHandler.removeCallbacks(mKeyguardPollingRunnable);
+        IWindowManager wm = WindowManagerGlobal.getWindowManagerService();
+        boolean locked = true;
+        if (wm != null) {
+            try {
+                locked = wm.isKeyguardLocked();
+            } catch (RemoteException e) {
+                Log.w(TAG_USER, "system server crashed", e);
+            }
+        }
+        if (locked) {
+            mMainHandler.postDelayed(mKeyguardPollingRunnable, KEYGUARD_POLLING_INTERVAL_MS);
+        }
+        return locked;
+    }
+
+    private boolean isNoticeScreenEnabledInSetting(@UserIdInt int userId) {
+        return Settings.Secure.getIntForUser(mContext.getContentResolver(),
+                CarSettings.Secure.KEY_ENABLE_INITIAL_NOTICE_SCREEN_TO_USER,
+                1 /*enable by default*/, userId) == 1;
+    }
+
+    private boolean isDisplayOn() {
+        PowerManager pm = mContext.getSystemService(PowerManager.class);
+        if (pm == null) {
+            return false;
+        }
+        return pm.isInteractive();
+    }
+
+    private boolean grantSystemAlertWindowPermission(@UserIdInt int userId) {
+        AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
+        if (appOpsManager == null) {
+            Log.w(TAG_USER, "AppOpsManager not ready yet");
+            return false;
+        }
+        String packageName = mServiceIntent.getComponent().getPackageName();
+        int packageUid;
+        try {
+            packageUid = mContext.getPackageManager().getPackageUidAsUser(packageName, userId);
+        } catch (PackageManager.NameNotFoundException e) {
+            Log.wtf(TAG_USER, "Target package for config_userNoticeUiService not found:"
+                    + packageName + " userId:" + userId);
+            return false;
+        }
+        appOpsManager.setMode(AppOpsManager.OP_SYSTEM_ALERT_WINDOW, packageUid, packageName,
+                AppOpsManager.MODE_ALLOWED);
+        Log.i(TAG_USER, "Granted SYSTEM_ALERT_WINDOW permission to package:" + packageName
+                + " package uid:" + packageUid);
+        return true;
+    }
+
+    private void startNoticeUiIfNecessary() {
+        int userId;
+        synchronized (mLock) {
+            if (mUiShown || mServiceBound) {
+                return;
+            }
+            userId = mUserId;
+        }
+        if (userId == UserHandle.USER_NULL) {
+            return;
+        }
+        // headless user 0 is ignored.
+        if (userId == UserHandle.USER_SYSTEM) {
+            return;
+        }
+        if (!isNoticeScreenEnabledInSetting(userId)) {
+            return;
+        }
+        if (userId != ActivityManager.getCurrentUser()) {
+            // user has switched. will be handled by user switch callback
+            return;
+        }
+        // Dialog can be not shown if display is off.
+        // DISPLAY_ON broadcast will handle this later.
+        if (!isDisplayOn()) {
+            return;
+        }
+        // Do not show it until keyguard is dismissed.
+        if (checkKeyguardLockedWithPolling()) {
+            return;
+        }
+        if (!grantSystemAlertWindowPermission(userId)) {
+            return;
+        }
+        boolean bound = mContext.bindServiceAsUser(mServiceIntent, mUiServiceConnection,
+                Context.BIND_AUTO_CREATE, UserHandle.of(userId));
+        if (bound) {
+            Log.i(TAG_USER, "Bound UserNoticeUI Service Service:" + mServiceIntent);
+            synchronized (mLock) {
+                mServiceBound = true;
+                mUiShown = true;
+            }
+        } else {
+            Log.w(TAG_USER, "Cannot bind to UserNoticeUI Service Service" + mServiceIntent);
+        }
+    }
+
+    private void stopUi(boolean clearUiShown) {
+        mMainHandler.removeCallbacks(mKeyguardPollingRunnable);
+        boolean serviceBound;
+        synchronized (mLock) {
+            mUiService = null;
+            serviceBound = mServiceBound;
+            mServiceBound = false;
+            if (clearUiShown) {
+                mUiShown = false;
+            }
+        }
+        if (serviceBound) {
+            Log.i(TAG_USER, "Unbound UserNoticeUI Service");
+            mContext.unbindService(mUiServiceConnection);
+        }
+    }
+
+    @Override
+    public void init() {
+        if (mServiceIntent == null) {
+            // feature disabled
+            return;
+        }
+
+        CarPowerManager carPowerManager;
+        synchronized (mLock) {
+            mCarPowerManager = CarLocalServices.createCarPowerManager(mContext);
+            carPowerManager = mCarPowerManager;
+        }
+        try {
+            carPowerManager.setListener(mPowerStateListener);
+        } catch (CarNotConnectedException e) {
+            // should not happen
+            throw new RuntimeException("CarNotConnectedException from CarPowerManager", e);
+        }
+        CarUserService userService = CarLocalServices.getService(CarUserService.class);
+        userService.addUserCallback(mUserCallback);
+        IntentFilter intentFilter = new IntentFilter();
+        intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
+        intentFilter.addAction(Intent.ACTION_SCREEN_ON);
+        mContext.registerReceiver(mDisplayBroadcastReceiver, intentFilter);
+    }
+
+    @Override
+    public void release() {
+        if (mServiceIntent == null) {
+            // feature disabled
+            return;
+        }
+        mContext.unregisterReceiver(mDisplayBroadcastReceiver);
+        CarUserService userService = CarLocalServices.getService(CarUserService.class);
+        userService.removeUserCallback(mUserCallback);
+        CarPowerManager carPowerManager;
+        synchronized (mLock) {
+            carPowerManager = mCarPowerManager;
+            mUserId = UserHandle.USER_NULL;
+        }
+        carPowerManager.clearListener();
+        stopUi(/* clearUiShown= */ true);
+    }
+
+    @Override
+    public void dump(PrintWriter writer) {
+        synchronized (mLock) {
+            if (mServiceIntent == null) {
+                writer.println("*CarUserNoticeService* disabled");
+                return;
+            }
+            if (mUserId == UserHandle.USER_NULL) {
+                writer.println("*CarUserNoticeService* User not started yet.");
+                return;
+            }
+            writer.println("*CarUserNoticeService* mServiceIntent:" + mServiceIntent
+                    + ", mUserId:" + mUserId
+                    + ", mUiShown:" + mUiShown
+                    + ", mServiceBound:" + mServiceBound
+                    + ", mKeyguardPollingCounter:" + mKeyguardPollingCounter
+                    + " Setting enabled:" + isNoticeScreenEnabledInSetting(mUserId));
+        }
+    }
+}
diff --git a/service/src/com/android/car/vms/VmsBrokerService.java b/service/src/com/android/car/vms/VmsBrokerService.java
index 26626ff..ad0bfad 100644
--- a/service/src/com/android/car/vms/VmsBrokerService.java
+++ b/service/src/com/android/car/vms/VmsBrokerService.java
@@ -22,53 +22,37 @@
 import android.car.vms.VmsLayersOffering;
 import android.car.vms.VmsOperationRecorder;
 import android.car.vms.VmsSubscriptionState;
-import android.content.pm.PackageManager;
-import android.os.Binder;
 import android.os.IBinder;
-import android.os.Process;
 import android.util.Log;
 
 import com.android.car.VmsLayersAvailability;
 import com.android.car.VmsPublishersInfo;
 import com.android.car.VmsRouting;
 import com.android.internal.annotations.GuardedBy;
-import com.android.internal.annotations.VisibleForTesting;
 
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.Map;
 import java.util.Set;
 import java.util.concurrent.CopyOnWriteArrayList;
-import java.util.function.IntSupplier;
 
 /**
  * Broker service facilitating subscription handling and message passing between
  * VmsPublisherService, VmsSubscriberService, and VmsHalService.
  */
 public class VmsBrokerService {
-    private static final boolean DBG = true;
+    private static final boolean DBG = false;
     private static final String TAG = "VmsBrokerService";
 
-    @VisibleForTesting
-    static final String HAL_CLIENT = "HalClient";
-
-    @VisibleForTesting
-    static final String UNKNOWN_PACKAGE = "UnknownPackage";
-
     private CopyOnWriteArrayList<PublisherListener> mPublisherListeners =
             new CopyOnWriteArrayList<>();
     private CopyOnWriteArrayList<SubscriberListener> mSubscriberListeners =
             new CopyOnWriteArrayList<>();
-    private PackageManager mPackageManager;
-    private IntSupplier mGetCallingPid;
-    private IntSupplier mGetCallingUid;
 
     private final Object mLock = new Object();
     @GuardedBy("mLock")
     private final VmsRouting mRouting = new VmsRouting();
     @GuardedBy("mLock")
-    private final Map<IBinder, String> mBinderPackage = new HashMap<>();
-    @GuardedBy("mLock")
     private final Map<IBinder, Map<Integer, VmsLayersOffering>> mOfferings = new HashMap<>();
     @GuardedBy("mLock")
     private final VmsLayersAvailability mAvailableLayers = new VmsLayersAvailability();
@@ -92,15 +76,6 @@
      */
     public interface SubscriberListener {
         /**
-         * Callback triggered when data is published for a given layer.
-         *
-         * @param layer       Layer data is being published for
-         * @param publisherId Publisher of data
-         * @param payload     Layer data
-         */
-        void onMessageReceived(VmsLayer layer, int publisherId, byte[] payload);
-
-        /**
          * Callback triggered when the layers available for subscription changes.
          *
          * @param availableLayers Current layer availability
@@ -109,22 +84,6 @@
     }
 
     /**
-     * Constructs new broker service.
-     */
-    public VmsBrokerService(PackageManager packageManager) {
-        this(packageManager, Binder::getCallingPid, Binder::getCallingUid);
-    }
-
-    @VisibleForTesting
-    VmsBrokerService(PackageManager packageManager, IntSupplier getCallingPid,
-            IntSupplier getCallingUid) {
-        if (DBG) Log.d(TAG, "Started VmsBrokerService!");
-        mPackageManager = packageManager;
-        mGetCallingPid = getCallingPid;
-        mGetCallingUid = getCallingUid;
-    }
-
-    /**
      * Adds a listener for publisher callbacks.
      *
      * @param listener Publisher callback listener
@@ -168,8 +127,6 @@
     public void addSubscription(IVmsSubscriberClient subscriber) {
         synchronized (mLock) {
             mRouting.addSubscription(subscriber);
-            // Add mapping from binder to package name of subscriber.
-            mBinderPackage.computeIfAbsent(subscriber.asBinder(), k -> getCallingPackage());
         }
     }
 
@@ -199,9 +156,6 @@
 
             // Add the listeners subscription to the layer
             mRouting.addSubscription(subscriber, layer);
-
-            // Add mapping from binder to package name of subscriber.
-            mBinderPackage.computeIfAbsent(subscriber.asBinder(), k -> getCallingPackage());
         }
         if (firstSubscriptionForLayer) {
             notifyOfSubscriptionChange();
@@ -249,9 +203,6 @@
 
             // Add the listeners subscription to the layer
             mRouting.addSubscription(subscriber, layer, publisherId);
-
-            // Add mapping from binder to package name of subscriber.
-            mBinderPackage.computeIfAbsent(subscriber.asBinder(), k -> getCallingPackage());
         }
         if (firstSubscriptionForLayer) {
             notifyOfSubscriptionChange();
@@ -270,8 +221,10 @@
         boolean layerHasSubscribers;
         synchronized (mLock) {
             if (!mRouting.hasLayerFromPublisherSubscriptions(layer, publisherId)) {
-                Log.i(TAG, "Trying to remove a layer with no subscription: "
+                if (DBG) {
+                    Log.d(TAG, "Trying to remove a layer with no subscription: "
                         + layer + ", publisher ID:" + publisherId);
+                }
                 return;
             }
 
@@ -296,9 +249,6 @@
         boolean subscriptionStateChanged;
         synchronized (mLock) {
             subscriptionStateChanged = mRouting.removeDeadSubscriber(subscriber);
-
-            // Remove mapping from binder to package name of subscriber.
-            mBinderPackage.remove(subscriber.asBinder());
         }
         if (subscriptionStateChanged) {
             notifyOfSubscriptionChange();
@@ -394,15 +344,6 @@
         }
     }
 
-    /**
-     * Gets the package name for a given IVmsSubscriberClient
-     */
-    public String getPackageName(IVmsSubscriberClient subscriber) {
-        synchronized (mLock) {
-            return mBinderPackage.get(subscriber.asBinder());
-        }
-    }
-
     private void updateLayerAvailability() {
         Set<VmsLayersOffering> allPublisherOfferings = new HashSet<>();
         synchronized (mLock) {
@@ -415,9 +356,8 @@
     }
 
     private void notifyOfSubscriptionChange() {
-        if (DBG) Log.d(TAG, "Notifying publishers on subscriptions");
-
         VmsSubscriptionState subscriptionState = getSubscriptionState();
+        Log.i(TAG, "Notifying publishers of subscriptions: " + subscriptionState);
         // Notify the App publishers
         for (PublisherListener listener : mPublisherListeners) {
             listener.onSubscriptionChange(subscriptionState);
@@ -425,29 +365,11 @@
     }
 
     private void notifyOfAvailabilityChange() {
-        if (DBG) Log.d(TAG, "Notifying subscribers on layers availability");
-
         VmsAvailableLayers availableLayers = getAvailableLayers();
+        Log.i(TAG, "Notifying subscribers of layers availability: " + availableLayers);
         // Notify the App subscribers
         for (SubscriberListener listener : mSubscriberListeners) {
             listener.onLayersAvailabilityChange(availableLayers);
         }
     }
-
-    // If we're in a binder call, returns back the package name of the caller of the binder call.
-    private String getCallingPackage() {
-        int callingPid = mGetCallingPid.getAsInt();
-        // Since the HAL lives in the same process, if the callingPid is equal to this process's
-        // PID, we know it's the HAL client.
-        if (callingPid == Process.myPid()) {
-            return HAL_CLIENT;
-        }
-        int callingUid = mGetCallingUid.getAsInt();
-        String packageName = mPackageManager.getNameForUid(callingUid);
-        if (packageName == null) {
-            return UNKNOWN_PACKAGE;
-        } else {
-            return packageName;
-        }
-    }
 }
diff --git a/service/src/com/android/car/vms/VmsClientManager.java b/service/src/com/android/car/vms/VmsClientManager.java
index 1649319..66a0fe4 100644
--- a/service/src/com/android/car/vms/VmsClientManager.java
+++ b/service/src/com/android/car/vms/VmsClientManager.java
@@ -18,6 +18,8 @@
 
 import android.car.Car;
 import android.car.userlib.CarUserManagerHelper;
+import android.car.vms.IVmsPublisherClient;
+import android.car.vms.IVmsSubscriberClient;
 import android.content.BroadcastReceiver;
 import android.content.ComponentName;
 import android.content.Context;
@@ -26,9 +28,11 @@
 import android.content.ServiceConnection;
 import android.content.pm.PackageManager;
 import android.content.pm.ServiceInfo;
+import android.os.Binder;
 import android.os.Handler;
 import android.os.IBinder;
 import android.os.Looper;
+import android.os.RemoteException;
 import android.os.UserHandle;
 import android.os.UserManager;
 import android.util.ArrayMap;
@@ -36,15 +40,21 @@
 
 import com.android.car.CarServiceBase;
 import com.android.car.R;
+import com.android.car.VmsPublisherService;
 import com.android.car.hal.VmsHalService;
 import com.android.car.user.CarUserService;
 import com.android.internal.annotations.GuardedBy;
 import com.android.internal.annotations.VisibleForTesting;
 
 import java.io.PrintWriter;
-import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashMap;
 import java.util.Map;
+import java.util.NoSuchElementException;
 import java.util.concurrent.atomic.AtomicLong;
+import java.util.function.IntSupplier;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
 
 /**
  * Manages service connections lifecycle for VMS publisher clients.
@@ -53,57 +63,48 @@
  * according to the Android user lifecycle.
  */
 public class VmsClientManager implements CarServiceBase {
-    private static final boolean DBG = true;
+    private static final boolean DBG = false;
     private static final String TAG = "VmsClientManager";
-    private static final String HAL_CLIENT_NAME = "VmsHalClient";
-
-    /**
-     * Interface for receiving updates about client connections.
-     */
-    public interface ConnectionListener {
-        /**
-         * Called when a client connection is established or re-established.
-         *
-         * @param clientName    String that uniquely identifies the service and user.
-         * @param clientService The IBinder of the client's communication channel.
-         */
-        void onClientConnected(String clientName, IBinder clientService);
-
-        /**
-         * Called when a client connection is terminated.
-         *
-         * @param clientName String that uniquely identifies the service and user.
-         */
-        void onClientDisconnected(String clientName);
-    }
+    private static final String HAL_CLIENT_NAME = "HalClient";
+    private static final String UNKNOWN_PACKAGE = "UnknownPackage";
 
     private final Context mContext;
+    private final PackageManager mPackageManager;
     private final Handler mHandler;
     private final UserManager mUserManager;
     private final CarUserService mUserService;
     private final CarUserManagerHelper mUserManagerHelper;
     private final int mMillisBeforeRebind;
+    private final IntSupplier mGetCallingUid;
 
-    @GuardedBy("mListeners")
-    private final ArrayList<ConnectionListener> mListeners = new ArrayList<>();
-    @GuardedBy("mSystemClients")
-    private final Map<String, ClientConnection> mSystemClients = new ArrayMap<>();
-    @GuardedBy("mSystemClients")
-    private IBinder mHalClient;
-    @GuardedBy("mSystemClients")
+    private final Object mLock = new Object();
+
+    @GuardedBy("mLock")
+    private final VmsBrokerService mBrokerService;
+    @GuardedBy("mLock")
+    private VmsPublisherService mPublisherService;
+
+    @GuardedBy("mLock")
+    private final Map<String, PublisherConnection> mSystemClients = new ArrayMap<>();
+    @GuardedBy("mLock")
+    private IVmsPublisherClient mHalClient;
+    @GuardedBy("mLock")
     private boolean mSystemUserUnlocked;
 
-    @GuardedBy("mCurrentUserClients")
-    private final Map<String, ClientConnection> mCurrentUserClients = new ArrayMap<>();
-    @GuardedBy("mCurrentUserClients")
+    @GuardedBy("mLock")
+    private final Map<String, PublisherConnection> mCurrentUserClients = new ArrayMap<>();
+    @GuardedBy("mLock")
     private int mCurrentUser;
 
+    @GuardedBy("mLock")
+    private final Map<IBinder, SubscriberConnection> mSubscribers = new HashMap<>();
+
     @GuardedBy("mRebindCounts")
     private final Map<String, AtomicLong> mRebindCounts = new ArrayMap<>();
 
     @VisibleForTesting
     final Runnable mSystemUserUnlockedListener = () -> {
-        synchronized (mSystemClients) {
+        synchronized (mLock) {
             mSystemUserUnlocked = true;
         }
         bindToSystemClients();
@@ -114,10 +115,13 @@
         @Override
         public void onReceive(Context context, Intent intent) {
             if (DBG) Log.d(TAG, "Received " + intent);
-            synchronized (mCurrentUserClients) {
+            synchronized (mLock) {
                 int currentUserId = mUserManagerHelper.getCurrentForegroundUserId();
                 if (mCurrentUser != currentUserId) {
                     terminate(mCurrentUserClients);
+                    terminate(mSubscribers.values().stream()
+                            .filter(subscriber -> subscriber.mUserId != currentUserId)
+                            .filter(subscriber -> subscriber.mUserId != UserHandle.USER_SYSTEM));
                 }
                 mCurrentUser = currentUserId;
 
@@ -130,23 +134,48 @@
     };
 
     /**
-     * Constructor for client managers.
+     * Constructor for client manager.
      *
      * @param context           Context to use for registering receivers and binding services.
+     * @param brokerService     Service managing the VMS publisher/subscriber state.
      * @param userService       User service for registering system unlock listener.
      * @param userManagerHelper User manager for querying current user state.
      * @param halService        Service providing the HAL client interface
      */
-    public VmsClientManager(Context context, CarUserService userService,
-            CarUserManagerHelper userManagerHelper, VmsHalService halService) {
+    public VmsClientManager(Context context, VmsBrokerService brokerService,
+            CarUserService userService, CarUserManagerHelper userManagerHelper,
+            VmsHalService halService) {
+        this(context, brokerService, userService, userManagerHelper, halService,
+                new Handler(Looper.getMainLooper()), Binder::getCallingUid);
+    }
+
+    @VisibleForTesting
+    VmsClientManager(Context context, VmsBrokerService brokerService,
+            CarUserService userService, CarUserManagerHelper userManagerHelper,
+            VmsHalService halService, Handler handler, IntSupplier getCallingUid) {
         mContext = context;
-        mHandler = new Handler(Looper.getMainLooper());
+        mPackageManager = context.getPackageManager();
+        mHandler = handler;
         mUserManager = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
         mUserService = userService;
         mUserManagerHelper = userManagerHelper;
+        mCurrentUser = mUserManagerHelper.getCurrentForegroundUserId();
+        mBrokerService = brokerService;
         mMillisBeforeRebind = mContext.getResources().getInteger(
                 com.android.car.R.integer.millisecondsBeforeRebindToVmsPublisher);
-        halService.setPublisherConnectionCallbacks(this::onHalConnected, this::onHalDisconnected);
+        mGetCallingUid = getCallingUid;
+        halService.setClientManager(this);
+    }
+
+    /**
+     * Registers the publisher service for connection callbacks.
+     *
+     * @param publisherService Publisher service to register.
+     */
+    public void setPublisherService(VmsPublisherService publisherService) {
+        synchronized (mLock) {
+            mPublisherService = publisherService;
+        }
     }
 
     @Override
@@ -163,12 +192,13 @@
     @Override
     public void release() {
         mContext.unregisterReceiver(mUserSwitchReceiver);
-        notifyListenersOnClientDisconnected(HAL_CLIENT_NAME);
-        synchronized (mSystemClients) {
+        synchronized (mLock) {
+            if (mHalClient != null) {
+                mPublisherService.onClientDisconnected(HAL_CLIENT_NAME);
+            }
             terminate(mSystemClients);
-        }
-        synchronized (mCurrentUserClients) {
             terminate(mCurrentUserClients);
+            terminate(mSubscribers.values().stream());
         }
     }
 
@@ -180,15 +210,19 @@
     @Override
     public void dumpMetrics(PrintWriter writer) {
         writer.println("*" + getClass().getSimpleName() + "*");
-        synchronized (mSystemClients) {
+        synchronized (mLock) {
+            writer.println("mCurrentUser:" + mCurrentUser);
             writer.println("mHalClient: " + (mHalClient != null ? "connected" : "disconnected"));
             writer.println("mSystemClients:");
             dumpConnections(writer, mSystemClients);
-        }
-        synchronized (mCurrentUserClients) {
+
             writer.println("mCurrentUserClients:");
             dumpConnections(writer, mCurrentUserClients);
-            writer.println("mCurrentUser:" + mCurrentUser);
+
+            writer.println("mSubscribers:");
+            for (SubscriberConnection subscriber : mSubscribers.values()) {
+                writer.printf("\t%s\n", subscriber);
+            }
         }
         synchronized (mRebindCounts) {
             writer.println("mRebindCounts:");
@@ -198,43 +232,124 @@
         }
     }
 
-    private void dumpConnections(PrintWriter writer, Map<String, ClientConnection> connectionMap) {
-        for (ClientConnection connection : connectionMap.values()) {
+
+    /**
+     * Adds a subscriber for connection tracking.
+     *
+     * @param subscriberClient Subscriber client to track.
+     */
+    public void addSubscriber(IVmsSubscriberClient subscriberClient) {
+        if (subscriberClient == null) {
+            Log.e(TAG, "Trying to add a null subscriber: " + getCallingPackage());
+            throw new IllegalArgumentException("subscriber cannot be null.");
+        }
+
+        synchronized (mLock) {
+            IBinder subscriberBinder = subscriberClient.asBinder();
+            if (mSubscribers.containsKey(subscriberBinder)) {
+                // Already registered
+                return;
+            }
+
+            int subscriberUserId = UserHandle.getUserId(mGetCallingUid.getAsInt());
+            if (subscriberUserId != mCurrentUser && subscriberUserId != UserHandle.USER_SYSTEM) {
+                throw new SecurityException("Caller must be foreground user or system");
+            }
+
+            SubscriberConnection subscriber = new SubscriberConnection(
+                    subscriberClient, getCallingPackage(), subscriberUserId);
+            if (DBG) Log.d(TAG, "Registering subscriber: " + subscriber);
+            try {
+                subscriberBinder.linkToDeath(subscriber, 0);
+            } catch (RemoteException e) {
+                throw new IllegalStateException("Subscriber already dead: " + subscriber, e);
+            }
+            mSubscribers.put(subscriberBinder, subscriber);
+        }
+    }
+
+    /**
+     * Removes a subscriber for connection tracking and expires its subscriptions.
+     *
+     * @param subscriberClient Subscriber client to remove.
+     */
+    public void removeSubscriber(IVmsSubscriberClient subscriberClient) {
+        synchronized (mLock) {
+            SubscriberConnection subscriber = mSubscribers.get(subscriberClient.asBinder());
+            if (subscriber != null) {
+                subscriber.terminate();
+            }
+        }
+    }
+
+    /**
+     * Returns all active subscriber clients.
+     */
+    public Collection<IVmsSubscriberClient> getAllSubscribers() {
+        synchronized (mLock) {
+            return mSubscribers.values().stream()
+                    .map(subscriber -> subscriber.mClient)
+                    .collect(Collectors.toList());
+        }
+    }
+
+    /**
+     * Gets the package name for a given subscriber client.
+     */
+    public String getPackageName(IVmsSubscriberClient subscriberClient) {
+        synchronized (mLock) {
+            SubscriberConnection subscriber = mSubscribers.get(subscriberClient.asBinder());
+            return subscriber != null ? subscriber.mPackageName : UNKNOWN_PACKAGE;
+        }
+    }
+
+    /**
+     * Registers the HAL client connections.
+     *
+     * @param publisherClient
+     * @param subscriberClient
+     */
+    public void onHalConnected(IVmsPublisherClient publisherClient,
+            IVmsSubscriberClient subscriberClient) {
+        synchronized (mLock) {
+            mHalClient = publisherClient;
+            mPublisherService.onClientConnected(HAL_CLIENT_NAME, mHalClient);
+            mSubscribers.put(subscriberClient.asBinder(),
+                    new SubscriberConnection(subscriberClient, HAL_CLIENT_NAME,
+                            UserHandle.USER_SYSTEM));
+        }
+    }
+
+    /**
+     *
+     */
+    public void onHalDisconnected() {
+        synchronized (mLock) {
+            if (mHalClient != null) {
+                mPublisherService.onClientDisconnected(HAL_CLIENT_NAME);
+            }
+            mHalClient = null;
+            terminate(mSubscribers.values().stream()
+                    .filter(subscriber -> HAL_CLIENT_NAME.equals(subscriber.mPackageName)));
+        }
+        synchronized (mRebindCounts) {
+            mRebindCounts.computeIfAbsent(HAL_CLIENT_NAME, k -> new AtomicLong()).incrementAndGet();
+        }
+    }
+
+    private void dumpConnections(PrintWriter writer,
+            Map<String, PublisherConnection> connectionMap) {
+        for (PublisherConnection connection : connectionMap.values()) {
             writer.printf("\t%s: %s\n",
                     connection.mName.getPackageName(),
                     connection.mIsBound ? "connected" : "disconnected");
         }
     }
 
-    /**
-     * Registers a new client connection state listener.
-     *
-     * @param listener Listener to register.
-     */
-    public void registerConnectionListener(ConnectionListener listener) {
-        synchronized (mListeners) {
-            if (!mListeners.contains(listener)) {
-                mListeners.add(listener);
-            }
-        }
-        notifyListenerOfConnectedClients(listener);
-    }
-
-    /**
-     * Unregisters a client connection state listener.
-     *
-     * @param listener Listener to remove.
-     */
-    public void unregisterConnectionListener(ConnectionListener listener) {
-        synchronized (mListeners) {
-            mListeners.remove(listener);
-        }
-    }
-
     private void bindToSystemClients() {
         String[] clientNames = mContext.getResources().getStringArray(
                 R.array.vmsPublisherSystemClients);
-        synchronized (mSystemClients) {
+        synchronized (mLock) {
             if (!mSystemUserUnlocked) {
                 return;
             }
@@ -246,7 +361,7 @@
     }
 
     private void bindToUserClients() {
-        synchronized (mCurrentUserClients) {
+        synchronized (mLock) {
             // To avoid the risk of double-binding, clients running as the system user must only
             // ever be bound in bindToSystemClients().
             // In a headless multi-user system, the system user will never be in the foreground.
@@ -265,7 +380,7 @@
         }
     }
 
-    private void bind(Map<String, ClientConnection> connectionMap, String clientName,
+    private void bind(Map<String, PublisherConnection> connectionMap, String clientName,
             UserHandle userHandle) {
         if (connectionMap.containsKey(clientName)) {
             Log.i(TAG, "Already bound: " + clientName);
@@ -288,80 +403,35 @@
         }
 
         if (!Car.PERMISSION_BIND_VMS_CLIENT.equals(serviceInfo.permission)) {
-            Log.w(TAG, "Client service: " + clientName
+            Log.e(TAG, "Client service: " + clientName
                     + " does not require " + Car.PERMISSION_BIND_VMS_CLIENT + " permission");
             return;
         }
 
-        ClientConnection connection = new ClientConnection(name, userHandle);
+        PublisherConnection connection = new PublisherConnection(name, userHandle);
         if (connection.bind()) {
             Log.i(TAG, "Client bound: " + connection);
             connectionMap.put(clientName, connection);
         } else {
-            Log.w(TAG, "Binding failed: " + connection);
+            Log.e(TAG, "Binding failed: " + connection);
         }
     }
 
-    private void terminate(Map<String, ClientConnection> connectionMap) {
-        connectionMap.values().forEach(ClientConnection::terminate);
+    private void terminate(Map<String, PublisherConnection> connectionMap) {
+        connectionMap.values().forEach(PublisherConnection::terminate);
         connectionMap.clear();
     }
 
-    private void notifyListenerOfConnectedClients(ConnectionListener listener) {
-        synchronized (mSystemClients) {
-            if (mHalClient != null) {
-                listener.onClientConnected(HAL_CLIENT_NAME, mHalClient);
-            }
-            mSystemClients.values().forEach(conn -> conn.notifyIfConnected(listener));
-        }
-        synchronized (mCurrentUserClients) {
-            mCurrentUserClients.values().forEach(conn -> conn.notifyIfConnected(listener));
-        }
-    }
-
-    private void notifyListenersOnClientConnected(String clientName, IBinder clientService) {
-        synchronized (mListeners) {
-            for (ConnectionListener listener : mListeners) {
-                listener.onClientConnected(clientName, clientService);
-            }
-        }
-    }
-
-    private void notifyListenersOnClientDisconnected(String clientName) {
-        synchronized (mListeners) {
-            for (ConnectionListener listener : mListeners) {
-                listener.onClientDisconnected(clientName);
-            }
-        }
-    }
-
-    private void onHalConnected(IBinder halClient) {
-        synchronized (mSystemClients) {
-            mHalClient = halClient;
-            notifyListenersOnClientConnected(HAL_CLIENT_NAME, mHalClient);
-        }
-    }
-
-    private void onHalDisconnected() {
-        synchronized (mSystemClients) {
-            mHalClient = null;
-            notifyListenersOnClientDisconnected(HAL_CLIENT_NAME);
-        }
-        synchronized (mRebindCounts) {
-            mRebindCounts.computeIfAbsent(HAL_CLIENT_NAME, k -> new AtomicLong()).incrementAndGet();
-        }
-    }
-
-    class ClientConnection implements ServiceConnection {
+    class PublisherConnection implements ServiceConnection {
         private final ComponentName mName;
         private final UserHandle mUser;
         private final String mFullName;
         private boolean mIsBound = false;
         private boolean mIsTerminated = false;
         private boolean mRebindScheduled = false;
-        private IBinder mClientService;
+        private IVmsPublisherClient mClientService;
 
-        ClientConnection(ComponentName name, UserHandle user) {
+        PublisherConnection(ComponentName name, UserHandle user) {
             mName = name;
             mUser = user;
             mFullName = mName.flattenToString() + " U=" + mUser.getIdentifier();
@@ -423,7 +493,7 @@
                 return;
             }
 
-            if (DBG) Log.d(TAG, "rebinding: " + mFullName);
+            Log.i(TAG, "Rebinding: " + mFullName);
             // Ensure that the client is not bound before attempting to rebind.
             // If the client is not currently bound, unbind() will have no effect.
             unbind();
@@ -443,22 +513,16 @@
 
         synchronized void notifyOnDisconnect() {
             if (mClientService != null) {
-                notifyListenersOnClientDisconnected(mFullName);
+                mPublisherService.onClientDisconnected(mFullName);
                 mClientService = null;
             }
         }
 
-        synchronized void notifyIfConnected(ConnectionListener listener) {
-            if (mClientService != null) {
-                listener.onClientConnected(mFullName, mClientService);
-            }
-        }
-
         @Override
         public void onServiceConnected(ComponentName name, IBinder service) {
             if (DBG) Log.d(TAG, "onServiceConnected: " + mFullName);
-            mClientService = service;
-            notifyListenersOnClientConnected(mFullName, mClientService);
+            mClientService = IVmsPublisherClient.Stub.asInterface(service);
+            mPublisherService.onClientConnected(mFullName, mClientService);
         }
 
         @Override
@@ -480,4 +544,57 @@
             return mFullName;
         }
     }
+
+    private void terminate(Stream<SubscriberConnection> subscribers) {
+        // Make a copy of the stream, so that terminate() doesn't cause a concurrent modification
+        subscribers.collect(Collectors.toList()).forEach(SubscriberConnection::terminate);
+    }
+
+    // If we're in a binder call, returns back the package name of the caller of the binder call.
+    private String getCallingPackage() {
+        String packageName = mPackageManager.getNameForUid(mGetCallingUid.getAsInt());
+        if (packageName == null) {
+            return UNKNOWN_PACKAGE;
+        } else {
+            return packageName;
+        }
+    }
+
+    private class SubscriberConnection implements IBinder.DeathRecipient {
+        private final IVmsSubscriberClient mClient;
+        private final String mPackageName;
+        private final int mUserId;
+
+        SubscriberConnection(IVmsSubscriberClient subscriberClient, String packageName,
+                int userId) {
+            mClient = subscriberClient;
+            mPackageName = packageName;
+            mUserId = userId;
+        }
+
+        @Override
+        public void binderDied() {
+            if (DBG) Log.d(TAG, "Subscriber died: " + this);
+            terminate();
+        }
+
+        @Override
+        public String toString() {
+            return mPackageName + " U=" + mUserId;
+        }
+
+        void terminate() {
+            if (DBG) Log.d(TAG, "Terminating subscriber: " + this);
+            synchronized (mLock) {
+                mBrokerService.removeDeadSubscriber(mClient);
+                IBinder subscriberBinder = mClient.asBinder();
+                try {
+                    subscriberBinder.unlinkToDeath(this, 0);
+                } catch (NoSuchElementException e) {
+                    if (DBG) Log.d(TAG, "While unlinking subscriber binder for " + this, e);
+                }
+                mSubscribers.remove(subscriberBinder);
+            }
+        }
+    }
 }
diff --git a/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportActivity.java b/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportActivity.java
index ebcb804..456192e 100644
--- a/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportActivity.java
+++ b/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportActivity.java
@@ -384,6 +384,10 @@
         mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
         mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
         mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
+        mRecorder.setOnInfoListener((MediaRecorder recorder, int what, int extra) ->
+                Log.i(TAG, "OnMediaRecorderInfo: what=" + what + ", extra=" + extra));
+        mRecorder.setOnErrorListener((MediaRecorder recorder, int what, int extra) ->
+                Log.i(TAG, "OnMediaRecorderError: what=" + what + ", extra=" + extra));
         mRecorder.setOutputFile(recordingFile);
 
         try {
@@ -407,7 +411,13 @@
     private void stopAudioRecording() {
         if (mRecorder != null) {
             Log.i(TAG, "Recording ended, stopping the MediaRecorder.");
-            mRecorder.stop();
+            try {
+                mRecorder.stop();
+            } catch (IllegalStateException e) {
+                // Sometimes MediaRecorder doesn't start and stopping it throws an error.
+                // We just log these cases, no need to crash the app.
+                Log.w(TAG, "Couldn't stop media recorder", e);
+            }
             mRecorder.release();
             mRecorder = null;
         }
diff --git a/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportService.java b/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportService.java
index 70ba65e..f6fc651 100644
--- a/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportService.java
+++ b/tests/BugReportApp/src/com/google/android/car/bugreport/BugReportService.java
@@ -431,14 +431,22 @@
                 if (file.isDirectory()) {
                     continue;
                 }
+                if (file.length() == 0) {
+                    // If there were issues with reading from dumpstate socket, the dumpstate zip
+                    // file still might be available in
+                    // /data/user_de/0/com.android.shell/files/bugreports/.
+                    Log.w(TAG, "File " + file.getName() + " is empty, skipping.");
+                    return;
+                }
                 String filename = file.getName();
 
-                // only for the zipped output file, we add invidiual entries to zip file
+                // only for the zipped output file, we add individual entries to zip file.
                 if (filename.equals(OUTPUT_ZIP_FILE) || filename.equals(EXTRA_OUTPUT_ZIP_FILE)) {
                     extractZippedFileToOutputStream(file, zipStream);
                 } else {
-                    FileInputStream reader = new FileInputStream(file);
-                    addFileToOutputStream(filename, reader, zipStream);
+                    try (FileInputStream reader = new FileInputStream(file)) {
+                        addFileToOutputStream(filename, reader, zipStream);
+                    }
                 }
             }
         } finally {
@@ -455,17 +463,21 @@
         Enumeration<? extends ZipEntry> entries = zipFile.entries();
         while (entries.hasMoreElements()) {
             ZipEntry entry = entries.nextElement();
-            InputStream stream = zipFile.getInputStream(entry);
-            addFileToOutputStream(entry.getName(), stream, zipStream);
+            try (InputStream stream = zipFile.getInputStream(entry)) {
+                addFileToOutputStream(entry.getName(), stream, zipStream);
+            }
         }
     }
 
-    private void addFileToOutputStream(String filename, InputStream reader,
-            ZipOutputStream zipStream) throws IOException {
+    private void addFileToOutputStream(
+            String filename, InputStream reader, ZipOutputStream zipStream) {
         ZipEntry entry = new ZipEntry(filename);
-        zipStream.putNextEntry(entry);
-        rawCopyStream(zipStream, reader);
-        zipStream.closeEntry();
-        reader.close();
+        try {
+            zipStream.putNextEntry(entry);
+            rawCopyStream(zipStream, reader);
+            zipStream.closeEntry();
+        } catch (IOException e) {
+            Log.w(TAG, "Failed to add file " + filename + " to the zip.", e);
+        }
     }
 }
diff --git a/tests/CarCtsDummyLauncher/src/com/android/car/dummylauncher/LauncherActivity.java b/tests/CarCtsDummyLauncher/src/com/android/car/dummylauncher/LauncherActivity.java
index 20fcfc0..71b3c2b 100644
--- a/tests/CarCtsDummyLauncher/src/com/android/car/dummylauncher/LauncherActivity.java
+++ b/tests/CarCtsDummyLauncher/src/com/android/car/dummylauncher/LauncherActivity.java
@@ -33,6 +33,7 @@
 
         View view = getLayoutInflater().inflate(R.layout.launcher_activity, null);
         setContentView(view);
+        reportFullyDrawn();
     }
 }
 
diff --git a/tests/CarDeveloperOptions/res/values-af-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-af-nokeys/strings.xml
new file mode 100644
index 0000000..c0cfed5
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-af-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Bestuur programme"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-af/arrays.xml b/tests/CarDeveloperOptions/res/values-af/arrays.xml
new file mode 100644
index 0000000..2966a1c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-af/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asië"</item>
+    <item msgid="6683489385344409742">"Australië"</item>
+    <item msgid="5194868215515664953">"Pasifies"</item>
+    <item msgid="7044520255415007865">"Alles"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekondes"</item>
+    <item msgid="772029947136115322">"30 sekondes"</item>
+    <item msgid="8743663928349474087">"1 minuut"</item>
+    <item msgid="1506508631223164814">"2 minute"</item>
+    <item msgid="8664703938127907662">"5 minute"</item>
+    <item msgid="5827960506924849753">"10 minute"</item>
+    <item msgid="6677424950124253938">"30 minute"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Klein"</item>
+    <item msgid="591935967183159581">"Verstek"</item>
+    <item msgid="1714184661981538355">"Groot"</item>
+    <item msgid="6195563047686707484">"Grootste"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skandeer tans …"</item>
+    <item msgid="8058143476674427024">"Koppel tans aan <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Staaf tans met <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Verkry tans jou IP-adres van <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Gekoppel aan <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Afgelas"</item>
+    <item msgid="4133290864821295785">"Ontkoppel tans van <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Ontkoppel"</item>
+    <item msgid="2847316776634969068">"Onsuksesvol"</item>
+    <item msgid="4390990424746035383">"Geblokkeer"</item>
+    <item msgid="3618248791367063949">"Vermy tydelik swak verbinding"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Druk knoppie"</item>
+    <item msgid="7401896200768713930">"PIN van eweknietoestel"</item>
+    <item msgid="4526848028011846710">"PIN van dié toestel"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Gekoppel"</item>
+    <item msgid="983792611851499732">"Uitgenooi"</item>
+    <item msgid="5438273405428201793">"Onsuksesvol"</item>
+    <item msgid="4646663015449312554">"Beskikbaar"</item>
+    <item msgid="3230556734162006146">"Buite reikwydte"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minute"</item>
+    <item msgid="2759776603549270587">"5 minute"</item>
+    <item msgid="167772676068860015">"1 uur"</item>
+    <item msgid="5985477119043628504">"Moenie uittel nie"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Afgelope 30 dae"</item>
+    <item msgid="3211287705232736964">"Stel gebruiksiklus …"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Gebruikstyd"</item>
+    <item msgid="2784401352592276015">"Laas gebruik"</item>
+    <item msgid="249854287216326349">"Programnaam"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Geen"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Geen"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Staties"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Geen"</item>
+    <item msgid="1464741437353223198">"Handleiding"</item>
+    <item msgid="5793600062487886090">"Instaan-outo-opstelling"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Geen"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP of CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interne toestelberging"</item>
+    <item msgid="3186681694079967527">"Verwyderbare SD-kaart"</item>
+    <item msgid="6902033473986647035">"Laat die stelsel besluit"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Ligging"</item>
+    <item msgid="6842381562497597649">"Persoonlik"</item>
+    <item msgid="3966700236695683444">"Boodskappe"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Toestel"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"growwe ligging"</item>
+    <item msgid="1830619568689922920">"fyn ligging"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibreer"</item>
+    <item msgid="8632513128515114092">"lees kontakte"</item>
+    <item msgid="3741042113569620272">"verander kontakte"</item>
+    <item msgid="4204420969709009931">"lees oproeprekord"</item>
+    <item msgid="2260380357119423209">"verander oproeprekord"</item>
+    <item msgid="6550710385014530934">"lees kalender"</item>
+    <item msgid="3575906174264853951">"verander kalender"</item>
+    <item msgid="4319843242568057174">"Wi-Fi-skandering"</item>
+    <item msgid="2981791890467303819">"kennisgewing"</item>
+    <item msgid="6617825156152476692">"sel-skandering"</item>
+    <item msgid="8865260890611559753">"bel foon"</item>
+    <item msgid="3254999273961542982">"lees SMS"</item>
+    <item msgid="7711446453028825171">"skryf SMS"</item>
+    <item msgid="6123238544099198034">"ontvang SMS"</item>
+    <item msgid="838342167431596036">"ontvang nood-SMS"</item>
+    <item msgid="8554432731560956686">"ontvang MMS"</item>
+    <item msgid="7464863464299515059">"ontvang WAP-stootpos"</item>
+    <item msgid="310463075729606765">"stuur SMS"</item>
+    <item msgid="7338021933527689514">"lees ICC-SMS"</item>
+    <item msgid="6130369335466613036">"skryf ICC-SMS"</item>
+    <item msgid="6536865581421670942">"verander instellings"</item>
+    <item msgid="4547203129183558973">"teken bo-op"</item>
+    <item msgid="9080347512916542840">"kry toegang tot kennisgewings"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"neem oudio op"</item>
+    <item msgid="9182794235292595296">"speel oudio"</item>
+    <item msgid="8760743229597702019">"lees knipbord"</item>
+    <item msgid="2266923698240538544">"verander knipbord"</item>
+    <item msgid="1801619438618539275">"mediaknoppies"</item>
+    <item msgid="31588119965784465">"klankfokus"</item>
+    <item msgid="7565226799008076833">"meestervolume"</item>
+    <item msgid="5420704980305018295">"stemvolume"</item>
+    <item msgid="5797363115508970204">"lui-volume"</item>
+    <item msgid="8233154098550715999">"mediavolume"</item>
+    <item msgid="5196715605078153950">"wekkervolume"</item>
+    <item msgid="394030698764284577">"kennisgewingvolume"</item>
+    <item msgid="8952898972491680178">"bluetoothvolume"</item>
+    <item msgid="8506227454543690851">"hou wakker"</item>
+    <item msgid="1108160036049727420">"monitor ligging"</item>
+    <item msgid="1496205959751719491">"monitor hoë kragligging"</item>
+    <item msgid="3776296279910987380">"kry gebruikstatistiek"</item>
+    <item msgid="8827100324471975602">"demp of ontdemp mikrofoon"</item>
+    <item msgid="6880736730520126864">"wys opspringkennisgewing"</item>
+    <item msgid="4933375960222609935">"projekmedia"</item>
+    <item msgid="8357907018938895462">"aktiveer VPN"</item>
+    <item msgid="8143812849911310973">"skryf muurpapier"</item>
+    <item msgid="6266277260961066535">"bystandstruktuur"</item>
+    <item msgid="7715498149883482300">"bystandskermkiekie"</item>
+    <item msgid="4046679376726313293">"lees foonstaat"</item>
+    <item msgid="6329507266039719587">"voeg stemboodskap by"</item>
+    <item msgid="7692440726415391408">"gebruik SIP"</item>
+    <item msgid="8572453398128326267">"verwerk uitgaande oproep"</item>
+    <item msgid="7775674394089376306">"vingerafdruk"</item>
+    <item msgid="3182815133441738779">"liggaamsensors"</item>
+    <item msgid="2793100005496829513">"lees seluitsendings"</item>
+    <item msgid="2633626056029384366">"maak ligging na"</item>
+    <item msgid="8356842191824684631">"lees berging"</item>
+    <item msgid="5671906070163291500">"skryf berging"</item>
+    <item msgid="2791955098549340418">"skakel skerm aan"</item>
+    <item msgid="5599435119609178367">"kry rekeninge"</item>
+    <item msgid="1165623660533024666">"laat loop op agtergrond"</item>
+    <item msgid="6423861043647911030">"toeganklikheidsvolume"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Ligging"</item>
+    <item msgid="6656077694190491067">"Ligging"</item>
+    <item msgid="8790228218278477369">"Ligging"</item>
+    <item msgid="7836406246005211990">"Vibreer"</item>
+    <item msgid="3951439024549922598">"Lees kontakte"</item>
+    <item msgid="8802152411647068">"Verander kontakte"</item>
+    <item msgid="229544934599698735">"Lees oproeprekord"</item>
+    <item msgid="7396102294405899613">"Verander oproeprekord"</item>
+    <item msgid="3597797992398484655">"Lees kalender"</item>
+    <item msgid="2705975774250907343">"Verander kalender"</item>
+    <item msgid="4668747371441932697">"Ligging"</item>
+    <item msgid="1487578921720243646">"Plaas kennisgewing"</item>
+    <item msgid="4636080349724146638">"Ligging"</item>
+    <item msgid="673510900286463926">"Bel foon"</item>
+    <item msgid="542083422784609790">"Lees SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Skryf SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Ontvang SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Ontvang SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Ontvang SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Ontvang SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Stuur SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Lees SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Skryf SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Verander instellings"</item>
+    <item msgid="8705854389991425629">"Teken bo-op"</item>
+    <item msgid="5861356020344153651">"Kry toegang tot kennisgewings"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Neem oudio op"</item>
+    <item msgid="4516840825756409490">"Speel oudio"</item>
+    <item msgid="6811712502798183957">"Lees knipbord"</item>
+    <item msgid="2780369012602289114">"Verander knipbord"</item>
+    <item msgid="2331359440170850868">"Mediaknoppies"</item>
+    <item msgid="6133599737122751231">"Oudiofokus"</item>
+    <item msgid="6844485713404805301">"Meestervolume"</item>
+    <item msgid="1600379420669104929">"Stemvolume"</item>
+    <item msgid="6296768210470214866">"Luivolume"</item>
+    <item msgid="510690696071629241">"Mediavolume"</item>
+    <item msgid="406861638631430109">"Wekkervolume"</item>
+    <item msgid="4715864795872233884">"Kennisgewingvolume"</item>
+    <item msgid="2311478519251301183">"Bluetoothvolume"</item>
+    <item msgid="5133991377896747027">"Hou wakker"</item>
+    <item msgid="2464189519136248621">"Ligging"</item>
+    <item msgid="2062677934050803037">"Ligging"</item>
+    <item msgid="1735171933192715957">"Kry gebruikstatistiek"</item>
+    <item msgid="1014093788778383554">"Demp of ontdemp mikrofoon"</item>
+    <item msgid="4199297950608622850">"Wys opspringkennisgewing"</item>
+    <item msgid="2527962435313398821">"Projekmedia"</item>
+    <item msgid="5117506254221861929">"Aktiveer VPN"</item>
+    <item msgid="8291198322681891160">"Skryf muurpapier"</item>
+    <item msgid="7106921284621230961">"Bystandstruktuur"</item>
+    <item msgid="4496533640894624799">"Bystandskermkiekie"</item>
+    <item msgid="2598847264853993611">"Lees foonstaat"</item>
+    <item msgid="9215610846802973353">"Voeg stemboodskap by"</item>
+    <item msgid="9186411956086478261">"Gebruik SIP"</item>
+    <item msgid="6884763100104539558">"Verwerk uitgaande oproep"</item>
+    <item msgid="125513972170580692">"Vingerafdruk"</item>
+    <item msgid="2556071024281275619">"Liggaamsensors"</item>
+    <item msgid="617168514928339387">"Lees seluitsendings"</item>
+    <item msgid="7134693570516523585">"Maak ligging na"</item>
+    <item msgid="7224489175375229399">"Lees berging"</item>
+    <item msgid="8472735063903258202">"Skryf berging"</item>
+    <item msgid="4069276819909595110">"Skakel skerm aan"</item>
+    <item msgid="1228338896751121025">"Kry rekeninge"</item>
+    <item msgid="3181581793459233672">"Laat loop op agtergrond"</item>
+    <item msgid="2340936043025374076">"Toeganklikheidsvolume"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kort"</item>
+    <item msgid="4816511817309094890">"Middelmatig"</item>
+    <item msgid="8305084671259331134">"Lank"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Verstek"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif gekondenseer"</item>
+    <item msgid="6529379119163117545">"Sans-serif-enkelspasie"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif-enkelspasie"</item>
+    <item msgid="4448481989108928248">"Gemaklik"</item>
+    <item msgid="4627069151979553527">"Kursief"</item>
+    <item msgid="6896773537705206194">"Klein hoofletters"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Verstek"</item>
+    <item msgid="6488643537808152001">"Geen"</item>
+    <item msgid="552332815156010137">"Raamwerk"</item>
+    <item msgid="7187891159463789272">"Val-skaduwee"</item>
+    <item msgid="8019330250538856521">"Opgehewe"</item>
+    <item msgid="8987385315647049787">"Ingeduik"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Gebruik programverstekke"</item>
+    <item msgid="8611890312638868524">"Wit op swart"</item>
+    <item msgid="5891360837786277638">"Swart op wit"</item>
+    <item msgid="2798457065945456853">"Geel op swart"</item>
+    <item msgid="5799049811524553967">"Geel op blou"</item>
+    <item msgid="3673930830658169860">"Gepasmaak"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN met voorafgedeelde sleutels"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN met sertifikate"</item>
+    <item msgid="312397853907741968">"IPSec VPN met voorafgedeelde sleutels en Xauth-stawing"</item>
+    <item msgid="3319427315593649917">"IPSec VPN met sertifikate en Xauth-stawing"</item>
+    <item msgid="8258927774145391041">"IPSec VPN met sertifikate en hibriedstawing"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Geen"</item>
+    <item msgid="1157046369795346308">"Handleiding"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Ontkoppel"</item>
+    <item msgid="8754480102834556765">"Inisialiseer tans..."</item>
+    <item msgid="3351334355574270250">"Verbind tans…"</item>
+    <item msgid="8303882153995748352">"Gekoppel"</item>
+    <item msgid="9135049670787351881">"Uittelling"</item>
+    <item msgid="2124868417182583926">"Onsuksesvol"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Vra"</item>
+    <item msgid="7718817231348607934">"Moet nooit toelaat dat"</item>
+    <item msgid="8184570120217958741">"Laat altyd toe"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Aanhoudend"</item>
+    <item msgid="167418068739176448">"Topaktiwiteit"</item>
+    <item msgid="4760813290195199773">"Belangrik (voorgrond)"</item>
+    <item msgid="2328684826817647595">"Belangrik (agtergrond)"</item>
+    <item msgid="7746406490652867365">"Rugsteun"</item>
+    <item msgid="5597404364389196754">"Swaargewig"</item>
+    <item msgid="1290888779300174556">"Diens (werk tans)"</item>
+    <item msgid="7241098542073939046">"Diens (herbegin tans)"</item>
+    <item msgid="6610439017684111046">"Ontvanger"</item>
+    <item msgid="7367606086319921117">"Tuis"</item>
+    <item msgid="3344660712396741826">"Laaste aktiwiteit"</item>
+    <item msgid="5006559348883303865">"Gekas (aktiwiteit)"</item>
+    <item msgid="8633480732468137525">"Gekas (aktiwiteitkliënt)"</item>
+    <item msgid="6248998242443333892">"Gekas (leeg)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Blougroen"</item>
+    <item msgid="3228505970082457852">"Blou"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Pers"</item>
+    <item msgid="5932337981182999919">"Pienk"</item>
+    <item msgid="5642914536624000094">"Rooi"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Meer as 30 dae oud"</item>
+    <item msgid="8699273238891265610">"Meer as 60 dae oud"</item>
+    <item msgid="8346279419423837266">"Meer as 90 dae oud"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Bespeur outomaties"</item>
+    <item msgid="773943026484148895">"Hanteer as beperk"</item>
+    <item msgid="1008268820118852416">"Hanteer as onbeperk"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Gebruik ewekansige MAC (verstek)"</item>
+    <item msgid="214234417308375326">"Gebruik toestel-MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nee"</item>
+    <item msgid="1930581185557754880">"Ja"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Donker"</item>
+    <item msgid="5079453644557603349">"Lig"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Af"</item>
+    <item msgid="4072198137051566919">"Ontfout"</item>
+    <item msgid="2473005316958868509">"Woordryk"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Net tuis"</item>
+    <item msgid="1161026694891024702">"Outomaties"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA verkies"</item>
+    <item msgid="7581481130337402578">"Net GSM"</item>
+    <item msgid="8579197487913425819">"Net WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA outomaties"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo outomaties"</item>
+    <item msgid="4219607161971472471">"CDMA sonder EvDo"</item>
+    <item msgid="7278975240951052041">"Net EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globaal"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Net TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globaal"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-am-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-am-nokeys/strings.xml
new file mode 100644
index 0000000..c2e5b89
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-am-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"መተግበሪያዎች አዸራጅ"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-am/arrays.xml b/tests/CarDeveloperOptions/res/values-am/arrays.xml
new file mode 100644
index 0000000..0e7bad5
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-am/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"አሜሪካ"</item>
+    <item msgid="4791956477275129121">"አውሮፓ"</item>
+    <item msgid="3812126832016254559">"አፍሪካ"</item>
+    <item msgid="2765816300353408280">"እስያ"</item>
+    <item msgid="6683489385344409742">"አውስትራሊያ"</item>
+    <item msgid="5194868215515664953">"ፓስፊክ"</item>
+    <item msgid="7044520255415007865">"ሁሉም"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 ሰከንዶች"</item>
+    <item msgid="772029947136115322">"30 ሰከንዶች"</item>
+    <item msgid="8743663928349474087">"1 ደቂቃ"</item>
+    <item msgid="1506508631223164814">"2 ደቂቃዎች"</item>
+    <item msgid="8664703938127907662">"5 ደቂቃዎች"</item>
+    <item msgid="5827960506924849753">"10 ደቂቃዎች"</item>
+    <item msgid="6677424950124253938">"30 ደቂቃዎች"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"አነስተኛ"</item>
+    <item msgid="591935967183159581">"ነባሪ"</item>
+    <item msgid="1714184661981538355">"ትልቅ"</item>
+    <item msgid="6195563047686707484">"በጣም ትልቁ"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"በመቃኘት ላይ....."</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> በማያያዝ ላይ..."</item>
+    <item msgid="7547609081339573756">"በ<xliff:g id="NETWORK_NAME">%1$s</xliff:g> በማረጋገጥ ላይ..."</item>
+    <item msgid="5145158315060185414">"ከ <xliff:g id="NETWORK_NAME">%1$s</xliff:g> የ IP አድራሻ በማግኘት ላይ..."</item>
+    <item msgid="3283243151651124831">"ለ<xliff:g id="NETWORK_NAME">%1$s</xliff:g> የተገናኘ"</item>
+    <item msgid="6600156231416890902">"ታግዷል"</item>
+    <item msgid="4133290864821295785">"ከ<xliff:g id="NETWORK_NAME">%1$s</xliff:g> በማለያየት ላይ...."</item>
+    <item msgid="3980154971187953257">"ተለያይቷል"</item>
+    <item msgid="2847316776634969068">"አልተሳካም"</item>
+    <item msgid="4390990424746035383">"ታግዷል"</item>
+    <item msgid="3618248791367063949">"ለጊዜያዊነት ከደካማ ግኑኝነት በመታቀብ ላይ"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"መግፊያ አዝራር"</item>
+    <item msgid="7401896200768713930">"ፒን ከአቻ መሣሪያ"</item>
+    <item msgid="4526848028011846710">"ከዚህ መሣሪያ ፒን"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"ተገናኝቷል"</item>
+    <item msgid="983792611851499732">"የተጋበዘ"</item>
+    <item msgid="5438273405428201793">"አልተሳካም"</item>
+    <item msgid="4646663015449312554">"የሚገኙ"</item>
+    <item msgid="3230556734162006146">"ከክልል ውጪ"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 ደቂቃዎች"</item>
+    <item msgid="2759776603549270587">"5 ደቂቃዎች"</item>
+    <item msgid="167772676068860015">"1 ሰዓት"</item>
+    <item msgid="5985477119043628504">"በጭራሽ አታቋርጥ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"የመጨረሻዎቹ 30 ቀኖች"</item>
+    <item msgid="3211287705232736964">"የአጠቃቀም ዑደት አዘጋጅ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ጊዜ አጠቃቀም"</item>
+    <item msgid="2784401352592276015">"ለመጨረሻ ጊዜ ጥቅም ላይ የዋለበት ጊዜ"</item>
+    <item msgid="249854287216326349">"መተግበሪያ ስም"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ምንም"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ምንም"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"አይለወጤ"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ምንም"</item>
+    <item msgid="1464741437353223198">"መመሪያ"</item>
+    <item msgid="5793600062487886090">"የተኪ ራስ-ውቅር"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ምንም"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ወይም CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"የውስጥ መሣሪያ ማከማቻ"</item>
+    <item msgid="3186681694079967527">"ተወጋጅ SD ካርድ"</item>
+    <item msgid="6902033473986647035">"ስርዓቱ ይወስን"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"አካባቢ"</item>
+    <item msgid="6842381562497597649">"የግል"</item>
+    <item msgid="3966700236695683444">"መልዕክት መላኪያ"</item>
+    <item msgid="8563996233342430477">"ማህደረ መረጃ"</item>
+    <item msgid="5323851085993963783">"መሣሪያ"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ግምታዊ አካባቢ"</item>
+    <item msgid="1830619568689922920">"ትክክለኛ አካባቢ"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ንዘር"</item>
+    <item msgid="8632513128515114092">"እውቂያዎችን አንብብ"</item>
+    <item msgid="3741042113569620272">"ዕውቂያዎችዎን ይቀይሩ"</item>
+    <item msgid="4204420969709009931">"የጥሪ ምዝግብ ማስታወሻን ያንብቡ"</item>
+    <item msgid="2260380357119423209">"የጥሪ ምዝግብ ማስታወሻን ይቀይሩ"</item>
+    <item msgid="6550710385014530934">"የቀን መቁጠሪያ አንብብ"</item>
+    <item msgid="3575906174264853951">"የቀን መቁጠሪያን ይቀይሩ"</item>
+    <item msgid="4319843242568057174">"የWi-Fi ቅኝት"</item>
+    <item msgid="2981791890467303819">"ማሳወቂያ"</item>
+    <item msgid="6617825156152476692">"የህዋስ ቅኝት"</item>
+    <item msgid="8865260890611559753">"ወደ ስልክ ደውል"</item>
+    <item msgid="3254999273961542982">"ኤስ ኤም ኤስን ያንብቡ"</item>
+    <item msgid="7711446453028825171">"ኤስ ኤም ኤስ ይጻፉ"</item>
+    <item msgid="6123238544099198034">"ኤስ ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="838342167431596036">"አስቸኳይ ኤስ ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="8554432731560956686">"ኤም ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="7464863464299515059">"የደልብዩ ኤ ፒ ግፊት ይቀበሉ"</item>
+    <item msgid="310463075729606765">"ኤስ ኤም ኤስ ይላኩ"</item>
+    <item msgid="7338021933527689514">"የአይ ሲ ሲ ኤስ ኤም ኤስ ያንብቡ"</item>
+    <item msgid="6130369335466613036">"የአይ ሲ ሲ ኤስ ኤም ኤስ ይጻፉ"</item>
+    <item msgid="6536865581421670942">"ቅንብሮችን ይቀይሩ"</item>
+    <item msgid="4547203129183558973">"ከላይ ይሳሉ"</item>
+    <item msgid="9080347512916542840">"ማሳወቂያዎችን ድረስ"</item>
+    <item msgid="5332718516635907742">"ካሜራ"</item>
+    <item msgid="6098422447246167852">"ኦዲዮ ቅረጽ"</item>
+    <item msgid="9182794235292595296">"ድምጽ አጫውት"</item>
+    <item msgid="8760743229597702019">"ቅንጥብ መለያ አንብብ"</item>
+    <item msgid="2266923698240538544">"ቅንጥብ መለያ ቀይር"</item>
+    <item msgid="1801619438618539275">"የሚዲያ አዝራሮች"</item>
+    <item msgid="31588119965784465">"የድምጽ ትኩረት"</item>
+    <item msgid="7565226799008076833">"ዋናው ድምጽ መቆጣጠሪያ"</item>
+    <item msgid="5420704980305018295">"የድምጽ መጠን"</item>
+    <item msgid="5797363115508970204">"የጥሪ ድምጽ መጠን"</item>
+    <item msgid="8233154098550715999">"የማህደረ መረጃ መጠን"</item>
+    <item msgid="5196715605078153950">"የማንቂያ ድምፅ መጠን"</item>
+    <item msgid="394030698764284577">"የማሳወቂያ ድምጽ መጠን"</item>
+    <item msgid="8952898972491680178">"የብሉቱዝ ድምፅ መጠን"</item>
+    <item msgid="8506227454543690851">"እንደነቃ አቆይ"</item>
+    <item msgid="1108160036049727420">"አካባቢን ይቆጣጠሩ"</item>
+    <item msgid="1496205959751719491">"የከፍተኛ ኃይል አካባቢ ተከታተል"</item>
+    <item msgid="3776296279910987380">"የአጠቃቀም ስታቲስቲክስ ያግኙ"</item>
+    <item msgid="8827100324471975602">"ማይክሮፎን ድምፅ-ከል አድርግ/አንሳ"</item>
+    <item msgid="6880736730520126864">"ቶስት አሳይ"</item>
+    <item msgid="4933375960222609935">"ፕሮጀክት ሚዲያ"</item>
+    <item msgid="8357907018938895462">"VPN አግብር"</item>
+    <item msgid="8143812849911310973">"ልጣፍ ይጻፉ"</item>
+    <item msgid="6266277260961066535">"የረዳት መዋቅር"</item>
+    <item msgid="7715498149883482300">"የረዳት ቅጽበታዊ ገጽ እይታ"</item>
+    <item msgid="4046679376726313293">"የስልክ ግዛት ያንብቡ"</item>
+    <item msgid="6329507266039719587">"የድምፅ መልዕክት ያክሉ"</item>
+    <item msgid="7692440726415391408">"sip ይጠቀሙ"</item>
+    <item msgid="8572453398128326267">"ወጪ ጥሪን አስኪድ"</item>
+    <item msgid="7775674394089376306">"የጣት አሻራ"</item>
+    <item msgid="3182815133441738779">"የሰውነት ዳሳሾች"</item>
+    <item msgid="2793100005496829513">"የተንቀሳቃሽ ስልክ ስርጭቶችን ያንብቡ"</item>
+    <item msgid="2633626056029384366">"የቀልድ መገኛ አካባቢ"</item>
+    <item msgid="8356842191824684631">"ማከማቻ ያንብቡ"</item>
+    <item msgid="5671906070163291500">"ማከማቻ ይጻፉ"</item>
+    <item msgid="2791955098549340418">"ማያ ገጽ አብራ"</item>
+    <item msgid="5599435119609178367">"መለያዎችን ያግኙ"</item>
+    <item msgid="1165623660533024666">"ዳራ ውስጥ አሂድ"</item>
+    <item msgid="6423861043647911030">"የተደራሽነት መጠን"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"አካባቢ"</item>
+    <item msgid="6656077694190491067">"አካባቢ"</item>
+    <item msgid="8790228218278477369">"አካባቢ"</item>
+    <item msgid="7836406246005211990">"ንዘር"</item>
+    <item msgid="3951439024549922598">"እውቂያዎችን አንብብ"</item>
+    <item msgid="8802152411647068">"ዕውቂያዎችዎን ይቀይሩ"</item>
+    <item msgid="229544934599698735">"የጥሪ ምዝግብ ማስታወሻን ያንብቡ"</item>
+    <item msgid="7396102294405899613">"የጥሪ ምዝግብ ማስታወሻን ይቀይሩ"</item>
+    <item msgid="3597797992398484655">"የቀን መቁጠሪያ ያንብቡ"</item>
+    <item msgid="2705975774250907343">"የቀን መቁጠሪያን ይቀይሩ"</item>
+    <item msgid="4668747371441932697">"አካባቢ"</item>
+    <item msgid="1487578921720243646">"ማሳወቂያ ለጥፍ"</item>
+    <item msgid="4636080349724146638">"አካባቢ"</item>
+    <item msgid="673510900286463926">"ወደ ስልክ ደውል"</item>
+    <item msgid="542083422784609790">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ያንብቡ"</item>
+    <item msgid="1033780373029588436">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይጻፉ"</item>
+    <item msgid="5647111115517787488">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="8591105601108455893">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="7730995008517841903">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="2613033109026626086">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይቀበሉ"</item>
+    <item msgid="3037159047591081136">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይላኩ"</item>
+    <item msgid="4726682243833913568">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ያንብቡ"</item>
+    <item msgid="6555678522277865572">"ኤስ ኤም ኤስ/ኤም ኤም ኤስ ይጻፉ"</item>
+    <item msgid="6981734935578130884">"ቅንብሮችን ይቀይሩ"</item>
+    <item msgid="8705854389991425629">"ከላይ ይሳሉ"</item>
+    <item msgid="5861356020344153651">"ማሳወቂያዎችን ይድረሱ"</item>
+    <item msgid="78432174621628659">"ካሜራ"</item>
+    <item msgid="3986116419882154794">"ኦዲዮ ቅረጽ"</item>
+    <item msgid="4516840825756409490">"ድምጽ አጫውት"</item>
+    <item msgid="6811712502798183957">"ቅንጥብ ሰሌዳ አንብብ"</item>
+    <item msgid="2780369012602289114">"ቅንጥብ መለያ ቀይር"</item>
+    <item msgid="2331359440170850868">"የሚዲያ አዝራሮች"</item>
+    <item msgid="6133599737122751231">"የድምጽ ትኩረት"</item>
+    <item msgid="6844485713404805301">"ዋናው የድምጽ መቆጣጠሪያ"</item>
+    <item msgid="1600379420669104929">"የድምጽ መጠን"</item>
+    <item msgid="6296768210470214866">"የጥሪ ድምጽ መጠን"</item>
+    <item msgid="510690696071629241">"የማህደረመረጃ ክፍልፍል"</item>
+    <item msgid="406861638631430109">"የማንቂያ ድምፅ መጠን"</item>
+    <item msgid="4715864795872233884">"የማሳወቂያ ድምጽ መጠን"</item>
+    <item msgid="2311478519251301183">"የብሉቱዝ ድምፅ መጠን"</item>
+    <item msgid="5133991377896747027">"ነቃ ብሏል"</item>
+    <item msgid="2464189519136248621">"ስፍራ"</item>
+    <item msgid="2062677934050803037">"አካባቢ"</item>
+    <item msgid="1735171933192715957">"የአጠቃቀም ስታቲስቲክሶችን ያግኙ"</item>
+    <item msgid="1014093788778383554">"ማይክሮፎን ድምፅ-ከል አድርግ/አንሳ"</item>
+    <item msgid="4199297950608622850">"ቶስት አሳይ"</item>
+    <item msgid="2527962435313398821">"ፕሮጀክት ሚዲያ"</item>
+    <item msgid="5117506254221861929">"VPN አግብር"</item>
+    <item msgid="8291198322681891160">"ልጣፍ ይጻፉ"</item>
+    <item msgid="7106921284621230961">"የረዳት መዋቅር"</item>
+    <item msgid="4496533640894624799">"የረዳት ቅጽበታዊ ገጽ እይታ"</item>
+    <item msgid="2598847264853993611">"የስልክ ግዛት ያንብቡ"</item>
+    <item msgid="9215610846802973353">"የድምጽ መልዕክት ያክሉ"</item>
+    <item msgid="9186411956086478261">"sip ይጠቀሙ"</item>
+    <item msgid="6884763100104539558">"ወጪ ጥሪን አስኪድ"</item>
+    <item msgid="125513972170580692">"የጣት አሻራ"</item>
+    <item msgid="2556071024281275619">"የሰውነት ዳሳሾች"</item>
+    <item msgid="617168514928339387">"የተንቀሳቃሽ ስልክ ስርጭቶችን ያንብቡ"</item>
+    <item msgid="7134693570516523585">"የቀልድ መገኛ አካባቢ"</item>
+    <item msgid="7224489175375229399">"ማከማቻ ያንብቡ"</item>
+    <item msgid="8472735063903258202">"ማከማቻ ይጻፉ"</item>
+    <item msgid="4069276819909595110">"ማያ ገጽ አብራ"</item>
+    <item msgid="1228338896751121025">"መለያዎችን ያግኙ"</item>
+    <item msgid="3181581793459233672">"ዳራ ውስጥ አሂድ"</item>
+    <item msgid="2340936043025374076">"የተደራሽነት መጠን"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"አጭር"</item>
+    <item msgid="4816511817309094890">"መካከለኛ"</item>
+    <item msgid="8305084671259331134">"ረጅም"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ነባሪ"</item>
+    <item msgid="4147246073737933622">"ጭረት-አልባ"</item>
+    <item msgid="3117680749167407907">"ጭረት-አልባ ተጨምቆ"</item>
+    <item msgid="6529379119163117545">"ሳንስ ሰሪፍ ሞኖስፔስ"</item>
+    <item msgid="1487203730637617924">"ባለጭረት"</item>
+    <item msgid="4937790671987480464">"ሰሪፍ ሞኖስፔስ"</item>
+    <item msgid="4448481989108928248">"የተለመደ"</item>
+    <item msgid="4627069151979553527">"ቅጥልጥል"</item>
+    <item msgid="6896773537705206194">"ትንሽ አብይ ሆሄያት"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ነባሪ"</item>
+    <item msgid="6488643537808152001">"ምንም"</item>
+    <item msgid="552332815156010137">"ቢጋር"</item>
+    <item msgid="7187891159463789272">"ጥላጣል"</item>
+    <item msgid="8019330250538856521">"ከፍ የተደረገ"</item>
+    <item msgid="8987385315647049787">"የተኛ"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"የመተግበሪያ ነባሪዎችን ይጠቀሙ"</item>
+    <item msgid="8611890312638868524">"ነጭ በጥቁር ላይ"</item>
+    <item msgid="5891360837786277638">"ጥቁር በነጭ ላይ"</item>
+    <item msgid="2798457065945456853">"ቢጫ በጥቁር ላይ"</item>
+    <item msgid="5799049811524553967">"ቢጫ በሰማያዊ ላይ"</item>
+    <item msgid="3673930830658169860">"ብጁ"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN ከቅድመ-ተጋሪ ቁልፎች ጋር"</item>
+    <item msgid="6128519070545038358">"የL2TP/IPSec VPN ከምስክሮችጋር"</item>
+    <item msgid="312397853907741968">"የIPSec VPN በቅድመ ተጋሪ ቁልፎችእና በXauth ማረጋገጥ"</item>
+    <item msgid="3319427315593649917">"የIPSec VPN በምስክር እና በXauth ማረጋገጥ"</item>
+    <item msgid="8258927774145391041">"የIPSec VPN በዕውቅና ማረጋገጫ  እና በድቀላ ማረጋገጥ"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ምንም"</item>
+    <item msgid="1157046369795346308">"መመሪያ"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"ተለያይቷል"</item>
+    <item msgid="8754480102834556765">"እየጀመረ ነው…"</item>
+    <item msgid="3351334355574270250">"በማገናኘት ላይ…"</item>
+    <item msgid="8303882153995748352">"ተገናኝቷል"</item>
+    <item msgid="9135049670787351881">"ጊዜው አልቋል"</item>
+    <item msgid="2124868417182583926">"አልተሳካም"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ጠይቅ"</item>
+    <item msgid="7718817231348607934">"በጭራሽ አትፍቀድ"</item>
+    <item msgid="8184570120217958741">"ሁልጊዜ ፍቀድ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"የሚጸና"</item>
+    <item msgid="167418068739176448">"ከፍተኛ እንቅስቃሴ"</item>
+    <item msgid="4760813290195199773">"አስፈላጊ (ከፊት)"</item>
+    <item msgid="2328684826817647595">"አስፈላጊ (ከጀርባ)"</item>
+    <item msgid="7746406490652867365">"ምትኬ"</item>
+    <item msgid="5597404364389196754">"ከባድ ስራ"</item>
+    <item msgid="1290888779300174556">"አገልግሎት (እያሄዱ ያለ)"</item>
+    <item msgid="7241098542073939046">"አገልግሎት (ዳግም በማስጀመር ላይ)"</item>
+    <item msgid="6610439017684111046">"ተቀባይ"</item>
+    <item msgid="7367606086319921117">"መነሻ"</item>
+    <item msgid="3344660712396741826">"የመጨረሻ እንቅስቃሴ"</item>
+    <item msgid="5006559348883303865">"የተሸጎጠ (እንቅስቃሴ)"</item>
+    <item msgid="8633480732468137525">"የተሸጎጠ (የእንቅስቃሴ ደንበኛ)"</item>
+    <item msgid="6248998242443333892">"የተሸጎጠ (ባዶ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ጥቁር አረንጓዴ-ሰማያዊ"</item>
+    <item msgid="3228505970082457852">"ሰማያዊ"</item>
+    <item msgid="6590260735734795647">"ወይን ጠጅ"</item>
+    <item msgid="3521763377357218577">"ወይን ጠጅ"</item>
+    <item msgid="5932337981182999919">"ሮዝ"</item>
+    <item msgid="5642914536624000094">"ቀይ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"ከ30 ቀኖች በላይ የሆናቸው"</item>
+    <item msgid="8699273238891265610">"ከ60 ቀኖች በላይ የሆናቸው"</item>
+    <item msgid="8346279419423837266">"ከ90 ቀኖች በላይ የሆናቸው"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"በራስ-ሰር አግኝ"</item>
+    <item msgid="773943026484148895">"እንደ ተለካ አስተናግድ"</item>
+    <item msgid="1008268820118852416">"እንደ ያልተለካ አስተናግድ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"የዘፈቀደ ማክ ይጠቀሙ (ነባሪ)"</item>
+    <item msgid="214234417308375326">"የመሣሪያ MAC ይጠቀሙ"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"የለም"</item>
+    <item msgid="1930581185557754880">"አዎ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ጨለማ"</item>
+    <item msgid="5079453644557603349">"ቀላል"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ጠፍቷል"</item>
+    <item msgid="4072198137051566919">"አርም"</item>
+    <item msgid="2473005316958868509">"ዝርክርክ ቃላት"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"መነሻ ብቻ"</item>
+    <item msgid="1161026694891024702">"ራስ-ሰር"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA ይመረጣል"</item>
+    <item msgid="7581481130337402578">"GSM ብቻ"</item>
+    <item msgid="8579197487913425819">"WCDMA ብቻ"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ራስ-ሰር"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ራስ-ሰር"</item>
+    <item msgid="4219607161971472471">"CDMA ያለEvDo"</item>
+    <item msgid="7278975240951052041">"EvDo ብቻ"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ሁለንተናዊ"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA ብቻ"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ሁለንተናዊ"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ar-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ar-nokeys/strings.xml
new file mode 100644
index 0000000..dd6b531
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ar-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"إدارة التطبيقات"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ar/arrays.xml b/tests/CarDeveloperOptions/res/values-ar/arrays.xml
new file mode 100644
index 0000000..4f1a2d8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ar/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"أمريكا"</item>
+    <item msgid="4791956477275129121">"أوروبا"</item>
+    <item msgid="3812126832016254559">"إفريقيا"</item>
+    <item msgid="2765816300353408280">"آسيا"</item>
+    <item msgid="6683489385344409742">"أستراليا"</item>
+    <item msgid="5194868215515664953">"المحيط الهادئ"</item>
+    <item msgid="7044520255415007865">"الكل"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 ثانية"</item>
+    <item msgid="772029947136115322">"30 ثانية"</item>
+    <item msgid="8743663928349474087">"دقيقة واحدة"</item>
+    <item msgid="1506508631223164814">"دقيقتان"</item>
+    <item msgid="8664703938127907662">"٥ دقائق"</item>
+    <item msgid="5827960506924849753">"۱۰ دقائق"</item>
+    <item msgid="6677424950124253938">"۳۰ دقيقة"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"صغير"</item>
+    <item msgid="591935967183159581">"تلقائي"</item>
+    <item msgid="1714184661981538355">"كبير"</item>
+    <item msgid="6195563047686707484">"الأكبر"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"جارٍ البحث..."</item>
+    <item msgid="8058143476674427024">"جارٍ الاتصال بجهاز <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"جارٍ المصادقة مع <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"جارٍ الحصول على عنوان IP من <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"متصل بـ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"معلق"</item>
+    <item msgid="4133290864821295785">"جارٍ قطع الاتصال بـ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"غير متصل"</item>
+    <item msgid="2847316776634969068">"غير ناجح"</item>
+    <item msgid="4390990424746035383">"محظور"</item>
+    <item msgid="3618248791367063949">"يتم تجنب الاتصال الضعيف مؤقتًا"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"زر الدفع"</item>
+    <item msgid="7401896200768713930">"رقم تعريف شخصي من جهاز نظير"</item>
+    <item msgid="4526848028011846710">"رقم التعريف من هذا الجهاز"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"متّصلة"</item>
+    <item msgid="983792611851499732">"مدعو"</item>
+    <item msgid="5438273405428201793">"غير ناجح"</item>
+    <item msgid="4646663015449312554">"متوفرة"</item>
+    <item msgid="3230556734162006146">"خارج النطاق"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"دقيقتان"</item>
+    <item msgid="2759776603549270587">"5 دقائق"</item>
+    <item msgid="167772676068860015">"ساعة واحدة"</item>
+    <item msgid="5985477119043628504">"بلا مهلة"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"آخر ۳۰ يومًا"</item>
+    <item msgid="3211287705232736964">"تعيين دورة الاستخدام..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"وقت الاستخدام"</item>
+    <item msgid="2784401352592276015">"آخر مرة تم استخدامه"</item>
+    <item msgid="249854287216326349">"اسم التطبيق"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"بدون"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"بدون"</item>
+    <item msgid="7901133332272818442">"بروتوكول مصادقة كلمات المرور"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"ثابت"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"بدون"</item>
+    <item msgid="1464741437353223198">"الكتيب"</item>
+    <item msgid="5793600062487886090">"إعداد الوكيل تلقائيًا"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"بدون"</item>
+    <item msgid="1950796738039490374">"بروتوكول مصادقة كلمات المرور"</item>
+    <item msgid="8166687999538788787">"بروتوكول CHAP"</item>
+    <item msgid="1276004657191968988">"بروتوكول مصادقة كلمات المرور أو بروتوكول CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"مساحة تخزين الجهاز الداخلية"</item>
+    <item msgid="3186681694079967527">"بطاقة SD قابلة للإزالة"</item>
+    <item msgid="6902033473986647035">"ترك القرار للنظام"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"الموقع"</item>
+    <item msgid="6842381562497597649">"شخصي"</item>
+    <item msgid="3966700236695683444">"المراسلة"</item>
+    <item msgid="8563996233342430477">"الوسائط"</item>
+    <item msgid="5323851085993963783">"جهاز"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"الموقع التقريبي"</item>
+    <item msgid="1830619568689922920">"الموقع الدقيق"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"اهتزاز"</item>
+    <item msgid="8632513128515114092">"قراءة جهات الاتصال"</item>
+    <item msgid="3741042113569620272">"تعديل جهات الاتصال"</item>
+    <item msgid="4204420969709009931">"قراءة سجل المكالمات"</item>
+    <item msgid="2260380357119423209">"تعديل سجل المكالمات"</item>
+    <item msgid="6550710385014530934">"قراءة التقويم"</item>
+    <item msgid="3575906174264853951">"تعديل التقويم"</item>
+    <item msgid="4319843242568057174">"فحص Wi-Fi"</item>
+    <item msgid="2981791890467303819">"إشعار"</item>
+    <item msgid="6617825156152476692">"فحص الشبكة الخلوية"</item>
+    <item msgid="8865260890611559753">"اتصال هاتفي"</item>
+    <item msgid="3254999273961542982">"قراءة الرسائل القصيرة SMS"</item>
+    <item msgid="7711446453028825171">"كتابة الرسائل القصيرة SMS"</item>
+    <item msgid="6123238544099198034">"تلقي الرسائل القصيرة SMS"</item>
+    <item msgid="838342167431596036">"تلقي الرسائل القصيرة SMS في حالة الطوارئ"</item>
+    <item msgid="8554432731560956686">"تلقي رسائل الوسائط المتعددة (MMS)"</item>
+    <item msgid="7464863464299515059">"تلقي رسائل WAP push"</item>
+    <item msgid="310463075729606765">"إرسال رسائل قصيرة SMS"</item>
+    <item msgid="7338021933527689514">"قراءة الرسائل القصيرة SMS لبطاقة ICC"</item>
+    <item msgid="6130369335466613036">"كتابة الرسائل القصيرة SMS لبطاقة ICC"</item>
+    <item msgid="6536865581421670942">"تعديل الإعدادات"</item>
+    <item msgid="4547203129183558973">"رسم في الأعلى"</item>
+    <item msgid="9080347512916542840">"إشعارات الدخول"</item>
+    <item msgid="5332718516635907742">"الكاميرا"</item>
+    <item msgid="6098422447246167852">"تسجيل الصوت"</item>
+    <item msgid="9182794235292595296">"تشغيل الصوت"</item>
+    <item msgid="8760743229597702019">"قراءة الحافظة"</item>
+    <item msgid="2266923698240538544">"تعديل الحافظة"</item>
+    <item msgid="1801619438618539275">"أزرار الوسائط"</item>
+    <item msgid="31588119965784465">"التركيز على الصوت"</item>
+    <item msgid="7565226799008076833">"مستوى الصوت الرئيسي"</item>
+    <item msgid="5420704980305018295">"مستوى الصوت"</item>
+    <item msgid="5797363115508970204">"مستوى صوت الرنين"</item>
+    <item msgid="8233154098550715999">"مستوى صوت الوسائط"</item>
+    <item msgid="5196715605078153950">"مستوى صوت المنبّه"</item>
+    <item msgid="394030698764284577">"مستوى صوت الإشعار"</item>
+    <item msgid="8952898972491680178">"مستوى صوت البلوتوث"</item>
+    <item msgid="8506227454543690851">"البقاء في الوضع النشط"</item>
+    <item msgid="1108160036049727420">"مراقبة الموقع"</item>
+    <item msgid="1496205959751719491">"مراقبة موقع متميز"</item>
+    <item msgid="3776296279910987380">"الحصول على إحصاءات الاستخدام"</item>
+    <item msgid="8827100324471975602">"كتم صوت/إلغاء كتم صوت الميكروفون"</item>
+    <item msgid="6880736730520126864">"عرض الإعلام المنبثق"</item>
+    <item msgid="4933375960222609935">"وسائط المشروع"</item>
+    <item msgid="8357907018938895462">"تفعيل الشبكة الافتراضية الخاصة"</item>
+    <item msgid="8143812849911310973">"كتابة الخلفية"</item>
+    <item msgid="6266277260961066535">"تركيبة مساعدة"</item>
+    <item msgid="7715498149883482300">"لقطة شاشة مساعدة"</item>
+    <item msgid="4046679376726313293">"قراءة حالة الهاتف"</item>
+    <item msgid="6329507266039719587">"إضافة بريد صوتي"</item>
+    <item msgid="7692440726415391408">"استخدام SIP"</item>
+    <item msgid="8572453398128326267">"معالجة المكالمات الصادرة"</item>
+    <item msgid="7775674394089376306">"بصمة الإصبع"</item>
+    <item msgid="3182815133441738779">"أجهزة استشعار الجسم"</item>
+    <item msgid="2793100005496829513">"قراءة رسائل البث الخلوي"</item>
+    <item msgid="2633626056029384366">"موقع وهمي"</item>
+    <item msgid="8356842191824684631">"قراءة مساحة التخزين"</item>
+    <item msgid="5671906070163291500">"كتابة مساحة التخزين"</item>
+    <item msgid="2791955098549340418">"تشغيل الشاشة"</item>
+    <item msgid="5599435119609178367">"الحصول على الحسابات"</item>
+    <item msgid="1165623660533024666">"التشغيل في الخلفية"</item>
+    <item msgid="6423861043647911030">"مستوى صوت \"سهولة الاستخدام\""</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"قصيرة"</item>
+    <item msgid="4816511817309094890">"أهميّة متوسّطة"</item>
+    <item msgid="8305084671259331134">"طويلة"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"تلقائي"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif مكثف"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"أحرف استهلالية صغيرة"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"تلقائي"</item>
+    <item msgid="6488643537808152001">"بدون"</item>
+    <item msgid="552332815156010137">"مخطط"</item>
+    <item msgid="7187891159463789272">"تظليل القطرات"</item>
+    <item msgid="8019330250538856521">"مرتفعة"</item>
+    <item msgid="8987385315647049787">"منخفضة"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"٢٥٪"</item>
+    <item msgid="4665048002584838262">"٥٠٪"</item>
+    <item msgid="1874668269931014581">"٧٥٪"</item>
+    <item msgid="6462911487571123954">"٪۱۰۰"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"استخدام الإعدادات التلقائية للتطبيق"</item>
+    <item msgid="8611890312638868524">"أبيض في أسود"</item>
+    <item msgid="5891360837786277638">"أسود في أبيض"</item>
+    <item msgid="2798457065945456853">"أصفر في أسود"</item>
+    <item msgid="5799049811524553967">"أصفر في أزرق"</item>
+    <item msgid="3673930830658169860">"مخصص"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"شبكة افتراضية خاصة (VPN) عبر PPTP"</item>
+    <item msgid="1349760781118368659">"شبكة افتراضية خاصة (VPN) لـ L2TP/IPSec مزودة بمفاتيح مشتركة مسبقًا"</item>
+    <item msgid="6128519070545038358">"شبكة افتراضية خاصة (VPN) لـ L2TP/IPSec مزودة بشهادات"</item>
+    <item msgid="312397853907741968">"شبكة افتراضية خاصة (VPN) لـ IPSec مزودة بمفاتيح مشتركة مسبقًا ومصادقة Xauth"</item>
+    <item msgid="3319427315593649917">"شبكة افتراضية خاصة (VPN) لـ IPSec مزودة بشهادات ومصادقة Xauth"</item>
+    <item msgid="8258927774145391041">"شبكة افتراضية خاصة (VPN) لـ IPSec مزودة بشهادات ومصادقة مختلطة"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"لا شيء"</item>
+    <item msgid="1157046369795346308">"الكتيب"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"غير متصل"</item>
+    <item msgid="8754480102834556765">"جار التهيئة..."</item>
+    <item msgid="3351334355574270250">"جارٍ الاتصال..."</item>
+    <item msgid="8303882153995748352">"متّصلة"</item>
+    <item msgid="9135049670787351881">"المهلة"</item>
+    <item msgid="2124868417182583926">"غير ناجح"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"اسأل"</item>
+    <item msgid="7718817231348607934">"عدم السماح مطلقًا"</item>
+    <item msgid="8184570120217958741">"السماح دومًا"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ثابتة"</item>
+    <item msgid="167418068739176448">"أهم نشاط"</item>
+    <item msgid="4760813290195199773">"مهم (المقدمة)"</item>
+    <item msgid="2328684826817647595">"مهم (الخلفية)"</item>
+    <item msgid="7746406490652867365">"الاحتفاظ بنسخة احتياطية"</item>
+    <item msgid="5597404364389196754">"مرتبة عالية"</item>
+    <item msgid="1290888779300174556">"الخدمة (قيد التشغيل)"</item>
+    <item msgid="7241098542073939046">"الخدمة (إعادة التشغيل)"</item>
+    <item msgid="6610439017684111046">"مستلم"</item>
+    <item msgid="7367606086319921117">"الرئيسية"</item>
+    <item msgid="3344660712396741826">"آخر نشاط"</item>
+    <item msgid="5006559348883303865">"تخزين مؤقت (النشاط)"</item>
+    <item msgid="8633480732468137525">"تخزين مؤقت (برنامج النشاط)"</item>
+    <item msgid="6248998242443333892">"تخزين مؤقت (فارغ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"أزرق مخضر"</item>
+    <item msgid="3228505970082457852">"أزرق"</item>
+    <item msgid="6590260735734795647">"نيلي"</item>
+    <item msgid="3521763377357218577">"أرجواني"</item>
+    <item msgid="5932337981182999919">"قرنفلي"</item>
+    <item msgid="5642914536624000094">"أحمر"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"تم إنشاؤها منذ أكثر من 30 يومًا"</item>
+    <item msgid="8699273238891265610">"تم إنشاؤها منذ أكثر من 60 يومًا"</item>
+    <item msgid="8346279419423837266">"تم إنشاؤها منذ أكثر من 90 يومًا"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"١"</item>
+    <item msgid="3118234477029486741">"٠"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"الاكتشاف التلقائي"</item>
+    <item msgid="773943026484148895">"معاملة الشبكة باعتبارها تفرض تكلفة استخدام"</item>
+    <item msgid="1008268820118852416">"معاملة الشبكة باعتبارها لا تفرض تكلفة استخدام"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"استخدام عنوان MAC عشوائي (الإعداد التلقائي)"</item>
+    <item msgid="214234417308375326">"استخدام عنوان MAC للجهاز"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"لا"</item>
+    <item msgid="1930581185557754880">"نعم"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"مظهر داكن"</item>
+    <item msgid="5079453644557603349">"مظهر فاتح"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"غير مفعّل"</item>
+    <item msgid="4072198137051566919">"تصحيح الأخطاء"</item>
+    <item msgid="2473005316958868509">"مطوّل"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"الرئيسية فقط"</item>
+    <item msgid="1161026694891024702">"تلقائي"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA المُفضَّل"</item>
+    <item msgid="7581481130337402578">"نظام GSM فقط"</item>
+    <item msgid="8579197487913425819">"WCDMA فقط"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA تلقائي"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo تلقائي"</item>
+    <item msgid="4219607161971472471">"CDMA بدون EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo فقط"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"عام"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA فقط"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"بطاقة RUIM/شريحة SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"عام"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ar/strings.xml b/tests/CarDeveloperOptions/res/values-ar/strings.xml
index 95e9211..76517cf 100644
--- a/tests/CarDeveloperOptions/res/values-ar/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ar/strings.xml
@@ -360,7 +360,7 @@
     <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"بعد السكون مباشرة، باستثناء عندما ميزة <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> تبقي الجهاز مفتوحًا"</string>
     <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> بعد السكون، باستثناء عندما ميزة <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g> تبقي الجهاز مفتوحًا"</string>
     <string name="show_owner_info_on_lockscreen_label" msgid="4510756693837171575">"إظهار معلومات المالك في شاشة التأمين"</string>
-    <string name="owner_info_settings_title" msgid="2537966178998339896">"رسالة شاشة التأمين"</string>
+    <string name="owner_info_settings_title" msgid="2537966178998339896">"رسالة شاشة القفل"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"تفعيل الأدوات"</string>
     <string name="security_enable_widgets_disabled_summary" msgid="4408176087132339331">"تم إيقاف الإعداد بواسطة المشرف"</string>
     <string name="lockdown_settings_title" msgid="4534779922580115990">"عرض خيار التأمين"</string>
@@ -395,7 +395,7 @@
     <string name="decryption_settings_summary" product="default" msgid="7401802133199522441">"الهاتف ليس مشفّرًا."</string>
     <string name="encryption_and_credential_settings_summary" product="tablet" msgid="8170667308598998791">"تم تشفير الجهاز"</string>
     <string name="decryption_settings_summary" product="tablet" msgid="7524119945312453569">"الجهاز ليس مشفرًا."</string>
-    <string name="lockscreen_settings_title" msgid="1221505938891948413">"عرض شاشة التأمين"</string>
+    <string name="lockscreen_settings_title" msgid="1221505938891948413">"عرض شاشة القفل"</string>
     <string name="lockscreen_settings_what_to_show_category" msgid="3133378945821488654">"ما يتم عرضه"</string>
     <string name="security_settings_summary" msgid="5210109100643223686">"تعيين موقعي، إلغاء تأمين الشاشة، تأمين شريحة SIM، تأمين تخزين الاعتماد"</string>
     <string name="cdma_security_settings_summary" msgid="1783066617800041869">"تعيين موقعي، إلغاء تأمين الشاشة، تأمين تخزين الاعتماد"</string>
@@ -1268,8 +1268,8 @@
     <string name="display_white_balance_title" msgid="5747260735311935143">"موازنة اللون الأبيض للشاشة"</string>
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Screen aware"</string>
     <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"تفعيل / لن يتم إيقاف الشاشة إذا كنت تنظر إليها."</string>
-    <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"موقوف"</string>
-    <string name="adaptive_sleep_description" msgid="812673735459170009">"لمنع إيقاف الشاشة إذا كنت تنظر إليها."</string>
+    <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"غير مفعّل"</string>
+    <string name="adaptive_sleep_description" msgid="812673735459170009">"منع إطفاء الشاشة إذا كنت تنظر إليها"</string>
     <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"يستخدم إعداد Screen aware الكاميرا الأمامية لمعرفة ما إذا كان أحد ينظر إلى الشاشة. يعمل هذا الإعداد على الجهاز، لكن لن يتم تخزين أي صور أو إرسالها إلى Google."</string>
     <string name="night_display_title" msgid="1305002424893349814">"الإضاءة الليلية"</string>
     <string name="night_display_text" msgid="5330502493684652527">"تؤدي الإضاءة الليلية إلى تلوين الشاشة باللون الكهرماني الخفيف، ما يسهّل النظر إلى الشاشة في الإضاءة الخافتة ويمكن أن يساعدك على الشعور بالنعاس أيضًا."</string>
@@ -1329,10 +1329,10 @@
     <string name="title_font_size" msgid="5021464556860010851">"حجم الخط"</string>
     <string name="short_summary_font_size" msgid="4141077908728522946">"يمكنك تكبير النص أو تصغيره."</string>
     <string name="sim_lock_settings" msgid="1986924650622642189">"إعدادات قفل شريحة SIM"</string>
-    <string name="sim_lock_settings_category" msgid="1126759898277681516">"تأمين شريحة SIM"</string>
+    <string name="sim_lock_settings_category" msgid="1126759898277681516">"قفل شريحة SIM"</string>
     <string name="sim_lock_settings_summary_off" msgid="348656447968142307">"تم الإيقاف"</string>
     <string name="sim_lock_settings_summary_on" msgid="3440707542514810045">"تم القفل"</string>
-    <string name="sim_lock_settings_title" msgid="877336472752342977">"تأمين شريحة SIM"</string>
+    <string name="sim_lock_settings_title" msgid="877336472752342977">"قفل شريحة SIM"</string>
     <string name="sim_pin_toggle" msgid="2026507420678167488">"قفل شريحة SIM"</string>
     <string name="sim_lock_on" product="tablet" msgid="3917977767884071323">"يلزم إدخال رمز PIN لاستخدام الجهاز اللوحي"</string>
     <string name="sim_lock_on" product="default" msgid="1363159192182487883">"يتطلّب إدخال رقم التعريف الشخصي لاستخدام الهاتف"</string>
@@ -3031,7 +3031,7 @@
     <string name="user_cannot_add_accounts_message" msgid="5993561303748749097">"لا يمكن للملفات الشخصية إضافة حسابات"</string>
     <string name="user_remove_user_menu" msgid="3505139157217459864">"حذف <xliff:g id="USER_NAME">%1$s</xliff:g> من هذا الجهاز"</string>
     <string name="user_lockscreen_settings" msgid="3820813814848394568">"إعدادات شاشة التأمين"</string>
-    <string name="user_add_on_lockscreen_menu" msgid="5211604808199585774">"إضافة المستخدمين من شاشة التأمين"</string>
+    <string name="user_add_on_lockscreen_menu" msgid="5211604808199585774">"إضافة المستخدمين من شاشة القفل"</string>
     <string name="user_new_user_name" msgid="3880395219777884838">"مستخدم جديد"</string>
     <string name="user_new_profile_name" msgid="3074939718101489937">"ملف شخصي جديد"</string>
     <string name="user_confirm_remove_self_title" msgid="6739480453680217543">"هل تريد حذف نفسك؟"</string>
@@ -3984,7 +3984,7 @@
     <string name="background_check_pref" msgid="664081406854758392">"فحص الخلفية"</string>
     <string name="background_check_title" msgid="4136736684290307970">"الوصول الكامل إلى الخلفية"</string>
     <string name="assist_access_context_title" msgid="2274614501747710439">"استخدام النص من الشاشة"</string>
-    <string name="assist_access_context_summary" msgid="5867997494395842785">"السماح للتطبيق المساعد بالوصول إلى محتوى الشاشة كالنص"</string>
+    <string name="assist_access_context_summary" msgid="5867997494395842785">"السماح للتطبيق المساعد بالوصول إلى محتوى الشاشة كنص"</string>
     <string name="assist_access_screenshot_title" msgid="1991014038776117688">"استخدام لقطة الشاشة"</string>
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"السماح للتطبيق المساعد بالوصول إلى صورة للشاشة"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"إظهار وميض على الشاشة"</string>
@@ -4711,7 +4711,7 @@
     <string name="mobile_network_sim_name" msgid="8228870017368926761">"اسم شريحة SIM"</string>
     <string name="mobile_network_sim_name_rename" msgid="4810736493612513152">"إعادة تسمية"</string>
     <string name="mobile_network_use_sim_on" msgid="1944823242539751387">"استخدام شريحة SIM"</string>
-    <string name="mobile_network_use_sim_off" msgid="2077820358051946635">"موقوف"</string>
+    <string name="mobile_network_use_sim_off" msgid="2077820358051946635">"غير مفعّل"</string>
     <string name="mobile_network_esim_swap_confirm_title" msgid="6077154427380613615">"هل تريد التبديل إلى <xliff:g id="CARRIER">%1$s</xliff:g>؟"</string>
     <string name="mobile_network_esim_swap_confirm_body" msgid="1192274915146275063">"لا يمكن تفعيل أكثر من شريحة SIM واحدة تم تنزيلها في آن واحد.\n\nلن يؤدي اختيار <xliff:g id="CARRIER1">%1$s</xliff:g> كبديل إلى إلغاء خدمة <xliff:g id="CARRIER2">%2$s</xliff:g>."</string>
     <string name="mobile_network_esim_swap_confirm_ok" msgid="4253442720111626242">"التبديل إلى <xliff:g id="CARRIER">%1$s</xliff:g>"</string>
diff --git a/tests/CarDeveloperOptions/res/values-as-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-as-nokeys/strings.xml
new file mode 100644
index 0000000..c4b68d6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-as-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"এপ্লিকেশ্বনবোৰ পৰিচালনা কৰক"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-as/arrays.xml b/tests/CarDeveloperOptions/res/values-as/arrays.xml
new file mode 100644
index 0000000..aacb142
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-as/arrays.xml
@@ -0,0 +1,249 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"আমেৰিকা"</item>
+    <item msgid="4791956477275129121">"ইউৰোপ"</item>
+    <item msgid="3812126832016254559">"আফ্ৰিকা"</item>
+    <item msgid="2765816300353408280">"এছিয়া"</item>
+    <item msgid="6683489385344409742">"অষ্ট্ৰেলিয়া"</item>
+    <item msgid="5194868215515664953">"প্ৰশান্ত মহাসাগৰীয়"</item>
+    <item msgid="7044520255415007865">"সকলো"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for screen_timeout_entries:5 (5827960506924849753) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"সংযোগ কৰা হ’ল"</item>
+    <item msgid="983792611851499732">"নিমন্ত্ৰিত"</item>
+    <item msgid="5438273405428201793">"অসফল"</item>
+    <item msgid="4646663015449312554">"উপলব্ধ"</item>
+    <item msgid="3230556734162006146">"সীমাৰ বাহিৰত"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"যোৱা ৩০ দিন"</item>
+    <item msgid="3211287705232736964">"ডেটা ব্যৱহাৰ চক্ৰ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ব্যৱহাৰৰ সময়"</item>
+    <item msgid="2784401352592276015">"অন্তিমবাৰ ব্যৱহাৰ হৈছে"</item>
+    <item msgid="249854287216326349">"এপৰ নাম"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"পিইএপি"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"নাই"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"নাই"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"নাই"</item>
+    <item msgid="1464741437353223198">"মেনুএল"</item>
+    <item msgid="5793600062487886090">"প্ৰক্সি স্বয়ং-কনফিগাৰেশ্বন"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"নাই"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP বা CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:0 (5231094118929435723) -->
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for bearer_entries:9 (7246853278334311652) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"আভ্যন্তৰীণ ডিভাইচ সঞ্চয়াগাৰ"</item>
+    <item msgid="3186681694079967527">"গুচাব পৰা SD কাৰ্ড"</item>
+    <item msgid="6902033473986647035">"ছিষ্টেমটোক সিদ্ধান্ত ল’বলৈ দিয়ক"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"অৱস্থান"</item>
+    <item msgid="6842381562497597649">"ব্যক্তিগত"</item>
+    <item msgid="3966700236695683444">"মেছেজিং"</item>
+    <item msgid="8563996233342430477">"মিডিয়া"</item>
+    <item msgid="5323851085993963783">"ডিভাইচ"</item>
+  </string-array>
+    <!-- no translation found for app_ops_summaries:46 (4933375960222609935) -->
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+    <!-- no translation found for app_ops_labels:48 (8291198322681891160) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"চুটি"</item>
+    <item msgid="4816511817309094890">"মধ্যমীয়া"</item>
+    <item msgid="8305084671259331134">"দীঘল"</item>
+  </string-array>
+    <!-- no translation found for captioning_typeface_selector_titles:4 (1487203730637617924) -->
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+    <!-- no translation found for captioning_edge_type_selector_titles:4 (8019330250538856521) -->
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"২৫%"</item>
+    <item msgid="4665048002584838262">"৫০%"</item>
+    <item msgid="1874668269931014581">"৭৫%"</item>
+    <item msgid="6462911487571123954">"১০০%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"পিপিটিপি ভিপিএন"</item>
+    <item msgid="1349760781118368659">"পূৰ্বে ভাগ-বতৰা কৰা কীসমূহৰ সৈতে L2TP/IPSec ভিপিএন"</item>
+    <item msgid="6128519070545038358">"প্ৰমাণপত্ৰসহ L2TP/IPSec ভিপিএন"</item>
+    <item msgid="312397853907741968">"পূৰ্বতে শ্বেয়াৰ কৰা কী আৰু Xauth সত্যাপনসহ IPSec ভিপিএন"</item>
+    <item msgid="3319427315593649917">"প্ৰমাণপত্ৰ আৰু Xauth বিশ্ৱাসযোগ্যতা প্ৰামাণিকৰণৰ সৈতে IPSec ভিপিএন"</item>
+    <item msgid="8258927774145391041">"প্ৰমাণপত্ৰ আৰু হাইব্ৰিড সত্যাপনসহ IPSec ভিপিএন"</item>
+  </string-array>
+    <!-- no translation found for vpn_proxy_settings:0 (2958623927055120839) -->
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"সোধক"</item>
+    <item msgid="7718817231348607934">"কেতিয়াও অনুমতি নিদিব"</item>
+    <item msgid="8184570120217958741">"চিৰদিনৰ বাবে অনুমোদন"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"নেৰানেপেৰা"</item>
+    <item msgid="167418068739176448">"শীৰ্ষ কাৰ্যকলাপ"</item>
+    <item msgid="4760813290195199773">"গুৰুত্বপূৰ্ণ (নেপথ্য)"</item>
+    <item msgid="2328684826817647595">"গুৰুত্বপূৰ্ণ (নেপথ্য)"</item>
+    <item msgid="7746406490652867365">"বেকআপ"</item>
+    <item msgid="5597404364389196754">"অত্য়ধিক"</item>
+    <item msgid="1290888779300174556">"সেৱা (চলিত)"</item>
+    <item msgid="7241098542073939046">"সেৱা (ৰিষ্টাৰ্ট কৰা হৈছে)"</item>
+    <item msgid="6610439017684111046">"ৰিচিভাৰ"</item>
+    <item msgid="7367606086319921117">"হ\'ম"</item>
+    <item msgid="3344660712396741826">"অন্তিম কাৰ্যকলাপ"</item>
+    <item msgid="5006559348883303865">"কেশ্ব কৰা হোৱা (কাৰ্যকলাপ)"</item>
+    <item msgid="8633480732468137525">"কেশ্ব কৰা হোৱা (কাৰ্যকলাপ গ্ৰাহক)"</item>
+    <item msgid="6248998242443333892">"কেশ্ব কৰা হোৱা (খালী)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"গাঢ় সেউজ-নীলা"</item>
+    <item msgid="3228505970082457852">"নীলা"</item>
+    <item msgid="6590260735734795647">"ইণ্ডিগ\'"</item>
+    <item msgid="3521763377357218577">"বেঙুনীয়া"</item>
+    <item msgid="5932337981182999919">"গুলপীয়া"</item>
+    <item msgid="5642914536624000094">"ৰঙা"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"৩০দিনতকৈ অধিক পুৰণি"</item>
+    <item msgid="8699273238891265610">"৬০ দিনতকৈ অধিক পুৰণি"</item>
+    <item msgid="8346279419423837266">"৯০ দিনতকৈ অধিক পুৰণি"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"১"</item>
+    <item msgid="3118234477029486741">"০"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"স্ৱয়ংক্ৰিয়ভাৱে চিনাক্ত কৰক"</item>
+    <item msgid="773943026484148895">"মিটাৰ কৰা হিছাপে আচৰণ কৰক"</item>
+    <item msgid="1008268820118852416">"নিৰিখ অনিৰ্দিষ্ট বুলি গণ্য কৰক"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"যাদৃচ্ছিক MAC ব্যৱহাৰ কৰক (ডিফ’ল্ট)"</item>
+    <item msgid="214234417308375326">"ডিভাইচৰ MAC ব্যৱহাৰ কৰক"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"নহয়"</item>
+    <item msgid="1930581185557754880">"হয়"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"গাঢ়"</item>
+    <item msgid="5079453644557603349">"পাতল"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"অফ"</item>
+    <item msgid="4072198137051566919">"ডিবাগ"</item>
+    <item msgid="2473005316958868509">"ভাৰ্ব\'ছ"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"কেৱল গৃহ পৃষ্ঠাত"</item>
+    <item msgid="1161026694891024702">"স্বয়ংক্ৰিয়"</item>
+  </string-array>
+    <!-- no translation found for preferred_network_mode_choices:11 (5713723042183940349) -->
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"গোলকীয়"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-az-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-az-nokeys/strings.xml
new file mode 100644
index 0000000..86c4635
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-az-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Tətbiqləri idarə edin"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-az/arrays.xml b/tests/CarDeveloperOptions/res/values-az/arrays.xml
new file mode 100644
index 0000000..aeb8964
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-az/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Avropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asiya"</item>
+    <item msgid="6683489385344409742">"Avstraliya"</item>
+    <item msgid="5194868215515664953">"Sakit Okean"</item>
+    <item msgid="7044520255415007865">"Bütün"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 saniyə"</item>
+    <item msgid="772029947136115322">"30 saniyə"</item>
+    <item msgid="8743663928349474087">"1 dəqiqə"</item>
+    <item msgid="1506508631223164814">"2 dəqiqə"</item>
+    <item msgid="8664703938127907662">"5 dəqiqə"</item>
+    <item msgid="5827960506924849753">"10 dəqiqə"</item>
+    <item msgid="6677424950124253938">"30 dəqiqə"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Kiçik"</item>
+    <item msgid="591935967183159581">"Defolt"</item>
+    <item msgid="1714184661981538355">"Böyük"</item>
+    <item msgid="6195563047686707484">"Ən böyük"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skan edilir..."</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> qoşulur…"</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> ilə doğrulanır"</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> şəbəkəsindən IP ünvan əldə edilir"</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> qoşuldu"</item>
+    <item msgid="6600156231416890902">"Dayandırılıb"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> şəbəkəsindən ayrılır..."</item>
+    <item msgid="3980154971187953257">"Əlaqə kəsildi"</item>
+    <item msgid="2847316776634969068">"Uğursuz"</item>
+    <item msgid="4390990424746035383">"Bloklanmış"</item>
+    <item msgid="3618248791367063949">"Zəif bağlantı müvəqqəti aradan qaldırılır"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Düyməsinə basın"</item>
+    <item msgid="7401896200768713930">"Eynisəviyyəli cihazdan PIN"</item>
+    <item msgid="4526848028011846710">"Bu cihazdan PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Qoşuldu"</item>
+    <item msgid="983792611851499732">"Dəvət edilib"</item>
+    <item msgid="5438273405428201793">"Uğursuz"</item>
+    <item msgid="4646663015449312554">"Əlçatandır"</item>
+    <item msgid="3230556734162006146">"Diapazondan kənar"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 dəqiqə"</item>
+    <item msgid="2759776603549270587">"5 dəqiqə"</item>
+    <item msgid="167772676068860015">"1 saat"</item>
+    <item msgid="5985477119043628504">"Heç vaxt taym aut olmasın"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Son 30 gün"</item>
+    <item msgid="3211287705232736964">"İstifadə siklini əldə edin..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"İstifadə müddəti"</item>
+    <item msgid="2784401352592276015">"Son istifadə vaxtı"</item>
+    <item msgid="249854287216326349">"Tətbiq adı"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Heç biri"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Heç biri"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statik"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Heç biri"</item>
+    <item msgid="1464741437353223198">"Dərslik"</item>
+    <item msgid="5793600062487886090">"Proksi Avto-Konfiq"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Heç biri"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP və ya CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Cihazın daxili yaddaşı"</item>
+    <item msgid="3186681694079967527">"Çıxarılabilən SD card"</item>
+    <item msgid="6902033473986647035">"Sistem qərar versin"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Yer"</item>
+    <item msgid="6842381562497597649">"Şəxsi"</item>
+    <item msgid="3966700236695683444">"Mesajlaşma"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Cihaz"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"təxmini yerləşmə"</item>
+    <item msgid="1830619568689922920">"yaxşı yer"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrasiya"</item>
+    <item msgid="8632513128515114092">"kontaktları oxuyun"</item>
+    <item msgid="3741042113569620272">"kontaktları dəyişin"</item>
+    <item msgid="4204420969709009931">"zəng jurnalı oxuyun"</item>
+    <item msgid="2260380357119423209">"zəng jurnalına dəyişiklik edin"</item>
+    <item msgid="6550710385014530934">"təqvimi oxuyun"</item>
+    <item msgid="3575906174264853951">"təqvimə dəyişiklik edin"</item>
+    <item msgid="4319843242568057174">"wi-fi skan"</item>
+    <item msgid="2981791890467303819">"bildiriş"</item>
+    <item msgid="6617825156152476692">"mobil skan"</item>
+    <item msgid="8865260890611559753">"Telefona zəng edin"</item>
+    <item msgid="3254999273961542982">"SMS oxuyun"</item>
+    <item msgid="7711446453028825171">"SMS yazın"</item>
+    <item msgid="6123238544099198034">"SMS alın"</item>
+    <item msgid="838342167431596036">"təcili SMS alın"</item>
+    <item msgid="8554432731560956686">"MMS alın"</item>
+    <item msgid="7464863464299515059">"WAP push əldə edin"</item>
+    <item msgid="310463075729606765">"SMS göndərin"</item>
+    <item msgid="7338021933527689514">"ICC SMS oxuyun"</item>
+    <item msgid="6130369335466613036">"ICC SMS yazın"</item>
+    <item msgid="6536865581421670942">"ayarları dəyişin"</item>
+    <item msgid="4547203129183558973">"yuxarıda çəkin"</item>
+    <item msgid="9080347512916542840">"giriş bildirişi"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"audio qeydəalın"</item>
+    <item msgid="9182794235292595296">"audio oxudun"</item>
+    <item msgid="8760743229597702019">"panonu oxuyun"</item>
+    <item msgid="2266923698240538544">"panoda dəyişiklik edin"</item>
+    <item msgid="1801619438618539275">"media düymələri"</item>
+    <item msgid="31588119965784465">"audio fokus"</item>
+    <item msgid="7565226799008076833">"master həcmi"</item>
+    <item msgid="5420704980305018295">"səs həcmi"</item>
+    <item msgid="5797363115508970204">"zəng həcmi"</item>
+    <item msgid="8233154098550715999">"media həcmi"</item>
+    <item msgid="5196715605078153950">"siqnal səsi"</item>
+    <item msgid="394030698764284577">"bildiriş həcmi"</item>
+    <item msgid="8952898972491680178">"bluetooth həcmi"</item>
+    <item msgid="8506227454543690851">"oyaq saxla"</item>
+    <item msgid="1108160036049727420">"məkanı monitor edin"</item>
+    <item msgid="1496205959751719491">"yüksək enerji məkanına nəzarət"</item>
+    <item msgid="3776296279910987380">"istifadə statistikası əldə edin"</item>
+    <item msgid="8827100324471975602">"mikrofonu susdurun/susdurmayın"</item>
+    <item msgid="6880736730520126864">"tostu göstərin"</item>
+    <item msgid="4933375960222609935">"layihə mediası"</item>
+    <item msgid="8357907018938895462">"VPN aktivləşdirin"</item>
+    <item msgid="8143812849911310973">"yazı divar kağızı"</item>
+    <item msgid="6266277260961066535">"köməkçi struktur"</item>
+    <item msgid="7715498149883482300">"köməkçi skrinşot"</item>
+    <item msgid="4046679376726313293">"telefon statusunu oxuyun"</item>
+    <item msgid="6329507266039719587">"Səsli məktub əlavə edin"</item>
+    <item msgid="7692440726415391408">"sip istifadə edin"</item>
+    <item msgid="8572453398128326267">"gedən zəngi idarə edin"</item>
+    <item msgid="7775674394089376306">"barmaq izi"</item>
+    <item msgid="3182815133441738779">"bədən sensorları"</item>
+    <item msgid="2793100005496829513">"şəbəkə yayımlarını oxuyun"</item>
+    <item msgid="2633626056029384366">"sınaq yeri"</item>
+    <item msgid="8356842191824684631">"yaddaşı oxuyun"</item>
+    <item msgid="5671906070163291500">"yaddaşı yazın"</item>
+    <item msgid="2791955098549340418">"ekranı yandırın"</item>
+    <item msgid="5599435119609178367">"hesabları əldə edin"</item>
+    <item msgid="1165623660533024666">"arka fonda işləyir"</item>
+    <item msgid="6423861043647911030">"əlçatımlılıq dərəcəsi"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Qısa"</item>
+    <item msgid="4816511817309094890">"Orta"</item>
+    <item msgid="8305084671259331134">"Uzun"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Defolt"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif qatılaşmış"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Gündəlik"</item>
+    <item msgid="4627069151979553527">"Kursiv"</item>
+    <item msgid="6896773537705206194">"Kiçik böyüklər"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Defolt"</item>
+    <item msgid="6488643537808152001">"Heç biri"</item>
+    <item msgid="552332815156010137">"Kontur"</item>
+    <item msgid="7187891159463789272">"Kölgə salın"</item>
+    <item msgid="8019330250538856521">"Qaldırılmış"</item>
+    <item msgid="8987385315647049787">"Bunalımlı"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Tətbiq defoltlarını istifadə edin"</item>
+    <item msgid="8611890312638868524">"Qara üstündə ağ"</item>
+    <item msgid="5891360837786277638">"Ağ üstündə qara"</item>
+    <item msgid="2798457065945456853">"Qara üstündə sarı"</item>
+    <item msgid="5799049811524553967">"Mavi üstündə sarı"</item>
+    <item msgid="3673930830658169860">"Fərdi"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"Öncədən paylaşılmış açarlar ilə L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN sertifikatlar"</item>
+    <item msgid="312397853907741968">"Öncədən paylaşılmış açarlar və Xauth identifikasiyasılı IPSec VPN"</item>
+    <item msgid="3319427315593649917">"Sertifikat və Xauth autentifikasiyalı IPSec VPN"</item>
+    <item msgid="8258927774145391041">"IPSec VPN sertifikatlarla və hibrid identifikasiyaları ilə"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Heç biri"</item>
+    <item msgid="1157046369795346308">"Dərslik"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Əlaqə kəsildi"</item>
+    <item msgid="8754480102834556765">"Başladılır..."</item>
+    <item msgid="3351334355574270250">"Qoşulur..."</item>
+    <item msgid="8303882153995748352">"Qoşuldu"</item>
+    <item msgid="9135049670787351881">"Zaman aşımı"</item>
+    <item msgid="2124868417182583926">"Uğursuz"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Soruş"</item>
+    <item msgid="7718817231348607934">"Heç vaxt icazə verməyin"</item>
+    <item msgid="8184570120217958741">"Həmişə icazə verin"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Davamlı"</item>
+    <item msgid="167418068739176448">"Top fəaliyyət"</item>
+    <item msgid="4760813290195199773">"Önəmli (ön plan)"</item>
+    <item msgid="2328684826817647595">"Önəmli (arxa plan)"</item>
+    <item msgid="7746406490652867365">"Yedək"</item>
+    <item msgid="5597404364389196754">"Ağır çəki"</item>
+    <item msgid="1290888779300174556">"Xidmət (aktivdir)"</item>
+    <item msgid="7241098542073939046">"Xidmət (yenidən başlanır)"</item>
+    <item msgid="6610439017684111046">"Qəbuledici"</item>
+    <item msgid="7367606086319921117">"Əsas səhifə"</item>
+    <item msgid="3344660712396741826">"Son fəaliyyət"</item>
+    <item msgid="5006559348883303865">"Keşlənmiş (fəaliyyət)"</item>
+    <item msgid="8633480732468137525">"Keşlənmiş (fəaliyyət klienti)"</item>
+    <item msgid="6248998242443333892">"Keşlənmiş (boş)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Firuzəyi"</item>
+    <item msgid="3228505970082457852">"Göy"</item>
+    <item msgid="6590260735734795647">"İndiqo"</item>
+    <item msgid="3521763377357218577">"Bənövşəyi"</item>
+    <item msgid="5932337981182999919">"Çəhrayı"</item>
+    <item msgid="5642914536624000094">"Qırmızı"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 gündən köhnədir"</item>
+    <item msgid="8699273238891265610">"60 gündən köhnədir"</item>
+    <item msgid="8346279419423837266">"90 gündən köhnədir"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Avtomatik silin"</item>
+    <item msgid="773943026484148895">"Limitli olaraq qəbul edin"</item>
+    <item msgid="1008268820118852416">"Limitisiz olaraq qəbul edin"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"İxtiyari MAC (defolt) istifadə edin"</item>
+    <item msgid="214234417308375326">"MAC cihazından istifadə edin"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Xeyr"</item>
+    <item msgid="1930581185557754880">"Bəli"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tünd"</item>
+    <item msgid="5079453644557603349">"İşıq"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Deaktiv"</item>
+    <item msgid="4072198137051566919">"Sazlama"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Yalnız daxili"</item>
+    <item msgid="1161026694891024702">"Avtomatik"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA seçilib"</item>
+    <item msgid="7581481130337402578">"Yalnız GSM"</item>
+    <item msgid="8579197487913425819">"Yalnız WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA avtomatik"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo avtomatik"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"Yalnız EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Qlobal"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"Yalnız TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Qlobal"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-b+sr+Latn-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-b+sr+Latn-nokeys/strings.xml
new file mode 100644
index 0000000..aae8d26
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-b+sr+Latn-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Upravljanje aplikacijama"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-b+sr+Latn/arrays.xml b/tests/CarDeveloperOptions/res/values-b+sr+Latn/arrays.xml
new file mode 100644
index 0000000..3d27c69
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-b+sr+Latn/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Evropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Azija"</item>
+    <item msgid="6683489385344409742">"Australija"</item>
+    <item msgid="5194868215515664953">"Pacifik"</item>
+    <item msgid="7044520255415007865">"Sve"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekundi"</item>
+    <item msgid="772029947136115322">"30 sekundi"</item>
+    <item msgid="8743663928349474087">"1 minut"</item>
+    <item msgid="1506508631223164814">"2 minuta"</item>
+    <item msgid="8664703938127907662">"5 minuta"</item>
+    <item msgid="5827960506924849753">"10 minuta"</item>
+    <item msgid="6677424950124253938">"30 minuta"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Mala"</item>
+    <item msgid="591935967183159581">"Podrazumevano"</item>
+    <item msgid="1714184661981538355">"Velika"</item>
+    <item msgid="6195563047686707484">"Najveća"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skeniranje..."</item>
+    <item msgid="8058143476674427024">"Povezivanje sa mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Potvrđivanje autentičnosti na mreži <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Dobijanje IP adrese od mreže <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Povezano sa mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Obustavljeno"</item>
+    <item msgid="4133290864821295785">"Prekidanje veze sa mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Veza je prekinuta"</item>
+    <item msgid="2847316776634969068">"Neuspešno"</item>
+    <item msgid="4390990424746035383">"Blokirano"</item>
+    <item msgid="3618248791367063949">"Privremeno izbegavanje loše veze"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Pritisnite dugme"</item>
+    <item msgid="7401896200768713930">"PIN sa ravnopravnog uređaja"</item>
+    <item msgid="4526848028011846710">"PIN sa ovog uređaja"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Povezano"</item>
+    <item msgid="983792611851499732">"Pozvan"</item>
+    <item msgid="5438273405428201793">"Neuspešno"</item>
+    <item msgid="4646663015449312554">"Dostupna"</item>
+    <item msgid="3230556734162006146">"Izvan opsega"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuta"</item>
+    <item msgid="2759776603549270587">"5 minuta"</item>
+    <item msgid="167772676068860015">"1 sat"</item>
+    <item msgid="5985477119043628504">"Bez čekanja"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Poslednjih 30 dana"</item>
+    <item msgid="3211287705232736964">"Podesi ciklus potrošnje..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Vreme korišćenja"</item>
+    <item msgid="2784401352592276015">"Poslednji put korišćeno"</item>
+    <item msgid="249854287216326349">"Naziv aplikacije"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Nijedna"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Nijedna"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statički"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Nijedna"</item>
+    <item msgid="1464741437353223198">"Uputstvo"</item>
+    <item msgid="5793600062487886090">"Autom. konfig. proksija"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Nijedna"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ili CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Skladište unutrašnjeg uređaja"</item>
+    <item msgid="3186681694079967527">"Uklonjiva SD kartica"</item>
+    <item msgid="6902033473986647035">"Neka sistem odluči"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokacija"</item>
+    <item msgid="6842381562497597649">"Lični"</item>
+    <item msgid="3966700236695683444">"Razmena poruka"</item>
+    <item msgid="8563996233342430477">"Mediji"</item>
+    <item msgid="5323851085993963783">"Uređaj"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"okvirna lokacija"</item>
+    <item msgid="1830619568689922920">"precizna lokacija"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibracija"</item>
+    <item msgid="8632513128515114092">"čitanje kontakata"</item>
+    <item msgid="3741042113569620272">"menjanje kontakata"</item>
+    <item msgid="4204420969709009931">"čitanje evidencije poziva"</item>
+    <item msgid="2260380357119423209">"menjanje evidencije poziva"</item>
+    <item msgid="6550710385014530934">"čitanje kalendara"</item>
+    <item msgid="3575906174264853951">"menjanje kalendara"</item>
+    <item msgid="4319843242568057174">"Wi-Fi skeniranje"</item>
+    <item msgid="2981791890467303819">"obaveštenje"</item>
+    <item msgid="6617825156152476692">"skeniranje telefona"</item>
+    <item msgid="8865260890611559753">"pozivanje telefona"</item>
+    <item msgid="3254999273961542982">"čitanje SMS poruka"</item>
+    <item msgid="7711446453028825171">"pisanje SMS poruka"</item>
+    <item msgid="6123238544099198034">"prijem SMS poruka"</item>
+    <item msgid="838342167431596036">"prijem hitnih SMS poruka"</item>
+    <item msgid="8554432731560956686">"prijem MMS poruka"</item>
+    <item msgid="7464863464299515059">"prijem push poruka preko WAP-a"</item>
+    <item msgid="310463075729606765">"slanje SMS poruka"</item>
+    <item msgid="7338021933527689514">"čitanje ICC SMS poruka"</item>
+    <item msgid="6130369335466613036">"pisanje ICC SMS poruka"</item>
+    <item msgid="6536865581421670942">"menjanje podešavanja"</item>
+    <item msgid="4547203129183558973">"povlačenje na vrh"</item>
+    <item msgid="9080347512916542840">"pristup obaveštenjima"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"snimanje audio zapisa"</item>
+    <item msgid="9182794235292595296">"puštanje audio zapisa"</item>
+    <item msgid="8760743229597702019">"čitanje memorije"</item>
+    <item msgid="2266923698240538544">"menjanje memorije"</item>
+    <item msgid="1801619438618539275">"dugmad za medije"</item>
+    <item msgid="31588119965784465">"audio fokus"</item>
+    <item msgid="7565226799008076833">"glavna jačina zvuka"</item>
+    <item msgid="5420704980305018295">"jačina zvuka glasa"</item>
+    <item msgid="5797363115508970204">"jačina zvuka zvona"</item>
+    <item msgid="8233154098550715999">"jačina zvuka medija"</item>
+    <item msgid="5196715605078153950">"jačina zvuka alarma"</item>
+    <item msgid="394030698764284577">"jačina zvuka obaveštenja"</item>
+    <item msgid="8952898972491680178">"jačina zvuka Bluetooth-a"</item>
+    <item msgid="8506227454543690851">"zadržavanje van stanja spavanja"</item>
+    <item msgid="1108160036049727420">"praćenje lokacije"</item>
+    <item msgid="1496205959751719491">"nadgledanje lokacije sa visokim naponom"</item>
+    <item msgid="3776296279910987380">"preuzmi statistiku o korišćenju"</item>
+    <item msgid="8827100324471975602">"isključi/uključi zvuk mikrofona"</item>
+    <item msgid="6880736730520126864">"prikazivanje iskačućih poruka"</item>
+    <item msgid="4933375960222609935">"mediji za projekat"</item>
+    <item msgid="8357907018938895462">"aktiviranje VPN-a"</item>
+    <item msgid="8143812849911310973">"upis na pozadinu"</item>
+    <item msgid="6266277260961066535">"struktura pomoći"</item>
+    <item msgid="7715498149883482300">"snimak ekrana pomoći"</item>
+    <item msgid="4046679376726313293">"čitanje stanja telefona"</item>
+    <item msgid="6329507266039719587">"dodavanje govorne pošte"</item>
+    <item msgid="7692440726415391408">"korišćenje SIP-a"</item>
+    <item msgid="8572453398128326267">"obrada odlaznog poziva"</item>
+    <item msgid="7775674394089376306">"digitalni otisak"</item>
+    <item msgid="3182815133441738779">"senzori za telo"</item>
+    <item msgid="2793100005496829513">"čitanje poruka za mobilne uređaje na lokalitetu"</item>
+    <item msgid="2633626056029384366">"lažna lokacija"</item>
+    <item msgid="8356842191824684631">"čitanje memorijskog prostora"</item>
+    <item msgid="5671906070163291500">"upis podataka u memorijski prostor"</item>
+    <item msgid="2791955098549340418">"uključivanje ekrana"</item>
+    <item msgid="5599435119609178367">"pristup nalozima"</item>
+    <item msgid="1165623660533024666">"rad u pozadini"</item>
+    <item msgid="6423861043647911030">"jačina zvuka za pristupačnost"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kratko"</item>
+    <item msgid="4816511817309094890">"Srednji"</item>
+    <item msgid="8305084671259331134">"Dugačko"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Podrazumevano"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Skupljeni sans-serif"</item>
+    <item msgid="6529379119163117545">"Sans-serif fiksne širine"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif fiksne širine"</item>
+    <item msgid="4448481989108928248">"Opušteno"</item>
+    <item msgid="4627069151979553527">"Kurziv"</item>
+    <item msgid="6896773537705206194">"Mala početna slova"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Podrazumevano"</item>
+    <item msgid="6488643537808152001">"Nijedna"</item>
+    <item msgid="552332815156010137">"Kontura"</item>
+    <item msgid="7187891159463789272">"Padajuća senka"</item>
+    <item msgid="8019330250538856521">"Izdignuto"</item>
+    <item msgid="8987385315647049787">"Udubljena"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Podrazumevano za aplikaciju"</item>
+    <item msgid="8611890312638868524">"Belo na crno"</item>
+    <item msgid="5891360837786277638">"Crno na belo"</item>
+    <item msgid="2798457065945456853">"Žuto na crno"</item>
+    <item msgid="5799049811524553967">"Žuto na plavo"</item>
+    <item msgid="3673930830658169860">"Prilagođeno"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN sa unapred deljenim ključevima"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN sa sertifikatima"</item>
+    <item msgid="312397853907741968">"IPSec VPN sa unapred deljenim ključevima i Xauth potvrdom identiteta"</item>
+    <item msgid="3319427315593649917">"IPSec VPN sa sertifikatima i Xauth potvrdom identiteta"</item>
+    <item msgid="8258927774145391041">"IPSec VPN sa sertifikatima i hibridnom potvrdom identiteta"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nema"</item>
+    <item msgid="1157046369795346308">"Uputstvo"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Veza je prekinuta"</item>
+    <item msgid="8754480102834556765">"Pokretanje..."</item>
+    <item msgid="3351334355574270250">"Povezivanje…"</item>
+    <item msgid="8303882153995748352">"Povezano"</item>
+    <item msgid="9135049670787351881">"Vreme čekanja"</item>
+    <item msgid="2124868417182583926">"Neuspešno"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Pitaj"</item>
+    <item msgid="7718817231348607934">"Nikada ne dozvoli"</item>
+    <item msgid="8184570120217958741">"Uvek dozvoli"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Neprekidna"</item>
+    <item msgid="167418068739176448">"Najveća aktivnost"</item>
+    <item msgid="4760813290195199773">"Važna (prvi plan)"</item>
+    <item msgid="2328684826817647595">"Važna (drugi plan)"</item>
+    <item msgid="7746406490652867365">"Rezervne kopije"</item>
+    <item msgid="5597404364389196754">"Teška"</item>
+    <item msgid="1290888779300174556">"Usluga (aktivna)"</item>
+    <item msgid="7241098542073939046">"Usluga (ponovo se pokreće)"</item>
+    <item msgid="6610439017684111046">"Prijemnik"</item>
+    <item msgid="7367606086319921117">"Početna"</item>
+    <item msgid="3344660712396741826">"Poslednja aktivnost"</item>
+    <item msgid="5006559348883303865">"Keširana (aktivnost)"</item>
+    <item msgid="8633480732468137525">"Keširana (klijent aktivnosti)"</item>
+    <item msgid="6248998242443333892">"Keširana (prazno)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Plavozelena"</item>
+    <item msgid="3228505970082457852">"Plava"</item>
+    <item msgid="6590260735734795647">"Tamnoplava"</item>
+    <item msgid="3521763377357218577">"Ljubičasta"</item>
+    <item msgid="5932337981182999919">"Roze"</item>
+    <item msgid="5642914536624000094">"Crvena"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Starije od 30 dana"</item>
+    <item msgid="8699273238891265610">"Starije od 60 dana"</item>
+    <item msgid="8346279419423837266">"Starije od 90 dana"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Automatski otkrij"</item>
+    <item msgid="773943026484148895">"Tretiraj kao mrežu sa ograničenjem"</item>
+    <item msgid="1008268820118852416">"Tretiraj kao mrežu bez ograničenja"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Koristi nasumično izabranu MAC adresu (podrazumevano)"</item>
+    <item msgid="214234417308375326">"Koristi MAC adresu uređaja"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ne"</item>
+    <item msgid="1930581185557754880">"Da"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tamna"</item>
+    <item msgid="5079453644557603349">"Svetla"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Isključeno"</item>
+    <item msgid="4072198137051566919">"Otkloni greške"</item>
+    <item msgid="2473005316958868509">"Detaljno"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Samo kućna"</item>
+    <item msgid="1161026694891024702">"Automatski"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA ima prednost"</item>
+    <item msgid="7581481130337402578">"Samo GSM"</item>
+    <item msgid="8579197487913425819">"Samo WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatski"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatski"</item>
+    <item msgid="4219607161971472471">"CDMA bez EvDo-a"</item>
+    <item msgid="7278975240951052041">"Samo EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalna"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Samo TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalna"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-b+sr+Latn/strings.xml b/tests/CarDeveloperOptions/res/values-b+sr+Latn/strings.xml
index c0c06cf..572de09 100644
--- a/tests/CarDeveloperOptions/res/values-b+sr+Latn/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-b+sr+Latn/strings.xml
@@ -2880,9 +2880,9 @@
       <item quantity="other">Proveri sertifikate</item>
     </plurals>
     <string name="user_settings_title" msgid="7917598650933179545">"Više korisnika"</string>
-    <string name="user_settings_footer_text" product="device" msgid="4573858247439190545">"Delite uređaj tako što ćete dodati nove korisnike. Svaki korisnik ima lični prostor na uređaju za prilagođene početne ekrane, naloge, aplikacije, podešavanja i još mnogo toga."</string>
-    <string name="user_settings_footer_text" product="tablet" msgid="780018221428132918">"Delite tablet tako što ćete dodati nove korisnike. Svaki korisnik ima lični prostor na tabletu za prilagođene početne ekrane, naloge, aplikacije, podešavanja i još mnogo toga."</string>
-    <string name="user_settings_footer_text" product="default" msgid="1470859614968237491">"Delite telefon tako što ćete dodati nove korisnike. Svaki korisnik ima lični prostor na telefonu za prilagođene početne ekrane, naloge, aplikacije, podešavanja i još mnogo toga."</string>
+    <string name="user_settings_footer_text" product="device" msgid="4573858247439190545">"Delite uređaj tako što ćete dodati nove korisnike. Svaki korisnik ima lični prostor na uređaju za prilagođene početne ekrane, naloge, aplikacije, podešavanja i drugo."</string>
+    <string name="user_settings_footer_text" product="tablet" msgid="780018221428132918">"Delite tablet tako što ćete dodati nove korisnike. Svaki korisnik ima lični prostor na tabletu za prilagođene početne ekrane, naloge, aplikacije, podešavanja i drugo."</string>
+    <string name="user_settings_footer_text" product="default" msgid="1470859614968237491">"Delite telefon tako što ćete dodati nove korisnike. Svaki korisnik ima lični prostor na telefonu za prilagođene početne ekrane, naloge, aplikacije, podešavanja i drugo."</string>
     <string name="user_list_title" msgid="6670258645246192324">"Korisnici i profili"</string>
     <string name="user_add_user_or_profile_menu" msgid="4220679989900149336">"Dodaj korisnika ili profil"</string>
     <string name="user_add_user_menu" msgid="9006572936456324794">"Dodaj korisnika"</string>
diff --git a/tests/CarDeveloperOptions/res/values-be-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-be-nokeys/strings.xml
new file mode 100644
index 0000000..7e52eb0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-be-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Кіраванне прыкладаннямі"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-be/arrays.xml b/tests/CarDeveloperOptions/res/values-be/arrays.xml
new file mode 100644
index 0000000..98fefea
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-be/arrays.xml
@@ -0,0 +1,288 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Амерыка"</item>
+    <item msgid="4791956477275129121">"Еўропа"</item>
+    <item msgid="3812126832016254559">"Афрыка"</item>
+    <item msgid="2765816300353408280">"Азія"</item>
+    <item msgid="6683489385344409742">"Аўстралія"</item>
+    <item msgid="5194868215515664953">"Ціхі акіян"</item>
+    <item msgid="7044520255415007865">"Усе"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Малы"</item>
+    <item msgid="591935967183159581">"Стандартны"</item>
+    <item msgid="1714184661981538355">"Вялікі"</item>
+    <item msgid="6195563047686707484">"Найвялікшы"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Сканаванне..."</item>
+    <item msgid="8058143476674427024">"Падключэнне да сеткі <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Аўтэнтыфікацыя ў сетцы <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Атрыманне IP-адраса ў сетцы <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Падключаны да сеткi <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Прыпынена"</item>
+    <item msgid="4133290864821295785">"Адключэнне ад сеткі <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Адключана"</item>
+    <item msgid="2847316776634969068">"Няўдала"</item>
+    <item msgid="4390990424746035383">"Заблакiравана"</item>
+    <item msgid="3618248791367063949">"Дрэнная сувязь часова пазбегнута"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Націсніце кнопку"</item>
+    <item msgid="7401896200768713930">"PIN-код ад пірынгавай прылады"</item>
+    <item msgid="4526848028011846710">"PIN-код для гэтай прылады"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Падключана"</item>
+    <item msgid="983792611851499732">"Запрошаны"</item>
+    <item msgid="5438273405428201793">"Няўдала"</item>
+    <item msgid="4646663015449312554">"Даступна"</item>
+    <item msgid="3230556734162006146">"Выхад за дазволеныя межы"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Апошнія 30 дзён"</item>
+    <item msgid="3211287705232736964">"Заданне цыклу расходу..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Час выкарыстання"</item>
+    <item msgid="2784401352592276015">"Апошняе выкарыстанне"</item>
+    <item msgid="249854287216326349">"Назва прыкладання"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Няма"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Няма"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Статычны"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Няма"</item>
+    <item msgid="1464741437353223198">"Кіраўніцтва"</item>
+    <item msgid="5793600062487886090">"Аўтаканфігурацыя проксі"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Няма"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ці CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Унутраная памяць прылады"</item>
+    <item msgid="3186681694079967527">"Зменная SD-карта"</item>
+    <item msgid="6902033473986647035">"Няхай вырашыць сістэма"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Месцазнаходжанне"</item>
+    <item msgid="6842381562497597649">"Асабістае"</item>
+    <item msgid="3966700236695683444">"Абмен паведамленнямі"</item>
+    <item msgid="8563996233342430477">"Медыя"</item>
+    <item msgid="5323851085993963783">"Прылада"</item>
+  </string-array>
+    <!-- no translation found for app_ops_summaries:46 (4933375960222609935) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+    <!-- no translation found for app_ops_labels:48 (8291198322681891160) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Кароткая"</item>
+    <item msgid="4816511817309094890">"Сярэдняя"</item>
+    <item msgid="8305084671259331134">"Доўгая"</item>
+  </string-array>
+    <!-- no translation found for captioning_typeface_selector_titles:4 (1487203730637617924) -->
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_edge_type_selector_titles:4 (8019330250538856521) -->
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN з загадзя размеркаванымі ключамі"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN з сертыфікатамі"</item>
+    <item msgid="312397853907741968">"IPSec VPN з папярэдне размеркаванымі ключамі і аўтэнтыфікацыяй Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN з сертыфікатамі і аўтэнтыфікацыяй Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN з сертыфікатамі і гібрыднай аўтэнтыфікацыяй"</item>
+  </string-array>
+    <!-- no translation found for vpn_proxy_settings:0 (2958623927055120839) -->
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Адключана"</item>
+    <item msgid="8754480102834556765">"Ініцыялізацыя..."</item>
+    <item msgid="3351334355574270250">"Падключэнне..."</item>
+    <item msgid="8303882153995748352">"Падключана"</item>
+    <item msgid="9135049670787351881">"Тайм-аўт"</item>
+    <item msgid="2124868417182583926">"Няўдала"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Запытацца"</item>
+    <item msgid="7718817231348607934">"Нiколi не дазваляць"</item>
+    <item msgid="8184570120217958741">"Заўсёды дазваляць"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Пастаянны"</item>
+    <item msgid="167418068739176448">"Папулярная дзейнасць"</item>
+    <item msgid="4760813290195199773">"Важна (на пярэднім плане)"</item>
+    <item msgid="2328684826817647595">"Важна (у фоне)"</item>
+    <item msgid="7746406490652867365">"Рэзервовае капіраванне"</item>
+    <item msgid="5597404364389196754">"Вялікая вага"</item>
+    <item msgid="1290888779300174556">"Сэрвіс (працуе)"</item>
+    <item msgid="7241098542073939046">"Сэрвіс (перазапуск)"</item>
+    <item msgid="6610439017684111046">"Прыёмнік"</item>
+    <item msgid="7367606086319921117">"Галоўны"</item>
+    <item msgid="3344660712396741826">"Апошняя дзейнасць"</item>
+    <item msgid="5006559348883303865">"Кэшавана (дзейнасць)"</item>
+    <item msgid="8633480732468137525">"Кэшавана (кліент дзейнасці)"</item>
+    <item msgid="6248998242443333892">"Кэшавана (пуста)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Сіне-зялёны"</item>
+    <item msgid="3228505970082457852">"Сiнi"</item>
+    <item msgid="6590260735734795647">"Індыга"</item>
+    <item msgid="3521763377357218577">"Фіялетавы"</item>
+    <item msgid="5932337981182999919">"Ружовы"</item>
+    <item msgid="5642914536624000094">"Чырвоны"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Старэйшыя за 30 дзён"</item>
+    <item msgid="8699273238891265610">"Старэйшыя за 60 дзён"</item>
+    <item msgid="8346279419423837266">"Старэйшыя за 90 дзён"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Вызначаць аўтаматычна"</item>
+    <item msgid="773943026484148895">"Лімітная"</item>
+    <item msgid="1008268820118852416">"Безлімітная"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Выкарыстоўваць выпадковы MAC-адрас (стандартна)"</item>
+    <item msgid="214234417308375326">"Выкарыстоўваць прыладу MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Не"</item>
+    <item msgid="1930581185557754880">"Так"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Цёмная"</item>
+    <item msgid="5079453644557603349">"Светлая"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Выключана"</item>
+    <item msgid="4072198137051566919">"Наладзіць"</item>
+    <item msgid="2473005316958868509">"Падрабязна"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Толькі дамашнія сеткі"</item>
+    <item msgid="1161026694891024702">"Аўтаматычна"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Прыярытэт GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Толькі GSM"</item>
+    <item msgid="8579197487913425819">"Толькі WCDMA"</item>
+    <item msgid="8465243227505412498">"Аўтаматычны выбар GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Аўтаматычны выбар CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA без EvDo"</item>
+    <item msgid="7278975240951052041">"Толькі EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Глабальная"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Толькі TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"R-UIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Глабальная"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-be/strings.xml b/tests/CarDeveloperOptions/res/values-be/strings.xml
index d58fa11..23e5580 100644
--- a/tests/CarDeveloperOptions/res/values-be/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-be/strings.xml
@@ -483,9 +483,9 @@
     <string name="security_settings_fingerprint_enroll_enrolling_skip" msgid="1473280156532146933">"Пазней"</string>
     <string name="setup_fingerprint_enroll_enrolling_skip_title" msgid="2816424026528101690">"Прапусціць усталёўку адбітка пальца?"</string>
     <string name="setup_fingerprint_enroll_enrolling_skip_message" msgid="8139299964344809780">"Вы вырашылі выкарыстоўваць свой адбітак пальца як адзін са спосабоў разблакіроўкі тэлефона. Калі вы прапусціце гэты крок зараз, вам трэба будзе ўсталяваць гэты спосаб пазней. Усталёўка займае ўсяго каля хвіліны."</string>
-    <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="tablet" msgid="1384438077720821127">"Абараніце планшэт з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ім карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць лічбавы адбітак. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
-    <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="device" msgid="7207112623501771824">"Абараніце прыладу з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ёю карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць лічбавы адбітак. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
-    <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="default" msgid="7623975730623531606">"Абараніце тэлефон з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ім карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць лічбавы адбітак. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
+    <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="tablet" msgid="1384438077720821127">"Абараніце планшэт з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ім карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць аўтэнтыфікацыю па адбітку пальца. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
+    <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="device" msgid="7207112623501771824">"Абараніце прыладу з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ёю карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць аўтэнтыфікацыю па адбітку пальца. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
+    <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="default" msgid="7623975730623531606">"Абараніце тэлефон з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ім карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць аўтэнтыфікацыю па адбітку пальца. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
     <string name="face_lock_screen_setup_skip_dialog_text" product="tablet" msgid="2998863111689476550">"Абараніце планшэт з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ім карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць распазнаванне твару. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
     <string name="face_lock_screen_setup_skip_dialog_text" product="device" msgid="6780557259734235952">"Абараніце прыладу з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ёю карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць распазнаванне твару. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
     <string name="face_lock_screen_setup_skip_dialog_text" product="default" msgid="8541640018478926775">"Абараніце тэлефон з дапамогай опцыі блакіроўкі экрана, каб ніхто не змог ім карыстацца ў выпадку прапажы ці крадзяжу. Опцыя блакіроўкі экрана таксама спатрэбіцца вам, каб наладзіць распазнаванне твару. Націсніце \"Скасаваць\", а потым задайце PIN-код ці выберыце іншую опцыю блакіроўкі экрана."</string>
@@ -1237,7 +1237,7 @@
     <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Укл. / Калі глядзець на экран, ён не будзе выключацца"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Выключана"</string>
     <string name="adaptive_sleep_description" msgid="812673735459170009">"Не дазваляе экрану выключацца, калі на яго глядзяць"</string>
-    <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Адаптыўны рэжым з дапамогай пярэдняй камеры вызначае, калі хто-небудзь глядзіць на экран. Калі ён уключаны, відарысы не захоўваюцца і не адпраўляюцца ў Google."</string>
+    <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Адаптыўны рэжым з дапамогай пярэдняй камеры вызначае, калі хто-небудзь глядзіць на экран. Функцыя працуе толькі на прыладзе: відарысы не захоўваюцца і не адпраўляюцца ў Google."</string>
     <string name="night_display_title" msgid="1305002424893349814">"Начны рэжым"</string>
     <string name="night_display_text" msgid="5330502493684652527">"У начным рэжыме экран будзе мець бурштынавае адценне. Так вам будзе зручней глядзець на экран пры цьмяным асвятленні, а таксама лягчэй заснуць."</string>
     <string name="night_display_auto_mode_title" msgid="8493573087102481588">"Расклад"</string>
@@ -1615,8 +1615,8 @@
     <string name="reset_esim_error_msg" msgid="4716366079119742235">"Памылка сцірання спампаваных SIM.\n\nПеразапусціце прыладу і паўтарыце спробу."</string>
     <string name="master_clear_title" msgid="1560712943955904673">"Сцерці ўсе даныя (cкід да заводскіх налад)"</string>
     <string name="master_clear_short_title" msgid="919098101581335101">"Сцерці ўсе даныя (скід да заводскіх налад)"</string>
-    <string name="master_clear_desc" product="tablet" msgid="3432373610755760899">"Гэта дазволіць сцерці ўсе даныя з "<b>"унутранага сховішча"</b>" вашага планшэта, у тым ліку:\n\n"<li>"ваш Уліковы запiс Google;"</li>\n<li>"сістэмныя даныя і налады, а таксама даныя і налады праграм;"</li>\n<li>"спампаваныя праграмы"</li></string>
-    <string name="master_clear_desc" product="default" msgid="8765543541962866697">"Гэта дазволіць сцерці ўсе даныя з "<b>"унутранага сховішча"</b>" вашага тэлефона, у тым ліку:\n\n"<li>"ваш Уліковы запіс Google;"</li>\n<li>"сістэмныя даныя і налады, а таксама даныя і налады праграм;"</li>\n<li>"спампаваныя праграмы"</li></string>
+    <string name="master_clear_desc" product="tablet" msgid="3432373610755760899">"Гэта дазволіць сцерці ўсе даныя з "<b>"унутранага сховішча"</b>" вашага планшэта, у тым ліку:\n\n"<li>"Ваш Уліковы запiс Google"</li>\n<li>"Сістэмныя даныя і налады, а таксама даныя і налады праграм"</li>\n<li>"Спампаваныя праграмы"</li></string>
+    <string name="master_clear_desc" product="default" msgid="8765543541962866697">"Гэта дазволіць сцерці ўсе даныя з "<b>"унутранага сховішча"</b>" вашага тэлефона, у тым ліку:\n\n"<li>"Ваш Уліковы запіс Google"</li>\n<li>"Сістэмныя даныя і налады, а таксама даныя і налады праграм"</li>\n<li>"Спампаваныя праграмы"</li></string>
     <string name="master_clear_accounts" product="default" msgid="3432884235445405376">\n\n"У дадзены момант вы зайшлі ў наступныя ўліковыя запісы:\n"</string>
     <string name="master_clear_other_users_present" product="default" msgid="5993259656117566767">\n\n"На гэтай прыладзе ёсць іншыя карыстальнікі.\n"</string>
     <string name="master_clear_desc_also_erases_external" msgid="3947303501615091903"><li>"Музыка"</li>\n<li>"Фатаграфіі"</li>\n<li>"Іншыя дадзеныя карыстальніка"</li></string>
@@ -3023,7 +3023,7 @@
     <string name="call_manager_title" msgid="1118074011469650421">"Call Manager (Менеджар выклікаў)"</string>
     <!-- no translation found for call_manager_summary (1232655174841493040) -->
     <skip />
-    <string name="cell_broadcast_settings" msgid="5750066270993255966">"Надзвычайныя абвесткі"</string>
+    <string name="cell_broadcast_settings" msgid="5750066270993255966">"Абвесткі аб надзвычайных сітуацыях"</string>
     <string name="network_operators_settings" msgid="7822337582828465633">"Сеткавыя аператары"</string>
     <string name="access_point_names" msgid="7992382237358800596">"Назвы пунктаў доступу"</string>
     <string name="enhanced_4g_lte_mode_title" msgid="1624079276378568594">"VoLTE"</string>
@@ -3871,7 +3871,7 @@
     <string name="background_check_title" msgid="4136736684290307970">"Поўны доступ у фоне"</string>
     <string name="assist_access_context_title" msgid="2274614501747710439">"Выкарыстоўваць тэкст з экрана"</string>
     <string name="assist_access_context_summary" msgid="5867997494395842785">"Дазволіць праграме-памочніку доступ да змесціва на экране ў выглядзе тэксту"</string>
-    <string name="assist_access_screenshot_title" msgid="1991014038776117688">"Выкарыстоўваць скрыншот"</string>
+    <string name="assist_access_screenshot_title" msgid="1991014038776117688">"Выкарыстоўваць здымак экрана"</string>
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Дазволіць праграме-памочніку доступ да відарыса на экране"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"Падсвечванне экрана"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"Падсвечваць краі экрана, калі праграма-памочнік атрымлівае доступ да тэксту на экране або на здымке экрана"</string>
diff --git a/tests/CarDeveloperOptions/res/values-bg-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-bg-nokeys/strings.xml
new file mode 100644
index 0000000..9efd3fa
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-bg-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Управление на приложенията"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-bg/arrays.xml b/tests/CarDeveloperOptions/res/values-bg/arrays.xml
new file mode 100644
index 0000000..f95f85f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-bg/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америка"</item>
+    <item msgid="4791956477275129121">"Европа"</item>
+    <item msgid="3812126832016254559">"Африка"</item>
+    <item msgid="2765816300353408280">"Азия"</item>
+    <item msgid="6683489385344409742">"Австралия"</item>
+    <item msgid="5194868215515664953">"тихоокеанско"</item>
+    <item msgid="7044520255415007865">"Всички"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 секунди"</item>
+    <item msgid="772029947136115322">"30 секунди"</item>
+    <item msgid="8743663928349474087">"1 минута"</item>
+    <item msgid="1506508631223164814">"2 минути"</item>
+    <item msgid="8664703938127907662">"5 минути"</item>
+    <item msgid="5827960506924849753">"10 минути"</item>
+    <item msgid="6677424950124253938">"30 минути"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Малък"</item>
+    <item msgid="591935967183159581">"По подразбиране"</item>
+    <item msgid="1714184661981538355">"Голям"</item>
+    <item msgid="6195563047686707484">"Най-голямо"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Сканира се..."</item>
+    <item msgid="8058143476674427024">"Установява се връзка с/ъс <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Удостоверява се със: <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"IP адресът се получава от <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Установена е връзка с(ъс) <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Прекъсната"</item>
+    <item msgid="4133290864821295785">"Изключва се от <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Изкл."</item>
+    <item msgid="2847316776634969068">"Неуспешно"</item>
+    <item msgid="4390990424746035383">"Блокирано"</item>
+    <item msgid="3618248791367063949">"Временно се избягва лоша връзка"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Бутон"</item>
+    <item msgid="7401896200768713930">"ПИН от съответното устройство"</item>
+    <item msgid="4526848028011846710">"ПИН от това у-во"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Установена е връзка"</item>
+    <item msgid="983792611851499732">"Има покана"</item>
+    <item msgid="5438273405428201793">"Неуспешно"</item>
+    <item msgid="4646663015449312554">"Налице"</item>
+    <item msgid="3230556734162006146">"Извън обхват"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 минути"</item>
+    <item msgid="2759776603549270587">"5 минути"</item>
+    <item msgid="167772676068860015">"1 час"</item>
+    <item msgid="5985477119043628504">"Времето за изчакване да не изтича никога"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Последните 30 дни"</item>
+    <item msgid="3211287705232736964">"Цикъл на пренос..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Време на употреба"</item>
+    <item msgid="2784401352592276015">"Последно използване"</item>
+    <item msgid="249854287216326349">"Име на приложението"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Нищо"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Нищо"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Статични"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Нищо"</item>
+    <item msgid="1464741437353223198">"Ръководство"</item>
+    <item msgid="5793600062487886090">"Прокси: Автоконфиг."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Нищо"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP или CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Вътрешно хранилище на устройство"</item>
+    <item msgid="3186681694079967527">"SD карта, която може да се премахва"</item>
+    <item msgid="6902033473986647035">"Нека системата да реши"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Местоположение"</item>
+    <item msgid="6842381562497597649">"Лични"</item>
+    <item msgid="3966700236695683444">"Съобщения"</item>
+    <item msgid="8563996233342430477">"Носители"</item>
+    <item msgid="5323851085993963783">"Устройство"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"местоположение с ниска точност"</item>
+    <item msgid="1830619568689922920">"местоположение с висока точност"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"вибриране"</item>
+    <item msgid="8632513128515114092">"четене на контактите"</item>
+    <item msgid="3741042113569620272">"промяна на контактите"</item>
+    <item msgid="4204420969709009931">"четене на списъка с обажданията"</item>
+    <item msgid="2260380357119423209">"промяна на списъка с обажданията"</item>
+    <item msgid="6550710385014530934">"четене на календара"</item>
+    <item msgid="3575906174264853951">"промяна на календара"</item>
+    <item msgid="4319843242568057174">"сканиране за Wi-Fi"</item>
+    <item msgid="2981791890467303819">"известие"</item>
+    <item msgid="6617825156152476692">"сканиране за сигнал"</item>
+    <item msgid="8865260890611559753">"обаждане по телефона"</item>
+    <item msgid="3254999273961542982">"четене на SMS"</item>
+    <item msgid="7711446453028825171">"запис на SMS"</item>
+    <item msgid="6123238544099198034">"получаване на SMS"</item>
+    <item msgid="838342167431596036">"получаване на спешен SMS"</item>
+    <item msgid="8554432731560956686">"получаване на MMS"</item>
+    <item msgid="7464863464299515059">"получаване на насочено WAP съобщение"</item>
+    <item msgid="310463075729606765">"изпращане на SMS"</item>
+    <item msgid="7338021933527689514">"четене на ICC SMS"</item>
+    <item msgid="6130369335466613036">"запис на ICC SMS"</item>
+    <item msgid="6536865581421670942">"промяна на настройките"</item>
+    <item msgid="4547203129183558973">"рисуване върху елемент"</item>
+    <item msgid="9080347512916542840">"достъп до известията"</item>
+    <item msgid="5332718516635907742">"камера"</item>
+    <item msgid="6098422447246167852">"записва звук"</item>
+    <item msgid="9182794235292595296">"възпроизвеждане на звук"</item>
+    <item msgid="8760743229597702019">"четене на буферната памет"</item>
+    <item msgid="2266923698240538544">"промяна на буферната памет"</item>
+    <item msgid="1801619438618539275">"бутони за мултимедия"</item>
+    <item msgid="31588119965784465">"фокусиране на звука"</item>
+    <item msgid="7565226799008076833">"основна сила на звука"</item>
+    <item msgid="5420704980305018295">"сила на звука за глас"</item>
+    <item msgid="5797363115508970204">"сила на звука при звънене"</item>
+    <item msgid="8233154098550715999">"сила на звука за мултимедия"</item>
+    <item msgid="5196715605078153950">"сила на звука на будилника"</item>
+    <item msgid="394030698764284577">"сила на звука за известия"</item>
+    <item msgid="8952898972491680178">"сила на звука за Bluetooth"</item>
+    <item msgid="8506227454543690851">"оставяне в будно състояние"</item>
+    <item msgid="1108160036049727420">"наблюдение на местоположението"</item>
+    <item msgid="1496205959751719491">"наблюдение на заявките за местоположение, изразходващи много енергия"</item>
+    <item msgid="3776296279910987380">"получаване на статистически данни за употребата"</item>
+    <item msgid="8827100324471975602">"заглушаване/включване на микрофона"</item>
+    <item msgid="6880736730520126864">"показване на съобщение в изскачащо прозорче"</item>
+    <item msgid="4933375960222609935">"прожектиране на мултимедия"</item>
+    <item msgid="8357907018938895462">"активиране на виртуална частна мрежа (VPN)"</item>
+    <item msgid="8143812849911310973">"запис на тапет"</item>
+    <item msgid="6266277260961066535">"структура за помощ"</item>
+    <item msgid="7715498149883482300">"екранна снимка за помощ"</item>
+    <item msgid="4046679376726313293">"четене на състоянието на телефона"</item>
+    <item msgid="6329507266039719587">"добавяне на гласова поща"</item>
+    <item msgid="7692440726415391408">"използване на SIP"</item>
+    <item msgid="8572453398128326267">"обработване на изходящо обаждане"</item>
+    <item msgid="7775674394089376306">"отпечатък"</item>
+    <item msgid="3182815133441738779">"телесни сензори"</item>
+    <item msgid="2793100005496829513">"четене на клетъчни излъчвания"</item>
+    <item msgid="2633626056029384366">"мнимо местоположение"</item>
+    <item msgid="8356842191824684631">"четене на хранилището"</item>
+    <item msgid="5671906070163291500">"запис в хранилището"</item>
+    <item msgid="2791955098549340418">"включване на екрана"</item>
+    <item msgid="5599435119609178367">"създаване на профили"</item>
+    <item msgid="1165623660533024666">"пускане на заден план"</item>
+    <item msgid="6423861043647911030">"сила на звука за услугите за достъпност"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Кратко"</item>
+    <item msgid="4816511817309094890">"Средна важност"</item>
+    <item msgid="8305084671259331134">"Продължително"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"По подразбиране"</item>
+    <item msgid="4147246073737933622">"Безсерифни"</item>
+    <item msgid="3117680749167407907">"Безсерифни сбити"</item>
+    <item msgid="6529379119163117545">"Безсерифни непропорционални"</item>
+    <item msgid="1487203730637617924">"Серифни"</item>
+    <item msgid="4937790671987480464">"Серифни непропорционални"</item>
+    <item msgid="4448481989108928248">"Неформални"</item>
+    <item msgid="4627069151979553527">"Курсивни"</item>
+    <item msgid="6896773537705206194">"Малки главни букви"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"По подразбиране"</item>
+    <item msgid="6488643537808152001">"Нищо"</item>
+    <item msgid="552332815156010137">"С контур"</item>
+    <item msgid="7187891159463789272">"Със сянка"</item>
+    <item msgid="8019330250538856521">"Повдигнати"</item>
+    <item msgid="8987385315647049787">"Вдлъбнати"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Стандартен за приложението"</item>
+    <item msgid="8611890312638868524">"Бяло върху черно"</item>
+    <item msgid="5891360837786277638">"Черно върху бяло"</item>
+    <item msgid="2798457065945456853">"Жълто върху черно"</item>
+    <item msgid="5799049811524553967">"Жълто върху синьо"</item>
+    <item msgid="3673930830658169860">"Персонализирани"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN с PPTP"</item>
+    <item msgid="1349760781118368659">"VPN с L2TP/IPSec с предварително споделени ключове"</item>
+    <item msgid="6128519070545038358">"VPN с L2TP/IPSec със сертификати"</item>
+    <item msgid="312397853907741968">"VPN с IPSec с предварително споделени ключове и удостоверяване за Xauth"</item>
+    <item msgid="3319427315593649917">"VPN с IPSec със сертификати и удостоверяване за Xauth"</item>
+    <item msgid="8258927774145391041">"VPN с IPSec със сертификати и хибридно удостоверяване"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Няма"</item>
+    <item msgid="1157046369795346308">"Ръководство"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Изкл."</item>
+    <item msgid="8754480102834556765">"Подготвя се за работа..."</item>
+    <item msgid="3351334355574270250">"Свързва се..."</item>
+    <item msgid="8303882153995748352">"Установена е връзка"</item>
+    <item msgid="9135049670787351881">"Време за изчакване"</item>
+    <item msgid="2124868417182583926">"Неуспешно"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Да се пита"</item>
+    <item msgid="7718817231348607934">"Никога да не се разрешава"</item>
+    <item msgid="8184570120217958741">"Винаги да се разрешава"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Постоянно"</item>
+    <item msgid="167418068739176448">"Водеща активност"</item>
+    <item msgid="4760813290195199773">"Важно (на преден план)"</item>
+    <item msgid="2328684826817647595">"Важно (на заден план)"</item>
+    <item msgid="7746406490652867365">"Резервно копие"</item>
+    <item msgid="5597404364389196754">"Голямо натоварване"</item>
+    <item msgid="1290888779300174556">"Услуга (изпълнява се)"</item>
+    <item msgid="7241098542073939046">"Услуга (рестартира се)"</item>
+    <item msgid="6610439017684111046">"Приемник"</item>
+    <item msgid="7367606086319921117">"Начален екран"</item>
+    <item msgid="3344660712396741826">"Последна активност"</item>
+    <item msgid="5006559348883303865">"Кеширано (активност)"</item>
+    <item msgid="8633480732468137525">"Кеширано (клиентска програма за активността)"</item>
+    <item msgid="6248998242443333892">"Кеширано (празно)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"синьо-зелено"</item>
+    <item msgid="3228505970082457852">"Син"</item>
+    <item msgid="6590260735734795647">"индиго"</item>
+    <item msgid="3521763377357218577">"лилаво"</item>
+    <item msgid="5932337981182999919">"розово"</item>
+    <item msgid="5642914536624000094">"Червен"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"По-стари от 30 дни"</item>
+    <item msgid="8699273238891265610">"По-стари от 60 дни"</item>
+    <item msgid="8346279419423837266">"По-стари от 90 дни"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Автоматично откриване"</item>
+    <item msgid="773943026484148895">"Третиране като мрежа с отчитане"</item>
+    <item msgid="1008268820118852416">"Третиране като мрежа без отчитане"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Използване на произв. генериран MAC адрес (станд.)"</item>
+    <item msgid="214234417308375326">"Използване на MAC адреса на устройството"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Не"</item>
+    <item msgid="1930581185557754880">"Да"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Тъмна"</item>
+    <item msgid="5079453644557603349">"Светла"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Изключено"</item>
+    <item msgid="4072198137051566919">"Отстраняване на грешки"</item>
+    <item msgid="2473005316958868509">"Подробно"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Само домашни мрежи"</item>
+    <item msgid="1161026694891024702">"Автоматично"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Предпочита се GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Само GSM"</item>
+    <item msgid="8579197487913425819">"Само WCDMA"</item>
+    <item msgid="8465243227505412498">"Авт. GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Авт. CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA без EvDo"</item>
+    <item msgid="7278975240951052041">"Само EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Глобална мрежа"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Само TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Глобална мрежа"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-bn-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-bn-nokeys/strings.xml
new file mode 100644
index 0000000..414969e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-bn-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"অ্যাপ্লিকেশানগুলি পরিচালনা করুন"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-bn/arrays.xml b/tests/CarDeveloperOptions/res/values-bn/arrays.xml
new file mode 100644
index 0000000..904b615
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-bn/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"আমেরিকা"</item>
+    <item msgid="4791956477275129121">"ইউরোপ"</item>
+    <item msgid="3812126832016254559">"আফ্রিকা"</item>
+    <item msgid="2765816300353408280">"এশিয়া"</item>
+    <item msgid="6683489385344409742">"অস্ট্রেলিয়া"</item>
+    <item msgid="5194868215515664953">"পেসিফিক"</item>
+    <item msgid="7044520255415007865">"সমস্ত"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"১৫ সেকেন্ড"</item>
+    <item msgid="772029947136115322">"৩০ সেকেন্ড"</item>
+    <item msgid="8743663928349474087">"১ মিনিট"</item>
+    <item msgid="1506508631223164814">"২ মিনিট"</item>
+    <item msgid="8664703938127907662">"৫ মিনিট"</item>
+    <item msgid="5827960506924849753">"১০ মিনিট"</item>
+    <item msgid="6677424950124253938">"৩০ মিনিট"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"কানেক্ট আছে"</item>
+    <item msgid="983792611851499732">"আমন্ত্রিত"</item>
+    <item msgid="5438273405428201793">"অসফল"</item>
+    <item msgid="4646663015449312554">"উপলভ্য"</item>
+    <item msgid="3230556734162006146">"পরিষেবার বাইরে"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"২ মিনিট"</item>
+    <item msgid="2759776603549270587">"৫ মিনিট"</item>
+    <item msgid="167772676068860015">"১ ঘণ্টা"</item>
+    <item msgid="5985477119043628504">"কখনই সময় শেষ হবে না"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"গত ৩০ দিন"</item>
+    <item msgid="3211287705232736964">"ব্যবহার চক্র সেট করুন..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ব্যবহারের সময়"</item>
+    <item msgid="2784401352592276015">"সর্বশেষ ব্যবহার হয়েছে"</item>
+    <item msgid="249854287216326349">"অ্যাপ্লিকেশান নাম"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"কোনো কিছুই নয়"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"কোনো কিছুই নয়"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"কোনো কিছুই নয়"</item>
+    <item msgid="1464741437353223198">"ম্যানুয়াল"</item>
+    <item msgid="5793600062487886090">"প্রক্সি স্বতঃ-কনফিগারেশন"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"কোনো কিছুই নয়"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP বা CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ইন্টারনাল ডিভাইসের স্টোরেজ"</item>
+    <item msgid="3186681694079967527">"অপসারণযোগ্য SD কার্ড"</item>
+    <item msgid="6902033473986647035">"সিস্টেমকে সিদ্ধান্ত নিতে দিন"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"লোকেশন"</item>
+    <item msgid="6842381562497597649">"ব্যক্তিগত"</item>
+    <item msgid="3966700236695683444">"মেসেজিং"</item>
+    <item msgid="8563996233342430477">"মিডিয়া"</item>
+    <item msgid="5323851085993963783">"ডিভাইস"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"অনির্দিষ্ট লোকেশন"</item>
+    <item msgid="1830619568689922920">"সূক্ষ্ম লোকেশন"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ভাইব্রেট"</item>
+    <item msgid="8632513128515114092">"পরিচিতিগুলি পড়ুন"</item>
+    <item msgid="3741042113569620272">"পরিচিতি পরিবর্তন করুন"</item>
+    <item msgid="4204420969709009931">"কল লগ পড়ুন"</item>
+    <item msgid="2260380357119423209">"কল লগ পরিবর্তন করুন"</item>
+    <item msgid="6550710385014530934">"ক্যালেন্ডার পড়ুন"</item>
+    <item msgid="3575906174264853951">"ক্যালেন্ডারে পরিবর্তন করুন"</item>
+    <item msgid="4319843242568057174">"wi-fi স্ক্যান"</item>
+    <item msgid="2981791890467303819">"বিজ্ঞপ্তি"</item>
+    <item msgid="6617825156152476692">"সেল স্ক্যান"</item>
+    <item msgid="8865260890611559753">"ফোন করুন"</item>
+    <item msgid="3254999273961542982">"SMS পড়ুন"</item>
+    <item msgid="7711446453028825171">"SMS লিখুন"</item>
+    <item msgid="6123238544099198034">"SMS পান"</item>
+    <item msgid="838342167431596036">"জরুরী SMS পান"</item>
+    <item msgid="8554432731560956686">"MMS পান"</item>
+    <item msgid="7464863464299515059">"WAP পুশ পান"</item>
+    <item msgid="310463075729606765">"SMS পাঠান"</item>
+    <item msgid="7338021933527689514">"ICC SMS পড়ুন"</item>
+    <item msgid="6130369335466613036">"ICC SMS লিখুন"</item>
+    <item msgid="6536865581421670942">"সেটিংস সংশোধন করুন"</item>
+    <item msgid="4547203129183558973">"উপরে অঙ্কন করুন"</item>
+    <item msgid="9080347512916542840">"বিজ্ঞপ্তিগুলি অ্যাক্সেস করুন"</item>
+    <item msgid="5332718516635907742">"ক্যামেরা"</item>
+    <item msgid="6098422447246167852">"অডিও রেকর্ড"</item>
+    <item msgid="9182794235292595296">"অডিও প্লে করুন"</item>
+    <item msgid="8760743229597702019">"ক্লিপবোর্ড পড়ুন"</item>
+    <item msgid="2266923698240538544">"ক্লিপবোর্ড সংশোধন করুন"</item>
+    <item msgid="1801619438618539275">"মিডিয়া বোতাম"</item>
+    <item msgid="31588119965784465">"অডিও ফোকাস করুন"</item>
+    <item msgid="7565226799008076833">"মাস্টার ভলিউম"</item>
+    <item msgid="5420704980305018295">"ভয়েস ভলিউম"</item>
+    <item msgid="5797363115508970204">"রিং ভলিউম"</item>
+    <item msgid="8233154098550715999">"মিডিয়া ভলিউম"</item>
+    <item msgid="5196715605078153950">"অ্যালার্মের ভলিউম"</item>
+    <item msgid="394030698764284577">"বিজ্ঞপ্তির ভলিউম"</item>
+    <item msgid="8952898972491680178">"ব্লুটুথ এর ভলিউম"</item>
+    <item msgid="8506227454543690851">"জাগিয়ে রাখা"</item>
+    <item msgid="1108160036049727420">"লোকেশন নিরীক্ষণ করুন"</item>
+    <item msgid="1496205959751719491">"উচ্চ ক্ষমতার লোকেশন নিরীক্ষণ করুন"</item>
+    <item msgid="3776296279910987380">"ব্যবহারের পরিসংখ্যান পান"</item>
+    <item msgid="8827100324471975602">"মাইক্রোফোন মিউট/সশব্দ করুন"</item>
+    <item msgid="6880736730520126864">"টোস্ট দেখান"</item>
+    <item msgid="4933375960222609935">"মিডিয়া অভিক্ষেপ করুন"</item>
+    <item msgid="8357907018938895462">"VPN সক্রিয় করুন"</item>
+    <item msgid="8143812849911310973">"ওয়ালপেপারে লিখুন"</item>
+    <item msgid="6266277260961066535">"পরিকাঠামোর সহায়তা"</item>
+    <item msgid="7715498149883482300">"স্ক্রিনশটে সহায়তা"</item>
+    <item msgid="4046679376726313293">"ফোনে্র অবস্থা পড়ুন"</item>
+    <item msgid="6329507266039719587">"ভয়েসমেল যোগ করুন"</item>
+    <item msgid="7692440726415391408">"SIP ব্যবহার করুন"</item>
+    <item msgid="8572453398128326267">"আউটগোয়িং কলের প্রক্রিয়া করুন"</item>
+    <item msgid="7775674394089376306">"আঙ্গুলের ছাপ"</item>
+    <item msgid="3182815133441738779">"শরীরের সেন্সরগুলি"</item>
+    <item msgid="2793100005496829513">"সে্লে সম্প্রচারগুলি পড়ুন"</item>
+    <item msgid="2633626056029384366">"ছদ্ম লোকেশন"</item>
+    <item msgid="8356842191824684631">"সঞ্চয়স্থানে পড়ুন"</item>
+    <item msgid="5671906070163291500">"সঞ্চয়স্থানে লিখুন"</item>
+    <item msgid="2791955098549340418">"স্ক্রিন চালু করুন"</item>
+    <item msgid="5599435119609178367">"অ্যাকাউন্ট পেয়ে যান"</item>
+    <item msgid="1165623660533024666">"পটভূমি্তে অ্যাপ্স চলছে"</item>
+    <item msgid="6423861043647911030">"অ্যাক্সেসযোগ্যতার ভলিউম"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"স্বল্প"</item>
+    <item msgid="4816511817309094890">"মাঝারি"</item>
+    <item msgid="8305084671259331134">"দীর্ঘ"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ডিফল্ট"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif ঘনীভূত"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"ক্যাজুয়্যাল"</item>
+    <item msgid="4627069151979553527">"কার্সিভ"</item>
+    <item msgid="6896773537705206194">"Small Capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ডিফল্ট"</item>
+    <item msgid="6488643537808152001">"কোনো কিছুই নয়"</item>
+    <item msgid="552332815156010137">"রূপরেখা"</item>
+    <item msgid="7187891159463789272">"ড্রপ শ্যাডো"</item>
+    <item msgid="8019330250538856521">"উত্থাপিত"</item>
+    <item msgid="8987385315647049787">"চাপা"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"২৫%"</item>
+    <item msgid="4665048002584838262">"৫০%"</item>
+    <item msgid="1874668269931014581">"৭৫%"</item>
+    <item msgid="6462911487571123954">"১০০%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"আগে থেকে শেয়ার করা কীগুলির সাথে L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"শংসাপত্রগুলির সাথে L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"আগে থেকে শেয়ার করা কীগুলি এবং Xauth প্রমাণীকরণের সাথে IPSec VPN"</item>
+    <item msgid="3319427315593649917">"শংসাপত্রগুলি এবং Xauth প্রমাণীকরণের সাথে IPSec VPN"</item>
+    <item msgid="8258927774145391041">"শংসাপত্রগুলি এবং হাইব্রীড প্রমাণীকরণের সাথে IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"কোনো কিছুই নয়"</item>
+    <item msgid="1157046369795346308">"ম্যানুয়াল"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"জিজ্ঞাসা করুন"</item>
+    <item msgid="7718817231348607934">"কখনো অনুমতি দেবেন না"</item>
+    <item msgid="8184570120217958741">"সর্বদা অনুমতি দিন"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ক্রমাগত"</item>
+    <item msgid="167418068739176448">"শীর্ষ অ্যাক্টিভিটি"</item>
+    <item msgid="4760813290195199773">"গুরুত্বপূর্ণ (পুরোভাগে)"</item>
+    <item msgid="2328684826817647595">"গুরুত্বপূর্ণ (পশ্চাদপট)"</item>
+    <item msgid="7746406490652867365">"ব্যাক-আপ"</item>
+    <item msgid="5597404364389196754">"হেভি ওয়েট"</item>
+    <item msgid="1290888779300174556">"পরিষেবা (চলমান)"</item>
+    <item msgid="7241098542073939046">"পরিষেবা (আবার চালু হচ্ছে)"</item>
+    <item msgid="6610439017684111046">"রিসিভার"</item>
+    <item msgid="7367606086319921117">"হোম"</item>
+    <item msgid="3344660712396741826">"সর্বশেষ অ্যাক্টিভিটি"</item>
+    <item msgid="5006559348883303865">"ব্যবহৃত ক্যাশে (অ্যাক্টিভিটি)"</item>
+    <item msgid="8633480732468137525">"ব্যবহৃত ক্যাশে (অ্যাক্টিভিটি ক্লায়েন্ট)"</item>
+    <item msgid="6248998242443333892">"ব্যবহৃত ক্যাশে (খালি)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"টিল"</item>
+    <item msgid="3228505970082457852">"নীল"</item>
+    <item msgid="6590260735734795647">"বেগুনী নীলবর্ণ"</item>
+    <item msgid="3521763377357218577">"বেগুনী"</item>
+    <item msgid="5932337981182999919">"গোলাপী"</item>
+    <item msgid="5642914536624000094">"লাল"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"৩০ দিনের বেশি পুরনো"</item>
+    <item msgid="8699273238891265610">"৬০ দিনের বেশি পুরনো"</item>
+    <item msgid="8346279419423837266">"৯০ দিনের বেশি পুরনো"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"১"</item>
+    <item msgid="3118234477029486741">"০"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"অটোমেটিক শনাক্ত হতে দিন"</item>
+    <item msgid="773943026484148895">"মিটারিং চালু রাখুন"</item>
+    <item msgid="1008268820118852416">"মিটারিং এর দরকার নেই"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"র‍্যান্ডমাইজ করা MAC (ডিফল্ট)"</item>
+    <item msgid="214234417308375326">"MAC ডিভাইস ব্যবহার করুন"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"না"</item>
+    <item msgid="1930581185557754880">"হ্যাঁ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"গাঢ়"</item>
+    <item msgid="5079453644557603349">"হালকা"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"বন্ধ আছে"</item>
+    <item msgid="4072198137051566919">"ডিবাগ"</item>
+    <item msgid="2473005316958868509">"ভার্বোস"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"শুধুমাত্র হোমে"</item>
+    <item msgid="1161026694891024702">"অটোমেটিক"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA ব্যবহার করতে চাই"</item>
+    <item msgid="7581481130337402578">"শুধুমাত্র GSM"</item>
+    <item msgid="8579197487913425819">"শুধুমাত্র WCDMA"</item>
+    <item msgid="8465243227505412498">"অটোমেটিক GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"অটোমেটিক CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"EvDo ছাড়া CDMA"</item>
+    <item msgid="7278975240951052041">"শুধুমাত্র EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"গ্লোবাল"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"শুধুমাত্র TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/সিম"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"গ্লোবাল"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-bn/strings.xml b/tests/CarDeveloperOptions/res/values-bn/strings.xml
index d43defa..3d97d41 100644
--- a/tests/CarDeveloperOptions/res/values-bn/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-bn/strings.xml
@@ -982,7 +982,7 @@
     <string name="wifi_scan_always_turnon_message" msgid="7811846312032594248">"লোকেশন নির্ভুলতা উন্নতি ও অন্যান্য উদ্দ্যেশ্যের জন্য <xliff:g id="APP_NAME">%1$s</xliff:g> নেটওয়ার্ক স্ক্যান চালু করতে চাইছে, এমনকি ওয়াই-ফাই বন্ধ থাকা সত্ত্বেও।\n\nযে সব অ্যাপ্লিকেশানগুলি স্ক্যান করতে চাই তাদের জন্য এটির অনুমতি দেবেন?"</string>
     <string name="wifi_scan_always_turnoff_message" msgid="556993843641750002">"এটি বন্ধ করতে, ওভারফ্লো মেনুতে ‘উন্নত’ লেখায় যান"</string>
     <string name="wifi_scan_always_confirm_allow" msgid="8857664849515496237">"অনুমতি দিন"</string>
-    <string name="wifi_scan_always_confirm_deny" msgid="6190909841125369403">"আস্বীকার করুন"</string>
+    <string name="wifi_scan_always_confirm_deny" msgid="6190909841125369403">"অস্বীকার করুন"</string>
     <string name="wifi_hotspot_title" msgid="2631956539767069385">"কানেক্ট করতে প্রবেশ করবেন?"</string>
     <string name="wifi_hotspot_message" msgid="6762452611090766607">"<xliff:g id="APP_NAME">%1$s</xliff:g> এর চাহিদা অনুযায়ী নেটওয়ার্কের সাথে কানেক্ট হওয়ার পূর্বে আপনাকে অনলাইনে প্রবেশ করতে হবে।"</string>
     <string name="wifi_hotspot_connect" msgid="409079339360849653">"কানেক্ট করুন"</string>
@@ -3071,7 +3071,7 @@
     <string name="keywords_factory_data_reset" msgid="5865739790670615499">"ওয়াইপ করুন, মুছুন, ফিরিয়ে আনুন, মুছুন, সরান, ফ্যাক্টরি রিসেট করুন"</string>
     <string name="keywords_printing" msgid="8499167841024606451">"প্রিন্টার"</string>
     <string name="keywords_sounds" msgid="9155626618185269312">"স্পিকার বিপ, স্পিকার, ভলিউম, মিউট, সাইলেন্স, অডিও, মিউজিক"</string>
-    <string name="keywords_sounds_and_notifications_interruptions" msgid="7106220678170229900">"বিরক্ত করবেন না, বাধা দেওয়া, বাধা, বিরতি"</string>
+    <string name="keywords_sounds_and_notifications_interruptions" msgid="7106220678170229900">"বিরক্ত করবে না, বাধা দেওয়া, বাধা, বিরতি"</string>
     <string name="keywords_app" msgid="8058542404742867098">"RAM"</string>
     <string name="keywords_location" msgid="6439463166207072559">"আশেপাশে, লোকেশন, ইতিহাস, রিপোর্টিং, জিপিএস"</string>
     <string name="keywords_accounts" msgid="5908945725229306088">"অ্যাকাউন্ট"</string>
@@ -3123,7 +3123,7 @@
     <string name="keywords_battery_saver_sticky" msgid="8733804259716284872">"ব্যাটারি সেভার, স্টিকি, লেগে থাকা, পাওয়ার সেভার, ব্যাটারি"</string>
     <string name="default_sound" msgid="6675629744816442953">"ডিফল্ট সাউন্ড"</string>
     <string name="sound_settings_summary" msgid="8467549670633195109">"রিং ভলিউম <xliff:g id="PERCENTAGE">%1$s</xliff:g> তে রয়েছে"</string>
-    <string name="sound_dashboard_summary" msgid="5187301919242823508">"ভলিউম, কম্পন, বিরক্ত করবেন না"</string>
+    <string name="sound_dashboard_summary" msgid="5187301919242823508">"ভলিউম, কম্পন, বিরক্ত করবে না"</string>
     <string name="sound_settings_summary_vibrate" msgid="2194491116884798590">"রিঙ্গারকে ভাইব্রেট অবস্থায় সেট করা হয়েছে"</string>
     <string name="sound_settings_summary_silent" msgid="899823817462768876">"রিঙ্গারকে নীরব অবস্থায় সেট করা হয়েছে"</string>
     <string name="sound_settings_example_summary" msgid="2091822107298841827">"রিং ভলিউম ৮০% তে রয়েছে"</string>
@@ -3161,8 +3161,8 @@
       <item quantity="one"><xliff:g id="ON_COUNT">%d</xliff:g>টি চালু করা আছে</item>
       <item quantity="other"><xliff:g id="ON_COUNT">%d</xliff:g>টি চালু করা আছে</item>
     </plurals>
-    <string name="zen_mode_settings_title" msgid="3425263414594779244">"বিরক্ত করবেন না"</string>
-    <string name="zen_mode_settings_turn_on_dialog_title" msgid="3062548369931058282">"\'বিরক্ত করবেন না\' মোড চালু করুন"</string>
+    <string name="zen_mode_settings_title" msgid="3425263414594779244">"বিরক্ত করবে না"</string>
+    <string name="zen_mode_settings_turn_on_dialog_title" msgid="3062548369931058282">"\'বিরক্ত করবে না\' মোড চালু করুন"</string>
     <string name="zen_mode_behavior_settings_title" msgid="423125904296667490">"ব্যতিক্রম"</string>
     <string name="zen_mode_duration_settings_title" msgid="5522668871014735728">"ডিফল্ট সময়কাল"</string>
     <string name="zen_mode_behavior_allow_title" msgid="2440627647424280842">"এগুলির সাউন্ড ও ভাইব্রেশন হবে"</string>
@@ -3178,7 +3178,7 @@
     <string name="zen_mode_automatic_rule_settings_page_title" msgid="5272888746413504692">"সময়সূচি"</string>
     <string name="zen_mode_schedule_category_title" msgid="1936785755444711221">"সময়সূচি"</string>
     <string name="zen_mode_automation_suggestion_title" msgid="4921779962633710347">"নির্দিষ্ট সময়ে ফোন সাইলেন্ট করুন"</string>
-    <string name="zen_mode_automation_suggestion_summary" msgid="2709837472884371037">"\'বিরক্ত করবেন না\' মোডের নিয়ম সেট-আপ করুন"</string>
+    <string name="zen_mode_automation_suggestion_summary" msgid="2709837472884371037">"\'বিরক্ত করবে না\' মোডের নিয়ম সেট-আপ করুন"</string>
     <string name="zen_mode_schedule_title" msgid="5275268813192802631">"সময়সূচি"</string>
     <string name="zen_mode_use_automatic_rule" msgid="446326253915861824">"সময়সূচি ব্যবহার করুন"</string>
     <string name="zen_mode_option_important_interruptions" msgid="5173944276846940149">"শুধুমাত্র অগ্রাধিকার"</string>
@@ -3187,14 +3187,14 @@
     <string name="zen_mode_summary_combination" msgid="6960111215170691605">"<xliff:g id="MODE">%1$s</xliff:g>: <xliff:g id="EXIT_CONDITION">%2$s</xliff:g>"</string>
     <string name="zen_mode_visual_interruptions_settings_title" msgid="8378266552787406849">"ভিজ্যুয়াল ব্যাঘাতগুলিকে ব্লক করুন"</string>
     <string name="zen_mode_visual_signals_settings_subtitle" msgid="6608239691864638854">"ভিজুয়াল সঙ্কেতগুলি চালু করুন"</string>
-    <string name="zen_mode_settings_category" msgid="5601680733422424922">"যখন \'বিরক্ত করবেন না চালু\' থাকবে"</string>
+    <string name="zen_mode_settings_category" msgid="5601680733422424922">"যখন \'বিরক্ত করবে না চালু\' থাকবে"</string>
     <string name="zen_mode_restrict_notifications_title" msgid="7486753018073540477">"বিজ্ঞপ্তি ব্লক করুন"</string>
     <string name="zen_mode_restrict_notifications_mute" msgid="2673665450311184875">"বিজ্ঞপ্তি থেকে কোনও সাউন্ড হবে না"</string>
     <string name="zen_mode_restrict_notifications_mute_summary" msgid="1696217042353376674">"আপনার স্ক্রিনে বিজ্ঞপ্তি দেখতে পাবেন"</string>
     <string name="zen_mode_restrict_notifications_mute_footer" msgid="3049522809520549054">"বিজ্ঞপ্তি দেখানো হলে ফোনে সাউন্ড বা ভাইব্রেশন হবে না।"</string>
     <string name="zen_mode_restrict_notifications_hide" msgid="3296933643539682552">"বিজ্ঞপ্তি থেকে কোনও কিছু দেখা বা শোনা যাবে না"</string>
     <string name="zen_mode_restrict_notifications_hide_summary" msgid="1449301153755270168">"আপনি কোনও বিজ্ঞপ্তি দেখতে বা শুনতে পাবেন না"</string>
-    <string name="zen_mode_restrict_notifications_hide_footer" msgid="7617688597593946765">"নতুন অথবা আগে থেকে রয়েছে এমন বিজ্ঞপ্তির ক্ষেত্রে আপনার ফোনে ভাইব্রেশন অথবা সাউন্ড হবে না বা কোনও কিছু দেখাবে না। মনে রাখবেন, ফোনের অ্যাক্টিভিটি এবং স্ট্যাটাস সংক্রান্ত জরুরি বিজ্ঞপ্তি দেখানো হবে।\n\nআপনি ফোনে \"বিরক্ত করবেন না মোড\" বন্ধ করে রাখলে, স্ক্রিনের উপর থেকে নিচে সোয়াইপ করে মিস হওয়া বিজ্ঞপ্তিগুলি দেখুন।"</string>
+    <string name="zen_mode_restrict_notifications_hide_footer" msgid="7617688597593946765">"নতুন অথবা আগে থেকে রয়েছে এমন বিজ্ঞপ্তির ক্ষেত্রে আপনার ফোনে ভাইব্রেশন অথবা সাউন্ড হবে না বা কোনও কিছু দেখাবে না। মনে রাখবেন, ফোনের অ্যাক্টিভিটি এবং স্ট্যাটাস সংক্রান্ত জরুরি বিজ্ঞপ্তি দেখানো হবে।\n\nআপনি ফোনে \"বিরক্ত করবে না মোড\" বন্ধ করে রাখলে, স্ক্রিনের উপর থেকে নিচে সোয়াইপ করে মিস হওয়া বিজ্ঞপ্তিগুলি দেখুন।"</string>
     <string name="zen_mode_restrict_notifications_custom" msgid="3167252482570424133">"কাস্টম"</string>
     <string name="zen_mode_restrict_notifications_enable_custom" msgid="6376983315529894440">"কাস্টম সেটিং চালু করুন"</string>
     <string name="zen_mode_restrict_notifications_disable_custom" msgid="8004212081465043044">"কাস্টম সেটিং সরান"</string>
@@ -3225,11 +3225,11 @@
     <string name="zen_mode_enable_dialog_turn_on" msgid="6396050543542026184">"চালু করুন"</string>
     <string name="zen_mode_button_turn_on" msgid="1097964136225943415">"এখনই চালু করুন"</string>
     <string name="zen_mode_button_turn_off" msgid="3990967728457149454">"এখনই বন্ধ করুন"</string>
-    <string name="zen_mode_settings_dnd_manual_end_time" msgid="4307574188962071429">"\'বিরক্ত করবেন না\' মোডটি <xliff:g id="FORMATTED_TIME">%s</xliff:g> পর্যন্ত চালু থাকবে"</string>
-    <string name="zen_mode_settings_dnd_manual_indefinite" msgid="3701005376825238752">"\'বিরক্ত করবেন না\' মোডটি বন্ধ না করা পর্যন্ত সেটি চালু থাকবে"</string>
-    <string name="zen_mode_settings_dnd_automatic_rule" msgid="2843297614114625408">"(<xliff:g id="RULE_NAME">%s</xliff:g>) শিডিউলের জন্য বিরক্ত করবেন না মোডটি নিজে থেকেই চালু হয়ে গেছে"</string>
-    <string name="zen_mode_settings_dnd_automatic_rule_app" msgid="5103454923160912313">"<xliff:g id="APP_NAME">%s</xliff:g> অ্যাপটি নিজে থেকেই \'বিরক্ত করবেন না\' মোড চালু করে দিয়েছে"</string>
-    <string name="zen_mode_settings_dnd_custom_settings_footer" msgid="6335108298640066560">"কাস্টম সেটিংস সহ <xliff:g id="RULE_NAMES">%s</xliff:g>-এর জন্য \'বিরক্ত করবেন না\' মোডটি চালু আছে।"</string>
+    <string name="zen_mode_settings_dnd_manual_end_time" msgid="4307574188962071429">"\'বিরক্ত করবে না\' মোডটি <xliff:g id="FORMATTED_TIME">%s</xliff:g> পর্যন্ত চালু থাকবে"</string>
+    <string name="zen_mode_settings_dnd_manual_indefinite" msgid="3701005376825238752">"\'বিরক্ত করবে না\' মোডটি বন্ধ না করা পর্যন্ত সেটি চালু থাকবে"</string>
+    <string name="zen_mode_settings_dnd_automatic_rule" msgid="2843297614114625408">"(<xliff:g id="RULE_NAME">%s</xliff:g>) শিডিউলের জন্য বিরক্ত করবে না মোডটি নিজে থেকেই চালু হয়ে গেছে"</string>
+    <string name="zen_mode_settings_dnd_automatic_rule_app" msgid="5103454923160912313">"<xliff:g id="APP_NAME">%s</xliff:g> অ্যাপটি নিজে থেকেই \'বিরক্ত করবে না\' মোড চালু করে দিয়েছে"</string>
+    <string name="zen_mode_settings_dnd_custom_settings_footer" msgid="6335108298640066560">"কাস্টম সেটিংস সহ <xliff:g id="RULE_NAMES">%s</xliff:g>-এর জন্য \'বিরক্ত করবে না\' মোডটি চালু আছে।"</string>
     <string name="zen_mode_settings_dnd_custom_settings_footer_link" msgid="4007974052885089379"><annotation id="link">" কাস্টম সেটিংস দেখুন"</annotation></string>
     <string name="zen_interruption_level_priority" msgid="9178419297408319234">"শুধুমাত্র অগ্রাধিকার"</string>
     <string name="zen_mode_and_condition" msgid="4123722186007123567">"<xliff:g id="ZEN_MODE">%1$s</xliff:g>. <xliff:g id="EXIT_CONDITION">%2$s</xliff:g>"</string>
@@ -3252,7 +3252,7 @@
     <string name="zen_category_exceptions" msgid="2139670640033601899">"ব্যতিক্রম"</string>
     <string name="zen_category_schedule" msgid="989629666210114164">"সময় ঠিক করুন"</string>
     <string name="zen_sound_title" msgid="3429086967245473870">"সবগুলি দেখুন"</string>
-    <string name="zen_sound_footer" msgid="1778673975517424878">"\'বিরক্ত করবেন না\' মোড চালু থাকলে আপনি উপরে যে আইটেমগুলি ব্যতিক্রম হিসেবে চিহ্নিত করবেন সেগুলি ছাড়া বাকি সবকিছুর ক্ষেত্রে সাউন্ড এবং ভাইব্রেশন মিউট করা হবে।"</string>
+    <string name="zen_sound_footer" msgid="1778673975517424878">"\'বিরক্ত করবে না\' মোড চালু থাকলে আপনি উপরে যে আইটেমগুলি ব্যতিক্রম হিসেবে চিহ্নিত করবেন সেগুলি ছাড়া বাকি সবকিছুর ক্ষেত্রে সাউন্ড এবং ভাইব্রেশন মিউট করা হবে।"</string>
     <string name="zen_sound_category_title" msgid="2109447208414722786">"এগুলি ছাড়া সবকিছু মিউট করুন"</string>
     <string name="zen_sound_all_muted" msgid="4844094866910870591">"মিউট করা আছে"</string>
     <string name="zen_sound_none_muted" msgid="4869385974769188085">"মিউট করা নেই"</string>
@@ -3265,14 +3265,14 @@
     <string name="zen_custom_settings_notifications_header" msgid="7469592764589354302">"বিজ্ঞপ্তি"</string>
     <string name="zen_custom_settings_duration_header" msgid="1806465684026300942">"সময়কাল"</string>
     <string name="zen_msg_event_reminder_title" msgid="8685224436389816905">"মেসেজ, ইভেন্ট ও রিমাইন্ডার"</string>
-    <string name="zen_msg_event_reminder_footer" msgid="164400918479831580">"\'বিরক্ত করবেন না\' মোড চালু থাকলে আপনি উপরে যে আইটেমগুলি ব্যতিক্রম হিসেবে চিহ্নিত করবেন সেগুলি ছাড়া বাকি সমস্ত মেসেজ, রিমাইন্ডার এবং ইভেন্ট মিউট করা হবে। আপনার বন্ধুবান্ধব, পরিবারের সদস্য অথবা অন্য পরিচিতিরা যাতে আপনার সাথে যোগাযোগ করতে পারেন তার জন্য আপনি মেসেজের সেটিংস অ্যাডজাস্ট করে নিতে পারেন।"</string>
+    <string name="zen_msg_event_reminder_footer" msgid="164400918479831580">"\'বিরক্ত করবে না\' মোড চালু থাকলে আপনি উপরে যে আইটেমগুলি ব্যতিক্রম হিসেবে চিহ্নিত করবেন সেগুলি ছাড়া বাকি সমস্ত মেসেজ, রিমাইন্ডার এবং ইভেন্ট মিউট করা হবে। আপনার বন্ধুবান্ধব, পরিবারের সদস্য অথবা অন্য পরিচিতিরা যাতে আপনার সাথে যোগাযোগ করতে পারেন তার জন্য আপনি মেসেজের সেটিংস অ্যাডজাস্ট করে নিতে পারেন।"</string>
     <string name="zen_onboarding_ok" msgid="6403635918125323678">"হয়ে গেছে"</string>
     <string name="zen_onboarding_settings" msgid="1416466597876383322">"সেটিংস"</string>
     <string name="zen_onboarding_new_setting_title" msgid="3622673375041304362">"বিজ্ঞপ্তি থেকে কোনও কিছু দেখা বা শোনা যাবে না"</string>
     <string name="zen_onboarding_current_setting_title" msgid="2560330551761407563">"বিজ্ঞপ্তি থেকে কোনও সাউন্ড হবে না"</string>
     <string name="zen_onboarding_new_setting_summary" msgid="8264430315983860075">"আপনি কোনও বিজ্ঞপ্তি দেখতে বা শুনতে পাবেন না। যারা তারা চিহ্নিত পরিচিতি এবং আগে যারা ফোন করেছেন তারা আবার ফোন করতে পারবেন।"</string>
     <string name="zen_onboarding_current_setting_summary" msgid="3569246708507270821">"(বর্তমান সেটিং)"</string>
-    <string name="zen_onboarding_dnd_visual_disturbances_header" msgid="7584229011611927613">"\"বিরক্ত করবেন না\" মোডের বিজ্ঞপ্তির সেটিংস পরিবর্তন করবেন?"</string>
+    <string name="zen_onboarding_dnd_visual_disturbances_header" msgid="7584229011611927613">"\"বিরক্ত করবে না\" মোডের বিজ্ঞপ্তির সেটিংস পরিবর্তন করবেন?"</string>
     <string name="sound_work_settings" msgid="4140215240360927923">"কর্মস্থলের প্রোফাইলের ধ্বনিগুলি"</string>
     <string name="work_use_personal_sounds_title" msgid="531727195073003599">"ব্যক্তিগত প্রোফাইলের ধ্বনিগুলি ব্যবহার করুন"</string>
     <string name="work_use_personal_sounds_summary" msgid="2886871383995187441">"কাজ এবং ব্যক্তিগত প্রোফাইলের জন্য একই শব্দ"</string>
@@ -3364,10 +3364,10 @@
     <string name="no_notification_assistant" msgid="9140123568386413264">"অ্যাসিস্ট্যান্টের পরিষেবা পাওয়া যাবে না"</string>
     <string name="no_notification_listeners" msgid="1366386609506834717">"ইনস্টল করা কোনো অ্যাপের অনুরোধকৃত বিজ্ঞপ্তির অ্যাক্সেস নেই৷"</string>
     <string name="notification_assistant_security_warning_title" msgid="4190584438086738496">"<xliff:g id="SERVICE">%1$s</xliff:g>-কে বিজ্ঞপ্তিতে অ্যাক্সেস দিতে চান?"</string>
-    <string name="notification_assistant_security_warning_summary" msgid="6924513399671031930">"<xliff:g id="NOTIFICATION_ASSISTANT_NAME">%1$s</xliff:g> পরিচিতির নাম এবং আপনি পেয়েছেন এমন টেক্সট মেসেজ সহ ব্যক্তিগত তথ্যের সব বিজ্ঞপ্তি পড়তে পারবে। এর মধ্যে থাকা বিজ্ঞপ্তি পরিবর্তন করতে বা অ্যাকশন বোতাম ট্রিগার করতে বা খারিজ করতে পারবে। \n\nএই অ্যাপ \'বিরক্ত করবেন না\' বিকল্পটিকে চালু বা বন্ধ করার এবং সম্পর্কিত সেটিংস পরিবর্তন করতে পারবে।"</string>
+    <string name="notification_assistant_security_warning_summary" msgid="6924513399671031930">"<xliff:g id="NOTIFICATION_ASSISTANT_NAME">%1$s</xliff:g> পরিচিতির নাম এবং আপনি পেয়েছেন এমন টেক্সট মেসেজ সহ ব্যক্তিগত তথ্যের সব বিজ্ঞপ্তি পড়তে পারবে। এর মধ্যে থাকা বিজ্ঞপ্তি পরিবর্তন করতে বা অ্যাকশন বোতাম ট্রিগার করতে বা খারিজ করতে পারবে। \n\nএই অ্যাপ \'বিরক্ত করবে না\' বিকল্পটিকে চালু বা বন্ধ করার এবং সম্পর্কিত সেটিংস পরিবর্তন করতে পারবে।"</string>
     <string name="notification_listener_security_warning_title" msgid="4902253246428777797">"<xliff:g id="SERVICE">%1$s</xliff:g> এর জন্য বিজ্ঞপ্তির অ্যাক্সেসে অনুমতি দেবেন?"</string>
-    <string name="notification_listener_security_warning_summary" msgid="4454702907350100288">"<xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g>, পরিচিতির নাম ও আপনার গৃহীত পাঠ্য বার্তাগুলির মত ব্যক্তিগত তথ্য সহ সমস্ত বিজ্ঞপ্তি পড়তে সক্ষম হবে৷ এটি আবার এর মধ্যে থাকা বিজ্ঞপ্তিগুলি বা নির্দিষ্ট কাজের বোতামগুলি খারিজ করতে পারবে। \n\nএছাড়াও এটি এই অ্যাপ্লিকেশানকে, \'বিরক্ত করবেন না\' বিকল্পটিকে চালু বা বন্ধ করার এবং সংশ্লিষ্ট সেটিংস পরিবর্তন করার ক্ষমতা প্রদান করবে৷"</string>
-    <string name="notification_listener_disable_warning_summary" msgid="162165151519082978">"যদি আপনি <xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g> এর জন্য বিজ্ঞপ্তির অ্যাক্সেস বন্ধ করেন, তাহলে \'বিরক্ত করবেন না\' এর অ্যাক্সেসও বন্ধ হয়ে যেতে পারে৷"</string>
+    <string name="notification_listener_security_warning_summary" msgid="4454702907350100288">"<xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g>, পরিচিতির নাম ও আপনার গৃহীত পাঠ্য বার্তাগুলির মত ব্যক্তিগত তথ্য সহ সমস্ত বিজ্ঞপ্তি পড়তে সক্ষম হবে৷ এটি আবার এর মধ্যে থাকা বিজ্ঞপ্তিগুলি বা নির্দিষ্ট কাজের বোতামগুলি খারিজ করতে পারবে। \n\nএছাড়াও এটি এই অ্যাপ্লিকেশানকে, \'বিরক্ত করবে না\' বিকল্পটিকে চালু বা বন্ধ করার এবং সংশ্লিষ্ট সেটিংস পরিবর্তন করার ক্ষমতা প্রদান করবে৷"</string>
+    <string name="notification_listener_disable_warning_summary" msgid="162165151519082978">"যদি আপনি <xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g> এর জন্য বিজ্ঞপ্তির অ্যাক্সেস বন্ধ করেন, তাহলে \'বিরক্ত করবে না\' এর অ্যাক্সেসও বন্ধ হয়ে যেতে পারে৷"</string>
     <string name="notification_listener_disable_warning_confirm" msgid="7863495391671154188">"বন্ধ করুন"</string>
     <string name="notification_listener_disable_warning_cancel" msgid="6264631825225298458">"বাতিল করুন"</string>
     <string name="vr_listeners_title" msgid="511483902408792832">"(ভিআর)VR সহায়তাকারী পরিষেবাগুলি"</string>
@@ -3383,9 +3383,9 @@
     <string name="picture_in_picture_app_detail_title" msgid="3916189052657425936">"ছবির-মধ্যে-ছবি"</string>
     <string name="picture_in_picture_app_detail_switch" msgid="747422998967185418">"ছবির-মধ্যে-ছবি তৈরির অনুমতি দিন"</string>
     <string name="picture_in_picture_app_detail_summary" msgid="918632751775525347">"অ্যাপটি খোলা থাকার সময় অথবা আপনি এটি ছেড়ে বেরিয়ে গেলে (যেমন, কোনও ভিডিও দেখার জন্য) এটিকে একটি ছবির-মধ্যে-ছবি সমেত উইন্ডো তৈরি করার অনুমতি দিন। চালু থাকা অন্যান্য অ্যাপের উপরে এই উইন্ডোটি দেখা যাবে।"</string>
-    <string name="manage_zen_access_title" msgid="3058206309728524196">"বিরক্ত করবেন না মোডের ক্ষেত্রে অ্যাক্সেস"</string>
-    <string name="zen_access_detail_switch" msgid="8706332327904974500">"\'বিরক্ত করবেন না\' মোডের জন্য অনুমতি দিন"</string>
-    <string name="zen_access_empty_text" msgid="7667538993781607731">"ইনস্টল করা নেই এমন অ্যাপগুলি বিরক্ত করবেন না অ্যাক্সেস করুন এর অনুরোধ জানিয়েছে"</string>
+    <string name="manage_zen_access_title" msgid="3058206309728524196">"বিরক্ত করবে না মোডের ক্ষেত্রে অ্যাক্সেস"</string>
+    <string name="zen_access_detail_switch" msgid="8706332327904974500">"\'বিরক্ত করবে না\' মোডের জন্য অনুমতি দিন"</string>
+    <string name="zen_access_empty_text" msgid="7667538993781607731">"ইনস্টল করা নেই এমন অ্যাপগুলি বিরক্ত করবে না অ্যাক্সেস করুন এর অনুরোধ জানিয়েছে"</string>
     <string name="loading_notification_apps" msgid="1978345231934072091">"অ্যাপ্লিকেশানগুলি লোড করা হচ্ছে..."</string>
     <string name="app_notifications_off_desc" msgid="3904090905748895146">"আপনার অনুরোধ অনুযায়ী Android এই অ্যাপের বিজ্ঞপ্তি এই ডিভাইসে দেখাচ্ছে না"</string>
     <string name="channel_notifications_off_desc" msgid="8005444443218306611">"আপনার অনুরোধ অনুযায়ী Android এই বিভাগের বিজ্ঞপ্তিগুলি এই ডিভাইসে দেখাচ্ছে না"</string>
@@ -3415,8 +3415,8 @@
     <string name="notification_content_block_summary" msgid="2743896875255591743">"ছায়া বা পেরিফেরাল ডিভাইসে কখনও বিজ্ঞপ্তিগুলি দেখায় না"</string>
     <string name="notification_badge_title" msgid="8989086619255666442">"বিজ্ঞপ্তির ডট দেখানোর অনুমতি দিন"</string>
     <string name="notification_channel_badge_title" msgid="8228215248332054612">"বিজ্ঞপ্তির ডট দেখান"</string>
-    <string name="app_notification_override_dnd_title" msgid="1757042206738172601">"\'বিরক্ত করবেন না\' ওভাররাইড করুন"</string>
-    <string name="app_notification_override_dnd_summary" msgid="3152957611171210980">"\'বিরক্ত করবেন না\' মোড চালু থাকলেও এই বিজ্ঞপ্তিগুলির জন্য আওয়াজ হতে দিন"</string>
+    <string name="app_notification_override_dnd_title" msgid="1757042206738172601">"\'বিরক্ত করবে না\' ওভাররাইড করুন"</string>
+    <string name="app_notification_override_dnd_summary" msgid="3152957611171210980">"\'বিরক্ত করবে না\' মোড চালু থাকলেও এই বিজ্ঞপ্তিগুলির জন্য আওয়াজ হতে দিন"</string>
     <string name="app_notification_visibility_override_title" msgid="2349335170165637672">"লক স্ক্রিনে"</string>
     <string name="app_notification_row_banned" msgid="2079325338122151677">"অবরুদ্ধ"</string>
     <string name="app_notification_row_priority" msgid="432299064888787236">"অগ্রাধিকার"</string>
@@ -3439,13 +3439,13 @@
     <string name="zen_mode_delete_rule_confirmation" msgid="2646596466259025978">"\"<xliff:g id="RULE">%1$s</xliff:g>\" নিয়ম মুছে ফেলবেন?"</string>
     <string name="zen_mode_delete_rule_button" msgid="611058106279881991">"মুছুন"</string>
     <string name="zen_mode_rule_type_unknown" msgid="2819480113355191421">"অজানা"</string>
-    <string name="zen_mode_app_set_behavior" msgid="8597398780262575571">"এই সেটিংগুলি এখনই পরিবর্তন করা যাবে না। অ্যাপটি (<xliff:g id="APP_NAME">%1$s</xliff:g>) কাস্টম আচরণের সাথে \'বিরক্ত করবেন না\'\' মোডটি নিজে থেকেই চালু করে দিয়েছে।"</string>
-    <string name="zen_mode_unknown_app_set_behavior" msgid="5666462954329932302">"এই সেটিংগুলি এখনই পরিবর্তন করা যাবে না। অ্যাপটি কাস্টম আচরণের সাথে \'বিরক্ত করবেন না\'\' মোডটি নিজে থেকেই চালু করে দিয়েছে।"</string>
-    <string name="zen_mode_qs_set_behavior" msgid="788646569296973998">"এই সেটিংগুলি এখনই পরিবর্তন করা যাবে না। কাস্টম আচরণের সাথে ম্যানুয়ালী \'\'বিরক্ত করবেন না\'\' মোডটি চালু করা ছিল।"</string>
+    <string name="zen_mode_app_set_behavior" msgid="8597398780262575571">"এই সেটিংগুলি এখনই পরিবর্তন করা যাবে না। অ্যাপটি (<xliff:g id="APP_NAME">%1$s</xliff:g>) কাস্টম আচরণের সাথে \'বিরক্ত করবে না\'\' মোডটি নিজে থেকেই চালু করে দিয়েছে।"</string>
+    <string name="zen_mode_unknown_app_set_behavior" msgid="5666462954329932302">"এই সেটিংগুলি এখনই পরিবর্তন করা যাবে না। অ্যাপটি কাস্টম আচরণের সাথে \'বিরক্ত করবে না\'\' মোডটি নিজে থেকেই চালু করে দিয়েছে।"</string>
+    <string name="zen_mode_qs_set_behavior" msgid="788646569296973998">"এই সেটিংগুলি এখনই পরিবর্তন করা যাবে না। কাস্টম আচরণের সাথে ম্যানুয়ালী \'\'বিরক্ত করবে না\'\' মোডটি চালু করা ছিল।"</string>
     <string name="zen_schedule_rule_type_name" msgid="4516851728113801329">"সময়"</string>
-    <string name="zen_schedule_rule_enabled_toast" msgid="1742354493045049048">"বিরক্ত করবেন না চালু করার জন্য, নির্দিষ্ট সময়ের জন্য স্বয়ংক্রিয়ভাবে নিয়ম সেট করা"</string>
+    <string name="zen_schedule_rule_enabled_toast" msgid="1742354493045049048">"বিরক্ত করবে না চালু করার জন্য, নির্দিষ্ট সময়ের জন্য স্বয়ংক্রিয়ভাবে নিয়ম সেট করা"</string>
     <string name="zen_event_rule_type_name" msgid="7467729997336583342">"ইভেন্ট"</string>
-    <string name="zen_event_rule_enabled_toast" msgid="7087368268966855976">"বিরক্ত করবেন না চালু করার জন্য, নির্দিষ্ট সময়ের জন্য স্বয়ংক্রিয়ভাবে নিয়ম সেট করা"</string>
+    <string name="zen_event_rule_enabled_toast" msgid="7087368268966855976">"বিরক্ত করবে না চালু করার জন্য, নির্দিষ্ট সময়ের জন্য স্বয়ংক্রিয়ভাবে নিয়ম সেট করা"</string>
     <string name="zen_mode_event_rule_calendar" msgid="6088077103908487442">"এর জন্য ইভেন্টগুলি চলাকালীন"</string>
     <string name="zen_mode_event_rule_summary_calendar_template" msgid="4027207992040792657">"<xliff:g id="CALENDAR">%1$s</xliff:g> এর জন্য ইভেন্টগুলি চলাকালীন"</string>
     <string name="zen_mode_event_rule_summary_any_calendar" msgid="7590085295784895885">"যেকোনো ক্যালেন্ডার"</string>
@@ -3463,7 +3463,7 @@
     <string name="zen_mode_schedule_rule_days_all" msgid="8814173364016139675">"প্রতিদিন"</string>
     <string name="zen_mode_schedule_alarm_title" msgid="2078194049274875023">"অ্যালার্ম সমাপ্তি সময়কে ওভাররাইড করতে পারে"</string>
     <string name="zen_mode_schedule_alarm_summary" msgid="5556997989911412070">"কোনও অ্যালার্ম বাজলে সময়সূচী বন্ধ হয়ে যায়"</string>
-    <string name="zen_mode_custom_behavior_title" msgid="8908861697886331001">"\'বিরক্ত করবেন না\' মোড"</string>
+    <string name="zen_mode_custom_behavior_title" msgid="8908861697886331001">"\'বিরক্ত করবে না\' মোড"</string>
     <string name="zen_mode_custom_behavior_summary_default" msgid="3509865340195397447">"ডিফল্ট সেটিংস ব্যবহার করুন"</string>
     <string name="zen_mode_custom_behavior_summary" msgid="7206909852887332604">"এই সময়ের জন্য কাস্টম সেটিংস তৈরি করুন"</string>
     <string name="zen_mode_custom_behavior_category_title" msgid="7451686525113262087">"\'<xliff:g id="SCHEDULE_NAME">%1$s</xliff:g>\'-এর জন্য"</string>
@@ -3504,8 +3504,8 @@
     <string name="zen_mode_bypassing_apps" msgid="3080739479028713449">"অ্যাপ ওভাররাইডের অনুমতি দিন"</string>
     <string name="zen_mode_bypassing_apps_title" msgid="2115024664615538847">"অ্যাপ এক্সেপশন"</string>
     <plurals name="zen_mode_bypassing_apps_subtext" formatted="false" msgid="8723144434730871572">
-      <item quantity="one">যদি <xliff:g id="NUMBER">%1$d</xliff:g>টি অ্যাপকে বিজ্ঞপ্তি দেওয়ার অনুমতি দেওয়া হয়, তাহলে বিরক্ত করবেন না মোড ওভাররাইড হতে পারে।</item>
-      <item quantity="other">যদি <xliff:g id="NUMBER">%1$d</xliff:g>টি অ্যাপকে বিজ্ঞপ্তি দেওয়ার অনুমতি দেওয়া হয়, তাহলে বিরক্ত করবেন না মোড ওভাররাইড হতে পারে।</item>
+      <item quantity="one">যদি <xliff:g id="NUMBER">%1$d</xliff:g>টি অ্যাপকে বিজ্ঞপ্তি দেওয়ার অনুমতি দেওয়া হয়, তাহলে বিরক্ত করবে না মোড ওভাররাইড হতে পারে।</item>
+      <item quantity="other">যদি <xliff:g id="NUMBER">%1$d</xliff:g>টি অ্যাপকে বিজ্ঞপ্তি দেওয়ার অনুমতি দেওয়া হয়, তাহলে বিরক্ত করবে না মোড ওভাররাইড হতে পারে।</item>
     </plurals>
     <string name="zen_mode_events_list" msgid="8578102701815684873">"ইভেন্ট"</string>
     <string name="zen_mode_all_callers" msgid="4455039040077343838">"যেকেউ"</string>
@@ -3537,10 +3537,10 @@
     <string name="zen_mode_summary_alarms_only_by_time" msgid="2462898862757904560">"শুধুমাত্র <xliff:g id="FORMATTEDTIME">%1$s</xliff:g> পর্যন্ত অ্যালার্মগুলি পরিবর্তন করুন"</string>
     <string name="zen_mode_summary_always" msgid="2703276042913200837">"সর্বদা বাধা দেওয়াতে পরিবর্তন করুন"</string>
     <string name="zen_mode_screen_on" msgid="7098470659072167219">"যখন স্ক্রিন চালু থাকে"</string>
-    <string name="zen_mode_screen_on_summary" msgid="8275416649295357524">"\'বিরক্ত করবেন না\' দ্বারা মিউট করা বিজ্ঞপ্তিগুলিকে স্ক্রিনে প্রদর্শিত হতে এবং একটি স্ট্যাটাস বার আইকন দেখাতে দিন"</string>
+    <string name="zen_mode_screen_on_summary" msgid="8275416649295357524">"\'বিরক্ত করবে না\' দ্বারা মিউট করা বিজ্ঞপ্তিগুলিকে স্ক্রিনে প্রদর্শিত হতে এবং একটি স্ট্যাটাস বার আইকন দেখাতে দিন"</string>
     <string name="zen_mode_screen_off" msgid="84211490206459038">"যখন স্ক্রিন বন্ধ থাকে"</string>
-    <string name="zen_mode_screen_off_summary" msgid="8592179073243001267">"\'বিরক্ত করবেন না\' দ্বারা নীরব করা বিজ্ঞপ্তিগুলিকে স্ক্রিন চালু করতে এবং লাইটটি জ্বলাতে ও নেভাতে দিন"</string>
-    <string name="zen_mode_screen_off_summary_no_led" msgid="7255874108150630145">"\'বিরক্ত করবেন না\' দ্বারা নীরব করা বিজ্ঞপ্তিগুলিকে স্ক্রিন চালু করতে দিন"</string>
+    <string name="zen_mode_screen_off_summary" msgid="8592179073243001267">"\'বিরক্ত করবে না\' দ্বারা নীরব করা বিজ্ঞপ্তিগুলিকে স্ক্রিন চালু করতে এবং লাইটটি জ্বলাতে ও নেভাতে দিন"</string>
+    <string name="zen_mode_screen_off_summary_no_led" msgid="7255874108150630145">"\'বিরক্ত করবে না\' দ্বারা নীরব করা বিজ্ঞপ্তিগুলিকে স্ক্রিন চালু করতে দিন"</string>
     <string name="notification_app_settings_button" msgid="3651180424198580907">"বিজ্ঞপ্তির সেটিংস"</string>
     <string name="suggestion_button_text" msgid="5783566542423813847">"ঠিক আছে"</string>
     <string name="device_feedback" msgid="4042352891448769818">"এই ডিভাইসের সম্পর্কে মতামত পাঠান"</string>
@@ -3602,7 +3602,7 @@
     <string name="notifications_silenced" msgid="538923056987616372">"মিউট করা হয়েছে"</string>
     <string name="notifications_redacted" msgid="308836040236690014">"সংবেদনশীল সামগ্রীকে লক স্ক্রীনে দেখানো হবে না"</string>
     <string name="notifications_hidden" msgid="3665505522897010205">"লক স্ক্রীনে দেখানো হবে না"</string>
-    <string name="notifications_priority" msgid="8849045645983017929">"\'বিরক্ত করবেন না\' ওভাররাইড করা হয়েছে"</string>
+    <string name="notifications_priority" msgid="8849045645983017929">"\'বিরক্ত করবে না\' ওভাররাইড করা হয়েছে"</string>
     <string name="notifications_summary_divider" msgid="3148951310482572028">" / "</string>
     <string name="notification_summary_level" msgid="309162160355022027">"লেভেল %d"</string>
     <string name="notification_summary_channel" msgid="3372346622071114366">"<xliff:g id="CHANNEL_NAME">%1$s</xliff:g> • <xliff:g id="GROUP_NAME">%2$s</xliff:g>"</string>
@@ -3634,7 +3634,7 @@
     <string name="filter_notif_urgent_channels" msgid="5000735867167027148">"বিভাগগুলি: জরুরী গুরুত্বের"</string>
     <string name="filter_notif_low_channels" msgid="6859599463135775287">"বিভাগগুলি: কম গুরুত্বের"</string>
     <string name="filter_notif_blocked_channels" msgid="6110799550327612670">"বিভাগগুলি: বন্ধ আছে"</string>
-    <string name="filter_notif_dnd_channels" msgid="3251570137256371092">"বিভাগগুলি: বিরক্ত করবেন না কে ওভাররাইড করে"</string>
+    <string name="filter_notif_dnd_channels" msgid="3251570137256371092">"বিভাগগুলি: বিরক্ত করবে না কে ওভাররাইড করে"</string>
     <string name="advanced_apps" msgid="6643869089344883537">"উন্নত"</string>
     <string name="configure_apps" msgid="4066683118857400943">"অ্যাপ্লিকেশান কনফিগার করুন"</string>
     <string name="unknown_app" msgid="2312052973570376877">"অজানা অ্যাপ্লিকেশান"</string>
@@ -3779,11 +3779,11 @@
     <string name="running_frequency" msgid="7545170806968474449">"পুনরাবৃত্তির হার"</string>
     <string name="memory_maximum_usage" msgid="4734981118293469479">"সর্বাধিক ব্যবহার"</string>
     <string name="no_data_usage" msgid="903383745620135746">"কোনো ডেটা ব্যবহৃত হয়নি"</string>
-    <string name="zen_access_warning_dialog_title" msgid="7704910289810337055">"<xliff:g id="APP">%1$s</xliff:g> ব্যবহারের জন্য \'বিরক্ত করবেন না\' -তে অ্যাক্সেসের অনুমতি দেবেন?"</string>
-    <string name="zen_access_warning_dialog_summary" msgid="2717755746850874577">"অ্যাপটি \'বিরক্ত করবেন না\' চালু/বন্ধ করতে সক্ষম হবে এবং এই সংক্রান্ত সেটিংসে পরিবর্তনগুলি করবে।"</string>
+    <string name="zen_access_warning_dialog_title" msgid="7704910289810337055">"<xliff:g id="APP">%1$s</xliff:g> ব্যবহারের জন্য \'বিরক্ত করবে না\' -তে অ্যাক্সেসের অনুমতি দেবেন?"</string>
+    <string name="zen_access_warning_dialog_summary" msgid="2717755746850874577">"অ্যাপটি \'বিরক্ত করবে না\' চালু/বন্ধ করতে সক্ষম হবে এবং এই সংক্রান্ত সেটিংসে পরিবর্তনগুলি করবে।"</string>
     <string name="zen_access_disabled_package_warning" msgid="7086237569177576966">"বিজ্ঞপ্তির অ্যাক্সেস চালু থাকার কারণে এটিকে অবশ্যই চালু থাকতে হবে"</string>
-    <string name="zen_access_revoke_warning_dialog_title" msgid="6850994585577513299">"<xliff:g id="APP">%1$s</xliff:g> এর জন্য \'বিরক্ত করবেন না\' তে অ্যাক্সেস প্রত্যাহার করবেন?"</string>
-    <string name="zen_access_revoke_warning_dialog_summary" msgid="3487422193181311403">"এই অ্যাপ্লিকেশানের দ্বারা তৈরি হওয়া সমস্ত \'বিরক্ত করবেন না\' নিয়মগুলিকে সরানো হবে৷"</string>
+    <string name="zen_access_revoke_warning_dialog_title" msgid="6850994585577513299">"<xliff:g id="APP">%1$s</xliff:g> এর জন্য \'বিরক্ত করবে না\' তে অ্যাক্সেস প্রত্যাহার করবেন?"</string>
+    <string name="zen_access_revoke_warning_dialog_summary" msgid="3487422193181311403">"এই অ্যাপ্লিকেশানের দ্বারা তৈরি হওয়া সমস্ত \'বিরক্ত করবে না\' নিয়মগুলিকে সরানো হবে৷"</string>
     <string name="ignore_optimizations_on" msgid="4373971641328943551">"অপ্টিমাইজ করবেন না"</string>
     <string name="ignore_optimizations_off" msgid="4372289432580282870">"অপ্টিমাইজ করুন"</string>
     <string name="ignore_optimizations_on_desc" msgid="2904484569799521559">"এতে চার্জ আরও দ্রুত শেষ হয়ে যেতে পারে। ব্যাকগ্রাউন্ডে ব্যাটারি ব্যবহার করা থেকে অ্যাপটিকে আর সীমাবদ্ধ করা হবে না।"</string>
@@ -3883,7 +3883,7 @@
     <string name="condition_hotspot_title" msgid="4143299802283098506">"হটস্পট চালু আছে"</string>
     <string name="condition_airplane_title" msgid="8484582712516148433">"বিমান মোড চালু করা আছে"</string>
     <string name="condition_airplane_summary" msgid="3021193218494740742">"নেটওয়ার্ক উপলভ্য নেই"</string>
-    <string name="condition_zen_title" msgid="2128184708916052585">"\'বিরক্ত করবেন না\' মোড চালু আছে"</string>
+    <string name="condition_zen_title" msgid="2128184708916052585">"\'বিরক্ত করবে না\' মোড চালু আছে"</string>
     <string name="condition_zen_summary_phone_muted" msgid="4396050395522974654">"ফোন মিউট করা আছে"</string>
     <string name="condition_zen_summary_with_exceptions" msgid="3435216391993785818">"ব্যতিক্রম সহ"</string>
     <string name="condition_battery_title" msgid="6704870010912986274">"ব্যাটারি সেভার চালু আছে"</string>
@@ -4124,7 +4124,7 @@
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"সময়, বিজ্ঞপ্তি এবং অন্যান্য তথ্য দেখতে আপনার ফোনটি তুলে ধরুন।"</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"সময়, বিজ্ঞপ্তি এবং অন্যান্য তথ্য দেখতে আপনার ট্যাবলেটটি তুলে ধরুন।"</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"সময়, বিজ্ঞপ্তি এবং অন্যান্য তথ্য দেখতে আপনার ডিভাইসটি তুলে ধরুন।"</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"ফোন যাচাই করতে ট্যাপ করুন"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"ফোন চেক করতে ট্যাপ করুন"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"ট্যাবলেট যাচাই করতে ট্যাপ করুন"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"ডিভাইস যাচাই করতে ট্যাপ করুন"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"সময়, বিজ্ঞপ্তি এবং অন্যান্য তথ্য দেখতে আপনার স্ক্রিনে ট্যাপ করুন।"</string>
@@ -4265,7 +4265,7 @@
     <string name="storage_movies_tv" msgid="7282484273991655296">"সিনেমা ও টিভি অ্যাপ"</string>
     <string name="carrier_provisioning" msgid="3309125279191534469">"পরিষেবা প্রদানকারীর ব্যবস্থামূলক তথ্য"</string>
     <string name="trigger_carrier_provisioning" msgid="6284005970057901477">"ট্রিগার পরিষেবা প্রদানকারীর ব্যবস্থা"</string>
-    <string name="zen_suggestion_title" msgid="2134699720214231950">"\'বিরক্ত করবেন না\' মোডটি আপডেট করুন"</string>
+    <string name="zen_suggestion_title" msgid="2134699720214231950">"\'বিরক্ত করবে না\' মোডটি আপডেট করুন"</string>
     <string name="zen_suggestion_summary" msgid="4041062903237952737">"যাতে বিরক্ত হতে না হয় তার জন্য বিজ্ঞপ্তি পজ করুন"</string>
     <string name="disabled_low_ram_device" msgid="4958060232123741721">"এই বৈশিষ্ট্যটি এই ডিভাইসে উপলব্ধ নেই"</string>
     <string name="disabled_feature" msgid="3747549387387702365">"এই ফিচারটি উপলভ্য নেই"</string>
diff --git a/tests/CarDeveloperOptions/res/values-bs-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-bs-nokeys/strings.xml
new file mode 100644
index 0000000..aae8d26
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-bs-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Upravljanje aplikacijama"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-bs/arrays.xml b/tests/CarDeveloperOptions/res/values-bs/arrays.xml
new file mode 100644
index 0000000..7aa97e8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-bs/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Evropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Azija"</item>
+    <item msgid="6683489385344409742">"Australija"</item>
+    <item msgid="5194868215515664953">"pacifički"</item>
+    <item msgid="7044520255415007865">"Sve"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekunda"</item>
+    <item msgid="772029947136115322">"30 sekundi"</item>
+    <item msgid="8743663928349474087">"1 minuta"</item>
+    <item msgid="1506508631223164814">"2 minute"</item>
+    <item msgid="8664703938127907662">"5 minuta"</item>
+    <item msgid="5827960506924849753">"10 minuta"</item>
+    <item msgid="6677424950124253938">"30 minuta"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Malen"</item>
+    <item msgid="591935967183159581">"Zadano"</item>
+    <item msgid="1714184661981538355">"Velik"</item>
+    <item msgid="6195563047686707484">"Najveći"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skeniranje..."</item>
+    <item msgid="8058143476674427024">"Povezivanje na mrežu <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Autentifikacija s mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Dohvaćanje IP adrese s mreže <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Povezano na mrežu <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspendirano"</item>
+    <item msgid="4133290864821295785">"Prekidanje veze s mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Isključena"</item>
+    <item msgid="2847316776634969068">"Neuspješno"</item>
+    <item msgid="4390990424746035383">"Blokirano"</item>
+    <item msgid="3618248791367063949">"Privremeno izbjegavaj veze lošeg kvaliteta"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Pritisnuti gumb"</item>
+    <item msgid="7401896200768713930">"PIN ravnopravnog uređaja"</item>
+    <item msgid="4526848028011846710">"PIN ovog uređaja"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Povezano"</item>
+    <item msgid="983792611851499732">"Pozvan"</item>
+    <item msgid="5438273405428201793">"Neuspješno"</item>
+    <item msgid="4646663015449312554">"Dostupno"</item>
+    <item msgid="3230556734162006146">"Izvan opsega"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minute"</item>
+    <item msgid="2759776603549270587">"5 minuta"</item>
+    <item msgid="167772676068860015">"1 sat"</item>
+    <item msgid="5985477119043628504">"Ne ističe nikada"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Posljednjih 30 dana"</item>
+    <item msgid="3211287705232736964">"Podesi ciklus korištenja…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Vrijeme korištenja"</item>
+    <item msgid="2784401352592276015">"Posljednji put korišteno"</item>
+    <item msgid="249854287216326349">"Ime aplikacije"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ništa"</item>
+    <item msgid="8655686691660180616">"MSCHAPv2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ništa"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPv2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statično"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ništa"</item>
+    <item msgid="1464741437353223198">"Ručno"</item>
+    <item msgid="5793600062487886090">"Automatska konfiguracija proksija"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ništa"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ili CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interna pohrana uređaja"</item>
+    <item msgid="3186681694079967527">"Izmjenjiva SD kartica"</item>
+    <item msgid="6902033473986647035">"Neka sistem odluči"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokacija"</item>
+    <item msgid="6842381562497597649">"Lično"</item>
+    <item msgid="3966700236695683444">"Slanje poruka"</item>
+    <item msgid="8563996233342430477">"Mediji"</item>
+    <item msgid="5323851085993963783">"Uređaj"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"približna lokacija"</item>
+    <item msgid="1830619568689922920">"tačna lokacija"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibracija"</item>
+    <item msgid="8632513128515114092">"čitaj kontakte"</item>
+    <item msgid="3741042113569620272">"prromijeni kontakte"</item>
+    <item msgid="4204420969709009931">"čitaj zapisnik poziva"</item>
+    <item msgid="2260380357119423209">"promijeni zapisnik poziva"</item>
+    <item msgid="6550710385014530934">"čitaj kalendar"</item>
+    <item msgid="3575906174264853951">"promijeni kalendar"</item>
+    <item msgid="4319843242568057174">"skeniranje wi-fi mreža"</item>
+    <item msgid="2981791890467303819">"obavještenje"</item>
+    <item msgid="6617825156152476692">"traženje mobitela"</item>
+    <item msgid="8865260890611559753">"pozovi telefon"</item>
+    <item msgid="3254999273961542982">"pročitaj SMS"</item>
+    <item msgid="7711446453028825171">"piši SMS"</item>
+    <item msgid="6123238544099198034">"primi SMS"</item>
+    <item msgid="838342167431596036">"primi hitni SMS"</item>
+    <item msgid="8554432731560956686">"primi MMS"</item>
+    <item msgid="7464863464299515059">"primi WAP push poruku"</item>
+    <item msgid="310463075729606765">"pošalji SMS"</item>
+    <item msgid="7338021933527689514">"pročitaj ICC SMS"</item>
+    <item msgid="6130369335466613036">"piši ICC SMS"</item>
+    <item msgid="6536865581421670942">"izmijeni postavke"</item>
+    <item msgid="4547203129183558973">"crtaj preko"</item>
+    <item msgid="9080347512916542840">"pristupi obavještenjima"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"snimi zvuk"</item>
+    <item msgid="9182794235292595296">"reproduciraj zvuk"</item>
+    <item msgid="8760743229597702019">"čitaj međumemoriju"</item>
+    <item msgid="2266923698240538544">"mijenjaj međumemoriju"</item>
+    <item msgid="1801619438618539275">"dugmad za upravljanje medijima"</item>
+    <item msgid="31588119965784465">"aplikacija sa odobrenjem za reproduciranje zvuka"</item>
+    <item msgid="7565226799008076833">"centar za upravljanje zvukom"</item>
+    <item msgid="5420704980305018295">"jačina glasa"</item>
+    <item msgid="5797363115508970204">"jačina zvuka zvona"</item>
+    <item msgid="8233154098550715999">"jačina zvuka medija"</item>
+    <item msgid="5196715605078153950">"jačina zvuka alarma"</item>
+    <item msgid="394030698764284577">"jačina zvuka za obavještenja"</item>
+    <item msgid="8952898972491680178">"jačina zvuka za Bluetooth vezu"</item>
+    <item msgid="8506227454543690851">"drži aktivnim"</item>
+    <item msgid="1108160036049727420">"prati lokaciju"</item>
+    <item msgid="1496205959751719491">"prati lokaciju sa velikom potrošnjom"</item>
+    <item msgid="3776296279910987380">"preuzmi statistiku korištenja"</item>
+    <item msgid="8827100324471975602">"isključi/uključi mikrofon"</item>
+    <item msgid="6880736730520126864">"prikaži toast poruku"</item>
+    <item msgid="4933375960222609935">"projiciranje medija"</item>
+    <item msgid="8357907018938895462">"aktiviraj VPN"</item>
+    <item msgid="8143812849911310973">"ispisana pozadinska slika"</item>
+    <item msgid="6266277260961066535">"asistent za podešavanje strukture"</item>
+    <item msgid="7715498149883482300">"asistent za snimak ekrana"</item>
+    <item msgid="4046679376726313293">"čitaj podatke o stanju telefona"</item>
+    <item msgid="6329507266039719587">"dodaj govornu poštu"</item>
+    <item msgid="7692440726415391408">"koristi SIP"</item>
+    <item msgid="8572453398128326267">"procesiraj odlazni poziv"</item>
+    <item msgid="7775674394089376306">"otisak prsta"</item>
+    <item msgid="3182815133441738779">"tjelesni senzori"</item>
+    <item msgid="2793100005496829513">"čita podatke info servisā"</item>
+    <item msgid="2633626056029384366">"lažna lokacija"</item>
+    <item msgid="8356842191824684631">"čitaj podatke iz pohrane"</item>
+    <item msgid="5671906070163291500">"zapisuj podatke u pohranu"</item>
+    <item msgid="2791955098549340418">"uključi ekran"</item>
+    <item msgid="5599435119609178367">"pregledaj račune"</item>
+    <item msgid="1165623660533024666">"radi u pozadini"</item>
+    <item msgid="6423861043647911030">"jačina zvuka za pristupačnost"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kratko"</item>
+    <item msgid="4816511817309094890">"Srednja"</item>
+    <item msgid="8305084671259331134">"Dugo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Zadano"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif kondenzovani"</item>
+    <item msgid="6529379119163117545">"Sans-serif fiksnog razmaka"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif fiksnog razmaka"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Kurziv"</item>
+    <item msgid="6896773537705206194">"Mala početna slova"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Zadano"</item>
+    <item msgid="6488643537808152001">"Ništa"</item>
+    <item msgid="552332815156010137">"Sa obrisom"</item>
+    <item msgid="7187891159463789272">"Osjenčena"</item>
+    <item msgid="8019330250538856521">"Povišeno"</item>
+    <item msgid="8987385315647049787">"Udubljena"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Koristi zadane postavke aplikacija"</item>
+    <item msgid="8611890312638868524">"Bijelo na crnom"</item>
+    <item msgid="5891360837786277638">"Crno na bijelom"</item>
+    <item msgid="2798457065945456853">"Žuto na crnom"</item>
+    <item msgid="5799049811524553967">"Žuto na plavom"</item>
+    <item msgid="3673930830658169860">"Prilagođeno"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN sa pre-shared lozinkama"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN sa certifikatima"</item>
+    <item msgid="312397853907741968">"IPSec VPN sa pre-shared lozinkama i Xauth autentifikacijom"</item>
+    <item msgid="3319427315593649917">"IPSec VPN sa certifikatima i Xauth autentifikacijom"</item>
+    <item msgid="8258927774145391041">"IPSec VPN sa certifikatima i hibridnom autentifikacijom"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ništa"</item>
+    <item msgid="1157046369795346308">"Ručno"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Isključena"</item>
+    <item msgid="8754480102834556765">"Pokretanje…"</item>
+    <item msgid="3351334355574270250">"Povezivanje…"</item>
+    <item msgid="8303882153995748352">"Povezano"</item>
+    <item msgid="9135049670787351881">"Privremeni prekid"</item>
+    <item msgid="2124868417182583926">"Neuspješno"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Pitaj"</item>
+    <item msgid="7718817231348607934">"Nikada ne dozvoli"</item>
+    <item msgid="8184570120217958741">"Uvijek dozvoli"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Uporna"</item>
+    <item msgid="167418068739176448">"Maksimalna aktivnost"</item>
+    <item msgid="4760813290195199773">"Važno (u prvom planu)"</item>
+    <item msgid="2328684826817647595">"Važno (u pozadini)"</item>
+    <item msgid="7746406490652867365">"Izrada sigurnosnih kopija"</item>
+    <item msgid="5597404364389196754">"Velika težina"</item>
+    <item msgid="1290888779300174556">"Usluga (pokrenuta)"</item>
+    <item msgid="7241098542073939046">"Usluga (ponovno pokretanje)"</item>
+    <item msgid="6610439017684111046">"Prijemnik"</item>
+    <item msgid="7367606086319921117">"Početna"</item>
+    <item msgid="3344660712396741826">"Posljednja aktivnost"</item>
+    <item msgid="5006559348883303865">"Keširana (aktivnost)"</item>
+    <item msgid="8633480732468137525">"Keširana (aktivnost klijenta)"</item>
+    <item msgid="6248998242443333892">"Keširano (prazno)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"Plava"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Ljubičasta"</item>
+    <item msgid="5932337981182999919">"Ružičasta"</item>
+    <item msgid="5642914536624000094">"Crvena"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Starije od 30 dana"</item>
+    <item msgid="8699273238891265610">"Starije od 60 dana"</item>
+    <item msgid="8346279419423837266">"Starije od 90 dana"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detektiraj automatski"</item>
+    <item msgid="773943026484148895">"Tretiraj kao vezu s naplatom"</item>
+    <item msgid="1008268820118852416">"Tretiraj kao vezu bez naplate"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Koristi nasumičnu MAC adresu (zadano)"</item>
+    <item msgid="214234417308375326">"Koristi MAC adresu uređaja"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ne"</item>
+    <item msgid="1930581185557754880">"Da"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tamno"</item>
+    <item msgid="5079453644557603349">"Svijetlo"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Isključeno"</item>
+    <item msgid="4072198137051566919">"Otklanjanje grešaka"</item>
+    <item msgid="2473005316958868509">"Opširno"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Samo početna stranica"</item>
+    <item msgid="1161026694891024702">"Automatski"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Preferiraj GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Samo GSM"</item>
+    <item msgid="8579197487913425819">"Samo WCDMA"</item>
+    <item msgid="8465243227505412498">"Automatski GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automatski CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"Samo EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalno"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Samo TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalno"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-bs/strings.xml b/tests/CarDeveloperOptions/res/values-bs/strings.xml
index 09e47ec..9cb69eb 100644
--- a/tests/CarDeveloperOptions/res/values-bs/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-bs/strings.xml
@@ -732,7 +732,7 @@
       <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> aktivnih aplikacija</item>
     </plurals>
     <string name="manage_trust_agents" msgid="8129970926213142261">"Pouzdani agenti"</string>
-    <string name="disabled_because_no_backup_security" msgid="8127039979909203528">"Da biste koristili, prvo postavite zaključavanje ekrana"</string>
+    <string name="disabled_because_no_backup_security" msgid="8127039979909203528">"Da ovo koristite, prvo postavite zaključavanje ekrana"</string>
     <string name="manage_trust_agents_summary" msgid="2023116850759962248">"Nema"</string>
     <plurals name="manage_trust_agents_summary_on" formatted="false" msgid="5550538038916606097">
       <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> aktivni pouzdani agent</item>
@@ -2057,7 +2057,7 @@
     <string name="audio_and_captions_category_title" msgid="6140472938769619212">"Zvuk i tekst na ekranu"</string>
     <string name="display_category_title" msgid="545168481672250195">"Prikaz"</string>
     <string name="interaction_control_category_title" msgid="8775039211811947683">"Kontrole za interakciju"</string>
-    <string name="user_installed_services_category_title" msgid="4288689493753221319">"Preuzeti servisi"</string>
+    <string name="user_installed_services_category_title" msgid="4288689493753221319">"Preuzete usluge"</string>
     <string name="experimental_category_title" msgid="3797000069740110717">"Eksperimentalno"</string>
     <string name="feature_flags_dashboard_title" msgid="3153034144122754381">"Oznake funkcija"</string>
     <string name="talkback_title" msgid="3717960404234260050">"Talkback"</string>
@@ -2180,7 +2180,7 @@
     <string name="captioning_foreground_opacity" msgid="7635639017810117478">"Prozirnost teksta"</string>
     <string name="captioning_edge_color" msgid="4330622137047993780">"Boja rubova"</string>
     <string name="captioning_edge_type" msgid="4414946407430588162">"Vrsta rubova"</string>
-    <string name="captioning_typeface" msgid="7893208796949341767">"Skup fontova"</string>
+    <string name="captioning_typeface" msgid="7893208796949341767">"Porodica fontova"</string>
     <string name="captioning_preview_text" msgid="4877753964772618049">"Stilovi će izgledati ovako"</string>
     <string name="captioning_preview_characters" msgid="6469599599352973561">"Aa"</string>
     <string name="locale_default" msgid="910074908458214054">"Zadano"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ca-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ca-nokeys/strings.xml
new file mode 100644
index 0000000..f7d7ddb
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ca-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gestiona les aplicacions"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ca/arrays.xml b/tests/CarDeveloperOptions/res/values-ca/arrays.xml
new file mode 100644
index 0000000..f9aa8a3
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ca/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amèrica"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Àfrica"</item>
+    <item msgid="2765816300353408280">"Àsia"</item>
+    <item msgid="6683489385344409742">"Austràlia"</item>
+    <item msgid="5194868215515664953">"Pacífic"</item>
+    <item msgid="7044520255415007865">"Tots"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segons"</item>
+    <item msgid="772029947136115322">"30 segons"</item>
+    <item msgid="8743663928349474087">"1 minut"</item>
+    <item msgid="1506508631223164814">"2 minuts"</item>
+    <item msgid="8664703938127907662">"5 minuts"</item>
+    <item msgid="5827960506924849753">"10 minuts"</item>
+    <item msgid="6677424950124253938">"30 minuts"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Petita"</item>
+    <item msgid="591935967183159581">"Predeterminat"</item>
+    <item msgid="1714184661981538355">"Gran"</item>
+    <item msgid="6195563047686707484">"Més grans possible"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"S\'està explorant..."</item>
+    <item msgid="8058143476674427024">"S\'està connectant a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"S\'està autenticant amb <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"S\'està obtenint l\'adreça IP de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Connectat a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspesa"</item>
+    <item msgid="4133290864821295785">"S\'està desconnectant de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Desconnectat"</item>
+    <item msgid="2847316776634969068">"Incorrecte"</item>
+    <item msgid="4390990424746035383">"Bloquejat"</item>
+    <item msgid="3618248791367063949">"S\'està evitant temporalment una connexió feble"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Botó per prémer"</item>
+    <item msgid="7401896200768713930">"PIN de l\'altre dispositiu"</item>
+    <item msgid="4526848028011846710">"PIN des del dispositiu"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connectat"</item>
+    <item msgid="983792611851499732">"Convidat"</item>
+    <item msgid="5438273405428201793">"Incorrecte"</item>
+    <item msgid="4646663015449312554">"Disponible"</item>
+    <item msgid="3230556734162006146">"Fora de l\'abast"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuts"</item>
+    <item msgid="2759776603549270587">"5 minuts"</item>
+    <item msgid="167772676068860015">"1 hora"</item>
+    <item msgid="5985477119043628504">"Sempre visible"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 darrers dies"</item>
+    <item msgid="3211287705232736964">"Defineix el cicle d\'ús..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Temps d\'ús"</item>
+    <item msgid="2784401352592276015">"Darrer ús"</item>
+    <item msgid="249854287216326349">"Nom de l\'aplicació"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Cap"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Cap"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Estàtic"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Cap"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Autoconfig. serv. inter."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Cap"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP o CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Emmagatzematge intern del dispositiu"</item>
+    <item msgid="3186681694079967527">"Targeta SD extraïble"</item>
+    <item msgid="6902033473986647035">"Deixa que ho decideixi el sistema"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Ubicació"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Missatges"</item>
+    <item msgid="8563996233342430477">"Multimèdia"</item>
+    <item msgid="5323851085993963783">"Dispositiu"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ubicació aproximada"</item>
+    <item msgid="1830619568689922920">"ubicació precisa"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibració"</item>
+    <item msgid="8632513128515114092">"lectura de contactes"</item>
+    <item msgid="3741042113569620272">"modifica els contactes"</item>
+    <item msgid="4204420969709009931">"llegeix el registre de trucades"</item>
+    <item msgid="2260380357119423209">"modifica el registre de trucades"</item>
+    <item msgid="6550710385014530934">"lectura del calendari"</item>
+    <item msgid="3575906174264853951">"modifica el calendari"</item>
+    <item msgid="4319843242568057174">"exploració de Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notificació"</item>
+    <item msgid="6617825156152476692">"exploració de cel·la"</item>
+    <item msgid="8865260890611559753">"trucada"</item>
+    <item msgid="3254999273961542982">"llegeix SMS"</item>
+    <item msgid="7711446453028825171">"escriu SMS"</item>
+    <item msgid="6123238544099198034">"rep SMS"</item>
+    <item msgid="838342167431596036">"rep SMS d\'emergència"</item>
+    <item msgid="8554432731560956686">"rep MMS"</item>
+    <item msgid="7464863464299515059">"rep insercions WAP"</item>
+    <item msgid="310463075729606765">"envia SMS"</item>
+    <item msgid="7338021933527689514">"llegeix SMS ICC"</item>
+    <item msgid="6130369335466613036">"escriu SMS ICC"</item>
+    <item msgid="6536865581421670942">"modifica la configuració"</item>
+    <item msgid="4547203129183558973">"dibuixa a sobre"</item>
+    <item msgid="9080347512916542840">"accedeix a les notificacions"</item>
+    <item msgid="5332718516635907742">"càmera"</item>
+    <item msgid="6098422447246167852">"grava l\'àudio"</item>
+    <item msgid="9182794235292595296">"reprodueix l\'àudio"</item>
+    <item msgid="8760743229597702019">"llegeix el porta-retalls"</item>
+    <item msgid="2266923698240538544">"modifica el porta-retalls"</item>
+    <item msgid="1801619438618539275">"botons multimèdia"</item>
+    <item msgid="31588119965784465">"enfocament de l\'àudio"</item>
+    <item msgid="7565226799008076833">"volum general"</item>
+    <item msgid="5420704980305018295">"volum de la veu"</item>
+    <item msgid="5797363115508970204">"volum del to"</item>
+    <item msgid="8233154098550715999">"volum de multimèdia"</item>
+    <item msgid="5196715605078153950">"volum de l\'alarma"</item>
+    <item msgid="394030698764284577">"volum de notificació"</item>
+    <item msgid="8952898972491680178">"volum del Bluetooth"</item>
+    <item msgid="8506227454543690851">"mantén actiu"</item>
+    <item msgid="1108160036049727420">"supervisa la ubicació"</item>
+    <item msgid="1496205959751719491">"fes un seguiment de la precisió de la ubicació"</item>
+    <item msgid="3776296279910987380">"obtenir estadístiques d\'ús"</item>
+    <item msgid="8827100324471975602">"silencia / deixa de silenciar el micròfon"</item>
+    <item msgid="6880736730520126864">"mostrar l\'avís"</item>
+    <item msgid="4933375960222609935">"projectar fitxers multimèdia"</item>
+    <item msgid="8357907018938895462">"activar la VPN"</item>
+    <item msgid="8143812849911310973">"fons de pantalla d\'escriptura"</item>
+    <item msgid="6266277260961066535">"estructura d\'assistència"</item>
+    <item msgid="7715498149883482300">"captura de pantalla d\'assistència"</item>
+    <item msgid="4046679376726313293">"consultar l\'estat del telèfon"</item>
+    <item msgid="6329507266039719587">"afegir missatges de veu"</item>
+    <item msgid="7692440726415391408">"utilitzar el protocol SIP"</item>
+    <item msgid="8572453398128326267">"processar les trucades sortints"</item>
+    <item msgid="7775674394089376306">"empremta digital"</item>
+    <item msgid="3182815133441738779">"sensors corporals"</item>
+    <item msgid="2793100005496829513">"consultar les difusions mòbils"</item>
+    <item msgid="2633626056029384366">"ubicació simulada"</item>
+    <item msgid="8356842191824684631">"consultar l\'emmagatzematge"</item>
+    <item msgid="5671906070163291500">"fer canvis a l\'emmagatzematge"</item>
+    <item msgid="2791955098549340418">"activar la pantalla"</item>
+    <item msgid="5599435119609178367">"obtenir comptes"</item>
+    <item msgid="1165623660533024666">"executar en segon pla"</item>
+    <item msgid="6423861043647911030">"volum d\'accessibilitat"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Breu"</item>
+    <item msgid="4816511817309094890">"Mitjana"</item>
+    <item msgid="8305084671259331134">"Llarg"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predeterminat"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensada"</item>
+    <item msgid="6529379119163117545">"Sans serif monoespaiada"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monoespaiada"</item>
+    <item msgid="4448481989108928248">"Informal"</item>
+    <item msgid="4627069151979553527">"Cursiva"</item>
+    <item msgid="6896773537705206194">"Versaletes"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predeterminat"</item>
+    <item msgid="6488643537808152001">"Cap"</item>
+    <item msgid="552332815156010137">"Contorn"</item>
+    <item msgid="7187891159463789272">"Ombra paral·lela"</item>
+    <item msgid="8019330250538856521">"Amb relleu"</item>
+    <item msgid="8987385315647049787">"Enfonsat"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Valors predeterminats"</item>
+    <item msgid="8611890312638868524">"Blanc sobre negre"</item>
+    <item msgid="5891360837786277638">"Negre sobre fons blanc"</item>
+    <item msgid="2798457065945456853">"Groc sobre negre"</item>
+    <item msgid="5799049811524553967">"Groc sobre blau"</item>
+    <item msgid="3673930830658169860">"Personalitzat"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN de PPTP"</item>
+    <item msgid="1349760781118368659">"VPN L2TP/IPSec amb claus prèviament compartides"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec amb certificats"</item>
+    <item msgid="312397853907741968">"VPN IPSec amb claus prèviament compartides i autenticació Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec amb certificats i autenticació Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec amb certificats i autenticació híbrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Cap"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Desconnectat"</item>
+    <item msgid="8754480102834556765">"S\'està inicialitzant..."</item>
+    <item msgid="3351334355574270250">"S\'està connectant..."</item>
+    <item msgid="8303882153995748352">"Connectat"</item>
+    <item msgid="9135049670787351881">"Temps d\'espera esgotat"</item>
+    <item msgid="2124868417182583926">"Incorrecte"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Pregunta-ho"</item>
+    <item msgid="7718817231348607934">"No permetis mai"</item>
+    <item msgid="8184570120217958741">"Permet sempre"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistent"</item>
+    <item msgid="167418068739176448">"Activitat principal"</item>
+    <item msgid="4760813290195199773">"Important (primer pla)"</item>
+    <item msgid="2328684826817647595">"Important (fons)"</item>
+    <item msgid="7746406490652867365">"Còpia de seguretat"</item>
+    <item msgid="5597404364389196754">"Pesat"</item>
+    <item msgid="1290888779300174556">"Servei (en execució)"</item>
+    <item msgid="7241098542073939046">"Servei (reinici)"</item>
+    <item msgid="6610439017684111046">"Receptor"</item>
+    <item msgid="7367606086319921117">"Inici"</item>
+    <item msgid="3344660712396741826">"Darrera activitat"</item>
+    <item msgid="5006559348883303865">"A la memòria cau (activitat)"</item>
+    <item msgid="8633480732468137525">"A la memòria cau (client de l\'activitat)"</item>
+    <item msgid="6248998242443333892">"A la memòria cau (buit)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Verd blavós"</item>
+    <item msgid="3228505970082457852">"Blau"</item>
+    <item msgid="6590260735734795647">"Anyil"</item>
+    <item msgid="3521763377357218577">"Porpra"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Vermell"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Més de 30 dies d\'antiguitat"</item>
+    <item msgid="8699273238891265610">"Més de 60 dies d\'antiguitat"</item>
+    <item msgid="8346279419423837266">"Més de 90 dies d\'antiguitat"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detecta automàticament"</item>
+    <item msgid="773943026484148895">"Tracta com a xarxa d\'ús mesurat"</item>
+    <item msgid="1008268820118852416">"Tracta com a xarxa d\'ús no mesurat"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Utilitza adreça MAC aleatòria (predeterminat)"</item>
+    <item msgid="214234417308375326">"Utilitza adreça MAC del dispositiu"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Sí"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Fosc"</item>
+    <item msgid="5079453644557603349">"Clar"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desactivat"</item>
+    <item msgid="4072198137051566919">"Depura"</item>
+    <item msgid="2473005316958868509">"Detalla"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Només local"</item>
+    <item msgid="1161026694891024702">"Automàtic"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Mode GSM/WCDMA preferit"</item>
+    <item msgid="7581481130337402578">"Només GSM"</item>
+    <item msgid="8579197487913425819">"Només WCDMA"</item>
+    <item msgid="8465243227505412498">"Mode GSM/WCDMA automàtic"</item>
+    <item msgid="9107479914166352132">"Mode CDMA/EvDo automàtic"</item>
+    <item msgid="4219607161971472471">"Mode CDMA sense EvDo"</item>
+    <item msgid="7278975240951052041">"Només EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Només TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EvDo/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ca/strings.xml b/tests/CarDeveloperOptions/res/values-ca/strings.xml
index ecedea7..1479396 100644
--- a/tests/CarDeveloperOptions/res/values-ca/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ca/strings.xml
@@ -349,13 +349,13 @@
     <string name="time_picker_title" msgid="1596400307061268660">"Hora"</string>
     <string name="lock_after_timeout" msgid="7755520959071097304">"Bloqueja automàticament"</string>
     <string name="lock_after_timeout_summary" msgid="3160517585613694740">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> després d\'entrar en repòs"</string>
-    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Immediatament després del repòs, menys quan <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> manté la pantalla desbloquejada"</string>
-    <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> després d\'activar el repòs, excepte si <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g> manté el dispositiu desbloquejat"</string>
+    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Immediatament després del repòs, excepte si està desbloquejat per <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
+    <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> després d\'activar el repòs, excepte si està desbloquejat per <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g>"</string>
     <string name="show_owner_info_on_lockscreen_label" msgid="4510756693837171575">"Mostra informació del propietari a la pantalla de bloqueig"</string>
     <string name="owner_info_settings_title" msgid="2537966178998339896">"Missatge a la pantalla de bloqueig"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"Activa els widgets"</string>
     <string name="security_enable_widgets_disabled_summary" msgid="4408176087132339331">"Desactivada per l\'administrador"</string>
-    <string name="lockdown_settings_title" msgid="4534779922580115990">"Mostra l\'opció Bloqueig de seguretat"</string>
+    <string name="lockdown_settings_title" msgid="4534779922580115990">"Mostra l\'opció de bloqueig de seguretat"</string>
     <string name="lockdown_settings_summary" msgid="7270756909878256174">"Mostra l\'opció del botó d\'engegada que desactiva Smart Lock, el desbloqueig amb l\'empremta digital i les notificacions a la pantalla de bloqueig"</string>
     <string name="trust_agents_extend_unlock_title" msgid="3582017561316089951">"Desbloqueig ampliat per a agents de confiança"</string>
     <string name="trust_agents_extend_unlock_summary" msgid="3543997596586078084">"Si s\'activa, els agents de confiança mantindran el dispositiu desbloquejat durant més temps, però ja no podran desbloquejar un dispositiu bloquejat."</string>
@@ -829,7 +829,7 @@
     <string name="android_beam_settings_title" msgid="3083436415873738389">"Android Beam"</string>
     <string name="android_beam_on_summary" msgid="8068287225180474199">"Preparat per compartir contingut d\'aplicacions per NFC"</string>
     <string name="android_beam_off_summary" msgid="7365818039159364600">"Desactivat"</string>
-    <string name="nfc_disabled_summary" msgid="2181777971122724361">"No està disponible perquè la funció NFC està desactivada"</string>
+    <string name="nfc_disabled_summary" msgid="2181777971122724361">"No disponible perquè la funció NFC està desactivada"</string>
     <string name="android_beam_label" msgid="5340299879556025708">"Android Beam"</string>
     <string name="android_beam_explained" msgid="4501176353247859329">"Si aquesta funció està activada, pots col·locar el dispositiu a prop d\'un altre que també sigui compatible amb la tecnologia NFC per compartir contingut d\'aplicacions entre tots dos. Per exemple, pots compartir-hi pàgines web, vídeos de YouTube, contactes i moltes coses més.\n\nCol·loca els dispositius a prop (normalment encarant-los per la part posterior) i, a continuació, toca la pantalla del teu dispositiu. L\'aplicació determina el contingut que es pot compartir."</string>
     <string name="wifi_quick_toggle_title" msgid="7935778388625246184">"Wi-Fi"</string>
@@ -849,8 +849,8 @@
     <string name="wifi_notify_open_networks_summary" msgid="1383681260705466715">"Notifica\'m quan hi hagi una xarxa pública d\'alta qualitat"</string>
     <string name="wifi_wakeup" msgid="4963732992164721548">"Activa la Wi‑Fi automàticament"</string>
     <string name="wifi_wakeup_summary" msgid="1152699417411690">"La Wi-Fi es tornarà a activar automàticament prop de xarxes d\'alta qualitat desades, com la de casa teva"</string>
-    <string name="wifi_wakeup_summary_no_location" msgid="3007457288587966962">"No està disponible perquè la ubicació està desactivada. Activa la "<annotation id="link">"ubicació"</annotation>"."</string>
-    <string name="wifi_wakeup_summary_scanning_disabled" msgid="6820040651529910914">"No està disponible perquè la cerca de xarxes Wi-Fi està desactivada"</string>
+    <string name="wifi_wakeup_summary_no_location" msgid="3007457288587966962">"No disponible perquè la ubicació està desactivada. Activa la "<annotation id="link">"ubicació"</annotation>"."</string>
+    <string name="wifi_wakeup_summary_scanning_disabled" msgid="6820040651529910914">"No disponible perquè la cerca de xarxes Wi-Fi està desactivada"</string>
     <string name="wifi_wakeup_summary_scoring_disabled" msgid="7067018832237903151">"Per utilitzar aquesta funció, selecciona un proveïdor de valoració de xarxes"</string>
     <string name="wifi_poor_network_detection" msgid="7193423327400703073">"Només connexions estables"</string>
     <string name="wifi_poor_network_detection_summary" msgid="5539951465985614590">"No utilitzis una xarxa Wi-Fi tret que tingui una bona connexió a Internet"</string>
@@ -1554,7 +1554,7 @@
     <string name="menu_cancel" msgid="1292949233623397786">"Descarta"</string>
     <string name="error_title" msgid="6595678722641187629"></string>
     <string name="error_name_empty" msgid="4638536651499727722">"El camp Nom no pot ser buit."</string>
-    <string name="error_apn_empty" msgid="4849569239327147849">"L\'APN no pot estar buit."</string>
+    <string name="error_apn_empty" msgid="4849569239327147849">"L\'APN no pot ser buit."</string>
     <string name="error_mcc_not3" msgid="1333037488064427164">"El camp MCC ha de tenir 3 dígits."</string>
     <string name="error_mnc_not23" msgid="6738398924368729180">"El camp MNC ha de tenir 2 o 3 dígits."</string>
     <string name="error_adding_apn_type" msgid="671634520340569678">"L\'operador no permet afegir APN de tipus %s."</string>
@@ -1761,7 +1761,7 @@
     <string name="lockpattern_settings_enable_visible_pattern_title_profile" msgid="5338893138982642228">"Mostra el patró del perfil"</string>
     <string name="lockpattern_settings_enable_tactile_feedback_title" msgid="3203621862806531947">"Vibra en tocar"</string>
     <string name="lockpattern_settings_enable_power_button_instantly_locks" msgid="5890335732200257777">"El botó d\'engegada bloqueja"</string>
-    <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Excepte si <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> manté el dispositiu desbloquejat"</string>
+    <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Excepte si està desbloquejat per <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
     <string name="lockpattern_settings_choose_lock_pattern" msgid="9042142745571386381">"Defineix el patró de desbloqueig"</string>
     <string name="lockpattern_settings_change_lock_pattern" msgid="1456643060737114885">"Canvia el patró de desbloqueig"</string>
     <string name="lockpattern_settings_help_how_to_record" msgid="6037403647312543908">"Com crear un patró de desbloqueig"</string>
@@ -2499,7 +2499,7 @@
     <string name="voice_input_settings" msgid="4983011614890521505">"Configuració de l\'entrada de veu"</string>
     <string name="voice_input_settings_title" msgid="6865032806501269306">"Entrada de veu"</string>
     <string name="voice_service_preference_section_title" msgid="2984112696100778038">"Serveis d\'entrada de veu"</string>
-    <string name="voice_interactor_preference_summary" msgid="7321365727286121067">"Paraula activa i interacció completes"</string>
+    <string name="voice_interactor_preference_summary" msgid="7321365727286121067">"Paraula d\'activació i interacció completes"</string>
     <string name="voice_recognizer_preference_summary" msgid="3681161319745912594">"Conversió de parla a text simple"</string>
     <string name="voice_interaction_security_warning" msgid="4986261746316889768">"Aquest servei d\'entrada de veu podrà supervisar sempre la veu i controlar les aplicacions compatibles amb l\'entrada de veu en nom teu. Procedeix de l\'aplicació <xliff:g id="VOICE_INPUT_SERVICE_APP_NAME">%s</xliff:g>. Vols activar l\'ús d\'aquest servei?"</string>
     <string name="tts_engine_preference_title" msgid="1183116842356275061">"Motor preferent"</string>
@@ -2547,7 +2547,7 @@
     <string name="backup_data_title" msgid="4461508563849583624">"Còpia de seguretat de les meves dades"</string>
     <string name="backup_data_summary" msgid="555459891017933746">"Fes una còpia de seguretat als servidors de Google de dades d\'aplicacions, contrasenyes Wi-Fi i altres opcions de configuració"</string>
     <string name="backup_configure_account_title" msgid="1534734650559070294">"Compte de còpia de seguretat"</string>
-    <string name="backup_data_management_title" msgid="6299288795610243508">"Gestiona el compte per a la còpia de seguretat"</string>
+    <string name="backup_data_management_title" msgid="6299288795610243508">"Gestiona el compte de còpia de seguretat"</string>
     <string name="include_app_data_title" msgid="6117211611131913293">"Inclou dades de l\'aplicació"</string>
     <string name="auto_restore_title" msgid="8367486774010915221">"Restauració automàtica"</string>
     <string name="auto_restore_summary" msgid="1941047568966428377">"Quan tornis a instal·lar una aplicació, restaura la configuració i les dades incloses a la còpia de seguretat"</string>
@@ -3245,8 +3245,8 @@
     </plurals>
     <string name="zen_mode_duration_summary_time_minutes" msgid="6988728116715208859">"<xliff:g id="NUM_MINUTES">%d</xliff:g> minuts (tret que s\'activi automàticament)"</string>
     <plurals name="zen_mode_sound_summary_summary_off_info" formatted="false" msgid="8527428833487709278">
-      <item quantity="other">Es poden activar automàticament <xliff:g id="ON_COUNT">%d</xliff:g> programacions</item>
-      <item quantity="one">Es pot activar automàticament 1 programació</item>
+      <item quantity="other"><xliff:g id="ON_COUNT">%d</xliff:g> programacions es poden activar automàticament</item>
+      <item quantity="one">1 programació es pot activar automàticament</item>
     </plurals>
     <string name="zen_category_behavior" msgid="7695750848671443532">"Silencia el dispositiu, però permet excepcions"</string>
     <string name="zen_category_exceptions" msgid="2139670640033601899">"Excepcions"</string>
@@ -3581,7 +3581,7 @@
     <string name="imei_information_title" msgid="7666097743700170757">"Informació sobre l\'IMEI"</string>
     <string name="imei_information_summary" msgid="716516316022275083">"Informació relativa a l\'IMEI"</string>
     <string name="slot_number" msgid="785422579177068698">"(Ranura <xliff:g id="SLOT_NUM">%1$d</xliff:g>)"</string>
-    <string name="launch_by_default" msgid="6106985160202769725">"Obre de manera determinada"</string>
+    <string name="launch_by_default" msgid="6106985160202769725">"Obre de manera predeterminada"</string>
     <string name="app_launch_domain_links_title" msgid="2987289657348349133">"Obertura d\'enllaços"</string>
     <string name="app_launch_open_domain_urls_title" msgid="8595126859922391331">"Obrir els enllaços admesos"</string>
     <string name="app_launch_open_domain_urls_summary" msgid="6803029846855502366">"Obre sense demanar-ho"</string>
@@ -3757,7 +3757,7 @@
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Permet que l\'aplicació d\'assistència accedeixi a una imatge de la pantalla"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"Fes centellejar la pantalla"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"Fa centellejar les vores de la pantalla quan l\'aplicació d\'assistència accedeix al text d\'una pantalla o d\'una captura de pantalla"</string>
-    <string name="assist_footer" msgid="7030121180457472165">"Les aplicacions d\'assistència et poden ajudar en funció de la informació que es mostri a la pantalla. Algunes aplicacions admeten tant els serveis de menú d\'aplicacions com els d\'entrada de veu per oferir-te una assistència integrada."</string>
+    <string name="assist_footer" msgid="7030121180457472165">"Les aplicacions d\'assistència et poden ajudar en funció de la informació que es mostri a la pantalla. Algunes aplicacions admeten tant el menú d\'aplicacions com els serveis d\'entrada de veu per oferir-te una assistència integrada."</string>
     <string name="average_memory_use" msgid="5333366040118953945">"Ús mitjà de la memòria"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"Ús màxim de la memòria"</string>
     <string name="memory_usage" msgid="7963253555330830906">"Ús de la memòria"</string>
@@ -4113,11 +4113,11 @@
     <string name="swipe_up_to_switch_apps_summary" msgid="4644068184114154787">"Per canviar d\'aplicació, llisca cap amunt al botó d\'inici. Torna a lliscar cap amunt per veure totes les aplicacions. Funciona des de qualsevol pantalla. El botó Aplicacions recents ja no es mostrarà a la part inferior dreta de la pantalla."</string>
     <string name="swipe_up_to_switch_apps_suggestion_title" msgid="7641846365137536128">"Prova el botó d\'inici nou"</string>
     <string name="swipe_up_to_switch_apps_suggestion_summary" msgid="7338653224520387852">"Activa el gest nou per canviar d\'aplicació"</string>
-    <string name="ambient_display_title" product="default" msgid="6785677099744344088">"Doble toc per consultar-lo"</string>
+    <string name="ambient_display_title" product="default" msgid="6785677099744344088">"Doble toc per consultar el telèfon"</string>
     <string name="ambient_display_title" product="tablet" msgid="1106285490888683613">"Per consultar la tauleta, fes-hi doble toc"</string>
     <string name="ambient_display_title" product="device" msgid="5064644474876041478">"Per consultar el dispositiu, fes-hi doble toc"</string>
     <string name="ambient_display_summary" msgid="4882910328216411109">"Per veure l\'hora, les notificacions i altres dades, fes doble toc a la pantalla."</string>
-    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Aixeca per consultar el telèfon"</string>
+    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Aixeca per consultar-lo"</string>
     <string name="ambient_display_pickup_title" product="tablet" msgid="1555456400210301959">"Per consultar la tauleta, aixeca-la"</string>
     <string name="ambient_display_pickup_title" product="device" msgid="2480126522988135037">"Aixeca el dispositiu per consultar-lo"</string>
     <string name="ambient_display_wake_screen_title" msgid="3376988352851077102">"Activa la pantalla"</string>
diff --git a/tests/CarDeveloperOptions/res/values-cs-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-cs-nokeys/strings.xml
new file mode 100644
index 0000000..dadfa32
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-cs-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Správa aplikací"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-cs/arrays.xml b/tests/CarDeveloperOptions/res/values-cs/arrays.xml
new file mode 100644
index 0000000..fb57eb2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-cs/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Evropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asie"</item>
+    <item msgid="6683489385344409742">"Austrálie"</item>
+    <item msgid="5194868215515664953">"Tichomoří"</item>
+    <item msgid="7044520255415007865">"Vše"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 s"</item>
+    <item msgid="772029947136115322">"30 sekund"</item>
+    <item msgid="8743663928349474087">"1 minuta"</item>
+    <item msgid="1506508631223164814">"2 minuty"</item>
+    <item msgid="8664703938127907662">"5 minut"</item>
+    <item msgid="5827960506924849753">"10 minut"</item>
+    <item msgid="6677424950124253938">"30 minut"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Malé"</item>
+    <item msgid="591935967183159581">"Výchozí"</item>
+    <item msgid="1714184661981538355">"Velké"</item>
+    <item msgid="6195563047686707484">"Největší"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Vyhledávání..."</item>
+    <item msgid="8058143476674427024">"Připojování k síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Ověřování v síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Získávání IP adresy ze sítě <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Připojeno k síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Pozastaveno"</item>
+    <item msgid="4133290864821295785">"Odpojování od sítě <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Odpojeno"</item>
+    <item msgid="2847316776634969068">"Neúspěšné"</item>
+    <item msgid="4390990424746035383">"Blokované"</item>
+    <item msgid="3618248791367063949">"Dočasné předcházení slabému připojení"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Stisknutí tlačítka"</item>
+    <item msgid="7401896200768713930">"PIN ze sdíleného zařízení"</item>
+    <item msgid="4526848028011846710">"PIN z tohoto zaříz."</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Připojeno"</item>
+    <item msgid="983792611851499732">"Pozvané"</item>
+    <item msgid="5438273405428201793">"Neúspěšné"</item>
+    <item msgid="4646663015449312554">"Dostupné"</item>
+    <item msgid="3230556734162006146">"Mimo dosah"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuty"</item>
+    <item msgid="2759776603549270587">"5 minut"</item>
+    <item msgid="167772676068860015">"1 hodina"</item>
+    <item msgid="5985477119043628504">"Bez časového limitu"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Posledních 30 dní"</item>
+    <item msgid="3211287705232736964">"Zadat cyklus počítání..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Doba použití"</item>
+    <item msgid="2784401352592276015">"Naposledy použito"</item>
+    <item msgid="249854287216326349">"Název aplikace"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Žádné"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Žádné"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statická"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Žádné"</item>
+    <item msgid="1464741437353223198">"Příručka"</item>
+    <item msgid="5793600062487886090">"Autom. konfigurace proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Žádné"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP nebo CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interní úložiště zařízení"</item>
+    <item msgid="3186681694079967527">"Vyjímatelná karta SD"</item>
+    <item msgid="6902033473986647035">"Automaticky vybere systém"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Poloha"</item>
+    <item msgid="6842381562497597649">"Osobní"</item>
+    <item msgid="3966700236695683444">"SMS a MMS"</item>
+    <item msgid="8563996233342430477">"Média"</item>
+    <item msgid="5323851085993963783">"Zařízení"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"přibližná poloha"</item>
+    <item msgid="1830619568689922920">"přesná poloha"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrace"</item>
+    <item msgid="8632513128515114092">"čtení kontaktů"</item>
+    <item msgid="3741042113569620272">"úprava kontaktů"</item>
+    <item msgid="4204420969709009931">"čtení seznamu hovorů"</item>
+    <item msgid="2260380357119423209">"úprava seznamu hovorů"</item>
+    <item msgid="6550710385014530934">"čtení kalendáře"</item>
+    <item msgid="3575906174264853951">"úprava kalendáře"</item>
+    <item msgid="4319843242568057174">"vyhledání sítí Wi-Fi"</item>
+    <item msgid="2981791890467303819">"oznámení"</item>
+    <item msgid="6617825156152476692">"vyhledání vysílače mobilní sítě"</item>
+    <item msgid="8865260890611559753">"volání na telefon"</item>
+    <item msgid="3254999273961542982">"čtení zpráv SMS"</item>
+    <item msgid="7711446453028825171">"psaní zpráv SMS"</item>
+    <item msgid="6123238544099198034">"příjem zpráv SMS"</item>
+    <item msgid="838342167431596036">"příjem nouzových SMS"</item>
+    <item msgid="8554432731560956686">"příjem zpráv MMS"</item>
+    <item msgid="7464863464299515059">"příjem zpráv WAP push"</item>
+    <item msgid="310463075729606765">"odesílání zpráv SMS"</item>
+    <item msgid="7338021933527689514">"čtení ICC SMS"</item>
+    <item msgid="6130369335466613036">"psaní ICC SMS"</item>
+    <item msgid="6536865581421670942">"úprava nastavení"</item>
+    <item msgid="4547203129183558973">"vykreslení navrch"</item>
+    <item msgid="9080347512916542840">"přístup k oznámením"</item>
+    <item msgid="5332718516635907742">"fotoaparát"</item>
+    <item msgid="6098422447246167852">"nahrávání zvuku"</item>
+    <item msgid="9182794235292595296">"přehrávání zvuku"</item>
+    <item msgid="8760743229597702019">"číst obsah schránky"</item>
+    <item msgid="2266923698240538544">"upravit obsah schránky"</item>
+    <item msgid="1801619438618539275">"tlačítka médií"</item>
+    <item msgid="31588119965784465">"priorita přehrávání"</item>
+    <item msgid="7565226799008076833">"hlavní hlasitost"</item>
+    <item msgid="5420704980305018295">"hlasitost hlasu"</item>
+    <item msgid="5797363115508970204">"hlasitost vyzvánění"</item>
+    <item msgid="8233154098550715999">"hlasitost médií"</item>
+    <item msgid="5196715605078153950">"hlasitost budíku"</item>
+    <item msgid="394030698764284577">"hlasitost oznámení"</item>
+    <item msgid="8952898972491680178">"hlasitost Bluetooth"</item>
+    <item msgid="8506227454543690851">"Zakázat režim spánku"</item>
+    <item msgid="1108160036049727420">"sledovat polohu"</item>
+    <item msgid="1496205959751719491">"sledování energeticky náročného určování polohy"</item>
+    <item msgid="3776296279910987380">"načíst statistiky využití"</item>
+    <item msgid="8827100324471975602">"vypnout nebo zapnout zvuk mikrofonu"</item>
+    <item msgid="6880736730520126864">"zobrazit zprávu"</item>
+    <item msgid="4933375960222609935">"promítat média"</item>
+    <item msgid="8357907018938895462">"aktivovat VPN"</item>
+    <item msgid="8143812849911310973">"zápis tapety"</item>
+    <item msgid="6266277260961066535">"struktura asistence"</item>
+    <item msgid="7715498149883482300">"snímek obrazovky asistence"</item>
+    <item msgid="4046679376726313293">"zjištění stavu telefonu"</item>
+    <item msgid="6329507266039719587">"přidat hlasovou zprávu"</item>
+    <item msgid="7692440726415391408">"použít SIP"</item>
+    <item msgid="8572453398128326267">"zpracovat odchozí hovor"</item>
+    <item msgid="7775674394089376306">"otisk prstu"</item>
+    <item msgid="3182815133441738779">"tělesné senzory"</item>
+    <item msgid="2793100005496829513">"čtení zpráv informačních služeb"</item>
+    <item msgid="2633626056029384366">"zkušební poloha"</item>
+    <item msgid="8356842191824684631">"čtení úložiště"</item>
+    <item msgid="5671906070163291500">"zápis úložiště"</item>
+    <item msgid="2791955098549340418">"zapnout obrazovku"</item>
+    <item msgid="5599435119609178367">"načíst účty"</item>
+    <item msgid="1165623660533024666">"spustit na pozadí"</item>
+    <item msgid="6423861043647911030">"hlasitost zvuků pro usnadnění přístupu"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Poloha"</item>
+    <item msgid="6656077694190491067">"Poloha"</item>
+    <item msgid="8790228218278477369">"Poloha"</item>
+    <item msgid="7836406246005211990">"Vibrace"</item>
+    <item msgid="3951439024549922598">"Čtení kontaktů"</item>
+    <item msgid="8802152411647068">"Úprava kontaktů"</item>
+    <item msgid="229544934599698735">"Čtení seznamu hovorů"</item>
+    <item msgid="7396102294405899613">"Úprava seznamu hovorů"</item>
+    <item msgid="3597797992398484655">"Čtení kalendáře"</item>
+    <item msgid="2705975774250907343">"Úprava kalendáře"</item>
+    <item msgid="4668747371441932697">"Poloha"</item>
+    <item msgid="1487578921720243646">"Přidání oznámení"</item>
+    <item msgid="4636080349724146638">"Poloha"</item>
+    <item msgid="673510900286463926">"Volání na telefon"</item>
+    <item msgid="542083422784609790">"Čtení SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Psaní SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Příjem SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Příjem SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Příjem SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Příjem SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Odesílání SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Čtení SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Psaní SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Úprava nastavení"</item>
+    <item msgid="8705854389991425629">"Vykreslení navrch"</item>
+    <item msgid="5861356020344153651">"Přístup k oznámením"</item>
+    <item msgid="78432174621628659">"Fotoaparát"</item>
+    <item msgid="3986116419882154794">"Nahrávání zvuku"</item>
+    <item msgid="4516840825756409490">"Přehrávání zvuku"</item>
+    <item msgid="6811712502798183957">"Číst obsah schránky"</item>
+    <item msgid="2780369012602289114">"Upravit obsah schránky"</item>
+    <item msgid="2331359440170850868">"Tlačítka médií"</item>
+    <item msgid="6133599737122751231">"Priorita přehrávání"</item>
+    <item msgid="6844485713404805301">"Hlavní hlasitost"</item>
+    <item msgid="1600379420669104929">"Hlasitost hlasu"</item>
+    <item msgid="6296768210470214866">"Hlasitost vyzvánění"</item>
+    <item msgid="510690696071629241">"Hlasitost médií"</item>
+    <item msgid="406861638631430109">"Hlasitost budíku"</item>
+    <item msgid="4715864795872233884">"Hlasitost oznámení"</item>
+    <item msgid="2311478519251301183">"Hlasitost Bluetooth"</item>
+    <item msgid="5133991377896747027">"Zakázat režim spánku"</item>
+    <item msgid="2464189519136248621">"Poloha"</item>
+    <item msgid="2062677934050803037">"Poloha"</item>
+    <item msgid="1735171933192715957">"Načíst statistiky využití"</item>
+    <item msgid="1014093788778383554">"Vypnout nebo zapnout zvuk mikrofonu"</item>
+    <item msgid="4199297950608622850">"Zobrazit zprávu"</item>
+    <item msgid="2527962435313398821">"Promítat média"</item>
+    <item msgid="5117506254221861929">"Aktivovat VPN"</item>
+    <item msgid="8291198322681891160">"Zápis tapety"</item>
+    <item msgid="7106921284621230961">"Struktura asistence"</item>
+    <item msgid="4496533640894624799">"Snímek obrazovky asistence"</item>
+    <item msgid="2598847264853993611">"Zjistit stav telefonu"</item>
+    <item msgid="9215610846802973353">"Přidat hlasovou zprávu"</item>
+    <item msgid="9186411956086478261">"Použít SIP"</item>
+    <item msgid="6884763100104539558">"Zpracovat odchozí hovor"</item>
+    <item msgid="125513972170580692">"Otisk prstu"</item>
+    <item msgid="2556071024281275619">"Tělesné senzory"</item>
+    <item msgid="617168514928339387">"Čtení zpráv informačních služeb"</item>
+    <item msgid="7134693570516523585">"Zkušební poloha"</item>
+    <item msgid="7224489175375229399">"Čtení úložiště"</item>
+    <item msgid="8472735063903258202">"Zápis úložiště"</item>
+    <item msgid="4069276819909595110">"Zapnout obrazovku"</item>
+    <item msgid="1228338896751121025">"Načíst účty"</item>
+    <item msgid="3181581793459233672">"Spustit na pozadí"</item>
+    <item msgid="2340936043025374076">"Hlasitost zvuků pro usnadnění přístupu"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Krátká"</item>
+    <item msgid="4816511817309094890">"Střední"</item>
+    <item msgid="8305084671259331134">"Dlouhá"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Výchozí"</item>
+    <item msgid="4147246073737933622">"Bezpatkové"</item>
+    <item msgid="3117680749167407907">"Bezpatkové zúžené"</item>
+    <item msgid="6529379119163117545">"Bezpatkové neproporcionální"</item>
+    <item msgid="1487203730637617924">"Patkové"</item>
+    <item msgid="4937790671987480464">"Patkové neproporcionální"</item>
+    <item msgid="4448481989108928248">"Neformální"</item>
+    <item msgid="4627069151979553527">"Kurzíva"</item>
+    <item msgid="6896773537705206194">"Kapitálky"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Výchozí"</item>
+    <item msgid="6488643537808152001">"Žádné"</item>
+    <item msgid="552332815156010137">"Obrys"</item>
+    <item msgid="7187891159463789272">"Stín"</item>
+    <item msgid="8019330250538856521">"Zvýšený"</item>
+    <item msgid="8987385315647049787">"Snížený"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Použít výchozí"</item>
+    <item msgid="8611890312638868524">"Bílé na černém"</item>
+    <item msgid="5891360837786277638">"Černé na bílém"</item>
+    <item msgid="2798457065945456853">"Žluté na černém"</item>
+    <item msgid="5799049811524553967">"Žluté na modrém"</item>
+    <item msgid="3673930830658169860">"Vlastní"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN s protokolem PPTP"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN s předsdílenými klíči"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN s certifikáty"</item>
+    <item msgid="312397853907741968">"IPSec VPN s předsdílenými klíči a ověřením Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN s certifikáty a ověřením Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN s certifikáty a hybridním ověřením"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Žádný"</item>
+    <item msgid="1157046369795346308">"Příručka"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Odpojeno"</item>
+    <item msgid="8754480102834556765">"Inicializace…"</item>
+    <item msgid="3351334355574270250">"Připojování…"</item>
+    <item msgid="8303882153995748352">"Připojeno"</item>
+    <item msgid="9135049670787351881">"Časový limit"</item>
+    <item msgid="2124868417182583926">"Neúspěšné"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Zeptat se"</item>
+    <item msgid="7718817231348607934">"Nepovolit nikdy"</item>
+    <item msgid="8184570120217958741">"Vždy povolit"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Trvalé"</item>
+    <item msgid="167418068739176448">"Nejvyšší aktivita"</item>
+    <item msgid="4760813290195199773">"Důležité (v popředí)"</item>
+    <item msgid="2328684826817647595">"Důležité (na pozadí)"</item>
+    <item msgid="7746406490652867365">"Záloha"</item>
+    <item msgid="5597404364389196754">"Těžká váha"</item>
+    <item msgid="1290888779300174556">"Služba (spuštěno)"</item>
+    <item msgid="7241098542073939046">"Služba (restartuje se)"</item>
+    <item msgid="6610439017684111046">"Přijímač"</item>
+    <item msgid="7367606086319921117">"Plocha"</item>
+    <item msgid="3344660712396741826">"Poslední aktivita"</item>
+    <item msgid="5006559348883303865">"V mezipaměti (aktivita)"</item>
+    <item msgid="8633480732468137525">"V mezipaměti (klient aktivity)"</item>
+    <item msgid="6248998242443333892">"V mezipaměti (prázdné)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Šedozelená"</item>
+    <item msgid="3228505970082457852">"Modrá"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Nachová"</item>
+    <item msgid="5932337981182999919">"Růžová"</item>
+    <item msgid="5642914536624000094">"Červená"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Starší než 30 dní"</item>
+    <item msgid="8699273238891265610">"Starší než 60 dní"</item>
+    <item msgid="8346279419423837266">"Starší než 90 dní"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Zjistit automaticky"</item>
+    <item msgid="773943026484148895">"Považovat za měřenou síť"</item>
+    <item msgid="1008268820118852416">"Považovat za neměřenou síť"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Použít náhodně vygenerovanou adresu MAC"</item>
+    <item msgid="214234417308375326">"Použít adresu MAC zařízení"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ne"</item>
+    <item msgid="1930581185557754880">"Ano"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tmavý"</item>
+    <item msgid="5079453644557603349">"Světlý"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Vypnuto"</item>
+    <item msgid="4072198137051566919">"Ladění"</item>
+    <item msgid="2473005316958868509">"Podrobné"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Pouze plocha"</item>
+    <item msgid="1161026694891024702">"Automaticky"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA – preferováno"</item>
+    <item msgid="7581481130337402578">"Pouze GSM"</item>
+    <item msgid="8579197487913425819">"Pouze WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA – automaticky"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo – automaticky"</item>
+    <item msgid="4219607161971472471">"CDMA bez EvDo"</item>
+    <item msgid="7278975240951052041">"Pouze EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globální"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Pouze TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globální"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-cs/strings.xml b/tests/CarDeveloperOptions/res/values-cs/strings.xml
index ed2c4c7..2593bdc 100644
--- a/tests/CarDeveloperOptions/res/values-cs/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-cs/strings.xml
@@ -356,7 +356,7 @@
     <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Okamžitě po režimu spánku, pokud odemknutí není udržováno pomocí agenta <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
     <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> po přechodu do spánku, pokud odemknutí není udržováno funkcí <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g>"</string>
     <string name="show_owner_info_on_lockscreen_label" msgid="4510756693837171575">"Zobrazovat vlastníka na zamčené obrazovce"</string>
-    <string name="owner_info_settings_title" msgid="2537966178998339896">"Zpráva na zamčené obrazovce"</string>
+    <string name="owner_info_settings_title" msgid="2537966178998339896">"Zpráva na obr.uzamčení"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"Aktivovat widgety"</string>
     <string name="security_enable_widgets_disabled_summary" msgid="4408176087132339331">"Zakázáno administrátorem"</string>
     <string name="lockdown_settings_title" msgid="4534779922580115990">"Zobrazit možnost uzamčení"</string>
@@ -389,7 +389,7 @@
     <string name="decryption_settings_summary" product="default" msgid="7401802133199522441">"Telefon není šifrován"</string>
     <string name="encryption_and_credential_settings_summary" product="tablet" msgid="8170667308598998791">"Zařízení je zašifrováno"</string>
     <string name="decryption_settings_summary" product="tablet" msgid="7524119945312453569">"Zařízení není šifrováno"</string>
-    <string name="lockscreen_settings_title" msgid="1221505938891948413">"Zobrazení na obrazovce uzamčení"</string>
+    <string name="lockscreen_settings_title" msgid="1221505938891948413">"Vzhled obrazovky uzamčení"</string>
     <string name="lockscreen_settings_what_to_show_category" msgid="3133378945821488654">"Co zobrazit"</string>
     <string name="security_settings_summary" msgid="5210109100643223686">"Moje poloha, odemknutí obrazovky, zámek SIM, zámek úložiště pověření"</string>
     <string name="cdma_security_settings_summary" msgid="1783066617800041869">"Nastavení funkce Moje poloha, odemknutí obrazovky a zamknutí úložiště pověření"</string>
@@ -2317,9 +2317,9 @@
     <string name="controls_subtitle" msgid="6920199888882834620">"Upravit spotřebu energie"</string>
     <string name="packages_subtitle" msgid="6506269487892204413">"Zahrnuté balíčky"</string>
     <string name="battery_tip_summary_title" msgid="2750922152518825526">"Aplikace běží normálně"</string>
-    <string name="battery_tip_summary_summary" product="default" msgid="6294900413896440006">"V telefonu dochází k běžnému využití baterie na pozadí"</string>
-    <string name="battery_tip_summary_summary" product="tablet" msgid="5280099016800644130">"V tabletu dochází k běžnému využití baterie na pozadí"</string>
-    <string name="battery_tip_summary_summary" product="device" msgid="4459840492610842705">"V zařízení dochází k běžnému využití baterie na pozadí"</string>
+    <string name="battery_tip_summary_summary" product="default" msgid="6294900413896440006">"V telefonu dochází k běžnému využívání baterie na pozadí"</string>
+    <string name="battery_tip_summary_summary" product="tablet" msgid="5280099016800644130">"V tabletu dochází k běžnému využívání baterie na pozadí"</string>
+    <string name="battery_tip_summary_summary" product="device" msgid="4459840492610842705">"V zařízení dochází k běžnému využívání baterie na pozadí"</string>
     <string name="battery_tip_low_battery_title" msgid="6784043681672161175">"Nízká kapacita baterie"</string>
     <string name="battery_tip_low_battery_summary" msgid="9151355911381188604">"Baterie není schopna zajistit dobrou výdrž"</string>
     <string name="battery_tip_smart_battery_title" product="default" msgid="5517122075918038665">"Zvyšte životnost baterie telefonu"</string>
@@ -3180,7 +3180,7 @@
     <string name="keywords_financial_apps_sms_access" msgid="3236014691838121857">"finanční aplikace, sms, oprávnění"</string>
     <string name="keywords_systemui_theme" msgid="9150908170417305866">"tmavý motiv"</string>
     <string name="keywords_device_feedback" msgid="6948977907405738490">"chyba"</string>
-    <string name="keywords_ambient_display_screen" msgid="5873935693887583428">"Ambientní displej, displej zámku obrazovky"</string>
+    <string name="keywords_ambient_display_screen" msgid="5873935693887583428">"Ambientní displej, vzhled obrazovky uzamčení"</string>
     <string name="keywords_lock_screen_notif" msgid="4914337222856805463">"oznámení na obrazovce uzamčení, oznámení"</string>
     <string name="keywords_face_settings" msgid="4117345666006836599">"obličej"</string>
     <string name="keywords_fingerprint_settings" msgid="902902368701134163">"otisk prstu, přidat otisk prstu"</string>
@@ -3872,7 +3872,7 @@
     <string name="assist_access_screenshot_title" msgid="1991014038776117688">"Použití snímku obrazovky"</string>
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Asistenční aplikace bude mít přístup k obrazu na obrazovce"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"Zablikání obrazovky"</string>
-    <string name="assist_flash_summary" msgid="6697095786317559129">"Když asistenční aplikace na obrazovce nebo snímku obrazovky narazí na text, okraje obrazovky zablikají"</string>
+    <string name="assist_flash_summary" msgid="6697095786317559129">"Když asistenční aplikace z obrazovky nebo snímku obrazovky získá text, okraje obrazovky zablikají"</string>
     <string name="assist_footer" msgid="7030121180457472165">"Asistenční aplikace vám může pomoci na základě informací na zobrazené obrazovce. Některé aplikace podporují Launcher i hlasový vstup a nabízejí integrovanou asistenci."</string>
     <string name="average_memory_use" msgid="5333366040118953945">"Průměrné využití paměti"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"Maximální využití paměti"</string>
@@ -4488,7 +4488,7 @@
     <string name="empty_networks_list" msgid="5170020017144403884">"Žádná síť nebyla nalezena."</string>
     <string name="network_query_error" msgid="525635151099480463">"Nebyla nalezena žádná síť. Zkuste to znovu."</string>
     <string name="forbidden_network" msgid="8493827960968261182">"(zakázáno)"</string>
-    <string name="no_sim_card" msgid="3708682108324275635">"Není vložena SIM karta"</string>
+    <string name="no_sim_card" msgid="3708682108324275635">"Chybí SIM karta"</string>
     <string name="preferred_network_mode_wcdma_perf_summary" msgid="6899270534608086704">"Preferovaný režim sítě: preferováno WCDMA"</string>
     <string name="preferred_network_mode_gsm_only_summary" msgid="3688217977701592962">"Preferovaný režim sítě: pouze GSM"</string>
     <string name="preferred_network_mode_wcdma_only_summary" msgid="745707973728245943">"Preferovaný režim sítě: pouze WCDMA"</string>
diff --git a/tests/CarDeveloperOptions/res/values-da-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-da-nokeys/strings.xml
new file mode 100644
index 0000000..a6e708e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-da-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Programadministration"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-da/arrays.xml b/tests/CarDeveloperOptions/res/values-da/arrays.xml
new file mode 100644
index 0000000..e77d548
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-da/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asien"</item>
+    <item msgid="6683489385344409742">"Australien"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"Alle"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekunder"</item>
+    <item msgid="772029947136115322">"30 sekunder"</item>
+    <item msgid="8743663928349474087">"1 minut"</item>
+    <item msgid="1506508631223164814">"2 minutter"</item>
+    <item msgid="8664703938127907662">"5 minutter"</item>
+    <item msgid="5827960506924849753">"10 minutter"</item>
+    <item msgid="6677424950124253938">"30 minutter"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Lille"</item>
+    <item msgid="591935967183159581">"Standard"</item>
+    <item msgid="1714184661981538355">"Stor"</item>
+    <item msgid="6195563047686707484">"Størst"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Søger..."</item>
+    <item msgid="8058143476674427024">"Opretter forbindelse til <xliff:g id="NETWORK_NAME">%1$s</xliff:g> ..."</item>
+    <item msgid="7547609081339573756">"Godkender med <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Henter IP-adresse fra <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Forbundet til <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Sat på pause"</item>
+    <item msgid="4133290864821295785">"Afbryder fra <xliff:g id="NETWORK_NAME">%1$s</xliff:g> ..."</item>
+    <item msgid="3980154971187953257">"Afbrudt"</item>
+    <item msgid="2847316776634969068">"Mislykkedes"</item>
+    <item msgid="4390990424746035383">"Blokeret"</item>
+    <item msgid="3618248791367063949">"Undgår midlertidigt dårlig forbindelse"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Tryk på knappen"</item>
+    <item msgid="7401896200768713930">"Pinkode fra din vens enhed"</item>
+    <item msgid="4526848028011846710">"Pinkode fra denne enhed"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Tilsluttet"</item>
+    <item msgid="983792611851499732">"Inviteret"</item>
+    <item msgid="5438273405428201793">"Mislykkedes"</item>
+    <item msgid="4646663015449312554">"Tilgængeligt"</item>
+    <item msgid="3230556734162006146">"Uden for rækkevidde"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutter"</item>
+    <item msgid="2759776603549270587">"5 minutter"</item>
+    <item msgid="167772676068860015">"1 time"</item>
+    <item msgid="5985477119043628504">"Aldrig timeout"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"De seneste 30 dage"</item>
+    <item msgid="3211287705232736964">"Angiv cyklus for brug..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Brugstid"</item>
+    <item msgid="2784401352592276015">"Sidst anvendt"</item>
+    <item msgid="249854287216326349">"Navn på app"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Intet"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Intet"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statisk"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Intet"</item>
+    <item msgid="1464741437353223198">"Brugervejledning"</item>
+    <item msgid="5793600062487886090">"Proxy Auto-Config"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Intet"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP eller CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Intern lagerplads på enheden"</item>
+    <item msgid="3186681694079967527">"SD-kort, der kan fjernes"</item>
+    <item msgid="6902033473986647035">"Lad systemet vælge"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Placering"</item>
+    <item msgid="6842381562497597649">"Personlig"</item>
+    <item msgid="3966700236695683444">"Beskeder"</item>
+    <item msgid="8563996233342430477">"Medier"</item>
+    <item msgid="5323851085993963783">"Enhed"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"omtrentlig placering"</item>
+    <item msgid="1830619568689922920">"nøjagtig placering"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrer"</item>
+    <item msgid="8632513128515114092">"læs kontakter"</item>
+    <item msgid="3741042113569620272">"rediger kontakter"</item>
+    <item msgid="4204420969709009931">"læse opkaldsliste"</item>
+    <item msgid="2260380357119423209">"rediger opkaldslisten"</item>
+    <item msgid="6550710385014530934">"læs kalenderen"</item>
+    <item msgid="3575906174264853951">"rediger kalenderen"</item>
+    <item msgid="4319843242568057174">"Wi-Fi-søgning"</item>
+    <item msgid="2981791890467303819">"notifikation"</item>
+    <item msgid="6617825156152476692">"mobilscanning"</item>
+    <item msgid="8865260890611559753">"ring til telefon"</item>
+    <item msgid="3254999273961542982">"læs sms"</item>
+    <item msgid="7711446453028825171">"skriv sms"</item>
+    <item msgid="6123238544099198034">"modtag sms"</item>
+    <item msgid="838342167431596036">"modtag nød-sms"</item>
+    <item msgid="8554432731560956686">"modtag mms"</item>
+    <item msgid="7464863464299515059">"modtag WAP-push"</item>
+    <item msgid="310463075729606765">"send sms"</item>
+    <item msgid="7338021933527689514">"læs ICC-sms"</item>
+    <item msgid="6130369335466613036">"skriv ICC-sms"</item>
+    <item msgid="6536865581421670942">"skift indstillinger"</item>
+    <item msgid="4547203129183558973">"tegn ovenpå"</item>
+    <item msgid="9080347512916542840">"notifikationer om adgang"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"optag lyd"</item>
+    <item msgid="9182794235292595296">"afspil lyd"</item>
+    <item msgid="8760743229597702019">"læs udklipsholder"</item>
+    <item msgid="2266923698240538544">"rediger udklipsholder"</item>
+    <item msgid="1801619438618539275">"medieknapper"</item>
+    <item msgid="31588119965784465">"lydfokusering"</item>
+    <item msgid="7565226799008076833">"generel lydstyrke"</item>
+    <item msgid="5420704980305018295">"lydstyrke for stemme"</item>
+    <item msgid="5797363115508970204">"lydstyrke for ringetone"</item>
+    <item msgid="8233154098550715999">"lydstyrke for medier"</item>
+    <item msgid="5196715605078153950">"lydstyrke for alarmer"</item>
+    <item msgid="394030698764284577">"lydstyrke for notifikationer"</item>
+    <item msgid="8952898972491680178">"lydstyrke for bluetooth"</item>
+    <item msgid="8506227454543690851">"lås ikke"</item>
+    <item msgid="1108160036049727420">"overvåg placering"</item>
+    <item msgid="1496205959751719491">"overvåg placering med højt strømforbrug"</item>
+    <item msgid="3776296279910987380">"hent brugsstatistik"</item>
+    <item msgid="8827100324471975602">"slå mikrofonlyd til/fra"</item>
+    <item msgid="6880736730520126864">"vis toast"</item>
+    <item msgid="4933375960222609935">"medieprojektion"</item>
+    <item msgid="8357907018938895462">"aktivér VPN"</item>
+    <item msgid="8143812849911310973">"skriv til baggrund"</item>
+    <item msgid="6266277260961066535">"forslagsstruktur"</item>
+    <item msgid="7715498149883482300">"forslagsscreenshot"</item>
+    <item msgid="4046679376726313293">"læse telefonstatus"</item>
+    <item msgid="6329507266039719587">"tilføj telefonsvarer"</item>
+    <item msgid="7692440726415391408">"brug SIP"</item>
+    <item msgid="8572453398128326267">"håndter udgående opkald"</item>
+    <item msgid="7775674394089376306">"fingeraftryk"</item>
+    <item msgid="3182815133441738779">"kropssensorer"</item>
+    <item msgid="2793100005496829513">"læs Cell Broadcast-meddelelser"</item>
+    <item msgid="2633626056029384366">"imiteret placering"</item>
+    <item msgid="8356842191824684631">"læs lager"</item>
+    <item msgid="5671906070163291500">"skriv til lager"</item>
+    <item msgid="2791955098549340418">"tænd skærmen"</item>
+    <item msgid="5599435119609178367">"hent konti"</item>
+    <item msgid="1165623660533024666">"kør i baggrunden"</item>
+    <item msgid="6423861043647911030">"lydstyrke for hjælpefunktioner"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Placering"</item>
+    <item msgid="6656077694190491067">"Placering"</item>
+    <item msgid="8790228218278477369">"Placering"</item>
+    <item msgid="7836406246005211990">"Vibrer"</item>
+    <item msgid="3951439024549922598">"Læs kontakter"</item>
+    <item msgid="8802152411647068">"Rediger kontakter"</item>
+    <item msgid="229544934599698735">"Læs opkaldslisten"</item>
+    <item msgid="7396102294405899613">"Rediger opkaldslisten"</item>
+    <item msgid="3597797992398484655">"Læs kalenderen"</item>
+    <item msgid="2705975774250907343">"Rediger kalenderen"</item>
+    <item msgid="4668747371441932697">"Placering"</item>
+    <item msgid="1487578921720243646">"Send notifikation"</item>
+    <item msgid="4636080349724146638">"Placering"</item>
+    <item msgid="673510900286463926">"Ring til telefon"</item>
+    <item msgid="542083422784609790">"Læs sms/mms"</item>
+    <item msgid="1033780373029588436">"Skriv sms/mms"</item>
+    <item msgid="5647111115517787488">"Modtag sms/mms"</item>
+    <item msgid="8591105601108455893">"Modtag sms/mms"</item>
+    <item msgid="7730995008517841903">"Modtag sms/mms"</item>
+    <item msgid="2613033109026626086">"Modtag sms/mms"</item>
+    <item msgid="3037159047591081136">"Send sms/mms"</item>
+    <item msgid="4726682243833913568">"Læs sms/mms"</item>
+    <item msgid="6555678522277865572">"Skriv sms/mms"</item>
+    <item msgid="6981734935578130884">"Skift indstillinger"</item>
+    <item msgid="8705854389991425629">"Tegn ovenpå"</item>
+    <item msgid="5861356020344153651">"Notifikationer om adgang"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Optag lyd"</item>
+    <item msgid="4516840825756409490">"Afspil lyd"</item>
+    <item msgid="6811712502798183957">"Læs udklipsholder"</item>
+    <item msgid="2780369012602289114">"Rediger udklipsholder"</item>
+    <item msgid="2331359440170850868">"Medieknapper"</item>
+    <item msgid="6133599737122751231">"Lydfokusering"</item>
+    <item msgid="6844485713404805301">"Generel lydstyrke"</item>
+    <item msgid="1600379420669104929">"Lydstyrke for stemme"</item>
+    <item msgid="6296768210470214866">"Lydstyrke for ringetone"</item>
+    <item msgid="510690696071629241">"Lydstyrke for medier"</item>
+    <item msgid="406861638631430109">"Lydstyrke for alarmer"</item>
+    <item msgid="4715864795872233884">"Lydstyrke for notifikationer"</item>
+    <item msgid="2311478519251301183">"Lydstyrke for bluetooth"</item>
+    <item msgid="5133991377896747027">"Lås ikke"</item>
+    <item msgid="2464189519136248621">"Placering"</item>
+    <item msgid="2062677934050803037">"Placering"</item>
+    <item msgid="1735171933192715957">"Hent brugsstatistik"</item>
+    <item msgid="1014093788778383554">"Slå mikrofonlyd til/fra"</item>
+    <item msgid="4199297950608622850">"Vis toast"</item>
+    <item msgid="2527962435313398821">"Projicer medie"</item>
+    <item msgid="5117506254221861929">"Aktivér VPN"</item>
+    <item msgid="8291198322681891160">"Skriv baggrund"</item>
+    <item msgid="7106921284621230961">"Forslagsstruktur"</item>
+    <item msgid="4496533640894624799">"Forslagsscreenshot"</item>
+    <item msgid="2598847264853993611">"Læs telefonstatus"</item>
+    <item msgid="9215610846802973353">"Tilføj telefonsvarer"</item>
+    <item msgid="9186411956086478261">"Brug SIP"</item>
+    <item msgid="6884763100104539558">"Håndter udgående opkald"</item>
+    <item msgid="125513972170580692">"Fingeraftryk"</item>
+    <item msgid="2556071024281275619">"Kropssensorer"</item>
+    <item msgid="617168514928339387">"Læs Cell Broadcast-meddelelser"</item>
+    <item msgid="7134693570516523585">"Imiteret placering"</item>
+    <item msgid="7224489175375229399">"Læs lager"</item>
+    <item msgid="8472735063903258202">"Skriv til lager"</item>
+    <item msgid="4069276819909595110">"Tænd skærmen"</item>
+    <item msgid="1228338896751121025">"Hent konti"</item>
+    <item msgid="3181581793459233672">"Kør i baggrunden"</item>
+    <item msgid="2340936043025374076">"Lydstyrke for hjælpefunktioner"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kort"</item>
+    <item msgid="4816511817309094890">"Middel"</item>
+    <item msgid="8305084671259331134">"Lang"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Standard"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif, kondenseret"</item>
+    <item msgid="6529379119163117545">"Sans-serif, enkelt tegnafstand"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif, enkelt tegnafstand"</item>
+    <item msgid="4448481989108928248">"Uformel"</item>
+    <item msgid="4627069151979553527">"Kursiv"</item>
+    <item msgid="6896773537705206194">"Små versaler"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Standard"</item>
+    <item msgid="6488643537808152001">"Intet"</item>
+    <item msgid="552332815156010137">"Omrids"</item>
+    <item msgid="7187891159463789272">"Dropskygge"</item>
+    <item msgid="8019330250538856521">"Hævet"</item>
+    <item msgid="8987385315647049787">"Sænket skrift"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Anvend appstandarder"</item>
+    <item msgid="8611890312638868524">"Hvidt på sort"</item>
+    <item msgid="5891360837786277638">"Sort på hvidt"</item>
+    <item msgid="2798457065945456853">"Gult på sort"</item>
+    <item msgid="5799049811524553967">"Gult på blåt"</item>
+    <item msgid="3673930830658169860">"Tilpasset"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP-VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPsec VPN med forhåndsdelte nøgler"</item>
+    <item msgid="6128519070545038358">"L2TP/IPsec VPN med certifikater"</item>
+    <item msgid="312397853907741968">"IPSec VPN med forhåndsdelte nøgler og Xauth- godkendelse"</item>
+    <item msgid="3319427315593649917">"IPSec VPN med certifikater og Xauth-godkendelse"</item>
+    <item msgid="8258927774145391041">"IPSec VPN med certifikater og hybridgodkendelse"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ingen"</item>
+    <item msgid="1157046369795346308">"Brugervejledning"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Afbrudt"</item>
+    <item msgid="8754480102834556765">"Initialiserer..."</item>
+    <item msgid="3351334355574270250">"Opretter forbindelse..."</item>
+    <item msgid="8303882153995748352">"Tilsluttet"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Mislykkedes"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Spørg"</item>
+    <item msgid="7718817231348607934">"Tillad aldrig"</item>
+    <item msgid="8184570120217958741">"Tillad altid"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Vedvarende"</item>
+    <item msgid="167418068739176448">"Topaktivitet"</item>
+    <item msgid="4760813290195199773">"Vigtigt (forgrund)"</item>
+    <item msgid="2328684826817647595">"Vigtigt (baggrund)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Sværvægt"</item>
+    <item msgid="1290888779300174556">"Tjeneste (kører)"</item>
+    <item msgid="7241098542073939046">"Tjeneste (genstartes)"</item>
+    <item msgid="6610439017684111046">"Modtager"</item>
+    <item msgid="7367606086319921117">"Startskærm"</item>
+    <item msgid="3344660712396741826">"Seneste aktivitet"</item>
+    <item msgid="5006559348883303865">"Cachelagret (aktivitet)"</item>
+    <item msgid="8633480732468137525">"Cachelagret (aktivitetsklient)"</item>
+    <item msgid="6248998242443333892">"Cachelagret (tom)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Turkis"</item>
+    <item msgid="3228505970082457852">"Blå"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Lilla"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Rød"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Mere end 30 dage gamle"</item>
+    <item msgid="8699273238891265610">"Mere end 60 dage gamle"</item>
+    <item msgid="8346279419423837266">"Mere end 90 dage gamle"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Find automatisk"</item>
+    <item msgid="773943026484148895">"Håndter som forbrugsbaseret netværk"</item>
+    <item msgid="1008268820118852416">"Håndter som ubegrænset netværk"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Anvend tilfældig MAC (standard)"</item>
+    <item msgid="214234417308375326">"Anvend enhedens MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nej"</item>
+    <item msgid="1930581185557754880">"Ja"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Mørkt"</item>
+    <item msgid="5079453644557603349">"Lyst"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Fra"</item>
+    <item msgid="4072198137051566919">"Fejlretning"</item>
+    <item msgid="2473005316958868509">"Omfattende"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Kun hjemme"</item>
+    <item msgid="1161026694891024702">"Automatisk"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA foretrækkes"</item>
+    <item msgid="7581481130337402578">"Kun GSM"</item>
+    <item msgid="8579197487913425819">"Kun WCDMA"</item>
+    <item msgid="8465243227505412498">"Automatisk GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automatisk CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA uden EvDo"</item>
+    <item msgid="7278975240951052041">"Kun EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA+LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Kun TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-da/strings.xml b/tests/CarDeveloperOptions/res/values-da/strings.xml
index a2c527a..a3e0650 100644
--- a/tests/CarDeveloperOptions/res/values-da/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-da/strings.xml
@@ -1199,9 +1199,9 @@
     <string name="auto_brightness_description" msgid="8209140379089535411">"Skærmens lysstyrke tilpasses automatisk på baggrund af dine omgivelser og dine aktiviteter. Du kan flytte skyderen manuelt for at hjælpe Automatisk lysstyrke med at lære dine præferencer."</string>
     <string name="display_white_balance_title" msgid="5747260735311935143">"Skærmens hvidbalance"</string>
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Opmærksom skærm"</string>
-    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Aktiveret/Skærmen slukker ikke, når du kigger på den"</string>
+    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Aktiveret. Skærmen slukker ikke, når du kigger på den"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Fra"</string>
-    <string name="adaptive_sleep_description" msgid="812673735459170009">"Forhindrer at din skærm slukker, når du kigger på den."</string>
+    <string name="adaptive_sleep_description" msgid="812673735459170009">"Holder din skærm tændt, så længe du kigger på den."</string>
     <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Den opmærksomme skærm bruger frontkameraet til at tjekke, om der er nogen, der kigger på skærmen. Funktionen fungerer kun lokalt på enheden, og den gemmer ikke billeder eller sender billeder til Google."</string>
     <string name="night_display_title" msgid="1305002424893349814">"Nattelys"</string>
     <string name="night_display_text" msgid="5330502493684652527">"Nattelys gør farverne på din skærm mere gullige. Det gør din skærm mere behagelig at se på i svag belysning og kan gøre det nemmere at falde i søvn."</string>
@@ -2090,7 +2090,7 @@
     <string name="accessibility_touch_vibration_title" msgid="285890135612038092">"Vibration ved berøring"</string>
     <string name="accessibility_service_master_switch_title" msgid="2734791644475782924">"Brug tjenesten"</string>
     <string name="accessibility_daltonizer_master_switch_title" msgid="4855011639012300777">"Brug farvekorrigering"</string>
-    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Brug tekster"</string>
+    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Brug undertekster"</string>
     <string name="accessibility_hearingaid_instruction_continue_button" msgid="4650111296711466691">"Fortsæt"</string>
     <string name="accessibility_hearingaid_title" msgid="3700978781235124891">"Høreapparater"</string>
     <string name="accessibility_hearingaid_not_connected_summary" msgid="634573930469952213">"Der er ikke tilknyttet nogen høreapparater"</string>
@@ -2106,7 +2106,7 @@
     <string name="accessibility_summary_state_disabled" msgid="9197369047683087620">"Fra"</string>
     <string name="accessibility_summary_state_stopped" msgid="3170264683616172746">"Kører ikke. Tryk for at få flere oplysninger."</string>
     <string name="accessibility_description_state_stopped" msgid="7666178628053039493">"Denne tjeneste fungerer ikke korrekt."</string>
-    <string name="enable_quick_setting" msgid="1580451877998661255">"Vis i Hurtige indstillinger"</string>
+    <string name="enable_quick_setting" msgid="1580451877998661255">"Vis i Kvikmenu"</string>
     <string name="daltonizer_type" msgid="6890356081036026791">"Korrektionstilstand"</string>
     <plurals name="accessibilty_autoclick_preference_subtitle_extremely_short_delay" formatted="false" msgid="3810676455925024813">
       <item quantity="one">Ekstremt lille forsinkelse (<xliff:g id="CLICK_DELAY_LABEL_1">%1$d</xliff:g> ms)</item>
@@ -3039,7 +3039,7 @@
     <string name="account_dashboard_title" msgid="4734300939532555885">"Konti"</string>
     <string name="account_dashboard_default_summary" msgid="6822549669771936206">"Ingen konti er tilføjet"</string>
     <string name="app_default_dashboard_title" msgid="6575301028225232193">"Standardapps"</string>
-    <string name="system_dashboard_summary" msgid="6582464466735779394">"Sprog, bevægelser, klokkeslæt, bckup"</string>
+    <string name="system_dashboard_summary" msgid="6582464466735779394">"Sprog, bevægelser, klokkeslæt, backup"</string>
     <string name="search_results_title" msgid="4160717656435503940">"Indstillinger"</string>
     <string name="keywords_wifi" msgid="8477688080895466846">"wifi, wi-fi, netværksforbindelse, internet, trådløs, data, wi fi"</string>
     <string name="keywords_wifi_notify_open_networks" msgid="1031260564121854773">"Wi‑Fi-notifikation, wifi-notifikation"</string>
@@ -4071,7 +4071,7 @@
     <string name="dark_ui_mode_title" msgid="8774932716427742413">"Vælg tema"</string>
     <string name="dark_ui_settings_light_summary" msgid="5219102347744462812">"Denne indstilling gælder også for apps"</string>
     <string name="dark_ui_settings_dark_summary" msgid="7042737828943784289">"Understøttede apps skifter også til mørkt tema"</string>
-    <string name="quick_settings_developer_tiles" msgid="7423485925757678719">"Felter for udviklere til Hurtige indstillinger"</string>
+    <string name="quick_settings_developer_tiles" msgid="7423485925757678719">"Felter for udviklere til Kvikmenu"</string>
     <string name="winscope_trace_quick_settings_title" msgid="940971040388411374">"Sporing af Winscope"</string>
     <string name="sensors_off_quick_settings_title" msgid="3655699045300438902">"Sensorer er slået fra"</string>
     <string name="managed_profile_settings_title" msgid="4340409321523532402">"Indstillinger for arbejdsprofil"</string>
@@ -4117,7 +4117,7 @@
     <string name="ambient_display_title" product="tablet" msgid="1106285490888683613">"Tryk to gange for at tjekke din tablet"</string>
     <string name="ambient_display_title" product="device" msgid="5064644474876041478">"Tryk to gange for at tjekke enheden"</string>
     <string name="ambient_display_summary" msgid="4882910328216411109">"Tryk to gange på skærmen for at se klokkeslæt, notifikationer og andre oplysninger."</string>
-    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Løft for at tjekke telefon"</string>
+    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Løft for at tjekke telefonen"</string>
     <string name="ambient_display_pickup_title" product="tablet" msgid="1555456400210301959">"Løft for at tjekke din tablet"</string>
     <string name="ambient_display_pickup_title" product="device" msgid="2480126522988135037">"Løft for at tjekke enheden"</string>
     <string name="ambient_display_wake_screen_title" msgid="3376988352851077102">"Aktivering af skærm"</string>
@@ -4436,7 +4436,7 @@
     <string name="mobile_network_mode_error" msgid="6818434186286086554">"Ugyldig netværkstilstand <xliff:g id="NETWORKMODEID">%1$d</xliff:g>. Ignorer."</string>
     <string name="mobile_network_apn_title" msgid="5628635067747404382">"Adgangspunkter"</string>
     <string name="manual_mode_disallowed_summary" msgid="799800630000340665">"Utilgængelig ved forbindelse til <xliff:g id="CARRIER">%1$s</xliff:g>"</string>
-    <string name="emergency_info_contextual_card_summary" msgid="5541444321969803486">"Helbredoplysninger, kontakter til nødsituationer"</string>
+    <string name="emergency_info_contextual_card_summary" msgid="5541444321969803486">"Helbredoplysninger, kontaktpersoner ved nødsituationer"</string>
     <string name="see_more" msgid="7463940160389802632">"Se mere"</string>
     <string name="see_less" msgid="3718892257002813387">"Se mindre"</string>
     <string name="network_connection_request_dialog_title" msgid="3150489262902506588">"Enhed, der skal bruges sammen med <xliff:g id="APPNAME">%1$s</xliff:g>"</string>
diff --git a/tests/CarDeveloperOptions/res/values-de-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-de-nokeys/strings.xml
new file mode 100644
index 0000000..2a94f70
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-de-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Apps verwalten"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-de/arrays.xml b/tests/CarDeveloperOptions/res/values-de/arrays.xml
new file mode 100644
index 0000000..2349b87
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-de/arrays.xml
@@ -0,0 +1,458 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asien"</item>
+    <item msgid="6683489385344409742">"Australien"</item>
+    <item msgid="5194868215515664953">"Pazifik"</item>
+    <item msgid="7044520255415007865">"Alle"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 Sekunden"</item>
+    <item msgid="772029947136115322">"30 Sekunden"</item>
+    <item msgid="8743663928349474087">"1 Minute"</item>
+    <item msgid="1506508631223164814">"2 Minuten"</item>
+    <item msgid="8664703938127907662">"5 Minuten"</item>
+    <item msgid="5827960506924849753">"10 Minuten"</item>
+    <item msgid="6677424950124253938">"30 Minuten"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Klein"</item>
+    <item msgid="591935967183159581">"Standard"</item>
+    <item msgid="1714184661981538355">"Groß"</item>
+    <item msgid="6195563047686707484">"Am größten"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Scannen..."</item>
+    <item msgid="8058143476674427024">"Verbindung mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g> wird hergestellt..."</item>
+    <item msgid="7547609081339573756">"Authentifizierung bei <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"IP-Adresse wird von <xliff:g id="NETWORK_NAME">%1$s</xliff:g> abgerufen..."</item>
+    <item msgid="3283243151651124831">"Verbunden mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Angehalten"</item>
+    <item msgid="4133290864821295785">"Verbindung mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g> wird getrennt..."</item>
+    <item msgid="3980154971187953257">"Nicht verbunden"</item>
+    <item msgid="2847316776634969068">"Fehlgeschlagen"</item>
+    <item msgid="4390990424746035383">"Blockiert"</item>
+    <item msgid="3618248791367063949">"Schlechte Internetverbindung wird vorübergehend vermieden."</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Push-Taste"</item>
+    <item msgid="7401896200768713930">"PIN von Peer-Gerät"</item>
+    <item msgid="4526848028011846710">"PIN von diesem Gerät"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Verbunden"</item>
+    <item msgid="983792611851499732">"Eingeladen"</item>
+    <item msgid="5438273405428201793">"Fehlgeschlagen"</item>
+    <item msgid="4646663015449312554">"Verfügbar"</item>
+    <item msgid="3230556734162006146">"Außerhalb des Bereichs"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 Minuten"</item>
+    <item msgid="2759776603549270587">"5 Minuten"</item>
+    <item msgid="167772676068860015">"1 Stunde"</item>
+    <item msgid="5985477119043628504">"Keine Zeitüberschreitung"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Letzte 30 Tage"</item>
+    <item msgid="3211287705232736964">"Nutzungszyklus wählen…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Nutzungszeit"</item>
+    <item msgid="2784401352592276015">"Zuletzt verwendet"</item>
+    <item msgid="249854287216326349">"App-Name"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Keine"</item>
+    <item msgid="8655686691660180616">"MS-CHAP v2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Keine"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MS-CHAP v2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statisch"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Keine"</item>
+    <item msgid="1464741437353223198">"Handbuch"</item>
+    <item msgid="5793600062487886090">"Autom. Proxykonfiguration"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Keine"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP oder CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interner Gerätespeicher"</item>
+    <item msgid="3186681694079967527">"Austauschbare SD-Karte"</item>
+    <item msgid="6902033473986647035">"Auswahl durch das System"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Standort"</item>
+    <item msgid="6842381562497597649">"Nutzer"</item>
+    <item msgid="3966700236695683444">"Messaging"</item>
+    <item msgid="8563996233342430477">"Medien"</item>
+    <item msgid="5323851085993963783">"Gerät"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"Ungefährer Standort"</item>
+    <item msgid="1830619568689922920">"Genauer Standort"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"Vibration"</item>
+    <item msgid="8632513128515114092">"Kontakte lesen"</item>
+    <item msgid="3741042113569620272">"Kontakte ändern"</item>
+    <item msgid="4204420969709009931">"Anrufliste lesen"</item>
+    <item msgid="2260380357119423209">"Anrufliste ändern"</item>
+    <item msgid="6550710385014530934">"Kalender lesen"</item>
+    <item msgid="3575906174264853951">"Kalender ändern"</item>
+    <item msgid="4319843242568057174">"WLAN-Scan"</item>
+    <item msgid="2981791890467303819">"Benachrichtigung"</item>
+    <item msgid="6617825156152476692">"Mobilfunknetz-Scan"</item>
+    <item msgid="8865260890611559753">"Telefonieren"</item>
+    <item msgid="3254999273961542982">"SMS lesen"</item>
+    <item msgid="7711446453028825171">"SMS schreiben"</item>
+    <item msgid="6123238544099198034">"SMS empfangen"</item>
+    <item msgid="838342167431596036">"Notfall-SMS empfangen"</item>
+    <item msgid="8554432731560956686">"MMS empfangen"</item>
+    <item msgid="7464863464299515059">"WAP-Push-Nachricht empfangen"</item>
+    <item msgid="310463075729606765">"SMS senden"</item>
+    <item msgid="7338021933527689514">"ICC-SMS lesen"</item>
+    <item msgid="6130369335466613036">"ICC-SMS schreiben"</item>
+    <item msgid="6536865581421670942">"Einstellungen ändern"</item>
+    <item msgid="4547203129183558973">"An oberste Position ziehen"</item>
+    <item msgid="9080347512916542840">"Auf Benachrichtigungen zugreifen"</item>
+    <item msgid="5332718516635907742">"Kamera"</item>
+    <item msgid="6098422447246167852">"Audio aufnehmen"</item>
+    <item msgid="9182794235292595296">"Audio wiedergeben"</item>
+    <item msgid="8760743229597702019">"Zwischenablage lesen"</item>
+    <item msgid="2266923698240538544">"Zwischenablage ändern"</item>
+    <item msgid="1801619438618539275">"Medienschaltflächen"</item>
+    <item msgid="31588119965784465">"Audiofokus"</item>
+    <item msgid="7565226799008076833">"Gesamtlautstärke"</item>
+    <item msgid="5420704980305018295">"Sprachlautstärke"</item>
+    <item msgid="5797363115508970204">"Klingeltonlautstärke"</item>
+    <item msgid="8233154098550715999">"Medienlautstärke"</item>
+    <item msgid="5196715605078153950">"Weckruflautstärke"</item>
+    <item msgid="394030698764284577">"Benachrichtigungslautstärke"</item>
+    <item msgid="8952898972491680178">"Bluetooth-Lautstärke"</item>
+    <item msgid="8506227454543690851">"aktiv lassen"</item>
+    <item msgid="1108160036049727420">"Standort beobachten"</item>
+    <item msgid="1496205959751719491">"Orte mit hohem Stromverbrauch überwachen"</item>
+    <item msgid="3776296279910987380">"Nutzungsstatistiken abrufen"</item>
+    <item msgid="8827100324471975602">"Mikrofon aus- oder einschalten"</item>
+    <item msgid="6880736730520126864">"Toast anzeigen"</item>
+    <item msgid="4933375960222609935">"Projektion von Medieninhalten"</item>
+    <item msgid="8357907018938895462">"VPN aktivieren"</item>
+    <item msgid="8143812849911310973">"Hintergrund schreiben"</item>
+    <item msgid="6266277260961066535">"Strukturassistent"</item>
+    <item msgid="7715498149883482300">"Screenshotassistent"</item>
+    <item msgid="4046679376726313293">"Telefonstatus lesen"</item>
+    <item msgid="6329507266039719587">"Mailboxnachricht hinzufügen"</item>
+    <item msgid="7692440726415391408">"SIP verwenden"</item>
+    <item msgid="8572453398128326267">"Ausgehende Anrufe bearbeiten"</item>
+    <item msgid="7775674394089376306">"Fingerabdruck"</item>
+    <item msgid="3182815133441738779">"Körpersensoren"</item>
+    <item msgid="2793100005496829513">"Cell Broadcasts lesen"</item>
+    <item msgid="2633626056029384366">"Standort simulieren"</item>
+    <item msgid="8356842191824684631">"Speicher lesen"</item>
+    <item msgid="5671906070163291500">"Speicher schreiben"</item>
+    <item msgid="2791955098549340418">"Display aktivieren"</item>
+    <item msgid="5599435119609178367">"Konten erstellen"</item>
+    <item msgid="1165623660533024666">"Im Hintergrund ausführen"</item>
+    <item msgid="6423861043647911030">"Laustärke der Bedienungshilfen"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Standort"</item>
+    <item msgid="6656077694190491067">"Standort"</item>
+    <item msgid="8790228218278477369">"Standort"</item>
+    <item msgid="7836406246005211990">"Vibration"</item>
+    <item msgid="3951439024549922598">"Kontakte lesen"</item>
+    <item msgid="8802152411647068">"Kontakte ändern"</item>
+    <item msgid="229544934599698735">"Anrufliste lesen"</item>
+    <item msgid="7396102294405899613">"Anrufliste ändern"</item>
+    <item msgid="3597797992398484655">"Kalender lesen"</item>
+    <item msgid="2705975774250907343">"Kalender ändern"</item>
+    <item msgid="4668747371441932697">"Standort"</item>
+    <item msgid="1487578921720243646">"Benachrichtigung posten"</item>
+    <item msgid="4636080349724146638">"Standort"</item>
+    <item msgid="673510900286463926">"Telefonieren"</item>
+    <item msgid="542083422784609790">"SMS/MMS lesen"</item>
+    <item msgid="1033780373029588436">"SMS/MMS schreiben"</item>
+    <item msgid="5647111115517787488">"SMS/MMS empfangen"</item>
+    <item msgid="8591105601108455893">"SMS/MMS empfangen"</item>
+    <item msgid="7730995008517841903">"SMS/MMS empfangen"</item>
+    <item msgid="2613033109026626086">"SMS/MMS empfangen"</item>
+    <item msgid="3037159047591081136">"SMS/MMS senden"</item>
+    <item msgid="4726682243833913568">"SMS/MMS lesen"</item>
+    <item msgid="6555678522277865572">"SMS/MMS schreiben"</item>
+    <item msgid="6981734935578130884">"Einstellungen ändern"</item>
+    <item msgid="8705854389991425629">"An oberste Position ziehen"</item>
+    <item msgid="5861356020344153651">"Auf Benachrichtigungen zugreifen"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Audio aufnehmen"</item>
+    <item msgid="4516840825756409490">"Audio wiedergeben"</item>
+    <item msgid="6811712502798183957">"Zwischenablage lesen"</item>
+    <item msgid="2780369012602289114">"Zwischenablage ändern"</item>
+    <item msgid="2331359440170850868">"Medienschaltflächen"</item>
+    <item msgid="6133599737122751231">"Audiofokus"</item>
+    <item msgid="6844485713404805301">"Gesamtlautstärke"</item>
+    <item msgid="1600379420669104929">"Sprachlautstärke"</item>
+    <item msgid="6296768210470214866">"Klingeltonlautstärke"</item>
+    <item msgid="510690696071629241">"Medienlautstärke"</item>
+    <item msgid="406861638631430109">"Weckruflautstärke"</item>
+    <item msgid="4715864795872233884">"Benachrichtigungslautstärke"</item>
+    <item msgid="2311478519251301183">"Bluetooth-Lautstärke"</item>
+    <item msgid="5133991377896747027">"Aktiv lassen"</item>
+    <item msgid="2464189519136248621">"Standort"</item>
+    <item msgid="2062677934050803037">"Standort"</item>
+    <item msgid="1735171933192715957">"Nutzungsstatistiken abrufen"</item>
+    <item msgid="1014093788778383554">"Mikrofon aus- oder einschalten"</item>
+    <item msgid="4199297950608622850">"Toast anzeigen"</item>
+    <item msgid="2527962435313398821">"Medieninhalte projizieren"</item>
+    <item msgid="5117506254221861929">"VPN aktivieren"</item>
+    <item msgid="8291198322681891160">"Hintergrund schreiben"</item>
+    <item msgid="7106921284621230961">"Strukturassistent"</item>
+    <item msgid="4496533640894624799">"Screenshotassistent"</item>
+    <item msgid="2598847264853993611">"Telefonstatus lesen"</item>
+    <item msgid="9215610846802973353">"Mailboxnachricht hinzufügen"</item>
+    <item msgid="9186411956086478261">"SIP verwenden"</item>
+    <item msgid="6884763100104539558">"Ausgehende Anrufe bearbeiten"</item>
+    <item msgid="125513972170580692">"Fingerabdruck"</item>
+    <item msgid="2556071024281275619">"Körpersensoren"</item>
+    <item msgid="617168514928339387">"Cell Broadcasts lesen"</item>
+    <item msgid="7134693570516523585">"Standort simulieren"</item>
+    <item msgid="7224489175375229399">"Speicher lesen"</item>
+    <item msgid="8472735063903258202">"Speicher schreiben"</item>
+    <item msgid="4069276819909595110">"Display aktivieren"</item>
+    <item msgid="1228338896751121025">"Konten erstellen"</item>
+    <item msgid="3181581793459233672">"Im Hintergrund ausführen"</item>
+    <item msgid="2340936043025374076">"Laustärke der Bedienungshilfen"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kurz"</item>
+    <item msgid="4816511817309094890">"Mittel"</item>
+    <item msgid="8305084671259331134">"Lang"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Standard"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif, schmal"</item>
+    <item msgid="6529379119163117545">"Sans Serif Monospace"</item>
+    <item msgid="1487203730637617924">"Serife"</item>
+    <item msgid="4937790671987480464">"Serif Monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Kursiv"</item>
+    <item msgid="6896773537705206194">"Kapitälchen"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Standard"</item>
+    <item msgid="6488643537808152001">"Keine"</item>
+    <item msgid="552332815156010137">"Umriss"</item>
+    <item msgid="7187891159463789272">"Schlagschatten"</item>
+    <item msgid="8019330250538856521">"Erhöht"</item>
+    <item msgid="8987385315647049787">"Vertieft"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"App-Standard verwenden"</item>
+    <item msgid="8611890312638868524">"Weiß auf Schwarz"</item>
+    <item msgid="5891360837786277638">"Schwarz auf Weiß"</item>
+    <item msgid="2798457065945456853">"Gelb auf Schwarz"</item>
+    <item msgid="5799049811524553967">"Gelb auf Blau"</item>
+    <item msgid="3673930830658169860">"Benutzerdefiniert"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP-VPN"</item>
+    <item msgid="1349760781118368659">"L2TP-/IPSec-VPN mit vorinstallierten Schlüsseln"</item>
+    <item msgid="6128519070545038358">"L2TP-/IPSec-VPN mit Zertifikaten"</item>
+    <item msgid="312397853907741968">"IPSec-VPN mit vorinstallierten Schlüsseln und Xauth-Authentifizierung"</item>
+    <item msgid="3319427315593649917">"IPSec-VPN mit Zertifikaten und Xauth-Authentifizierung"</item>
+    <item msgid="8258927774145391041">"IPSec-VPN mit Zertifikaten und Hybrid-Authentifizierung"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ohne"</item>
+    <item msgid="1157046369795346308">"Handbuch"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Nicht verbunden"</item>
+    <item msgid="8754480102834556765">"Initialisierung läuft..."</item>
+    <item msgid="3351334355574270250">"Verbindung wird hergestellt..."</item>
+    <item msgid="8303882153995748352">"Verbunden"</item>
+    <item msgid="9135049670787351881">"Zeitüberschreitung"</item>
+    <item msgid="2124868417182583926">"Fehlgeschlagen"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Fragen"</item>
+    <item msgid="7718817231348607934">"Nie zulassen"</item>
+    <item msgid="8184570120217958741">"Immer zulassen"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Permanent"</item>
+    <item msgid="167418068739176448">"Topaktivität"</item>
+    <item msgid="4760813290195199773">"Wichtig (Vordergrund)"</item>
+    <item msgid="2328684826817647595">"Wichtig (Hintergrund)"</item>
+    <item msgid="7746406490652867365">"Sicherung"</item>
+    <item msgid="5597404364389196754">"Hohe Auslastung"</item>
+    <item msgid="1290888779300174556">"Dienst (aktiv)"</item>
+    <item msgid="7241098542073939046">"Dienst (wird neu gestartet)"</item>
+    <item msgid="6610439017684111046">"Empfänger"</item>
+    <item msgid="7367606086319921117">"Startseite"</item>
+    <item msgid="3344660712396741826">"Letzte Aktivität"</item>
+    <item msgid="5006559348883303865">"Im Cache gespeichert (Aktivität)"</item>
+    <item msgid="8633480732468137525">"Im Cache gespeichert (Aktivitätsclient)"</item>
+    <item msgid="6248998242443333892">"Im Cache gespeichert (leer)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Blaugrün"</item>
+    <item msgid="3228505970082457852">"Blau"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Lila"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Rot"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Nach 30 Tagen"</item>
+    <item msgid="8699273238891265610">"Nach 60 Tagen"</item>
+    <item msgid="8346279419423837266">"Nach 90 Tagen"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Automatisch erkennen"</item>
+    <item msgid="773943026484148895">"Wie \"kostenpflichtig\" behandeln"</item>
+    <item msgid="1008268820118852416">"Wie \"kostenlos\" behandeln"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Zufällige MAC-Adresse verwenden (Standard)"</item>
+    <item msgid="214234417308375326">"MAC-Adresse des Geräts verwenden"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nein"</item>
+    <item msgid="1930581185557754880">"\"Ja\""</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Dunkel"</item>
+    <item msgid="5079453644557603349">"Hell"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Aus"</item>
+    <item msgid="4072198137051566919">"Fehler beheben"</item>
+    <item msgid="2473005316958868509">"Ausführlich"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Nur Heimatnetz"</item>
+    <item msgid="1161026694891024702">"Automatisch"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA bevorzugt"</item>
+    <item msgid="7581481130337402578">"Nur GSM"</item>
+    <item msgid="8579197487913425819">"Nur WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA (automatisch)"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo (automatisch)"</item>
+    <item msgid="4219607161971472471">"CDMA ohne EvDo"</item>
+    <item msgid="7278975240951052041">"Nur EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Nur TD-SCDMA"</item>
+    <item msgid="4346392996298714633">"TD-SCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TD-SCDMA"</item>
+    <item msgid="9191730167201068525">"TD-SCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TD-SCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TD-SCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TD-SCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TD-SCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TD-SCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TD-SCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-de/strings.xml b/tests/CarDeveloperOptions/res/values-de/strings.xml
index d59cf49..0e47db7 100644
--- a/tests/CarDeveloperOptions/res/values-de/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-de/strings.xml
@@ -1163,7 +1163,7 @@
     <string name="accessibility_personal_account_title" msgid="7251761883688839354">"Privates Konto – <xliff:g id="MANAGED_BY">%s</xliff:g>"</string>
     <string name="search_settings" msgid="5809250790214921377">"Suche"</string>
     <string name="display_settings" msgid="1045535829232307190">"Display"</string>
-    <string name="accelerometer_title" msgid="2427487734964971453">"Display automatisch drehen"</string>
+    <string name="accelerometer_title" msgid="2427487734964971453">"Bildschirm automatisch drehen"</string>
     <string name="color_mode_title" msgid="8164858320869449142">"Farben"</string>
     <string name="color_mode_option_natural" msgid="1292837781836645320">"Natürlich"</string>
     <string name="color_mode_option_boosted" msgid="453557938434778933">"Verstärkt"</string>
@@ -2078,7 +2078,7 @@
     <string name="accessibility_control_timeout_preference_title" msgid="2771808346038759474">"Zeit zum Reagieren"</string>
     <string name="accessibility_content_timeout_preference_summary" msgid="853829064617918179">"Hier kannst du auswählen, wie lange Nachrichten sichtbar sind, die du lesen musst, die aber nur vorübergehend angezeigt werden.\n\nDiese Einstellung wird nicht von allen Apps unterstützt."</string>
     <string name="accessibility_control_timeout_preference_summary" msgid="8582212299606932160">"Hier kannst du auswählen, wie lange Nachrichten sichtbar sind, die eine Reaktion erfordern, aber nur vorübergehend angezeigt werden.\n\nDiese Einstellung wird nicht von allen Apps unterstützt."</string>
-    <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"Reaktionszeit Berühren/Halten"</string>
+    <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"\"Berühren und halten\"-Reaktionszeit"</string>
     <string name="accessibility_display_inversion_preference_title" msgid="3852635518618938998">"Farbumkehr"</string>
     <string name="accessibility_display_inversion_preference_subtitle" msgid="69291255322175323">"Kann sich auf die Leistung auswirken"</string>
     <string name="accessibility_autoclick_preference_title" msgid="9164599088410340405">"Verweildauer"</string>
@@ -2907,7 +2907,7 @@
     <string name="application_restrictions" msgid="6871981013736536763">"Apps und Inhalte zulassen"</string>
     <string name="apps_with_restrictions_header" msgid="8656739605673756176">"Apps mit Einschränkungen"</string>
     <string name="apps_with_restrictions_settings_button" msgid="5065896213467171744">"App-Einstellungen erweitern"</string>
-    <string name="nfc_payment_settings_title" msgid="5070077706735415291">"Mobil bezahlen"</string>
+    <string name="nfc_payment_settings_title" msgid="5070077706735415291">"Kontaktlos bezahlen"</string>
     <string name="nfc_payment_how_it_works" msgid="7607901964687787177">"Funktionsweise"</string>
     <string name="nfc_payment_no_apps" msgid="8844440783395420860">"Mit deinem Smartphone in Geschäften bezahlen"</string>
     <string name="nfc_payment_default" msgid="7869273092463612271">"Standard-App für Zahlungen"</string>
@@ -2916,14 +2916,14 @@
     <string name="nfc_payment_use_default" msgid="3098724195746409476">"Standard-App verwenden"</string>
     <string name="nfc_payment_favor_default" msgid="7555356982142464260">"Immer"</string>
     <string name="nfc_payment_favor_open" msgid="3739055715000436749">"Außer wenn eine andere Zahlungs-App geöffnet ist"</string>
-    <string name="nfc_payment_pay_with" msgid="8412558374792061266">"An einem Terminal für mobiles Bezahlen folgende App nutzen:"</string>
+    <string name="nfc_payment_pay_with" msgid="8412558374792061266">"An einem Terminal für kontaktloses Bezahlen folgende App nutzen:"</string>
     <string name="nfc_how_it_works_title" msgid="6531433737926327904">"An der Kasse bezahlen"</string>
     <string name="nfc_how_it_works_content" msgid="9174575836302449343">"Richte eine Zahlungs-App ein. Halte die Rückseite deines Smartphones an eine beliebige Kasse mit dem Symbol zum mobilen Bezahlen."</string>
     <string name="nfc_how_it_works_got_it" msgid="2432535672153247411">"Ok"</string>
     <string name="nfc_more_title" msgid="2825856411836382264">"Mehr…"</string>
     <string name="nfc_payment_set_default_label" msgid="3997927342761454042">"Als bevorzugte Einstellung festlegen?"</string>
-    <string name="nfc_payment_set_default" msgid="1186837502664412132">"Beim mobilen Bezahlen immer <xliff:g id="APP">%1$s</xliff:g> verwenden?"</string>
-    <string name="nfc_payment_set_default_instead_of" msgid="5746952277762109289">"Beim mobilen Bezahlen immer <xliff:g id="APP_0">%1$s</xliff:g> statt <xliff:g id="APP_1">%2$s</xliff:g> verwenden?"</string>
+    <string name="nfc_payment_set_default" msgid="1186837502664412132">"Zum kontaktlosen Bezahlen immer <xliff:g id="APP">%1$s</xliff:g> verwenden?"</string>
+    <string name="nfc_payment_set_default_instead_of" msgid="5746952277762109289">"Zum kontaktlosen Bezahlen immer <xliff:g id="APP_0">%1$s</xliff:g> statt <xliff:g id="APP_1">%2$s</xliff:g> verwenden?"</string>
     <string name="restriction_settings_title" msgid="4143751894908963736">"Einschränkungen"</string>
     <string name="restriction_menu_reset" msgid="3642252461410370554">"Einschränkungen aufheben"</string>
     <string name="restriction_menu_change_pin" msgid="592512748243421101">"PIN ändern"</string>
@@ -3088,7 +3088,7 @@
     <string name="keywords_profile_challenge" msgid="8653718001253979611">"herausforderung bei der arbeit, arbeit, profil"</string>
     <string name="keywords_unification" msgid="2020759909366983593">"arbeitsprofil, verwaltetes profil, gruppieren, gruppierung, arbeit, profil"</string>
     <string name="keywords_gesture" msgid="5031323247529869644">"Bewegungen, gesten, touch-gesten"</string>
-    <string name="keywords_payment_settings" msgid="4745023716567666052">"Bezahlen, tippen, Zahlungen"</string>
+    <string name="keywords_payment_settings" msgid="4745023716567666052">"bezahlen, kontaktlos, Zahlungen"</string>
     <string name="keywords_backup" msgid="7433356270034921627">"Sicherung, sicherung"</string>
     <string name="keywords_assist_gesture_launch" msgid="2711433664837843513">"bewegung, geste, touch-geste"</string>
     <string name="keywords_face_unlock" msgid="651615819291927262">"Face, Unlock, Gesichtserkennung, Anmeldung"</string>
diff --git a/tests/CarDeveloperOptions/res/values-el-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-el-nokeys/strings.xml
new file mode 100644
index 0000000..69a9e03
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-el-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Διαχείριση εφαρμογών"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-el/arrays.xml b/tests/CarDeveloperOptions/res/values-el/arrays.xml
new file mode 100644
index 0000000..5906e10
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-el/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Αμερική"</item>
+    <item msgid="4791956477275129121">"Ευρώπη"</item>
+    <item msgid="3812126832016254559">"Αφρική"</item>
+    <item msgid="2765816300353408280">"Ασία"</item>
+    <item msgid="6683489385344409742">"Αυστραλία"</item>
+    <item msgid="5194868215515664953">"Ειρηνικός"</item>
+    <item msgid="7044520255415007865">"Όλες"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 δευτερόλεπτα"</item>
+    <item msgid="772029947136115322">"30 δευτερόλεπτα"</item>
+    <item msgid="8743663928349474087">"1 λεπτό"</item>
+    <item msgid="1506508631223164814">"2 λεπτά"</item>
+    <item msgid="8664703938127907662">"5 λεπτά"</item>
+    <item msgid="5827960506924849753">"10 λεπτά"</item>
+    <item msgid="6677424950124253938">"30 λεπτά"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Μικρό"</item>
+    <item msgid="591935967183159581">"Προεπιλογή"</item>
+    <item msgid="1714184661981538355">"Μεγάλο"</item>
+    <item msgid="6195563047686707484">"Μεγαλύτερο"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Σάρωση..."</item>
+    <item msgid="8058143476674427024">"Σύνδεση σε <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Έλεγχος ταυτότητας με το δίκτυο <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Λήψη διεύθυνσης IP από το δίκτυο <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Συνδεδεμένο σε <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Σε αναστολή"</item>
+    <item msgid="4133290864821295785">"Αποσύνδεση από <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Αποσυνδέθηκε"</item>
+    <item msgid="2847316776634969068">"Ανεπιτυχής"</item>
+    <item msgid="4390990424746035383">"Έχει αποκλειστεί"</item>
+    <item msgid="3618248791367063949">"Προσωρινή αποφυγή αδύναμης σύνδεσης"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Κουμπί Push"</item>
+    <item msgid="7401896200768713930">"PIN από ομότιμη συσκευή"</item>
+    <item msgid="4526848028011846710">"PIN από τη συσκευή"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Συνδέθηκε"</item>
+    <item msgid="983792611851499732">"Προσκεκλημένος"</item>
+    <item msgid="5438273405428201793">"Ανεπιτυχής"</item>
+    <item msgid="4646663015449312554">"Διαθέσιμη"</item>
+    <item msgid="3230556734162006146">"Εκτός εμβέλειας"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 λεπτά"</item>
+    <item msgid="2759776603549270587">"5 λεπτά"</item>
+    <item msgid="167772676068860015">"1 ώρα"</item>
+    <item msgid="5985477119043628504">"Να μην λήγει ποτέ το χρονικό όριο"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 τελευταίες ημέρες"</item>
+    <item msgid="3211287705232736964">"Ορισμός κύκλου χρήσης…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Χρόνος χρήσης"</item>
+    <item msgid="2784401352592276015">"Τελευταία χρήση"</item>
+    <item msgid="249854287216326349">"Όνομα εφαρμογής"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Κανένα"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Κανένα"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Στατικό"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Κανένα"</item>
+    <item msgid="1464741437353223198">"Εγχειρίδιο χρήσης"</item>
+    <item msgid="5793600062487886090">"Αυτ. διαμ.διακομ.μεσολ."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Κανένα"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ή CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Εσωτερικός αποθηκευτικός χώρος της συσκευής"</item>
+    <item msgid="3186681694079967527">"Αφαιρούμενη κάρτα SD"</item>
+    <item msgid="6902033473986647035">"Να αποφασίζει το σύστημα"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Τοποθεσία"</item>
+    <item msgid="6842381562497597649">"Προσωπικό"</item>
+    <item msgid="3966700236695683444">"Ανταλλαγή μηνυμάτων"</item>
+    <item msgid="8563996233342430477">"Μέσα"</item>
+    <item msgid="5323851085993963783">"Συσκευή"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"τοποθεσία κατά προσέγγιση"</item>
+    <item msgid="1830619568689922920">"ακριβής τοποθεσία"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"δόνηση"</item>
+    <item msgid="8632513128515114092">"ανάγνωση επαφών"</item>
+    <item msgid="3741042113569620272">"τροποποίηση επαφών"</item>
+    <item msgid="4204420969709009931">"ανάγνωση αρχείου καταγραφής κλήσεων"</item>
+    <item msgid="2260380357119423209">"τροποποίηση αρχείου κλήσεων"</item>
+    <item msgid="6550710385014530934">"ανάγνωση ημερολογίου"</item>
+    <item msgid="3575906174264853951">"τροποποίηση ημερολογίου"</item>
+    <item msgid="4319843242568057174">"σάρωση Wi-Fi"</item>
+    <item msgid="2981791890467303819">"ειδοποίηση"</item>
+    <item msgid="6617825156152476692">"σάρωση κυψέλης"</item>
+    <item msgid="8865260890611559753">"κλήση τηλεφώνου"</item>
+    <item msgid="3254999273961542982">"ανάγνωση SMS"</item>
+    <item msgid="7711446453028825171">"σύνταξη SMS"</item>
+    <item msgid="6123238544099198034">"λήψη SMS"</item>
+    <item msgid="838342167431596036">"λήψη SMS έκτακτης ανάγκης"</item>
+    <item msgid="8554432731560956686">"λήψη MMS"</item>
+    <item msgid="7464863464299515059">"λήψη μηνύματος push μέσω WAP"</item>
+    <item msgid="310463075729606765">"αποστολή SMS"</item>
+    <item msgid="7338021933527689514">"ανάγνωση ICC SMS"</item>
+    <item msgid="6130369335466613036">"σύνταξη ICC SMS"</item>
+    <item msgid="6536865581421670942">"τροποποίηση ρυθμίσεων"</item>
+    <item msgid="4547203129183558973">"μεταφορά στην κορυφή"</item>
+    <item msgid="9080347512916542840">"πρόσβαση στις ειδοποιήσεις"</item>
+    <item msgid="5332718516635907742">"κάμερα"</item>
+    <item msgid="6098422447246167852">"εγγραφή ήχου"</item>
+    <item msgid="9182794235292595296">"αναπαραγωγή ήχου"</item>
+    <item msgid="8760743229597702019">"ανάγνωση περιεχόμενων προχείρου"</item>
+    <item msgid="2266923698240538544">"τροποποίηση περιεχομένων προχείρου"</item>
+    <item msgid="1801619438618539275">"κουμπιά μέσων"</item>
+    <item msgid="31588119965784465">"εστίαση ήχου"</item>
+    <item msgid="7565226799008076833">"κύρια ένταση ήχου"</item>
+    <item msgid="5420704980305018295">"έντασης ήχου φωνής"</item>
+    <item msgid="5797363115508970204">"ένταση ήχου κλήσης"</item>
+    <item msgid="8233154098550715999">"ένταση ήχου μέσων"</item>
+    <item msgid="5196715605078153950">"ένταση ήχου ξυπνητηριού"</item>
+    <item msgid="394030698764284577">"ένταση ήχου ειδοποιήσεων"</item>
+    <item msgid="8952898972491680178">"ένταση ήχου Bluetooth"</item>
+    <item msgid="8506227454543690851">"διατήρηση λειτουργίας"</item>
+    <item msgid="1108160036049727420">"παρακολούθηση τοποθεσίας"</item>
+    <item msgid="1496205959751719491">"παρακολούθηση θέσης υψηλής ισχύος"</item>
+    <item msgid="3776296279910987380">"λήψη στατιστικών στοιχείων χρήσης"</item>
+    <item msgid="8827100324471975602">"σίγαση/κατάργηση σίγασης μικροφώνου"</item>
+    <item msgid="6880736730520126864">"εμφάνιση αναδυόμενης ειδοποίησης"</item>
+    <item msgid="4933375960222609935">"προβολή μέσου"</item>
+    <item msgid="8357907018938895462">"ενεργοποίηση VPN"</item>
+    <item msgid="8143812849911310973">"σύνταξης ταπετσαρίας"</item>
+    <item msgid="6266277260961066535">"βοήθεια δομής"</item>
+    <item msgid="7715498149883482300">"βοήθεια στιγμιότυπου οθόνης"</item>
+    <item msgid="4046679376726313293">"ανάγνωση κατάστασης τηλεφώνου"</item>
+    <item msgid="6329507266039719587">"προσθήκη αυτόματου τηλεφωνητή"</item>
+    <item msgid="7692440726415391408">"χρήση SIP"</item>
+    <item msgid="8572453398128326267">"επεξεργασία εξερχόμενης κλήσης"</item>
+    <item msgid="7775674394089376306">"δακτυλικό αποτύπωμα"</item>
+    <item msgid="3182815133441738779">"αισθητήρες σώματος"</item>
+    <item msgid="2793100005496829513">"ανάγνωση εκπομπών κινητής τηλεφωνίας"</item>
+    <item msgid="2633626056029384366">"εικονική τοποθεσία"</item>
+    <item msgid="8356842191824684631">"ανάγνωση αποθηκευτικού χώρου"</item>
+    <item msgid="5671906070163291500">"σύνταξη αποθηκευτικού χώρου"</item>
+    <item msgid="2791955098549340418">"ενεργοποίηση οθόνης"</item>
+    <item msgid="5599435119609178367">"λήψη λογαριασμών"</item>
+    <item msgid="1165623660533024666">"εκτέλεση στο παρασκήνιο"</item>
+    <item msgid="6423861043647911030">"ένταση ήχου προσβασιμότητας"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Τοποθεσία"</item>
+    <item msgid="6656077694190491067">"Τοποθεσία"</item>
+    <item msgid="8790228218278477369">"Τοποθεσία"</item>
+    <item msgid="7836406246005211990">"Δόνηση"</item>
+    <item msgid="3951439024549922598">"Ανάγνωση επαφών"</item>
+    <item msgid="8802152411647068">"Τροποποίηση επαφών"</item>
+    <item msgid="229544934599698735">"Ανάγνωση αρχείου καταγραφής κλήσεων"</item>
+    <item msgid="7396102294405899613">"Τροποποίηση αρχείου κλήσεων"</item>
+    <item msgid="3597797992398484655">"Ανάγνωση ημερολογίου"</item>
+    <item msgid="2705975774250907343">"Τροποποίηση ημερολογίου"</item>
+    <item msgid="4668747371441932697">"Τοποθεσία"</item>
+    <item msgid="1487578921720243646">"Δημοσίευση ειδοποίησης"</item>
+    <item msgid="4636080349724146638">"Τοποθεσία"</item>
+    <item msgid="673510900286463926">"Κλήση τηλεφώνου"</item>
+    <item msgid="542083422784609790">"Ανάγνωση SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Σύνταξη SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Λήψη SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Λήψη SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Λήψη SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Λήψη SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Αποστολή SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Ανάγνωση SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Σύνταξη SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Τροποποίηση ρυθμίσεων"</item>
+    <item msgid="8705854389991425629">"Μεταφορά στην κορυφή"</item>
+    <item msgid="5861356020344153651">"Πρόσβαση στις ειδοποιήσεις"</item>
+    <item msgid="78432174621628659">"Κάμερα"</item>
+    <item msgid="3986116419882154794">"Ηχογράφηση"</item>
+    <item msgid="4516840825756409490">"Αναπαραγωγή ήχου"</item>
+    <item msgid="6811712502798183957">"Ανάγνωση περιεχομένων προχείρου"</item>
+    <item msgid="2780369012602289114">"Τροποποίηση περιεχομένων προχείρου"</item>
+    <item msgid="2331359440170850868">"Κουμπιά μέσων"</item>
+    <item msgid="6133599737122751231">"Εστίαση ήχου"</item>
+    <item msgid="6844485713404805301">"Κύρια ένταση ήχου"</item>
+    <item msgid="1600379420669104929">"Έντασης ήχου φωνής"</item>
+    <item msgid="6296768210470214866">"Ένταση ήχου κλήσης"</item>
+    <item msgid="510690696071629241">"Ένταση ήχου πολυμέσων"</item>
+    <item msgid="406861638631430109">"Ένταση ήχου ξυπνητηριού"</item>
+    <item msgid="4715864795872233884">"Ένταση ήχου ειδοποίησης"</item>
+    <item msgid="2311478519251301183">"Ένταση ήχου Bluetooth"</item>
+    <item msgid="5133991377896747027">"Διατήρηση λειτουρ."</item>
+    <item msgid="2464189519136248621">"Τοποθεσία"</item>
+    <item msgid="2062677934050803037">"Τοποθεσία"</item>
+    <item msgid="1735171933192715957">"Λήψη στατιστικών στοιχείων χρήσης"</item>
+    <item msgid="1014093788778383554">"Σίγαση/κατάργηση σίγασης μικροφώνου"</item>
+    <item msgid="4199297950608622850">"Εμφάνιση αναδυόμενης ειδοποίησης"</item>
+    <item msgid="2527962435313398821">"Προβολή μέσου"</item>
+    <item msgid="5117506254221861929">"Ενεργοποίηση VPN"</item>
+    <item msgid="8291198322681891160">"Ταπετσαρία σύνταξης"</item>
+    <item msgid="7106921284621230961">"Βοήθεια δομής"</item>
+    <item msgid="4496533640894624799">"Βοήθεια στιγμιότυπου οθόνης"</item>
+    <item msgid="2598847264853993611">"Ανάγνωση κατάστασης τηλεφώνου"</item>
+    <item msgid="9215610846802973353">"Προσθήκη αυτόματου τηλεφωνητή"</item>
+    <item msgid="9186411956086478261">"Χρήση SIP"</item>
+    <item msgid="6884763100104539558">"Επεξεργασία εξερχόμενης κλήσης"</item>
+    <item msgid="125513972170580692">"Δακτυλικό αποτύπωμα"</item>
+    <item msgid="2556071024281275619">"Αισθητήρες σώματος"</item>
+    <item msgid="617168514928339387">"Ανάγνωση εκπομπών κινητής τηλεφωνίας"</item>
+    <item msgid="7134693570516523585">"Εικονική τοποθεσία"</item>
+    <item msgid="7224489175375229399">"Ανάγνωση αποθηκευτικού χώρου"</item>
+    <item msgid="8472735063903258202">"Σύνταξη αποθηκευτικού χώρου"</item>
+    <item msgid="4069276819909595110">"Ενεργοποίηση οθόνης"</item>
+    <item msgid="1228338896751121025">"Λήψη λογαριασμών"</item>
+    <item msgid="3181581793459233672">"Εκτέλεση στο παρασκήνιο"</item>
+    <item msgid="2340936043025374076">"Ένταση ήχου προσβασιμότητας"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Σύντομο"</item>
+    <item msgid="4816511817309094890">"Μεσαία"</item>
+    <item msgid="8305084671259331134">"Παρατεταμένο"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Προεπιλογή"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Απλά"</item>
+    <item msgid="4627069151979553527">"Λοξά"</item>
+    <item msgid="6896773537705206194">"Μικρά κεφαλαία"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Προεπιλογή"</item>
+    <item msgid="6488643537808152001">"Κανένα"</item>
+    <item msgid="552332815156010137">"Περίγραμμα"</item>
+    <item msgid="7187891159463789272">"Αναπτυσσόμενη σκιά"</item>
+    <item msgid="8019330250538856521">"Υπερυψωμένο"</item>
+    <item msgid="8987385315647049787">"Συμπτυγμένο"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Χρήση προεπιλογών εφαρμογής"</item>
+    <item msgid="8611890312638868524">"Λευκό σε μαύρο"</item>
+    <item msgid="5891360837786277638">"Μαύρο σε λευκό"</item>
+    <item msgid="2798457065945456853">"Κίτρινο σε μαύρο"</item>
+    <item msgid="5799049811524553967">"Κίτρινο σε μπλε"</item>
+    <item msgid="3673930830658169860">"Προσαρμοσμένοι"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN με κλειδιά μοιρασμένα εκ των προτέρων"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN με πιστοποιητικά"</item>
+    <item msgid="312397853907741968">"IPSec VPN με ήδη κοινόχρηστα κλειδιά και έλεγχο ταυτότητας Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN με πιστοποιητικά και έλεγχο ταυτότητας Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN με πιστοποιητικά και υβριδικό έλεγχο ταυτότητας"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Κανένα"</item>
+    <item msgid="1157046369795346308">"Εγχειρίδιο χρήσης"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Αποσυνδέθηκε"</item>
+    <item msgid="8754480102834556765">"Προετοιμασία..."</item>
+    <item msgid="3351334355574270250">"Γίνεται σύνδεση..."</item>
+    <item msgid="8303882153995748352">"Συνδέθηκε"</item>
+    <item msgid="9135049670787351881">"Λήξη ορίου χρόνου"</item>
+    <item msgid="2124868417182583926">"Ανεπιτυχής"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Ερώτηση"</item>
+    <item msgid="7718817231348607934">"Να μην επιτρέπεται ποτέ"</item>
+    <item msgid="8184570120217958741">"Να επιτρέπεται πάντα"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Συνεχής"</item>
+    <item msgid="167418068739176448">"Κορυφαία δραστηριότητα"</item>
+    <item msgid="4760813290195199773">"Σημαντικό (προσκήνιο)"</item>
+    <item msgid="2328684826817647595">"Σημαντικό (παρασκήνιο)"</item>
+    <item msgid="7746406490652867365">"Δημιουργία αντιγράφων ασφαλείας"</item>
+    <item msgid="5597404364389196754">"Απαιτητική"</item>
+    <item msgid="1290888779300174556">"Υπηρεσία (σε εκτέλεση)"</item>
+    <item msgid="7241098542073939046">"Υπηρεσία (επανεκκίνηση)"</item>
+    <item msgid="6610439017684111046">"Δέκτης"</item>
+    <item msgid="7367606086319921117">"Αρχική οθόνη"</item>
+    <item msgid="3344660712396741826">"Τελευταία δραστηριότητα"</item>
+    <item msgid="5006559348883303865">"Αποθηκευμένο στην κρυφή μνήμη (δραστηριότητα)"</item>
+    <item msgid="8633480732468137525">"Αποθηκευμένο στην κρυφή μνήμη (δραστηριότητα πελάτη)"</item>
+    <item msgid="6248998242443333892">"Αποθηκευμένο στην κρυφή μνήμη (κενό)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Γαλαζοπράσινο"</item>
+    <item msgid="3228505970082457852">"Μπλε"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Μοβ"</item>
+    <item msgid="5932337981182999919">"Ροζ"</item>
+    <item msgid="5642914536624000094">"Κόκκινο"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Πάνω από 30 ημερών"</item>
+    <item msgid="8699273238891265610">"Πάνω από 60 ημερών"</item>
+    <item msgid="8346279419423837266">"Πάνω από 90 ημερών"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Αυτόματος εντοπισμός"</item>
+    <item msgid="773943026484148895">"Χρήση ως δικτύου με περιορισμούς"</item>
+    <item msgid="1008268820118852416">"Χρήση ως δικτύου χωρίς περιορισμούς"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Χρήση τυχαίου MAC (προεπιλογή)"</item>
+    <item msgid="214234417308375326">"Χρήση MAC συσκευής"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Όχι"</item>
+    <item msgid="1930581185557754880">"Ναι"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Σκοτεινό"</item>
+    <item msgid="5079453644557603349">"Φωτεινό"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Απενεργοποιημένη"</item>
+    <item msgid="4072198137051566919">"Εντοπισμός σφαλμάτων"</item>
+    <item msgid="2473005316958868509">"Λεπτομερής"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Μόνο αρχική σελίδα"</item>
+    <item msgid="1161026694891024702">"Αυτόματα"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Προτιμώνται GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Μόνο GSM"</item>
+    <item msgid="8579197487913425819">"Μόνο WCDMA"</item>
+    <item msgid="8465243227505412498">"Αυτόματο GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Αυτόματο EvDo/CDMA"</item>
+    <item msgid="4219607161971472471">"CDMA χωρίς EvDo"</item>
+    <item msgid="7278975240951052041">"Μόνο EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Παγκόσμιο"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Μόνο TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Παγκόσμιο"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rAU-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-en-rAU-nokeys/strings.xml
new file mode 100644
index 0000000..587a420
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rAU-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Manage applications"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rAU/arrays.xml b/tests/CarDeveloperOptions/res/values-en-rAU/arrays.xml
new file mode 100644
index 0000000..eca735f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rAU/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"All"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 seconds"</item>
+    <item msgid="772029947136115322">"30 seconds"</item>
+    <item msgid="8743663928349474087">"1 minute"</item>
+    <item msgid="1506508631223164814">"2 minutes"</item>
+    <item msgid="8664703938127907662">"5 minutes"</item>
+    <item msgid="5827960506924849753">"10 minutes"</item>
+    <item msgid="6677424950124253938">"30 minutes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Small"</item>
+    <item msgid="591935967183159581">"Default"</item>
+    <item msgid="1714184661981538355">"Large"</item>
+    <item msgid="6195563047686707484">"Largest"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Scanning…"</item>
+    <item msgid="8058143476674427024">"Connecting to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Authenticating with <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Obtaining IP address from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Connected to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspended"</item>
+    <item msgid="4133290864821295785">"Disconnecting from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Disconnected"</item>
+    <item msgid="2847316776634969068">"Unsuccessful"</item>
+    <item msgid="4390990424746035383">"Blocked"</item>
+    <item msgid="3618248791367063949">"Temporarily avoiding poor connection"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Push button"</item>
+    <item msgid="7401896200768713930">"PIN from peer device"</item>
+    <item msgid="4526848028011846710">"PIN from this device"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connected"</item>
+    <item msgid="983792611851499732">"Invited"</item>
+    <item msgid="5438273405428201793">"Unsuccessful"</item>
+    <item msgid="4646663015449312554">"Available"</item>
+    <item msgid="3230556734162006146">"Out of range"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutes"</item>
+    <item msgid="2759776603549270587">"5 minutes"</item>
+    <item msgid="167772676068860015">"1 hour"</item>
+    <item msgid="5985477119043628504">"Never time out"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Last 30 days"</item>
+    <item msgid="3211287705232736964">"Set usage cycle..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Usage time"</item>
+    <item msgid="2784401352592276015">"Last time used"</item>
+    <item msgid="249854287216326349">"App name"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"None"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"None"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Static"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"None"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Proxy Auto-Config"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"None"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP or CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Internal device storage"</item>
+    <item msgid="3186681694079967527">"Removable SD card"</item>
+    <item msgid="6902033473986647035">"Let the system decide"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Location"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Messaging"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Device"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"coarse location"</item>
+    <item msgid="1830619568689922920">"fine location"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrate"</item>
+    <item msgid="8632513128515114092">"read contacts"</item>
+    <item msgid="3741042113569620272">"modify contacts"</item>
+    <item msgid="4204420969709009931">"read call log"</item>
+    <item msgid="2260380357119423209">"modify call log"</item>
+    <item msgid="6550710385014530934">"read calendar"</item>
+    <item msgid="3575906174264853951">"modify calendar"</item>
+    <item msgid="4319843242568057174">"Wi-Fi scan"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"cell scan"</item>
+    <item msgid="8865260890611559753">"call phone"</item>
+    <item msgid="3254999273961542982">"read SMS"</item>
+    <item msgid="7711446453028825171">"write SMS"</item>
+    <item msgid="6123238544099198034">"receive SMS"</item>
+    <item msgid="838342167431596036">"receive emergency SMS"</item>
+    <item msgid="8554432731560956686">"receive MMS"</item>
+    <item msgid="7464863464299515059">"receive WAP push"</item>
+    <item msgid="310463075729606765">"send SMS"</item>
+    <item msgid="7338021933527689514">"read ICC SMS"</item>
+    <item msgid="6130369335466613036">"write ICC SMS"</item>
+    <item msgid="6536865581421670942">"modify settings"</item>
+    <item msgid="4547203129183558973">"draw on top"</item>
+    <item msgid="9080347512916542840">"access notifications"</item>
+    <item msgid="5332718516635907742">"camera"</item>
+    <item msgid="6098422447246167852">"record audio"</item>
+    <item msgid="9182794235292595296">"play audio"</item>
+    <item msgid="8760743229597702019">"read clipboard"</item>
+    <item msgid="2266923698240538544">"modify clipboard"</item>
+    <item msgid="1801619438618539275">"media buttons"</item>
+    <item msgid="31588119965784465">"audio focus"</item>
+    <item msgid="7565226799008076833">"master volume"</item>
+    <item msgid="5420704980305018295">"voice volume"</item>
+    <item msgid="5797363115508970204">"ring volume"</item>
+    <item msgid="8233154098550715999">"media volume"</item>
+    <item msgid="5196715605078153950">"alarm volume"</item>
+    <item msgid="394030698764284577">"notification volume"</item>
+    <item msgid="8952898972491680178">"Bluetooth volume"</item>
+    <item msgid="8506227454543690851">"keep awake"</item>
+    <item msgid="1108160036049727420">"monitor location"</item>
+    <item msgid="1496205959751719491">"monitor high power location"</item>
+    <item msgid="3776296279910987380">"get usage stats"</item>
+    <item msgid="8827100324471975602">"mute/unmute microphone"</item>
+    <item msgid="6880736730520126864">"show toast"</item>
+    <item msgid="4933375960222609935">"project media"</item>
+    <item msgid="8357907018938895462">"activate VPN"</item>
+    <item msgid="8143812849911310973">"write wallpaper"</item>
+    <item msgid="6266277260961066535">"assist structure"</item>
+    <item msgid="7715498149883482300">"assist screenshot"</item>
+    <item msgid="4046679376726313293">"read phone state"</item>
+    <item msgid="6329507266039719587">"add voicemail"</item>
+    <item msgid="7692440726415391408">"use sip"</item>
+    <item msgid="8572453398128326267">"process outgoing call"</item>
+    <item msgid="7775674394089376306">"fingerprint"</item>
+    <item msgid="3182815133441738779">"body sensors"</item>
+    <item msgid="2793100005496829513">"read mobile broadcasts"</item>
+    <item msgid="2633626056029384366">"mock location"</item>
+    <item msgid="8356842191824684631">"read storage"</item>
+    <item msgid="5671906070163291500">"write storage"</item>
+    <item msgid="2791955098549340418">"turn on screen"</item>
+    <item msgid="5599435119609178367">"get accounts"</item>
+    <item msgid="1165623660533024666">"run in background"</item>
+    <item msgid="6423861043647911030">"accessibility volume"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Short"</item>
+    <item msgid="4816511817309094890">"Medium"</item>
+    <item msgid="8305084671259331134">"Long"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Default"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Default"</item>
+    <item msgid="6488643537808152001">"None"</item>
+    <item msgid="552332815156010137">"Outline"</item>
+    <item msgid="7187891159463789272">"Drop shadow"</item>
+    <item msgid="8019330250538856521">"Raised"</item>
+    <item msgid="8987385315647049787">"Depressed"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Use app defaults"</item>
+    <item msgid="8611890312638868524">"White on black"</item>
+    <item msgid="5891360837786277638">"Black on white"</item>
+    <item msgid="2798457065945456853">"Yellow on black"</item>
+    <item msgid="5799049811524553967">"Yellow on blue"</item>
+    <item msgid="3673930830658169860">"Custom"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN with preshared keys"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN with certificates"</item>
+    <item msgid="312397853907741968">"IPSec VPN with preshared keys and Xauth authentication"</item>
+    <item msgid="3319427315593649917">"IPSec VPN with certificates and Xauth authentication"</item>
+    <item msgid="8258927774145391041">"IPSec VPN with certificates and hybrid authentication"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"None"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Disconnected"</item>
+    <item msgid="8754480102834556765">"Initialising..."</item>
+    <item msgid="3351334355574270250">"Connecting…"</item>
+    <item msgid="8303882153995748352">"Connected"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Unsuccessful"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Ask"</item>
+    <item msgid="7718817231348607934">"Never allow"</item>
+    <item msgid="8184570120217958741">"Always allow"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistent"</item>
+    <item msgid="167418068739176448">"Top activity"</item>
+    <item msgid="4760813290195199773">"Important (foreground)"</item>
+    <item msgid="2328684826817647595">"Important (background)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Heavy weight"</item>
+    <item msgid="1290888779300174556">"Service (running)"</item>
+    <item msgid="7241098542073939046">"Service (restarting)"</item>
+    <item msgid="6610439017684111046">"Receiver"</item>
+    <item msgid="7367606086319921117">"Home"</item>
+    <item msgid="3344660712396741826">"Last activity"</item>
+    <item msgid="5006559348883303865">"Cached (activity)"</item>
+    <item msgid="8633480732468137525">"Cached (activity client)"</item>
+    <item msgid="6248998242443333892">"Cached (empty)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"Blue"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Purple"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Red"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Over 30 days old"</item>
+    <item msgid="8699273238891265610">"Over 60 days old"</item>
+    <item msgid="8346279419423837266">"Over 90 days old"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detect automatically"</item>
+    <item msgid="773943026484148895">"Treat as metered"</item>
+    <item msgid="1008268820118852416">"Treat as unmetered"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Use randomised MAC (default)"</item>
+    <item msgid="214234417308375326">"Use device MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Yes"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Dark"</item>
+    <item msgid="5079453644557603349">"Light"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Off"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Home only"</item>
+    <item msgid="1161026694891024702">"Automatic"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferred"</item>
+    <item msgid="7581481130337402578">"GSM only"</item>
+    <item msgid="8579197487913425819">"WCDMA only"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA auto"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo auto"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo only"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA only"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rAU/strings.xml b/tests/CarDeveloperOptions/res/values-en-rAU/strings.xml
index 1b1faa9..3e77e38 100644
--- a/tests/CarDeveloperOptions/res/values-en-rAU/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-en-rAU/strings.xml
@@ -2052,7 +2052,7 @@
     <string name="accessibility_screen_magnification_short_summary" msgid="5698545174944494486">"Tap 3 times to zoom"</string>
     <string name="accessibility_screen_magnification_navbar_short_summary" msgid="5418767043532322397">"Tap a button to zoom"</string>
     <string name="accessibility_screen_magnification_summary" msgid="3363006902079431772"><b>"To zoom"</b>", quickly tap the screen 3 times.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", quickly tap the screen 3 times and hold down your finger on the third tap.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can\'t zoom in on the keyboard and navigation bar."</string>
-    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch &amp; hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
+    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch and hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
     <string name="accessibility_screen_magnification_navbar_configuration_warning" msgid="6477234309484795550">"The accessibility button is set to <xliff:g id="SERVICE">%1$s</xliff:g>. To use magnification, touch &amp; hold the accessibility button, then select magnification."</string>
     <string name="accessibility_global_gesture_preference_title" msgid="3842279082831426816">"Volume key shortcut"</string>
     <string name="accessibility_shortcut_service_title" msgid="3516052294376744060">"Shortcut service"</string>
@@ -4101,9 +4101,9 @@
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"Manual"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"Free up space now"</string>
     <string name="gesture_preference_title" msgid="583646591518373785">"Gestures"</string>
-    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick gestures to control your phone"</string>
-    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick gestures to control your tablet"</string>
-    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick gestures to control your device"</string>
+    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick Gestures to control your phone"</string>
+    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick Gestures to control your tablet"</string>
+    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick Gestures to control your device"</string>
     <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Jump to camera"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"To quickly open camera, press the power button twice. Works from any screen."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Open camera quickly"</string>
diff --git a/tests/CarDeveloperOptions/res/values-en-rCA-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-en-rCA-nokeys/strings.xml
new file mode 100644
index 0000000..587a420
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rCA-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Manage applications"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rCA/arrays.xml b/tests/CarDeveloperOptions/res/values-en-rCA/arrays.xml
new file mode 100644
index 0000000..eca735f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rCA/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"All"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 seconds"</item>
+    <item msgid="772029947136115322">"30 seconds"</item>
+    <item msgid="8743663928349474087">"1 minute"</item>
+    <item msgid="1506508631223164814">"2 minutes"</item>
+    <item msgid="8664703938127907662">"5 minutes"</item>
+    <item msgid="5827960506924849753">"10 minutes"</item>
+    <item msgid="6677424950124253938">"30 minutes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Small"</item>
+    <item msgid="591935967183159581">"Default"</item>
+    <item msgid="1714184661981538355">"Large"</item>
+    <item msgid="6195563047686707484">"Largest"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Scanning…"</item>
+    <item msgid="8058143476674427024">"Connecting to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Authenticating with <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Obtaining IP address from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Connected to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspended"</item>
+    <item msgid="4133290864821295785">"Disconnecting from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Disconnected"</item>
+    <item msgid="2847316776634969068">"Unsuccessful"</item>
+    <item msgid="4390990424746035383">"Blocked"</item>
+    <item msgid="3618248791367063949">"Temporarily avoiding poor connection"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Push button"</item>
+    <item msgid="7401896200768713930">"PIN from peer device"</item>
+    <item msgid="4526848028011846710">"PIN from this device"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connected"</item>
+    <item msgid="983792611851499732">"Invited"</item>
+    <item msgid="5438273405428201793">"Unsuccessful"</item>
+    <item msgid="4646663015449312554">"Available"</item>
+    <item msgid="3230556734162006146">"Out of range"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutes"</item>
+    <item msgid="2759776603549270587">"5 minutes"</item>
+    <item msgid="167772676068860015">"1 hour"</item>
+    <item msgid="5985477119043628504">"Never time out"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Last 30 days"</item>
+    <item msgid="3211287705232736964">"Set usage cycle..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Usage time"</item>
+    <item msgid="2784401352592276015">"Last time used"</item>
+    <item msgid="249854287216326349">"App name"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"None"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"None"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Static"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"None"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Proxy Auto-Config"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"None"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP or CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Internal device storage"</item>
+    <item msgid="3186681694079967527">"Removable SD card"</item>
+    <item msgid="6902033473986647035">"Let the system decide"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Location"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Messaging"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Device"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"coarse location"</item>
+    <item msgid="1830619568689922920">"fine location"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrate"</item>
+    <item msgid="8632513128515114092">"read contacts"</item>
+    <item msgid="3741042113569620272">"modify contacts"</item>
+    <item msgid="4204420969709009931">"read call log"</item>
+    <item msgid="2260380357119423209">"modify call log"</item>
+    <item msgid="6550710385014530934">"read calendar"</item>
+    <item msgid="3575906174264853951">"modify calendar"</item>
+    <item msgid="4319843242568057174">"Wi-Fi scan"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"cell scan"</item>
+    <item msgid="8865260890611559753">"call phone"</item>
+    <item msgid="3254999273961542982">"read SMS"</item>
+    <item msgid="7711446453028825171">"write SMS"</item>
+    <item msgid="6123238544099198034">"receive SMS"</item>
+    <item msgid="838342167431596036">"receive emergency SMS"</item>
+    <item msgid="8554432731560956686">"receive MMS"</item>
+    <item msgid="7464863464299515059">"receive WAP push"</item>
+    <item msgid="310463075729606765">"send SMS"</item>
+    <item msgid="7338021933527689514">"read ICC SMS"</item>
+    <item msgid="6130369335466613036">"write ICC SMS"</item>
+    <item msgid="6536865581421670942">"modify settings"</item>
+    <item msgid="4547203129183558973">"draw on top"</item>
+    <item msgid="9080347512916542840">"access notifications"</item>
+    <item msgid="5332718516635907742">"camera"</item>
+    <item msgid="6098422447246167852">"record audio"</item>
+    <item msgid="9182794235292595296">"play audio"</item>
+    <item msgid="8760743229597702019">"read clipboard"</item>
+    <item msgid="2266923698240538544">"modify clipboard"</item>
+    <item msgid="1801619438618539275">"media buttons"</item>
+    <item msgid="31588119965784465">"audio focus"</item>
+    <item msgid="7565226799008076833">"master volume"</item>
+    <item msgid="5420704980305018295">"voice volume"</item>
+    <item msgid="5797363115508970204">"ring volume"</item>
+    <item msgid="8233154098550715999">"media volume"</item>
+    <item msgid="5196715605078153950">"alarm volume"</item>
+    <item msgid="394030698764284577">"notification volume"</item>
+    <item msgid="8952898972491680178">"Bluetooth volume"</item>
+    <item msgid="8506227454543690851">"keep awake"</item>
+    <item msgid="1108160036049727420">"monitor location"</item>
+    <item msgid="1496205959751719491">"monitor high power location"</item>
+    <item msgid="3776296279910987380">"get usage stats"</item>
+    <item msgid="8827100324471975602">"mute/unmute microphone"</item>
+    <item msgid="6880736730520126864">"show toast"</item>
+    <item msgid="4933375960222609935">"project media"</item>
+    <item msgid="8357907018938895462">"activate VPN"</item>
+    <item msgid="8143812849911310973">"write wallpaper"</item>
+    <item msgid="6266277260961066535">"assist structure"</item>
+    <item msgid="7715498149883482300">"assist screenshot"</item>
+    <item msgid="4046679376726313293">"read phone state"</item>
+    <item msgid="6329507266039719587">"add voicemail"</item>
+    <item msgid="7692440726415391408">"use sip"</item>
+    <item msgid="8572453398128326267">"process outgoing call"</item>
+    <item msgid="7775674394089376306">"fingerprint"</item>
+    <item msgid="3182815133441738779">"body sensors"</item>
+    <item msgid="2793100005496829513">"read mobile broadcasts"</item>
+    <item msgid="2633626056029384366">"mock location"</item>
+    <item msgid="8356842191824684631">"read storage"</item>
+    <item msgid="5671906070163291500">"write storage"</item>
+    <item msgid="2791955098549340418">"turn on screen"</item>
+    <item msgid="5599435119609178367">"get accounts"</item>
+    <item msgid="1165623660533024666">"run in background"</item>
+    <item msgid="6423861043647911030">"accessibility volume"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Short"</item>
+    <item msgid="4816511817309094890">"Medium"</item>
+    <item msgid="8305084671259331134">"Long"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Default"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Default"</item>
+    <item msgid="6488643537808152001">"None"</item>
+    <item msgid="552332815156010137">"Outline"</item>
+    <item msgid="7187891159463789272">"Drop shadow"</item>
+    <item msgid="8019330250538856521">"Raised"</item>
+    <item msgid="8987385315647049787">"Depressed"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Use app defaults"</item>
+    <item msgid="8611890312638868524">"White on black"</item>
+    <item msgid="5891360837786277638">"Black on white"</item>
+    <item msgid="2798457065945456853">"Yellow on black"</item>
+    <item msgid="5799049811524553967">"Yellow on blue"</item>
+    <item msgid="3673930830658169860">"Custom"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN with preshared keys"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN with certificates"</item>
+    <item msgid="312397853907741968">"IPSec VPN with preshared keys and Xauth authentication"</item>
+    <item msgid="3319427315593649917">"IPSec VPN with certificates and Xauth authentication"</item>
+    <item msgid="8258927774145391041">"IPSec VPN with certificates and hybrid authentication"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"None"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Disconnected"</item>
+    <item msgid="8754480102834556765">"Initialising..."</item>
+    <item msgid="3351334355574270250">"Connecting…"</item>
+    <item msgid="8303882153995748352">"Connected"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Unsuccessful"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Ask"</item>
+    <item msgid="7718817231348607934">"Never allow"</item>
+    <item msgid="8184570120217958741">"Always allow"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistent"</item>
+    <item msgid="167418068739176448">"Top activity"</item>
+    <item msgid="4760813290195199773">"Important (foreground)"</item>
+    <item msgid="2328684826817647595">"Important (background)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Heavy weight"</item>
+    <item msgid="1290888779300174556">"Service (running)"</item>
+    <item msgid="7241098542073939046">"Service (restarting)"</item>
+    <item msgid="6610439017684111046">"Receiver"</item>
+    <item msgid="7367606086319921117">"Home"</item>
+    <item msgid="3344660712396741826">"Last activity"</item>
+    <item msgid="5006559348883303865">"Cached (activity)"</item>
+    <item msgid="8633480732468137525">"Cached (activity client)"</item>
+    <item msgid="6248998242443333892">"Cached (empty)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"Blue"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Purple"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Red"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Over 30 days old"</item>
+    <item msgid="8699273238891265610">"Over 60 days old"</item>
+    <item msgid="8346279419423837266">"Over 90 days old"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detect automatically"</item>
+    <item msgid="773943026484148895">"Treat as metered"</item>
+    <item msgid="1008268820118852416">"Treat as unmetered"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Use randomised MAC (default)"</item>
+    <item msgid="214234417308375326">"Use device MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Yes"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Dark"</item>
+    <item msgid="5079453644557603349">"Light"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Off"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Home only"</item>
+    <item msgid="1161026694891024702">"Automatic"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferred"</item>
+    <item msgid="7581481130337402578">"GSM only"</item>
+    <item msgid="8579197487913425819">"WCDMA only"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA auto"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo auto"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo only"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA only"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rCA/strings.xml b/tests/CarDeveloperOptions/res/values-en-rCA/strings.xml
index 3e64085..74a3676 100644
--- a/tests/CarDeveloperOptions/res/values-en-rCA/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-en-rCA/strings.xml
@@ -2052,7 +2052,7 @@
     <string name="accessibility_screen_magnification_short_summary" msgid="5698545174944494486">"Tap 3 times to zoom"</string>
     <string name="accessibility_screen_magnification_navbar_short_summary" msgid="5418767043532322397">"Tap a button to zoom"</string>
     <string name="accessibility_screen_magnification_summary" msgid="3363006902079431772"><b>"To zoom"</b>", quickly tap the screen 3 times.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", quickly tap the screen 3 times and hold down your finger on the third tap.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can\'t zoom in on the keyboard and navigation bar."</string>
-    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch &amp; hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
+    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch and hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
     <string name="accessibility_screen_magnification_navbar_configuration_warning" msgid="6477234309484795550">"The accessibility button is set to <xliff:g id="SERVICE">%1$s</xliff:g>. To use magnification, touch &amp; hold the accessibility button, then select magnification."</string>
     <string name="accessibility_global_gesture_preference_title" msgid="3842279082831426816">"Volume key shortcut"</string>
     <string name="accessibility_shortcut_service_title" msgid="3516052294376744060">"Shortcut service"</string>
@@ -4101,9 +4101,9 @@
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"Manual"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"Free up space now"</string>
     <string name="gesture_preference_title" msgid="583646591518373785">"Gestures"</string>
-    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick gestures to control your phone"</string>
-    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick gestures to control your tablet"</string>
-    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick gestures to control your device"</string>
+    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick Gestures to control your phone"</string>
+    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick Gestures to control your tablet"</string>
+    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick Gestures to control your device"</string>
     <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Jump to camera"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"To quickly open camera, press the power button twice. Works from any screen."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Open camera quickly"</string>
diff --git a/tests/CarDeveloperOptions/res/values-en-rGB-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-en-rGB-nokeys/strings.xml
new file mode 100644
index 0000000..587a420
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rGB-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Manage applications"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rGB/arrays.xml b/tests/CarDeveloperOptions/res/values-en-rGB/arrays.xml
new file mode 100644
index 0000000..eca735f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rGB/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"All"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 seconds"</item>
+    <item msgid="772029947136115322">"30 seconds"</item>
+    <item msgid="8743663928349474087">"1 minute"</item>
+    <item msgid="1506508631223164814">"2 minutes"</item>
+    <item msgid="8664703938127907662">"5 minutes"</item>
+    <item msgid="5827960506924849753">"10 minutes"</item>
+    <item msgid="6677424950124253938">"30 minutes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Small"</item>
+    <item msgid="591935967183159581">"Default"</item>
+    <item msgid="1714184661981538355">"Large"</item>
+    <item msgid="6195563047686707484">"Largest"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Scanning…"</item>
+    <item msgid="8058143476674427024">"Connecting to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Authenticating with <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Obtaining IP address from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Connected to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspended"</item>
+    <item msgid="4133290864821295785">"Disconnecting from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Disconnected"</item>
+    <item msgid="2847316776634969068">"Unsuccessful"</item>
+    <item msgid="4390990424746035383">"Blocked"</item>
+    <item msgid="3618248791367063949">"Temporarily avoiding poor connection"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Push button"</item>
+    <item msgid="7401896200768713930">"PIN from peer device"</item>
+    <item msgid="4526848028011846710">"PIN from this device"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connected"</item>
+    <item msgid="983792611851499732">"Invited"</item>
+    <item msgid="5438273405428201793">"Unsuccessful"</item>
+    <item msgid="4646663015449312554">"Available"</item>
+    <item msgid="3230556734162006146">"Out of range"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutes"</item>
+    <item msgid="2759776603549270587">"5 minutes"</item>
+    <item msgid="167772676068860015">"1 hour"</item>
+    <item msgid="5985477119043628504">"Never time out"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Last 30 days"</item>
+    <item msgid="3211287705232736964">"Set usage cycle..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Usage time"</item>
+    <item msgid="2784401352592276015">"Last time used"</item>
+    <item msgid="249854287216326349">"App name"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"None"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"None"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Static"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"None"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Proxy Auto-Config"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"None"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP or CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Internal device storage"</item>
+    <item msgid="3186681694079967527">"Removable SD card"</item>
+    <item msgid="6902033473986647035">"Let the system decide"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Location"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Messaging"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Device"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"coarse location"</item>
+    <item msgid="1830619568689922920">"fine location"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrate"</item>
+    <item msgid="8632513128515114092">"read contacts"</item>
+    <item msgid="3741042113569620272">"modify contacts"</item>
+    <item msgid="4204420969709009931">"read call log"</item>
+    <item msgid="2260380357119423209">"modify call log"</item>
+    <item msgid="6550710385014530934">"read calendar"</item>
+    <item msgid="3575906174264853951">"modify calendar"</item>
+    <item msgid="4319843242568057174">"Wi-Fi scan"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"cell scan"</item>
+    <item msgid="8865260890611559753">"call phone"</item>
+    <item msgid="3254999273961542982">"read SMS"</item>
+    <item msgid="7711446453028825171">"write SMS"</item>
+    <item msgid="6123238544099198034">"receive SMS"</item>
+    <item msgid="838342167431596036">"receive emergency SMS"</item>
+    <item msgid="8554432731560956686">"receive MMS"</item>
+    <item msgid="7464863464299515059">"receive WAP push"</item>
+    <item msgid="310463075729606765">"send SMS"</item>
+    <item msgid="7338021933527689514">"read ICC SMS"</item>
+    <item msgid="6130369335466613036">"write ICC SMS"</item>
+    <item msgid="6536865581421670942">"modify settings"</item>
+    <item msgid="4547203129183558973">"draw on top"</item>
+    <item msgid="9080347512916542840">"access notifications"</item>
+    <item msgid="5332718516635907742">"camera"</item>
+    <item msgid="6098422447246167852">"record audio"</item>
+    <item msgid="9182794235292595296">"play audio"</item>
+    <item msgid="8760743229597702019">"read clipboard"</item>
+    <item msgid="2266923698240538544">"modify clipboard"</item>
+    <item msgid="1801619438618539275">"media buttons"</item>
+    <item msgid="31588119965784465">"audio focus"</item>
+    <item msgid="7565226799008076833">"master volume"</item>
+    <item msgid="5420704980305018295">"voice volume"</item>
+    <item msgid="5797363115508970204">"ring volume"</item>
+    <item msgid="8233154098550715999">"media volume"</item>
+    <item msgid="5196715605078153950">"alarm volume"</item>
+    <item msgid="394030698764284577">"notification volume"</item>
+    <item msgid="8952898972491680178">"Bluetooth volume"</item>
+    <item msgid="8506227454543690851">"keep awake"</item>
+    <item msgid="1108160036049727420">"monitor location"</item>
+    <item msgid="1496205959751719491">"monitor high power location"</item>
+    <item msgid="3776296279910987380">"get usage stats"</item>
+    <item msgid="8827100324471975602">"mute/unmute microphone"</item>
+    <item msgid="6880736730520126864">"show toast"</item>
+    <item msgid="4933375960222609935">"project media"</item>
+    <item msgid="8357907018938895462">"activate VPN"</item>
+    <item msgid="8143812849911310973">"write wallpaper"</item>
+    <item msgid="6266277260961066535">"assist structure"</item>
+    <item msgid="7715498149883482300">"assist screenshot"</item>
+    <item msgid="4046679376726313293">"read phone state"</item>
+    <item msgid="6329507266039719587">"add voicemail"</item>
+    <item msgid="7692440726415391408">"use sip"</item>
+    <item msgid="8572453398128326267">"process outgoing call"</item>
+    <item msgid="7775674394089376306">"fingerprint"</item>
+    <item msgid="3182815133441738779">"body sensors"</item>
+    <item msgid="2793100005496829513">"read mobile broadcasts"</item>
+    <item msgid="2633626056029384366">"mock location"</item>
+    <item msgid="8356842191824684631">"read storage"</item>
+    <item msgid="5671906070163291500">"write storage"</item>
+    <item msgid="2791955098549340418">"turn on screen"</item>
+    <item msgid="5599435119609178367">"get accounts"</item>
+    <item msgid="1165623660533024666">"run in background"</item>
+    <item msgid="6423861043647911030">"accessibility volume"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Short"</item>
+    <item msgid="4816511817309094890">"Medium"</item>
+    <item msgid="8305084671259331134">"Long"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Default"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Default"</item>
+    <item msgid="6488643537808152001">"None"</item>
+    <item msgid="552332815156010137">"Outline"</item>
+    <item msgid="7187891159463789272">"Drop shadow"</item>
+    <item msgid="8019330250538856521">"Raised"</item>
+    <item msgid="8987385315647049787">"Depressed"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Use app defaults"</item>
+    <item msgid="8611890312638868524">"White on black"</item>
+    <item msgid="5891360837786277638">"Black on white"</item>
+    <item msgid="2798457065945456853">"Yellow on black"</item>
+    <item msgid="5799049811524553967">"Yellow on blue"</item>
+    <item msgid="3673930830658169860">"Custom"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN with preshared keys"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN with certificates"</item>
+    <item msgid="312397853907741968">"IPSec VPN with preshared keys and Xauth authentication"</item>
+    <item msgid="3319427315593649917">"IPSec VPN with certificates and Xauth authentication"</item>
+    <item msgid="8258927774145391041">"IPSec VPN with certificates and hybrid authentication"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"None"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Disconnected"</item>
+    <item msgid="8754480102834556765">"Initialising..."</item>
+    <item msgid="3351334355574270250">"Connecting…"</item>
+    <item msgid="8303882153995748352">"Connected"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Unsuccessful"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Ask"</item>
+    <item msgid="7718817231348607934">"Never allow"</item>
+    <item msgid="8184570120217958741">"Always allow"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistent"</item>
+    <item msgid="167418068739176448">"Top activity"</item>
+    <item msgid="4760813290195199773">"Important (foreground)"</item>
+    <item msgid="2328684826817647595">"Important (background)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Heavy weight"</item>
+    <item msgid="1290888779300174556">"Service (running)"</item>
+    <item msgid="7241098542073939046">"Service (restarting)"</item>
+    <item msgid="6610439017684111046">"Receiver"</item>
+    <item msgid="7367606086319921117">"Home"</item>
+    <item msgid="3344660712396741826">"Last activity"</item>
+    <item msgid="5006559348883303865">"Cached (activity)"</item>
+    <item msgid="8633480732468137525">"Cached (activity client)"</item>
+    <item msgid="6248998242443333892">"Cached (empty)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"Blue"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Purple"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Red"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Over 30 days old"</item>
+    <item msgid="8699273238891265610">"Over 60 days old"</item>
+    <item msgid="8346279419423837266">"Over 90 days old"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detect automatically"</item>
+    <item msgid="773943026484148895">"Treat as metered"</item>
+    <item msgid="1008268820118852416">"Treat as unmetered"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Use randomised MAC (default)"</item>
+    <item msgid="214234417308375326">"Use device MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Yes"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Dark"</item>
+    <item msgid="5079453644557603349">"Light"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Off"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Home only"</item>
+    <item msgid="1161026694891024702">"Automatic"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferred"</item>
+    <item msgid="7581481130337402578">"GSM only"</item>
+    <item msgid="8579197487913425819">"WCDMA only"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA auto"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo auto"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo only"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA only"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rGB/strings.xml b/tests/CarDeveloperOptions/res/values-en-rGB/strings.xml
index 1b1faa9..3e77e38 100644
--- a/tests/CarDeveloperOptions/res/values-en-rGB/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-en-rGB/strings.xml
@@ -2052,7 +2052,7 @@
     <string name="accessibility_screen_magnification_short_summary" msgid="5698545174944494486">"Tap 3 times to zoom"</string>
     <string name="accessibility_screen_magnification_navbar_short_summary" msgid="5418767043532322397">"Tap a button to zoom"</string>
     <string name="accessibility_screen_magnification_summary" msgid="3363006902079431772"><b>"To zoom"</b>", quickly tap the screen 3 times.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", quickly tap the screen 3 times and hold down your finger on the third tap.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can\'t zoom in on the keyboard and navigation bar."</string>
-    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch &amp; hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
+    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch and hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
     <string name="accessibility_screen_magnification_navbar_configuration_warning" msgid="6477234309484795550">"The accessibility button is set to <xliff:g id="SERVICE">%1$s</xliff:g>. To use magnification, touch &amp; hold the accessibility button, then select magnification."</string>
     <string name="accessibility_global_gesture_preference_title" msgid="3842279082831426816">"Volume key shortcut"</string>
     <string name="accessibility_shortcut_service_title" msgid="3516052294376744060">"Shortcut service"</string>
@@ -4101,9 +4101,9 @@
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"Manual"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"Free up space now"</string>
     <string name="gesture_preference_title" msgid="583646591518373785">"Gestures"</string>
-    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick gestures to control your phone"</string>
-    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick gestures to control your tablet"</string>
-    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick gestures to control your device"</string>
+    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick Gestures to control your phone"</string>
+    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick Gestures to control your tablet"</string>
+    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick Gestures to control your device"</string>
     <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Jump to camera"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"To quickly open camera, press the power button twice. Works from any screen."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Open camera quickly"</string>
diff --git a/tests/CarDeveloperOptions/res/values-en-rIN-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-en-rIN-nokeys/strings.xml
new file mode 100644
index 0000000..587a420
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rIN-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Manage applications"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rIN/arrays.xml b/tests/CarDeveloperOptions/res/values-en-rIN/arrays.xml
new file mode 100644
index 0000000..eca735f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-en-rIN/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"All"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 seconds"</item>
+    <item msgid="772029947136115322">"30 seconds"</item>
+    <item msgid="8743663928349474087">"1 minute"</item>
+    <item msgid="1506508631223164814">"2 minutes"</item>
+    <item msgid="8664703938127907662">"5 minutes"</item>
+    <item msgid="5827960506924849753">"10 minutes"</item>
+    <item msgid="6677424950124253938">"30 minutes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Small"</item>
+    <item msgid="591935967183159581">"Default"</item>
+    <item msgid="1714184661981538355">"Large"</item>
+    <item msgid="6195563047686707484">"Largest"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Scanning…"</item>
+    <item msgid="8058143476674427024">"Connecting to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Authenticating with <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Obtaining IP address from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Connected to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspended"</item>
+    <item msgid="4133290864821295785">"Disconnecting from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Disconnected"</item>
+    <item msgid="2847316776634969068">"Unsuccessful"</item>
+    <item msgid="4390990424746035383">"Blocked"</item>
+    <item msgid="3618248791367063949">"Temporarily avoiding poor connection"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Push button"</item>
+    <item msgid="7401896200768713930">"PIN from peer device"</item>
+    <item msgid="4526848028011846710">"PIN from this device"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connected"</item>
+    <item msgid="983792611851499732">"Invited"</item>
+    <item msgid="5438273405428201793">"Unsuccessful"</item>
+    <item msgid="4646663015449312554">"Available"</item>
+    <item msgid="3230556734162006146">"Out of range"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutes"</item>
+    <item msgid="2759776603549270587">"5 minutes"</item>
+    <item msgid="167772676068860015">"1 hour"</item>
+    <item msgid="5985477119043628504">"Never time out"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Last 30 days"</item>
+    <item msgid="3211287705232736964">"Set usage cycle..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Usage time"</item>
+    <item msgid="2784401352592276015">"Last time used"</item>
+    <item msgid="249854287216326349">"App name"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"None"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"None"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Static"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"None"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Proxy Auto-Config"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"None"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP or CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Internal device storage"</item>
+    <item msgid="3186681694079967527">"Removable SD card"</item>
+    <item msgid="6902033473986647035">"Let the system decide"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Location"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Messaging"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Device"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"coarse location"</item>
+    <item msgid="1830619568689922920">"fine location"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrate"</item>
+    <item msgid="8632513128515114092">"read contacts"</item>
+    <item msgid="3741042113569620272">"modify contacts"</item>
+    <item msgid="4204420969709009931">"read call log"</item>
+    <item msgid="2260380357119423209">"modify call log"</item>
+    <item msgid="6550710385014530934">"read calendar"</item>
+    <item msgid="3575906174264853951">"modify calendar"</item>
+    <item msgid="4319843242568057174">"Wi-Fi scan"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"cell scan"</item>
+    <item msgid="8865260890611559753">"call phone"</item>
+    <item msgid="3254999273961542982">"read SMS"</item>
+    <item msgid="7711446453028825171">"write SMS"</item>
+    <item msgid="6123238544099198034">"receive SMS"</item>
+    <item msgid="838342167431596036">"receive emergency SMS"</item>
+    <item msgid="8554432731560956686">"receive MMS"</item>
+    <item msgid="7464863464299515059">"receive WAP push"</item>
+    <item msgid="310463075729606765">"send SMS"</item>
+    <item msgid="7338021933527689514">"read ICC SMS"</item>
+    <item msgid="6130369335466613036">"write ICC SMS"</item>
+    <item msgid="6536865581421670942">"modify settings"</item>
+    <item msgid="4547203129183558973">"draw on top"</item>
+    <item msgid="9080347512916542840">"access notifications"</item>
+    <item msgid="5332718516635907742">"camera"</item>
+    <item msgid="6098422447246167852">"record audio"</item>
+    <item msgid="9182794235292595296">"play audio"</item>
+    <item msgid="8760743229597702019">"read clipboard"</item>
+    <item msgid="2266923698240538544">"modify clipboard"</item>
+    <item msgid="1801619438618539275">"media buttons"</item>
+    <item msgid="31588119965784465">"audio focus"</item>
+    <item msgid="7565226799008076833">"master volume"</item>
+    <item msgid="5420704980305018295">"voice volume"</item>
+    <item msgid="5797363115508970204">"ring volume"</item>
+    <item msgid="8233154098550715999">"media volume"</item>
+    <item msgid="5196715605078153950">"alarm volume"</item>
+    <item msgid="394030698764284577">"notification volume"</item>
+    <item msgid="8952898972491680178">"Bluetooth volume"</item>
+    <item msgid="8506227454543690851">"keep awake"</item>
+    <item msgid="1108160036049727420">"monitor location"</item>
+    <item msgid="1496205959751719491">"monitor high power location"</item>
+    <item msgid="3776296279910987380">"get usage stats"</item>
+    <item msgid="8827100324471975602">"mute/unmute microphone"</item>
+    <item msgid="6880736730520126864">"show toast"</item>
+    <item msgid="4933375960222609935">"project media"</item>
+    <item msgid="8357907018938895462">"activate VPN"</item>
+    <item msgid="8143812849911310973">"write wallpaper"</item>
+    <item msgid="6266277260961066535">"assist structure"</item>
+    <item msgid="7715498149883482300">"assist screenshot"</item>
+    <item msgid="4046679376726313293">"read phone state"</item>
+    <item msgid="6329507266039719587">"add voicemail"</item>
+    <item msgid="7692440726415391408">"use sip"</item>
+    <item msgid="8572453398128326267">"process outgoing call"</item>
+    <item msgid="7775674394089376306">"fingerprint"</item>
+    <item msgid="3182815133441738779">"body sensors"</item>
+    <item msgid="2793100005496829513">"read mobile broadcasts"</item>
+    <item msgid="2633626056029384366">"mock location"</item>
+    <item msgid="8356842191824684631">"read storage"</item>
+    <item msgid="5671906070163291500">"write storage"</item>
+    <item msgid="2791955098549340418">"turn on screen"</item>
+    <item msgid="5599435119609178367">"get accounts"</item>
+    <item msgid="1165623660533024666">"run in background"</item>
+    <item msgid="6423861043647911030">"accessibility volume"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Short"</item>
+    <item msgid="4816511817309094890">"Medium"</item>
+    <item msgid="8305084671259331134">"Long"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Default"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Default"</item>
+    <item msgid="6488643537808152001">"None"</item>
+    <item msgid="552332815156010137">"Outline"</item>
+    <item msgid="7187891159463789272">"Drop shadow"</item>
+    <item msgid="8019330250538856521">"Raised"</item>
+    <item msgid="8987385315647049787">"Depressed"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Use app defaults"</item>
+    <item msgid="8611890312638868524">"White on black"</item>
+    <item msgid="5891360837786277638">"Black on white"</item>
+    <item msgid="2798457065945456853">"Yellow on black"</item>
+    <item msgid="5799049811524553967">"Yellow on blue"</item>
+    <item msgid="3673930830658169860">"Custom"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN with preshared keys"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN with certificates"</item>
+    <item msgid="312397853907741968">"IPSec VPN with preshared keys and Xauth authentication"</item>
+    <item msgid="3319427315593649917">"IPSec VPN with certificates and Xauth authentication"</item>
+    <item msgid="8258927774145391041">"IPSec VPN with certificates and hybrid authentication"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"None"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Disconnected"</item>
+    <item msgid="8754480102834556765">"Initialising..."</item>
+    <item msgid="3351334355574270250">"Connecting…"</item>
+    <item msgid="8303882153995748352">"Connected"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Unsuccessful"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Ask"</item>
+    <item msgid="7718817231348607934">"Never allow"</item>
+    <item msgid="8184570120217958741">"Always allow"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistent"</item>
+    <item msgid="167418068739176448">"Top activity"</item>
+    <item msgid="4760813290195199773">"Important (foreground)"</item>
+    <item msgid="2328684826817647595">"Important (background)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Heavy weight"</item>
+    <item msgid="1290888779300174556">"Service (running)"</item>
+    <item msgid="7241098542073939046">"Service (restarting)"</item>
+    <item msgid="6610439017684111046">"Receiver"</item>
+    <item msgid="7367606086319921117">"Home"</item>
+    <item msgid="3344660712396741826">"Last activity"</item>
+    <item msgid="5006559348883303865">"Cached (activity)"</item>
+    <item msgid="8633480732468137525">"Cached (activity client)"</item>
+    <item msgid="6248998242443333892">"Cached (empty)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"Blue"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Purple"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Red"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Over 30 days old"</item>
+    <item msgid="8699273238891265610">"Over 60 days old"</item>
+    <item msgid="8346279419423837266">"Over 90 days old"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detect automatically"</item>
+    <item msgid="773943026484148895">"Treat as metered"</item>
+    <item msgid="1008268820118852416">"Treat as unmetered"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Use randomised MAC (default)"</item>
+    <item msgid="214234417308375326">"Use device MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Yes"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Dark"</item>
+    <item msgid="5079453644557603349">"Light"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Off"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Home only"</item>
+    <item msgid="1161026694891024702">"Automatic"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferred"</item>
+    <item msgid="7581481130337402578">"GSM only"</item>
+    <item msgid="8579197487913425819">"WCDMA only"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA auto"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo auto"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo only"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA only"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-en-rIN/strings.xml b/tests/CarDeveloperOptions/res/values-en-rIN/strings.xml
index 1b1faa9..3e77e38 100644
--- a/tests/CarDeveloperOptions/res/values-en-rIN/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-en-rIN/strings.xml
@@ -2052,7 +2052,7 @@
     <string name="accessibility_screen_magnification_short_summary" msgid="5698545174944494486">"Tap 3 times to zoom"</string>
     <string name="accessibility_screen_magnification_navbar_short_summary" msgid="5418767043532322397">"Tap a button to zoom"</string>
     <string name="accessibility_screen_magnification_summary" msgid="3363006902079431772"><b>"To zoom"</b>", quickly tap the screen 3 times.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", quickly tap the screen 3 times and hold down your finger on the third tap.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can\'t zoom in on the keyboard and navigation bar."</string>
-    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch &amp; hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
+    <string name="accessibility_screen_magnification_navbar_summary" msgid="4726360285256503132">"When magnification is turned on, use the Accessibility button at the bottom of the screen to quickly magnify.\n\n"<b>"To zoom"</b>", tap the Accessibility button, then tap anywhere on the screen.\n"<ul><li>"Drag 2 or more fingers to scroll"</li>\n<li>"Pinch 2 or more fingers to adjust zoom"</li></ul>\n\n<b>"To zoom temporarily"</b>", tap the Accessibility button, then touch and hold anywhere on the screen.\n"<ul><li>"Drag to move around the screen"</li>\n<li>"Lift finger to zoom out"</li></ul>\n\n"You can’t zoom in on the keyboard or navigation bar."</string>
     <string name="accessibility_screen_magnification_navbar_configuration_warning" msgid="6477234309484795550">"The accessibility button is set to <xliff:g id="SERVICE">%1$s</xliff:g>. To use magnification, touch &amp; hold the accessibility button, then select magnification."</string>
     <string name="accessibility_global_gesture_preference_title" msgid="3842279082831426816">"Volume key shortcut"</string>
     <string name="accessibility_shortcut_service_title" msgid="3516052294376744060">"Shortcut service"</string>
@@ -4101,9 +4101,9 @@
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"Manual"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"Free up space now"</string>
     <string name="gesture_preference_title" msgid="583646591518373785">"Gestures"</string>
-    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick gestures to control your phone"</string>
-    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick gestures to control your tablet"</string>
-    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick gestures to control your device"</string>
+    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Quick Gestures to control your phone"</string>
+    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Quick Gestures to control your tablet"</string>
+    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Quick Gestures to control your device"</string>
     <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Jump to camera"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"To quickly open camera, press the power button twice. Works from any screen."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Open camera quickly"</string>
diff --git a/tests/CarDeveloperOptions/res/values-es-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-es-nokeys/strings.xml
new file mode 100644
index 0000000..a16e68b
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-es-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Administrar aplicaciones"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-es-rUS-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-es-rUS-nokeys/strings.xml
new file mode 100644
index 0000000..a16e68b
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-es-rUS-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Administrar aplicaciones"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-es-rUS/arrays.xml b/tests/CarDeveloperOptions/res/values-es-rUS/arrays.xml
new file mode 100644
index 0000000..65e676e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-es-rUS/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"América"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"África"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacífico"</item>
+    <item msgid="7044520255415007865">"Todas"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundos"</item>
+    <item msgid="772029947136115322">"30 segundos"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minutos"</item>
+    <item msgid="8664703938127907662">"5 minutos"</item>
+    <item msgid="5827960506924849753">"10 minutos"</item>
+    <item msgid="6677424950124253938">"30 minutos"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Pequeño"</item>
+    <item msgid="591935967183159581">"Predeterminado"</item>
+    <item msgid="1714184661981538355">"Grande"</item>
+    <item msgid="6195563047686707484">"Máximo"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Buscando..."</item>
+    <item msgid="8058143476674427024">"Conectando a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Autenticando con <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Obteniendo dirección IP de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Conectado a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspendido"</item>
+    <item msgid="4133290864821295785">"Desconectando de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Desconectado"</item>
+    <item msgid="2847316776634969068">"Incorrecto"</item>
+    <item msgid="4390990424746035383">"Bloqueadas"</item>
+    <item msgid="3618248791367063949">"Desactivando mala conexión  temporalmente"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Presionar el botón"</item>
+    <item msgid="7401896200768713930">"PIN del dispositivo par"</item>
+    <item msgid="4526848028011846710">"PIN de este dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Conectado"</item>
+    <item msgid="983792611851499732">"Invitado"</item>
+    <item msgid="5438273405428201793">"Incorrecto"</item>
+    <item msgid="4646663015449312554">"Disponible"</item>
+    <item msgid="3230556734162006146">"Fuera de rango"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutos"</item>
+    <item msgid="2759776603549270587">"5 minutos"</item>
+    <item msgid="167772676068860015">"1 hora"</item>
+    <item msgid="5985477119043628504">"Siempre visible"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Últimos 30 días"</item>
+    <item msgid="3211287705232736964">"Configurar ciclo de uso…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Hora de uso"</item>
+    <item msgid="2784401352592276015">"Última utilización"</item>
+    <item msgid="249854287216326349">"Nombre de aplicación"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ninguna"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ninguna"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Estático"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ninguna"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Config. automática proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ninguna"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP o CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Dispositivo de almacenamiento interno"</item>
+    <item msgid="3186681694079967527">"Tarjeta SD desmontable"</item>
+    <item msgid="6902033473986647035">"Dejar que el sistema decida"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Ubicación"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Mensajería"</item>
+    <item msgid="8563996233342430477">"Medios"</item>
+    <item msgid="5323851085993963783">"Dispositivo"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ubicación aproximada"</item>
+    <item msgid="1830619568689922920">"ubicación precisa"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrar"</item>
+    <item msgid="8632513128515114092">"leer contactos"</item>
+    <item msgid="3741042113569620272">"modificar contactos"</item>
+    <item msgid="4204420969709009931">"leer registro de llamadas"</item>
+    <item msgid="2260380357119423209">"modificar registro de llamadas"</item>
+    <item msgid="6550710385014530934">"leer calendario"</item>
+    <item msgid="3575906174264853951">"modificar calendario"</item>
+    <item msgid="4319843242568057174">"búsqueda de Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notificación"</item>
+    <item msgid="6617825156152476692">"búsqueda de dispositivo"</item>
+    <item msgid="8865260890611559753">"llamar a un teléfono"</item>
+    <item msgid="3254999273961542982">"leer SMS"</item>
+    <item msgid="7711446453028825171">"redactar SMS"</item>
+    <item msgid="6123238544099198034">"recibir SMS"</item>
+    <item msgid="838342167431596036">"recibir SMS de emergencia"</item>
+    <item msgid="8554432731560956686">"recibir MMS"</item>
+    <item msgid="7464863464299515059">"recibir push de WAP"</item>
+    <item msgid="310463075729606765">"enviar SMS"</item>
+    <item msgid="7338021933527689514">"leer ICC SMS"</item>
+    <item msgid="6130369335466613036">"redactar ICC SMS"</item>
+    <item msgid="6536865581421670942">"modificar configuración"</item>
+    <item msgid="4547203129183558973">"dibujar en la parte superior"</item>
+    <item msgid="9080347512916542840">"acceder a las notificaciones"</item>
+    <item msgid="5332718516635907742">"cámara"</item>
+    <item msgid="6098422447246167852">"grabar audio"</item>
+    <item msgid="9182794235292595296">"reproducir audio"</item>
+    <item msgid="8760743229597702019">"leer portapapeles"</item>
+    <item msgid="2266923698240538544">"modificar portapapeles"</item>
+    <item msgid="1801619438618539275">"botones de medios"</item>
+    <item msgid="31588119965784465">"enfoque de audio"</item>
+    <item msgid="7565226799008076833">"volumen principal"</item>
+    <item msgid="5420704980305018295">"volumen de voz"</item>
+    <item msgid="5797363115508970204">"volumen de tono"</item>
+    <item msgid="8233154098550715999">"volumen de medios"</item>
+    <item msgid="5196715605078153950">"volumen de alarma"</item>
+    <item msgid="394030698764284577">"volumen de notificación"</item>
+    <item msgid="8952898972491680178">"volumen de bluetooth"</item>
+    <item msgid="8506227454543690851">"mantener en funcionamiento"</item>
+    <item msgid="1108160036049727420">"controlar ubicación"</item>
+    <item msgid="1496205959751719491">"supervisar ubicación de alta potencia"</item>
+    <item msgid="3776296279910987380">"obtener estadísticas de uso"</item>
+    <item msgid="8827100324471975602">"silenciar/dejar de silenciar micrófono"</item>
+    <item msgid="6880736730520126864">"mostrar notificación"</item>
+    <item msgid="4933375960222609935">"proyectar contenido multimedia"</item>
+    <item msgid="8357907018938895462">"activar VPN"</item>
+    <item msgid="8143812849911310973">"escribir fondo de pantalla"</item>
+    <item msgid="6266277260961066535">"asistir a la estructura"</item>
+    <item msgid="7715498149883482300">"asistir a la captura de pantalla"</item>
+    <item msgid="4046679376726313293">"leer estado del dispositivo"</item>
+    <item msgid="6329507266039719587">"agregar buzón de voz"</item>
+    <item msgid="7692440726415391408">"usar SIP"</item>
+    <item msgid="8572453398128326267">"procesar llamada saliente"</item>
+    <item msgid="7775674394089376306">"huella digital"</item>
+    <item msgid="3182815133441738779">"sensores corporales"</item>
+    <item msgid="2793100005496829513">"leer emisiones móviles"</item>
+    <item msgid="2633626056029384366">"ubicación ficticia"</item>
+    <item msgid="8356842191824684631">"leer almacenamiento"</item>
+    <item msgid="5671906070163291500">"escribir almacenamiento"</item>
+    <item msgid="2791955098549340418">"encender pantalla"</item>
+    <item msgid="5599435119609178367">"obtener cuentas"</item>
+    <item msgid="1165623660533024666">"ejecutar en segundo plano"</item>
+    <item msgid="6423861043647911030">"volumen de accesibilidad"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Ubicación"</item>
+    <item msgid="6656077694190491067">"Ubicación"</item>
+    <item msgid="8790228218278477369">"Ubicación"</item>
+    <item msgid="7836406246005211990">"Vibrar"</item>
+    <item msgid="3951439024549922598">"Leer contactos"</item>
+    <item msgid="8802152411647068">"Modificar contactos"</item>
+    <item msgid="229544934599698735">"Leer registro de llamadas"</item>
+    <item msgid="7396102294405899613">"Modificar registro de llamadas"</item>
+    <item msgid="3597797992398484655">"Leer calendario"</item>
+    <item msgid="2705975774250907343">"Modificar calendario"</item>
+    <item msgid="4668747371441932697">"Ubicación"</item>
+    <item msgid="1487578921720243646">"Publicar notificación"</item>
+    <item msgid="4636080349724146638">"Ubicación"</item>
+    <item msgid="673510900286463926">"Llamar a un teléfono"</item>
+    <item msgid="542083422784609790">"Leer SMS o MMS"</item>
+    <item msgid="1033780373029588436">"Escribir SMS o MMS"</item>
+    <item msgid="5647111115517787488">"Recibir SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Recibir SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Recibir SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Recibir SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Enviar SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Leer SMS o MMS"</item>
+    <item msgid="6555678522277865572">"Escribir SMS o MMS"</item>
+    <item msgid="6981734935578130884">"Modificar configuración"</item>
+    <item msgid="8705854389991425629">"Dibujar en la parte superior"</item>
+    <item msgid="5861356020344153651">"Acceder a las notificaciones"</item>
+    <item msgid="78432174621628659">"Cámara"</item>
+    <item msgid="3986116419882154794">"Grabar audio"</item>
+    <item msgid="4516840825756409490">"Reproducir audio"</item>
+    <item msgid="6811712502798183957">"Leer portapapeles"</item>
+    <item msgid="2780369012602289114">"Modificar portapapeles"</item>
+    <item msgid="2331359440170850868">"Botones de medios"</item>
+    <item msgid="6133599737122751231">"Enfoque de audio"</item>
+    <item msgid="6844485713404805301">"Volumen principal"</item>
+    <item msgid="1600379420669104929">"Volumen de voz"</item>
+    <item msgid="6296768210470214866">"Volumen de tono"</item>
+    <item msgid="510690696071629241">"Volumen multimedia"</item>
+    <item msgid="406861638631430109">"Volumen de alarma"</item>
+    <item msgid="4715864795872233884">"Volumen de notificación"</item>
+    <item msgid="2311478519251301183">"Volumen de Bluetooth"</item>
+    <item msgid="5133991377896747027">"Mantener en funcionamiento"</item>
+    <item msgid="2464189519136248621">"Ubicación"</item>
+    <item msgid="2062677934050803037">"Ubicación"</item>
+    <item msgid="1735171933192715957">"Obtener estadísticas de uso"</item>
+    <item msgid="1014093788778383554">"Silenciar/dejar de silenciar micrófono"</item>
+    <item msgid="4199297950608622850">"Mostrar notificación"</item>
+    <item msgid="2527962435313398821">"Proyectar contenido multimedia"</item>
+    <item msgid="5117506254221861929">"Activar VPN"</item>
+    <item msgid="8291198322681891160">"Escribir fondo de pantalla"</item>
+    <item msgid="7106921284621230961">"Asistir a la estructura"</item>
+    <item msgid="4496533640894624799">"Asistir a la captura de pantalla"</item>
+    <item msgid="2598847264853993611">"Leer estado del teléfono"</item>
+    <item msgid="9215610846802973353">"Agregar buzón de voz"</item>
+    <item msgid="9186411956086478261">"Usar SIP"</item>
+    <item msgid="6884763100104539558">"Procesar llamada saliente"</item>
+    <item msgid="125513972170580692">"Huella digital"</item>
+    <item msgid="2556071024281275619">"Sensores corporales"</item>
+    <item msgid="617168514928339387">"Leer emisiones móviles"</item>
+    <item msgid="7134693570516523585">"Ubicación ficticia"</item>
+    <item msgid="7224489175375229399">"Leer almacenamiento"</item>
+    <item msgid="8472735063903258202">"Escribir almacenamiento"</item>
+    <item msgid="4069276819909595110">"Encender pantalla"</item>
+    <item msgid="1228338896751121025">"Obtener cuentas"</item>
+    <item msgid="3181581793459233672">"Ejecutar en segundo plano"</item>
+    <item msgid="2340936043025374076">"Volumen de accesibilidad"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Corto"</item>
+    <item msgid="4816511817309094890">"Media"</item>
+    <item msgid="8305084671259331134">"Largo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predeterminado"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif condensada"</item>
+    <item msgid="6529379119163117545">"Sans-serif monoespaciada"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monoespaciada"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursiva"</item>
+    <item msgid="6896773537705206194">"Versalitas"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predeterminado"</item>
+    <item msgid="6488643537808152001">"Ninguna"</item>
+    <item msgid="552332815156010137">"Contorno"</item>
+    <item msgid="7187891159463789272">"Sombra paralela"</item>
+    <item msgid="8019330250538856521">"Levantado"</item>
+    <item msgid="8987385315647049787">"Disminuido"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Predeterminado"</item>
+    <item msgid="8611890312638868524">"Blanco sobre negro"</item>
+    <item msgid="5891360837786277638">"Negro sobre blanco"</item>
+    <item msgid="2798457065945456853">"Amarillo sobre negro"</item>
+    <item msgid="5799049811524553967">"Amarillo sobre azul"</item>
+    <item msgid="3673930830658169860">"Personalizado"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"Claves precompartidas de VPN L2TP/IPSec"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec con certificados"</item>
+    <item msgid="312397853907741968">"VPN IPSec con claves precompartidas y autenticación Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec con certificados y autenticación Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec con certificados y autenticación híbrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ninguno"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Desconectado"</item>
+    <item msgid="8754480102834556765">"Iniciando..."</item>
+    <item msgid="3351334355574270250">"Conectando..."</item>
+    <item msgid="8303882153995748352">"Conectado"</item>
+    <item msgid="9135049670787351881">"Tiempo de espera"</item>
+    <item msgid="2124868417182583926">"Incorrecto"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Preguntar"</item>
+    <item msgid="7718817231348607934">"No permitir nunca"</item>
+    <item msgid="8184570120217958741">"Permitir siempre"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistente"</item>
+    <item msgid="167418068739176448">"Actividad principal"</item>
+    <item msgid="4760813290195199773">"Importante (en primer plano)"</item>
+    <item msgid="2328684826817647595">"Importante (en segundo plano)"</item>
+    <item msgid="7746406490652867365">"Copia de seguridad"</item>
+    <item msgid="5597404364389196754">"Peso pesado"</item>
+    <item msgid="1290888779300174556">"Servicio (en ejecución)"</item>
+    <item msgid="7241098542073939046">"Servicio (reiniciando)"</item>
+    <item msgid="6610439017684111046">"Receptor"</item>
+    <item msgid="7367606086319921117">"Pantalla principal"</item>
+    <item msgid="3344660712396741826">"Última actividad"</item>
+    <item msgid="5006559348883303865">"En caché (actividad)"</item>
+    <item msgid="8633480732468137525">"En caché (cliente de actividad)"</item>
+    <item msgid="6248998242443333892">"En caché (vacío)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Verde azulado"</item>
+    <item msgid="3228505970082457852">"Azul"</item>
+    <item msgid="6590260735734795647">"Índigo"</item>
+    <item msgid="3521763377357218577">"Púrpura"</item>
+    <item msgid="5932337981182999919">"Rosado"</item>
+    <item msgid="5642914536624000094">"Rojo"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Más de 30 días"</item>
+    <item msgid="8699273238891265610">"Más de 60 días"</item>
+    <item msgid="8346279419423837266">"Más de 90 días"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detectar automáticamente"</item>
+    <item msgid="773943026484148895">"Tratar como red de uso medido"</item>
+    <item msgid="1008268820118852416">"Tratar como red sin tarifa plana"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Usar MAC aleatoria (predeterminada)"</item>
+    <item msgid="214234417308375326">"Usar MAC del dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Sí"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Oscuro"</item>
+    <item msgid="5079453644557603349">"Claro"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desactivado"</item>
+    <item msgid="4072198137051566919">"Depurado"</item>
+    <item msgid="2473005316958868509">"Detallado"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Página principal solamente"</item>
+    <item msgid="1161026694891024702">"Automático"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferido"</item>
+    <item msgid="7581481130337402578">"Solo GSM"</item>
+    <item msgid="8579197487913425819">"Solo WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automático"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automático"</item>
+    <item msgid="4219607161971472471">"CDMA sin EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo solamente"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Solo TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-es-rUS/strings.xml b/tests/CarDeveloperOptions/res/values-es-rUS/strings.xml
index 5d1d4a9..747d4ae 100644
--- a/tests/CarDeveloperOptions/res/values-es-rUS/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-es-rUS/strings.xml
@@ -717,7 +717,7 @@
       <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> app activa</item>
     </plurals>
     <string name="manage_trust_agents" msgid="8129970926213142261">"Agentes de confianza"</string>
-    <string name="disabled_because_no_backup_security" msgid="8127039979909203528">"Para usarlo, debes establecer un bloqueo de pantalla."</string>
+    <string name="disabled_because_no_backup_security" msgid="8127039979909203528">"Para usarlo, debes establecer un bloqueo de pantalla"</string>
     <string name="manage_trust_agents_summary" msgid="2023116850759962248">"Ninguno"</string>
     <plurals name="manage_trust_agents_summary_on" formatted="false" msgid="5550538038916606097">
       <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> agentes de confianza activos</item>
@@ -4122,7 +4122,7 @@
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Para consultar la hora, las notificaciones y otra información, levanta el teléfono."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Para consultar la hora, las notificaciones y otra información, levanta la tablet."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Para consultar la hora, las notificaciones y otra información, levanta el dispositivo."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Presiona para revisar el teléfono"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Presionar para revisar el teléfono"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Presiona para revisar la tablet"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Presiona para revisar el dispositivo"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Para consultar la hora, las notificaciones y otra información, presiona la pantalla."</string>
diff --git a/tests/CarDeveloperOptions/res/values-es/arrays.xml b/tests/CarDeveloperOptions/res/values-es/arrays.xml
new file mode 100644
index 0000000..3db91f3
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-es/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"América"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"África"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacífico"</item>
+    <item msgid="7044520255415007865">"Todo"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundos"</item>
+    <item msgid="772029947136115322">"30 segundos"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minutos"</item>
+    <item msgid="8664703938127907662">"5 minutos"</item>
+    <item msgid="5827960506924849753">"10 minutos"</item>
+    <item msgid="6677424950124253938">"30 minutos"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Pequeña"</item>
+    <item msgid="591935967183159581">"Predeterminado"</item>
+    <item msgid="1714184661981538355">"Grande"</item>
+    <item msgid="6195563047686707484">"Lo más grande posible"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Buscando..."</item>
+    <item msgid="8058143476674427024">"Estableciendo conexión con <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Autenticando con <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Obteniendo dirección IP de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Conectado a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspendido"</item>
+    <item msgid="4133290864821295785">"Desconectando de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Desconectado"</item>
+    <item msgid="2847316776634969068">"Con error"</item>
+    <item msgid="4390990424746035383">"Bloqueada"</item>
+    <item msgid="3618248791367063949">"Inhabilitando conexión inestable temporalmente..."</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Botón WPS"</item>
+    <item msgid="7401896200768713930">"PIN del otro dispositivo"</item>
+    <item msgid="4526848028011846710">"PIN del dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Conectada"</item>
+    <item msgid="983792611851499732">"Invitado"</item>
+    <item msgid="5438273405428201793">"Con error"</item>
+    <item msgid="4646663015449312554">"Disponible"</item>
+    <item msgid="3230556734162006146">"Fuera del alcance"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutos"</item>
+    <item msgid="2759776603549270587">"5 minutos"</item>
+    <item msgid="167772676068860015">"1 hora"</item>
+    <item msgid="5985477119043628504">"Siempre visible"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Últimos 30 días"</item>
+    <item msgid="3211287705232736964">"Establecer ciclo uso..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Tiempo de uso"</item>
+    <item msgid="2784401352592276015">"Último uso"</item>
+    <item msgid="249854287216326349">"Nombre de la aplicación"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ninguna"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ninguna"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"Protocolo DHCP"</item>
+    <item msgid="4377002609760712163">"Estático"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ninguna"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Proxy autoconfigurado"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ninguna"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP o CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Almacenamiento de dispositivo interno"</item>
+    <item msgid="3186681694079967527">"Tarjeta SD extraíble"</item>
+    <item msgid="6902033473986647035">"Selección del sistema"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Ubicación"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Mensajes"</item>
+    <item msgid="8563996233342430477">"Multimedia"</item>
+    <item msgid="5323851085993963783">"Dispositivo"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ubicación común"</item>
+    <item msgid="1830619568689922920">"ubicación precisa"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrar"</item>
+    <item msgid="8632513128515114092">"consultar contactos"</item>
+    <item msgid="3741042113569620272">"modificar los contactos"</item>
+    <item msgid="4204420969709009931">"leer el registro de llamadas"</item>
+    <item msgid="2260380357119423209">"modificar el registro de llamadas"</item>
+    <item msgid="6550710385014530934">"leer calendario"</item>
+    <item msgid="3575906174264853951">"modificar el calendario"</item>
+    <item msgid="4319843242568057174">"búsqueda de Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notificación"</item>
+    <item msgid="6617825156152476692">"búsqueda de red móvil"</item>
+    <item msgid="8865260890611559753">"llamar a un teléfono"</item>
+    <item msgid="3254999273961542982">"leer SMS"</item>
+    <item msgid="7711446453028825171">"escribir SMS"</item>
+    <item msgid="6123238544099198034">"recibir SMS"</item>
+    <item msgid="838342167431596036">"recibir SMS de emergencia"</item>
+    <item msgid="8554432731560956686">"recibir MMS"</item>
+    <item msgid="7464863464299515059">"recibir WAP Push"</item>
+    <item msgid="310463075729606765">"enviar SMS"</item>
+    <item msgid="7338021933527689514">"leer SMS ICC"</item>
+    <item msgid="6130369335466613036">"escribir SMS ICC"</item>
+    <item msgid="6536865581421670942">"modificar la configuración"</item>
+    <item msgid="4547203129183558973">"dibujar en parte superior"</item>
+    <item msgid="9080347512916542840">"acceder a las notificaciones"</item>
+    <item msgid="5332718516635907742">"cámara"</item>
+    <item msgid="6098422447246167852">"grabar audio"</item>
+    <item msgid="9182794235292595296">"reproducir audio"</item>
+    <item msgid="8760743229597702019">"leer portapapeles"</item>
+    <item msgid="2266923698240538544">"modificar portapapeles"</item>
+    <item msgid="1801619438618539275">"botones multimedia"</item>
+    <item msgid="31588119965784465">"foco de audio"</item>
+    <item msgid="7565226799008076833">"volumen principal"</item>
+    <item msgid="5420704980305018295">"volumen de la voz"</item>
+    <item msgid="5797363115508970204">"volumen del tono"</item>
+    <item msgid="8233154098550715999">"volumen de multimedia"</item>
+    <item msgid="5196715605078153950">"volumen de la alarma"</item>
+    <item msgid="394030698764284577">"volumen de las notificaciones"</item>
+    <item msgid="8952898972491680178">"volumen de Bluetooth"</item>
+    <item msgid="8506227454543690851">"mantener activo"</item>
+    <item msgid="1108160036049727420">"controlar ubicación"</item>
+    <item msgid="1496205959751719491">"supervisar ubicación de alta potencia"</item>
+    <item msgid="3776296279910987380">"obtener estadísticas de uso"</item>
+    <item msgid="8827100324471975602">"silenciar/activar micrófono"</item>
+    <item msgid="6880736730520126864">"mostrar notificación emergente"</item>
+    <item msgid="4933375960222609935">"proyectar contenido multimedia"</item>
+    <item msgid="8357907018938895462">"activar VPN"</item>
+    <item msgid="8143812849911310973">"editar fondo de pantalla"</item>
+    <item msgid="6266277260961066535">"proporcionar asistencia a estructura"</item>
+    <item msgid="7715498149883482300">"proporcionar asistencia a captura de pantalla"</item>
+    <item msgid="4046679376726313293">"leer el estado del teléfono"</item>
+    <item msgid="6329507266039719587">"añadir buzón de voz"</item>
+    <item msgid="7692440726415391408">"utilizar SIP"</item>
+    <item msgid="8572453398128326267">"procesar llamada saliente"</item>
+    <item msgid="7775674394089376306">"huella digital"</item>
+    <item msgid="3182815133441738779">"sensores corporales"</item>
+    <item msgid="2793100005496829513">"leer difusiones móviles"</item>
+    <item msgid="2633626056029384366">"ubicación simulada"</item>
+    <item msgid="8356842191824684631">"almacenamiento de lectura"</item>
+    <item msgid="5671906070163291500">"almacenamiento de escritura"</item>
+    <item msgid="2791955098549340418">"activar pantalla"</item>
+    <item msgid="5599435119609178367">"obtener cuentas"</item>
+    <item msgid="1165623660533024666">"ejecutar en segundo plano"</item>
+    <item msgid="6423861043647911030">"volumen de accesibilidad"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Ubicación"</item>
+    <item msgid="6656077694190491067">"Ubicación"</item>
+    <item msgid="8790228218278477369">"Ubicación"</item>
+    <item msgid="7836406246005211990">"Vibrar"</item>
+    <item msgid="3951439024549922598">"Consultar contactos"</item>
+    <item msgid="8802152411647068">"Modificar los contactos"</item>
+    <item msgid="229544934599698735">"Leer el registro de llamadas"</item>
+    <item msgid="7396102294405899613">"Modificar el registro de llamadas"</item>
+    <item msgid="3597797992398484655">"Leer calendario"</item>
+    <item msgid="2705975774250907343">"Modificar el calendario"</item>
+    <item msgid="4668747371441932697">"Ubicación"</item>
+    <item msgid="1487578921720243646">"Publicar notificación"</item>
+    <item msgid="4636080349724146638">"Ubicación"</item>
+    <item msgid="673510900286463926">"Llamar a un teléfono"</item>
+    <item msgid="542083422784609790">"Leer SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Escribir SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Recibir SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Recibir SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Recibir SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Recibir SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Enviar SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Leer SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Escribir SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Modificar la configuración"</item>
+    <item msgid="8705854389991425629">"Dibujar en parte superior"</item>
+    <item msgid="5861356020344153651">"Acceder a las notificaciones"</item>
+    <item msgid="78432174621628659">"Cámara"</item>
+    <item msgid="3986116419882154794">"Grabar audio"</item>
+    <item msgid="4516840825756409490">"Reproducir audio"</item>
+    <item msgid="6811712502798183957">"Leer portapapeles"</item>
+    <item msgid="2780369012602289114">"Modificar portapapeles"</item>
+    <item msgid="2331359440170850868">"Botones multimedia"</item>
+    <item msgid="6133599737122751231">"Foco de audio"</item>
+    <item msgid="6844485713404805301">"Volumen principal"</item>
+    <item msgid="1600379420669104929">"Volumen de la voz"</item>
+    <item msgid="6296768210470214866">"Volumen del tono"</item>
+    <item msgid="510690696071629241">"Volumen de multimedia"</item>
+    <item msgid="406861638631430109">"Volumen de la alarma"</item>
+    <item msgid="4715864795872233884">"Volumen de notificaciones"</item>
+    <item msgid="2311478519251301183">"Volumen de Bluetooth"</item>
+    <item msgid="5133991377896747027">"Activo"</item>
+    <item msgid="2464189519136248621">"Ubicación"</item>
+    <item msgid="2062677934050803037">"Ubicación"</item>
+    <item msgid="1735171933192715957">"Obtener estadísticas de uso"</item>
+    <item msgid="1014093788778383554">"Silenciar/activar micrófono"</item>
+    <item msgid="4199297950608622850">"Mostrar notificación emergente"</item>
+    <item msgid="2527962435313398821">"Proyectar contenido multimedia"</item>
+    <item msgid="5117506254221861929">"Activar VPN"</item>
+    <item msgid="8291198322681891160">"Editar fondo de pantalla"</item>
+    <item msgid="7106921284621230961">"Proporcionar asistencia a estructura"</item>
+    <item msgid="4496533640894624799">"Proporcionar asistencia a captura de pantalla"</item>
+    <item msgid="2598847264853993611">"Leer el estado del teléfono"</item>
+    <item msgid="9215610846802973353">"Añadir buzón de voz"</item>
+    <item msgid="9186411956086478261">"Utilizar SIP"</item>
+    <item msgid="6884763100104539558">"Procesar llamada saliente"</item>
+    <item msgid="125513972170580692">"Huella digital"</item>
+    <item msgid="2556071024281275619">"Sensores corporales"</item>
+    <item msgid="617168514928339387">"Leer difusiones móviles"</item>
+    <item msgid="7134693570516523585">"Ubicación simulada"</item>
+    <item msgid="7224489175375229399">"Almacenamiento de lectura"</item>
+    <item msgid="8472735063903258202">"Almacenamiento de escritura"</item>
+    <item msgid="4069276819909595110">"Activar pantalla"</item>
+    <item msgid="1228338896751121025">"Obtener cuentas"</item>
+    <item msgid="3181581793459233672">"Ejecutar en segundo plano"</item>
+    <item msgid="2340936043025374076">"Volumen de accesibilidad"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Breve"</item>
+    <item msgid="4816511817309094890">"Media"</item>
+    <item msgid="8305084671259331134">"Largo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predeterminado"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursiva"</item>
+    <item msgid="6896773537705206194">"Versalitas"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predeterminado"</item>
+    <item msgid="6488643537808152001">"Ninguna"</item>
+    <item msgid="552332815156010137">"Contorno"</item>
+    <item msgid="7187891159463789272">"Sombra paralela"</item>
+    <item msgid="8019330250538856521">"Elevado"</item>
+    <item msgid="8987385315647049787">"Hundido"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Predeterminado"</item>
+    <item msgid="8611890312638868524">"Blanco sobre negro"</item>
+    <item msgid="5891360837786277638">"Negro sobre blanco"</item>
+    <item msgid="2798457065945456853">"Amarillo sobre negro"</item>
+    <item msgid="5799049811524553967">"Amarillo sobre azul"</item>
+    <item msgid="3673930830658169860">"Personalizado"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"Red privada virtual PPTP"</item>
+    <item msgid="1349760781118368659">"Red privada virtual L2TP/IPSec con claves precompartidas"</item>
+    <item msgid="6128519070545038358">"Red privada virtual L2TP/IPSec con certificados"</item>
+    <item msgid="312397853907741968">"Red privada virtual IPSec con claves precompartidas y autenticación XAuth"</item>
+    <item msgid="3319427315593649917">"Red privada virtual IPSec con certificados y autenticación XAuth"</item>
+    <item msgid="8258927774145391041">"Red privada virtual IPSec con certificados y autenticación híbrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ninguno"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Desconectado"</item>
+    <item msgid="8754480102834556765">"Iniciando..."</item>
+    <item msgid="3351334355574270250">"Conectando…"</item>
+    <item msgid="8303882153995748352">"Conectada"</item>
+    <item msgid="9135049670787351881">"Tiempo de espera"</item>
+    <item msgid="2124868417182583926">"Con error"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Preguntar"</item>
+    <item msgid="7718817231348607934">"No permitir nunca"</item>
+    <item msgid="8184570120217958741">"Permitir siempre"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistente"</item>
+    <item msgid="167418068739176448">"Actividad principal"</item>
+    <item msgid="4760813290195199773">"Importante (en primer plano)"</item>
+    <item msgid="2328684826817647595">"Importante (en segundo plano)"</item>
+    <item msgid="7746406490652867365">"Copia de seguridad"</item>
+    <item msgid="5597404364389196754">"Peso pesado"</item>
+    <item msgid="1290888779300174556">"Servicio (en ejecución)"</item>
+    <item msgid="7241098542073939046">"Servicio (reiniciando)"</item>
+    <item msgid="6610439017684111046">"Receptor"</item>
+    <item msgid="7367606086319921117">"Inicio"</item>
+    <item msgid="3344660712396741826">"Última actividad"</item>
+    <item msgid="5006559348883303865">"En caché (actividad)"</item>
+    <item msgid="8633480732468137525">"En caché (cliente de actividad)"</item>
+    <item msgid="6248998242443333892">"En caché (vacío)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Verde azulado"</item>
+    <item msgid="3228505970082457852">"Azul"</item>
+    <item msgid="6590260735734795647">"Índigo"</item>
+    <item msgid="3521763377357218577">"Violeta"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Rojo"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Más de 30 días de antigüedad"</item>
+    <item msgid="8699273238891265610">"Más de 60 días de antigüedad"</item>
+    <item msgid="8346279419423837266">"Más de 90 días de antigüedad"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detectar automáticamente"</item>
+    <item msgid="773943026484148895">"Tratar como red de uso medido"</item>
+    <item msgid="1008268820118852416">"Tratar como red de uso no medido"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Usar dirección MAC aleatoria (predeterminado)"</item>
+    <item msgid="214234417308375326">"Usar dirección MAC del dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Sí"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Oscuro"</item>
+    <item msgid="5079453644557603349">"Claro"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desactivado"</item>
+    <item msgid="4072198137051566919">"Depurar"</item>
+    <item msgid="2473005316958868509">"Detallado"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Solo sistema doméstico"</item>
+    <item msgid="1161026694891024702">"Automática"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Preferencia: GSM o WCDMA"</item>
+    <item msgid="7581481130337402578">"Solo GSM"</item>
+    <item msgid="8579197487913425819">"Solo WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM o WCDMA (automático)"</item>
+    <item msgid="9107479914166352132">"CDMA o EvDo (automático)"</item>
+    <item msgid="4219607161971472471">"CDMA sin EvDo"</item>
+    <item msgid="7278975240951052041">"Solo EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA, EvDo, GSM o WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA y LTE o EvDo"</item>
+    <item msgid="463168068025354541">"GSM, WCDMA o LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE o WCDMA"</item>
+    <item msgid="5638632460322750180">"Solo TD-SCDMA"</item>
+    <item msgid="4346392996298714633">"TD-SCDMA o WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE o TD-SCDMA"</item>
+    <item msgid="9191730167201068525">"TD-SCDMA o GSM"</item>
+    <item msgid="5874623229495009031">"LTE, TD-SCDMA o GSM"</item>
+    <item msgid="5096480046347789213">"TD-SCDMA, GSM o WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE, TD-SCDMA o WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE, TD-SCDMA, GSM o WCDMA"</item>
+    <item msgid="2067289929099567494">"TD-SCDMA, CDMA, EvDo, GSM o WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE, TD-SCDMA, CDMA, EvDo, GSM o WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE o CDMA"</item>
+    <item msgid="1779116915491192719">"LTE, GSM o UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-es/strings.xml b/tests/CarDeveloperOptions/res/values-es/strings.xml
index 13f8221..8ce3fe7 100644
--- a/tests/CarDeveloperOptions/res/values-es/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-es/strings.xml
@@ -1178,7 +1178,7 @@
     <string name="brightness" msgid="7309120144111305275">"Nivel de brillo"</string>
     <string name="brightness_title" msgid="5660190946911149690">"Brillo"</string>
     <string name="brightness_summary" msgid="8687101964451818730">"Ajustar el brillo de la pantalla"</string>
-    <string name="auto_brightness_title" msgid="908511534369820426">"Brillo automático"</string>
+    <string name="auto_brightness_title" msgid="908511534369820426">"Brillo adaptativo"</string>
     <string name="auto_brightness_summary_on" msgid="121488862610275737">"Activado"</string>
     <string name="auto_brightness_summary_off" msgid="8569141123211510256">"Desactivado"</string>
     <string name="auto_brightness_summary_very_low" msgid="7625647285740629347">"El brillo preferido es muy bajo"</string>
@@ -1196,7 +1196,7 @@
     <string name="auto_brightness_off_summary" msgid="6162650416289359104">"No ajustar en función de la luz ambiental"</string>
     <string name="auto_brightness_very_high_summary" msgid="7202032980509583918">"Aumenta el uso de la batería"</string>
     <string name="auto_brightness_disclaimer" msgid="5416696351199148809">"Optimiza el brillo en función de la luz ambiental. Puedes ajustarlo temporalmente aunque actives esta función."</string>
-    <string name="auto_brightness_description" msgid="8209140379089535411">"El brillo de la pantalla se ajustará automáticamente según el entorno y las actividades que hagas. Puedes mover el control deslizante para que la función de brillo adaptable reconozca tus preferencias."</string>
+    <string name="auto_brightness_description" msgid="8209140379089535411">"El brillo de la pantalla se ajustará automáticamente según el entorno y las actividades que hagas. Puedes mover el control deslizante para que la función de brillo adaptativo reconozca tus preferencias."</string>
     <string name="display_white_balance_title" msgid="5747260735311935143">"Balance de blancos de pantalla"</string>
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Modo privado"</string>
     <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Activado: la pantalla no se apagará si estás mirándola"</string>
@@ -1338,7 +1338,7 @@
     <string name="scanning_status_text_wifi_on_ble_on" msgid="6370507836346838473">"Las redes Wi‑Fi y las conexiones Bluetooth tienen la búsqueda activada"</string>
     <string name="scanning_status_text_wifi_on_ble_off" msgid="8205014713732412608">"La búsqueda de redes Wi‑Fi está activa y la de conexiones Bluetooth, desactivada"</string>
     <string name="scanning_status_text_wifi_off_ble_on" msgid="7400522456303307057">"La búsqueda de conexiones Bluetooth está activada y la de redes Wi‑Fi, desactivada"</string>
-    <string name="scanning_status_text_wifi_off_ble_off" msgid="8575026386237481457">"Las redes Wi‑Fi y las conexiones Bluetooth tienen la búsqueda desactivada"</string>
+    <string name="scanning_status_text_wifi_off_ble_off" msgid="8575026386237481457">"Está desactivada la búsqueda de redes Wi‑Fi y conexiones Bluetooth"</string>
     <string name="status_meid_number" msgid="8756271256760479835">"MEID"</string>
     <string name="status_icc_id" msgid="9191847562997702709">"ICCID"</string>
     <string name="status_data_network_type" msgid="2344720457353394909">"Tipo de red de datos móviles"</string>
@@ -3413,8 +3413,8 @@
     <string name="app_notification_block_summary" msgid="4502146897785692336">"No mostrar nunca estas notificaciones"</string>
     <string name="notification_content_block_title" msgid="2805138591864484587">"Mostrar notificaciones"</string>
     <string name="notification_content_block_summary" msgid="2743896875255591743">"No mostrar nunca notificaciones en el panel de notificaciones ni en dispositivos periféricos"</string>
-    <string name="notification_badge_title" msgid="8989086619255666442">"Permitir punto de notificación"</string>
-    <string name="notification_channel_badge_title" msgid="8228215248332054612">"Mostrar punto de notificación"</string>
+    <string name="notification_badge_title" msgid="8989086619255666442">"Permitir burbuja de notificación"</string>
+    <string name="notification_channel_badge_title" msgid="8228215248332054612">"Mostrar burbuja de notificación"</string>
     <string name="app_notification_override_dnd_title" msgid="1757042206738172601">"Omitir No molestar"</string>
     <string name="app_notification_override_dnd_summary" msgid="3152957611171210980">"Permitir notificaciones cuando el modo No molestar esté activado"</string>
     <string name="app_notification_visibility_override_title" msgid="2349335170165637672">"En la pantalla de bloqueo"</string>
@@ -4071,7 +4071,7 @@
     <string name="dark_ui_mode_title" msgid="8774932716427742413">"Seleccionar tema"</string>
     <string name="dark_ui_settings_light_summary" msgid="5219102347744462812">"Esta configuración también se utiliza para las aplicaciones"</string>
     <string name="dark_ui_settings_dark_summary" msgid="7042737828943784289">"Las aplicaciones que lo admitan también se cambiarán al tema oscuro"</string>
-    <string name="quick_settings_developer_tiles" msgid="7423485925757678719">"Iconos para desarrolladores en Ajustes rápidos"</string>
+    <string name="quick_settings_developer_tiles" msgid="7423485925757678719">"Iconos para desarrolladores en ajustes rápidos"</string>
     <string name="winscope_trace_quick_settings_title" msgid="940971040388411374">"Rastro de Winscope"</string>
     <string name="sensors_off_quick_settings_title" msgid="3655699045300438902">"Sensores desactivados"</string>
     <string name="managed_profile_settings_title" msgid="4340409321523532402">"Ajustes de perfil de trabajo"</string>
diff --git a/tests/CarDeveloperOptions/res/values-et-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-et-nokeys/strings.xml
new file mode 100644
index 0000000..5c254da
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-et-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Rakenduste haldamine"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-et/arrays.xml b/tests/CarDeveloperOptions/res/values-et/arrays.xml
new file mode 100644
index 0000000..281eb59
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-et/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Ameerika"</item>
+    <item msgid="4791956477275129121">"Euroopa"</item>
+    <item msgid="3812126832016254559">"Aafrika"</item>
+    <item msgid="2765816300353408280">"Aasia"</item>
+    <item msgid="6683489385344409742">"Austraalia"</item>
+    <item msgid="5194868215515664953">"Vaikne ookean"</item>
+    <item msgid="7044520255415007865">"Kõik"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekundit"</item>
+    <item msgid="772029947136115322">"30 sekundit"</item>
+    <item msgid="8743663928349474087">"1 minut"</item>
+    <item msgid="1506508631223164814">"2 minutit"</item>
+    <item msgid="8664703938127907662">"5 minutit"</item>
+    <item msgid="5827960506924849753">"10 minutit"</item>
+    <item msgid="6677424950124253938">"30 minutit"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Väike"</item>
+    <item msgid="591935967183159581">"Vaikeseade"</item>
+    <item msgid="1714184661981538355">"Suur"</item>
+    <item msgid="6195563047686707484">"Suurim"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Otsing ..."</item>
+    <item msgid="8058143476674427024">"Ühendamine võrguga <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Autentimine võrguga <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="5145158315060185414">"IP-aadressi hankimine võrgust <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="3283243151651124831">"Ühendatud võrguga <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Peatatud"</item>
+    <item msgid="4133290864821295785">"Ühenduse katkestamine võrguga <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Ühendus katkestatud"</item>
+    <item msgid="2847316776634969068">"Ebaõnnestus"</item>
+    <item msgid="4390990424746035383">"Blokeeritud"</item>
+    <item msgid="3618248791367063949">"Kehva ühenduse ajutine vältimine"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Nupuvajutus"</item>
+    <item msgid="7401896200768713930">"PIN-kood partnerseadmest"</item>
+    <item msgid="4526848028011846710">"PIN sellest seadmest"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Ühendatud"</item>
+    <item msgid="983792611851499732">"Kutsutud"</item>
+    <item msgid="5438273405428201793">"Ebaõnnestus"</item>
+    <item msgid="4646663015449312554">"Saadaval"</item>
+    <item msgid="3230556734162006146">"Vahemikust väljas"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutit"</item>
+    <item msgid="2759776603549270587">"5 minutit"</item>
+    <item msgid="167772676068860015">"1 tund"</item>
+    <item msgid="5985477119043628504">"Kunagi ei võta aega maha"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Viimased 30 päeva"</item>
+    <item msgid="3211287705232736964">"Kas. tsükli määramine ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Kasutusaeg"</item>
+    <item msgid="2784401352592276015">"Viimane kasutamine"</item>
+    <item msgid="249854287216326349">"Rakenduse nimi"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Mitte ükski"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Mitte ükski"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Staatiline"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Mitte ükski"</item>
+    <item msgid="1464741437353223198">"Käsitsi"</item>
+    <item msgid="5793600062487886090">"Puhvers. autom. seadistus"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Mitte ükski"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP või CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Seadme sisemine salvestusruum"</item>
+    <item msgid="3186681694079967527">"Eemaldatav SD-kaart"</item>
+    <item msgid="6902033473986647035">"Lase süsteemil otsustada"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Asukoht"</item>
+    <item msgid="6842381562497597649">"Isiklik"</item>
+    <item msgid="3966700236695683444">"Sõnumside"</item>
+    <item msgid="8563996233342430477">"Meedium"</item>
+    <item msgid="5323851085993963783">"Seade"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"üldine asukoht"</item>
+    <item msgid="1830619568689922920">"täpne asukoht"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibreerimine"</item>
+    <item msgid="8632513128515114092">"kontaktide lugemine"</item>
+    <item msgid="3741042113569620272">"kontaktide muutmine"</item>
+    <item msgid="4204420969709009931">"kõnelogi lugemine"</item>
+    <item msgid="2260380357119423209">"kõnelogi muutmine"</item>
+    <item msgid="6550710385014530934">"kalendri lugemine"</item>
+    <item msgid="3575906174264853951">"kalendri muutmine"</item>
+    <item msgid="4319843242568057174">"WiFi skannimine"</item>
+    <item msgid="2981791890467303819">"märguanne"</item>
+    <item msgid="6617825156152476692">"mobiili skannimine"</item>
+    <item msgid="8865260890611559753">"helistamine telefonile"</item>
+    <item msgid="3254999273961542982">"SMS-i lugemine"</item>
+    <item msgid="7711446453028825171">"SMS-i kirjutamine"</item>
+    <item msgid="6123238544099198034">"SMS-i vastuvõtmine"</item>
+    <item msgid="838342167431596036">"hädaolukorra SMS-i vastuvõtmine"</item>
+    <item msgid="8554432731560956686">"MMS-i vastuvõtmine"</item>
+    <item msgid="7464863464299515059">"WAP-edastuse vastuvõtmine"</item>
+    <item msgid="310463075729606765">"Saada SMS"</item>
+    <item msgid="7338021933527689514">"ICC SMS-i lugemine"</item>
+    <item msgid="6130369335466613036">"ICC SMS-i kirjutamine"</item>
+    <item msgid="6536865581421670942">"seadete muutmine"</item>
+    <item msgid="4547203129183558973">"peale joonistamine"</item>
+    <item msgid="9080347512916542840">"juurdepääsumärguanded"</item>
+    <item msgid="5332718516635907742">"kaamera"</item>
+    <item msgid="6098422447246167852">"heli salvestamine"</item>
+    <item msgid="9182794235292595296">"heli esitamine"</item>
+    <item msgid="8760743229597702019">"lõikelaua lugemine"</item>
+    <item msgid="2266923698240538544">"lõikelaua muutmine"</item>
+    <item msgid="1801619438618539275">"meedianupud"</item>
+    <item msgid="31588119965784465">"helifookus"</item>
+    <item msgid="7565226799008076833">"põhihelitugevus"</item>
+    <item msgid="5420704980305018295">"hääle helitugevus"</item>
+    <item msgid="5797363115508970204">"helina helitugevus"</item>
+    <item msgid="8233154098550715999">"meedia helitugevus"</item>
+    <item msgid="5196715605078153950">"äratuse helitugevus"</item>
+    <item msgid="394030698764284577">"märguande helitugevus"</item>
+    <item msgid="8952898972491680178">"Bluetoothi helitugevus"</item>
+    <item msgid="8506227454543690851">"hoia ärkvel"</item>
+    <item msgid="1108160036049727420">"monitori asukoht"</item>
+    <item msgid="1496205959751719491">"suure võimsusega asukoha jälgimine"</item>
+    <item msgid="3776296279910987380">"kasutusstatistika hankimine"</item>
+    <item msgid="8827100324471975602">"mikrofoni vaigistamine või vaigistuse tühistamine"</item>
+    <item msgid="6880736730520126864">"teatiste kuvamine"</item>
+    <item msgid="4933375960222609935">"meediumi projitseerimine"</item>
+    <item msgid="8357907018938895462">"VPN-i aktiveerimine"</item>
+    <item msgid="8143812849911310973">"taustapilt kirjutamiseks"</item>
+    <item msgid="6266277260961066535">"abistruktuur"</item>
+    <item msgid="7715498149883482300">"abistav ekraanipilt"</item>
+    <item msgid="4046679376726313293">"telefoni oleku lugemine"</item>
+    <item msgid="6329507266039719587">"kõneposti lisamine"</item>
+    <item msgid="7692440726415391408">"SIP kasutamine"</item>
+    <item msgid="8572453398128326267">"väljamineva kõne töötlemine"</item>
+    <item msgid="7775674394089376306">"sõrmejälg"</item>
+    <item msgid="3182815133441738779">"kehaandurid"</item>
+    <item msgid="2793100005496829513">"kärjeteadete lugemine"</item>
+    <item msgid="2633626056029384366">"tehislik asukoht"</item>
+    <item msgid="8356842191824684631">"salvestusruumi lugemine"</item>
+    <item msgid="5671906070163291500">"salvestusruumi kirjutamine"</item>
+    <item msgid="2791955098549340418">"ekraani sisselülitamine"</item>
+    <item msgid="5599435119609178367">"kontode hankimine"</item>
+    <item msgid="1165623660533024666">"taustal käitamine"</item>
+    <item msgid="6423861043647911030">"juurdepääsetavuse helitugevus"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Lühike"</item>
+    <item msgid="4816511817309094890">"Keskmine"</item>
+    <item msgid="8305084671259331134">"Pikk"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Vaikeseade"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif, tihendatud"</item>
+    <item msgid="6529379119163117545">"Seriifideta püsisammkiri"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Seriifidega püsisammkiri"</item>
+    <item msgid="4448481989108928248">"Lihtne"</item>
+    <item msgid="4627069151979553527">"Kursiiv"</item>
+    <item msgid="6896773537705206194">"Kapiteelkiri"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Vaikeseade"</item>
+    <item msgid="6488643537808152001">"Mitte ükski"</item>
+    <item msgid="552332815156010137">"Piirjoon"</item>
+    <item msgid="7187891159463789272">"Langev vari"</item>
+    <item msgid="8019330250538856521">"Reljeefne"</item>
+    <item msgid="8987385315647049787">"Lohkus"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Kasuta vaikeseadeid"</item>
+    <item msgid="8611890312638868524">"Valge mustal"</item>
+    <item msgid="5891360837786277638">"Must valgel"</item>
+    <item msgid="2798457065945456853">"Kollane mustal"</item>
+    <item msgid="5799049811524553967">"Kollane sinisel"</item>
+    <item msgid="3673930830658169860">"Kohandatud"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN eeljagatud võtmetega"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN sertifikaatidega"</item>
+    <item msgid="312397853907741968">"IPSec VPN eeljagatud võtmete ja Xauth-i autentimisega"</item>
+    <item msgid="3319427315593649917">"IPSec VPN sertifikaatide ja Xauth-i autentimisega"</item>
+    <item msgid="8258927774145391041">"IPSec VPN sertifikaatide ja hübriidautentimisega"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Puudub"</item>
+    <item msgid="1157046369795346308">"Käsitsi"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Ühendus katkestatud"</item>
+    <item msgid="8754480102834556765">"Lähtestamine ..."</item>
+    <item msgid="3351334355574270250">"Ühendamine ..."</item>
+    <item msgid="8303882153995748352">"Ühendatud"</item>
+    <item msgid="9135049670787351881">"Ajalõpp"</item>
+    <item msgid="2124868417182583926">"Ebaõnnestus"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Küsi"</item>
+    <item msgid="7718817231348607934">"Ära luba kunagi"</item>
+    <item msgid="8184570120217958741">"Luba alati"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Püsiv"</item>
+    <item msgid="167418068739176448">"Sagedasim tegevus"</item>
+    <item msgid="4760813290195199773">"Oluline (esiplaanil)"</item>
+    <item msgid="2328684826817647595">"Oluline (taustal)"</item>
+    <item msgid="7746406490652867365">"Varundamine"</item>
+    <item msgid="5597404364389196754">"Mahukas"</item>
+    <item msgid="1290888779300174556">"Teenus (töötamine)"</item>
+    <item msgid="7241098542073939046">"Teenus (taaskäivitamine)"</item>
+    <item msgid="6610439017684111046">"Vastuvõtja"</item>
+    <item msgid="7367606086319921117">"Avakuva"</item>
+    <item msgid="3344660712396741826">"Viimane tegevus"</item>
+    <item msgid="5006559348883303865">"Vahemälus (tegevus)"</item>
+    <item msgid="8633480732468137525">"Vahemälus (tegevuse klient)"</item>
+    <item msgid="6248998242443333892">"Vahemälus (tühi)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Sinakasroheline"</item>
+    <item msgid="3228505970082457852">"Sinine"</item>
+    <item msgid="6590260735734795647">"Indigosinine"</item>
+    <item msgid="3521763377357218577">"Lilla"</item>
+    <item msgid="5932337981182999919">"Roosa"</item>
+    <item msgid="5642914536624000094">"Punane"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Üle 30 päeva vanad"</item>
+    <item msgid="8699273238891265610">"Üle 60 päeva vanad"</item>
+    <item msgid="8346279419423837266">"Üle 90 päeva vanad"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Tuvasta automaatselt"</item>
+    <item msgid="773943026484148895">"Käsitle mahupõhisena"</item>
+    <item msgid="1008268820118852416">"Käsitle mittemahupõhisena"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Kasuta juhuslikku MAC-aadressi (vaikeseade)"</item>
+    <item msgid="214234417308375326">"Kasuta seadme MAC-aadressi"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ei"</item>
+    <item msgid="1930581185557754880">"Jah"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tume"</item>
+    <item msgid="5079453644557603349">"Hele"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Väljas"</item>
+    <item msgid="4072198137051566919">"Silumine"</item>
+    <item msgid="2473005316958868509">"Üksikasjalik"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Ainult kodus"</item>
+    <item msgid="1161026694891024702">"Automaatne"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Eelistatud: GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Ainult GSM"</item>
+    <item msgid="8579197487913425819">"Ainult WCDMA"</item>
+    <item msgid="8465243227505412498">"Automaatne GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automaatne CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA ilma EvDo-ta"</item>
+    <item msgid="7278975240951052041">"Ainult EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Üldine"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Ainult TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Üldine"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-et/strings.xml b/tests/CarDeveloperOptions/res/values-et/strings.xml
index 35dc189..2b8b96c 100644
--- a/tests/CarDeveloperOptions/res/values-et/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-et/strings.xml
@@ -301,7 +301,7 @@
     <string name="settings_label" msgid="7263237773415875813">"Seaded"</string>
     <string name="settings_label_launcher" msgid="500627679902923496">"Seaded"</string>
     <string name="settings_shortcut" msgid="4503714880251502167">"Seadete otsetee"</string>
-    <string name="airplane_mode" msgid="4508870277398231073">"Lennurežiim"</string>
+    <string name="airplane_mode" msgid="4508870277398231073">"Lennukirežiim"</string>
     <string name="wireless_networks_settings_title" msgid="4298430520189173949">"Traadita ühendus ja võrgud"</string>
     <string name="radio_controls_summary" msgid="4596981962167684814">"WiFi, Bluetoothi, lennurežiimi ja mobiilsidevõrkude ning VPN-ide haldamine"</string>
     <string name="cellular_data_title" msgid="7909624119432695022">"Mobiilne andmeside"</string>
@@ -2090,7 +2090,7 @@
     <string name="accessibility_touch_vibration_title" msgid="285890135612038092">"Puudutusel vibreerimine"</string>
     <string name="accessibility_service_master_switch_title" msgid="2734791644475782924">"Kasuta teenust"</string>
     <string name="accessibility_daltonizer_master_switch_title" msgid="4855011639012300777">"Kasuta värvikorrigeerimist"</string>
-    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Kasuta tiitreid"</string>
+    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Kasuta subtiitreid"</string>
     <string name="accessibility_hearingaid_instruction_continue_button" msgid="4650111296711466691">"Jätka"</string>
     <string name="accessibility_hearingaid_title" msgid="3700978781235124891">"Kuuldeaparaadid"</string>
     <string name="accessibility_hearingaid_not_connected_summary" msgid="634573930469952213">"Ühtegi kuuldeaparaati pole ühendatud"</string>
@@ -3659,7 +3659,7 @@
     <string name="assist_and_voice_input_title" msgid="324148194703846130">"Abirakendus ja häälsisend"</string>
     <string name="default_assist_title" msgid="2060846994203235317">"Abirakendus"</string>
     <string name="assistant_security_warning_title" msgid="8014460924169723059">"Kas soovite rakenduse <xliff:g id="ASSISTANT_APP_NAME">%s</xliff:g> muuta abirakenduseks?"</string>
-    <string name="assistant_security_warning" msgid="1304057692847069938">"Abimees saab teie süsteemis kasutatavate rakenduste kohta teavet vaadata (sh teie ekraanil kuvatud või rakendustes juurdepääsetav teave)."</string>
+    <string name="assistant_security_warning" msgid="1304057692847069938">"Assistent saab teie süsteemis kasutatavate rakenduste kohta teavet vaadata (sh teie ekraanil kuvatud või rakendustes juurdepääsetav teave)."</string>
     <string name="assistant_security_warning_agree" msgid="5105692801460137289">"Nõustu"</string>
     <string name="assistant_security_warning_disagree" msgid="4217490999193100459">"Ei nõustu"</string>
     <string name="choose_voice_input_title" msgid="5369311838580756359">"Häälsisendi valimine"</string>
@@ -3881,7 +3881,7 @@
     <string name="condition_expand_show" msgid="4118818022763913777">"Kuva"</string>
     <string name="condition_expand_hide" msgid="1112721783024332643">"Peida"</string>
     <string name="condition_hotspot_title" msgid="4143299802283098506">"Kuumkoht on aktiivne"</string>
-    <string name="condition_airplane_title" msgid="8484582712516148433">"Lennurežiim on sees"</string>
+    <string name="condition_airplane_title" msgid="8484582712516148433">"Lennukirežiim on sees"</string>
     <string name="condition_airplane_summary" msgid="3021193218494740742">"Võrgud pole saadaval"</string>
     <string name="condition_zen_title" msgid="2128184708916052585">"Režiim Mitte segada on sees"</string>
     <string name="condition_zen_summary_phone_muted" msgid="4396050395522974654">"Telefon on vaigistatud"</string>
diff --git a/tests/CarDeveloperOptions/res/values-eu-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-eu-nokeys/strings.xml
new file mode 100644
index 0000000..21c65fd
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-eu-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Kudeatu aplikazioak"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-eu/arrays.xml b/tests/CarDeveloperOptions/res/values-eu/arrays.xml
new file mode 100644
index 0000000..d3e0e12
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-eu/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pazifikoa"</item>
+    <item msgid="7044520255415007865">"Guztiak"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundo"</item>
+    <item msgid="772029947136115322">"30 segundo"</item>
+    <item msgid="8743663928349474087">"1 minutu"</item>
+    <item msgid="1506508631223164814">"2 minutu"</item>
+    <item msgid="8664703938127907662">"5 minutu"</item>
+    <item msgid="5827960506924849753">"10 minutu"</item>
+    <item msgid="6677424950124253938">"30 minutu"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Konektatuta"</item>
+    <item msgid="983792611851499732">"Gonbidatuta"</item>
+    <item msgid="5438273405428201793">"Ezin izan da egin"</item>
+    <item msgid="4646663015449312554">"Erabilgarri"</item>
+    <item msgid="3230556734162006146">"Urrutiegi"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutu"</item>
+    <item msgid="2759776603549270587">"5 minutu"</item>
+    <item msgid="167772676068860015">"1 ordu"</item>
+    <item msgid="5985477119043628504">"Ez gainditu inoiz denbora-muga"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Azken 30 egunak"</item>
+    <item msgid="3211287705232736964">"Erabilera-zikloa…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Erabilera-denbora"</item>
+    <item msgid="2784401352592276015">"Erabilitako azken aldia"</item>
+    <item msgid="249854287216326349">"Aplikazioaren izena"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Bat ere ez"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Bat ere ez"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Bat ere ez"</item>
+    <item msgid="1464741437353223198">"Eskuliburua"</item>
+    <item msgid="5793600062487886090">"Proxy-konfigurazio auto."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Bat ere ez"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP edo CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Gailuaren barneko memoria"</item>
+    <item msgid="3186681694079967527">"SD txartel aldagarria"</item>
+    <item msgid="6902033473986647035">"Utzi sistemari erabakitzen"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Kokapena"</item>
+    <item msgid="6842381562497597649">"Pertsonalak"</item>
+    <item msgid="3966700236695683444">"Mezuak"</item>
+    <item msgid="8563996233342430477">"Multimedia-edukia"</item>
+    <item msgid="5323851085993963783">"Gailua"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"gutxi gorabeherako kokapena"</item>
+    <item msgid="1830619568689922920">"kokapen zehatza"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"dardara"</item>
+    <item msgid="8632513128515114092">"irakurri kontaktuak"</item>
+    <item msgid="3741042113569620272">"aldatu kontaktuak"</item>
+    <item msgid="4204420969709009931">"irakurri deien erregistroa"</item>
+    <item msgid="2260380357119423209">"aldatu deien erregistroa"</item>
+    <item msgid="6550710385014530934">"irakurri egutegia"</item>
+    <item msgid="3575906174264853951">"aldatu egutegia"</item>
+    <item msgid="4319843242568057174">"Wi-Fi sareak bilatzea"</item>
+    <item msgid="2981791890467303819">"jakinarazpena"</item>
+    <item msgid="6617825156152476692">"sare mugikorrak bilatzea"</item>
+    <item msgid="8865260890611559753">"deitu telefonora"</item>
+    <item msgid="3254999273961542982">"irakurri SMS mezuak"</item>
+    <item msgid="7711446453028825171">"idatzi SMS mezuak"</item>
+    <item msgid="6123238544099198034">"jaso SMS mezuak"</item>
+    <item msgid="838342167431596036">"jaso larrialdiko SMS mezuak"</item>
+    <item msgid="8554432731560956686">"jaso MMS mezuak"</item>
+    <item msgid="7464863464299515059">"jaso WAP push-jakinarazpenak"</item>
+    <item msgid="310463075729606765">"bidali SMS mezuak"</item>
+    <item msgid="7338021933527689514">"irakurri ICC SMS mezuak"</item>
+    <item msgid="6130369335466613036">"idatzi ICC SMS mezuak"</item>
+    <item msgid="6536865581421670942">"aldatu ezarpenak"</item>
+    <item msgid="4547203129183558973">"marraztu gainean"</item>
+    <item msgid="9080347512916542840">"atzitu jakinarazpenak"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"grabatu audioa"</item>
+    <item msgid="9182794235292595296">"erreproduzitu audioa"</item>
+    <item msgid="8760743229597702019">"irakurri arbela"</item>
+    <item msgid="2266923698240538544">"aldatu arbela"</item>
+    <item msgid="1801619438618539275">"multimedia-botoiak"</item>
+    <item msgid="31588119965784465">"audio-fokuratzea"</item>
+    <item msgid="7565226799008076833">"bolumen nagusia"</item>
+    <item msgid="5420704980305018295">"ahotsaren bolumena"</item>
+    <item msgid="5797363115508970204">"tonuaren bolumena"</item>
+    <item msgid="8233154098550715999">"multimedia-elementuen bolumena"</item>
+    <item msgid="5196715605078153950">"alarmaren bolumena"</item>
+    <item msgid="394030698764284577">"jakinarazpenen bolumena"</item>
+    <item msgid="8952898972491680178">"Bluetootharen bolumena"</item>
+    <item msgid="8506227454543690851">"eduki aktibo"</item>
+    <item msgid="1108160036049727420">"kontrolatu kokapena"</item>
+    <item msgid="1496205959751719491">"egin potentzia handiko kokapen-kontrola"</item>
+    <item msgid="3776296279910987380">"lortu erabilera-estatistikak"</item>
+    <item msgid="8827100324471975602">"aktibatu edo desaktibatu mikrofonoa"</item>
+    <item msgid="6880736730520126864">"erakutsi leiho gainerakorra"</item>
+    <item msgid="4933375960222609935">"proiektatu multimedia-edukia"</item>
+    <item msgid="8357907018938895462">"aktibatu VPN konexioa"</item>
+    <item msgid="8143812849911310973">"idatzi horma-paperean"</item>
+    <item msgid="6266277260961066535">"lagundu egiturarekin"</item>
+    <item msgid="7715498149883482300">"lagundu pantaila-argazkiarekin"</item>
+    <item msgid="4046679376726313293">"irakurri telefonoaren egoera"</item>
+    <item msgid="6329507266039719587">"gehitu erantzungailua"</item>
+    <item msgid="7692440726415391408">"erabili SIP deiak"</item>
+    <item msgid="8572453398128326267">"prozesatu egindako deia"</item>
+    <item msgid="7775674394089376306">"hatz-marka"</item>
+    <item msgid="3182815133441738779">"gorputz-sentsoreak"</item>
+    <item msgid="2793100005496829513">"irakurri sare mugikor bidezko igorpenak"</item>
+    <item msgid="2633626056029384366">"imitate kokapena"</item>
+    <item msgid="8356842191824684631">"irakurri memoria"</item>
+    <item msgid="5671906070163291500">"idatzi memorian"</item>
+    <item msgid="2791955098549340418">"aktibatu pantaila"</item>
+    <item msgid="5599435119609178367">"lortu kontuak"</item>
+    <item msgid="1165623660533024666">"exekutatu atzeko planoan"</item>
+    <item msgid="6423861043647911030">"erabilerraztasun-eginbideen bolumena"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Laburra"</item>
+    <item msgid="4816511817309094890">"Ertaina"</item>
+    <item msgid="8305084671259331134">"Luzea"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Lehenetsia"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif kondentsatua"</item>
+    <item msgid="6529379119163117545">"Tarte bakarreko Sans-serif"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Tarte bakarreko serif"</item>
+    <item msgid="4448481989108928248">"Arrunta"</item>
+    <item msgid="4627069151979553527">"Etzana"</item>
+    <item msgid="6896773537705206194">"Maiuskula txikiak"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Lehenetsia"</item>
+    <item msgid="6488643537808152001">"Bat ere ez"</item>
+    <item msgid="552332815156010137">"Ingerada"</item>
+    <item msgid="7187891159463789272">"Itzal paraleloa"</item>
+    <item msgid="8019330250538856521">"Goratua"</item>
+    <item msgid="8987385315647049787">"Beheratua"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"% 25"</item>
+    <item msgid="4665048002584838262">"% 50"</item>
+    <item msgid="1874668269931014581">"% 75"</item>
+    <item msgid="6462911487571123954">"% 100"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPNa aurrez partekatutako gakoekin"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPNa ziurtagiriekin"</item>
+    <item msgid="312397853907741968">"L2TP/IPSec VPNa aurrez partekatutako gakoekin eta Xauth autentifikazioarekin"</item>
+    <item msgid="3319427315593649917">"L2TP/IPSec VPNa ziurtagiriekin eta Xauth autentifikazioarekin"</item>
+    <item msgid="8258927774145391041">"L2TP/IPSec VPNa ziurtagiriekin eta autentifikazio hibridoarekin"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Bat ere ez"</item>
+    <item msgid="1157046369795346308">"Eskuliburua"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Galdetu"</item>
+    <item msgid="7718817231348607934">"Ukatu beti"</item>
+    <item msgid="8184570120217958741">"Eman baimena beti"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Etengabea"</item>
+    <item msgid="167418068739176448">"Jarduera nagusia"</item>
+    <item msgid="4760813290195199773">"Garrantzitsua (aurreko planokoa)"</item>
+    <item msgid="2328684826817647595">"Garrantzitsua (atzeko planokoa)"</item>
+    <item msgid="7746406490652867365">"Babeskopiak"</item>
+    <item msgid="5597404364389196754">"Handia"</item>
+    <item msgid="1290888779300174556">"Zerbitzua (abian)"</item>
+    <item msgid="7241098542073939046">"Zerbitzua (berrabiarazten)"</item>
+    <item msgid="6610439017684111046">"Hargailua"</item>
+    <item msgid="7367606086319921117">"Hasiera"</item>
+    <item msgid="3344660712396741826">"Azken jarduera"</item>
+    <item msgid="5006559348883303865">"Cachean gordetakoa (jarduera)"</item>
+    <item msgid="8633480732468137525">"Cachean gordetakoa (jardueren bezeroa)"</item>
+    <item msgid="6248998242443333892">"Cachean gordetakoa (hutsik)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Anila"</item>
+    <item msgid="3228505970082457852">"Urdina"</item>
+    <item msgid="6590260735734795647">"Indigoa"</item>
+    <item msgid="3521763377357218577">"Morea"</item>
+    <item msgid="5932337981182999919">"Arrosa"</item>
+    <item msgid="5642914536624000094">"Gorria"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 egunetik gorakoak"</item>
+    <item msgid="8699273238891265610">"60 egunetik gorakoak"</item>
+    <item msgid="8346279419423837266">"90 egunetik gorakoak"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Hauteman automatikoki"</item>
+    <item msgid="773943026484148895">"Tratatu sare neurtu gisa"</item>
+    <item msgid="1008268820118852416">"Tratatu neurtu gabeko sare gisa"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Erabili ausaz aukeratutako MAC helbidea (lehenetsia)"</item>
+    <item msgid="214234417308375326">"Erabili gailuaren MAC helbidea"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ez"</item>
+    <item msgid="1930581185557754880">"Bai"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Iluna"</item>
+    <item msgid="5079453644557603349">"Argia"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desaktibatuta"</item>
+    <item msgid="4072198137051566919">"Arazketa"</item>
+    <item msgid="2473005316958868509">"Xehatua"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Etxekoak soilik"</item>
+    <item msgid="1161026694891024702">"Automatikoa"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA hobetsita"</item>
+    <item msgid="7581481130337402578">"GSM soilik"</item>
+    <item msgid="8579197487913425819">"WCDMA soilik"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatikoa"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatikoa"</item>
+    <item msgid="4219607161971472471">"EvDo gabeko CDMA"</item>
+    <item msgid="7278975240951052041">"EvDo soilik"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Orokorrak"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA soilik"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Orokorrak"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-eu/strings.xml b/tests/CarDeveloperOptions/res/values-eu/strings.xml
index 00ebec3..7a3345c 100644
--- a/tests/CarDeveloperOptions/res/values-eu/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-eu/strings.xml
@@ -531,11 +531,11 @@
     <string name="crypt_keeper_warn_wipe" msgid="700814581500057050">"Abisua: desblokeatzeko beste <xliff:g id="COUNT">^1</xliff:g> saiakera oker egiten badituzu, gailuko datu guztiak ezabatuko dira!"</string>
     <string name="crypt_keeper_enter_password" msgid="726933635335219421">"Idatzi pasahitza"</string>
     <string name="crypt_keeper_failed_title" msgid="1906382607060855782">"Ezin izan da enkriptatu"</string>
-    <string name="crypt_keeper_failed_summary" product="tablet" msgid="7844833877734529625">"Enkriptatzea eten da eta ezin da osatu. Ondorioz, ezin izango dituzu tabletako datuak atzitu.\n\nTableta erabiltzen jarraitzeko, jatorrizko datuak berrezarri behar dituzu. Datuak berrezarri ondoren tableta konfiguratzen duzunean, Google kontuan gordetako babeskopiaren datuak leheneratu ahal izango dituzu."</string>
-    <string name="crypt_keeper_failed_summary" product="default" msgid="2895589681839090312">"Enkriptatzea eten da eta ezin da osatu. Ondorioz, ezin izango dituzu telefonoko datuak atzitu.\n\nTelefonoa erabiltzen jarraitzeko, jatorrizko datuak berrezarri behar dituzu. Datuak berrezarri ondoren telefonoa konfiguratzen duzunean, Google kontuan gordetako babeskopien datuak leheneratu ahal izango dituzu."</string>
+    <string name="crypt_keeper_failed_summary" product="tablet" msgid="7844833877734529625">"Enkriptatzea eten da eta ezin da osatu. Ondorioz, ezin izango dituzu tabletako datuak atzitu.\n\nTableta erabiltzen jarraitzeko, jatorrizko datuak berrezarri behar dituzu. Datuak berrezarri ondoren tableta konfiguratzen duzunean, Google-ko kontuan gordetako babeskopiaren datuak leheneratu ahal izango dituzu."</string>
+    <string name="crypt_keeper_failed_summary" product="default" msgid="2895589681839090312">"Enkriptatzea eten da eta ezin da osatu. Ondorioz, ezin izango dituzu telefonoko datuak atzitu.\n\nTelefonoa erabiltzen jarraitzeko, jatorrizko datuak berrezarri behar dituzu. Datuak berrezarri ondoren telefonoa konfiguratzen duzunean, Google-ko kontuan gordetako babeskopien datuak leheneratu ahal izango dituzu."</string>
     <string name="crypt_keeper_data_corrupt_title" msgid="6561535293845985713">"Ezin izan da desenkriptatu"</string>
-    <string name="crypt_keeper_data_corrupt_summary" product="tablet" msgid="7018748502706237323">"Idatzi duzun pasahitza zuzena da, baina datuak hondatuta daude. \n\nTableta erabiltzen jarraitzeko, jatorrizko datuak berrezarri beharko dituzu. Berrezarri ondoren, tableta konfiguratzen duzunean, Google kontuan egindako babeskopiak leheneratu ahal izango dituzu."</string>
-    <string name="crypt_keeper_data_corrupt_summary" product="default" msgid="5798580588985326937">"Idatzi duzun pasahitza zuzena da, baina datuak hondatuta daude. \n\nTelefonoa erabiltzen jarraitzeko, jatorrizko datuak berrezarri beharko dituzu. Berrezarri ondoren, telefonoa konfiguratzen duzunean, Google kontuan egindako babeskopiak leheneratu ahal izango dituzu."</string>
+    <string name="crypt_keeper_data_corrupt_summary" product="tablet" msgid="7018748502706237323">"Idatzi duzun pasahitza zuzena da, baina datuak hondatuta daude. \n\nTableta erabiltzen jarraitzeko, jatorrizko datuak berrezarri beharko dituzu. Berrezarri ondoren, tableta konfiguratzen duzunean, Google-ko kontuan egindako babeskopiak leheneratu ahal izango dituzu."</string>
+    <string name="crypt_keeper_data_corrupt_summary" product="default" msgid="5798580588985326937">"Idatzi duzun pasahitza zuzena da, baina datuak hondatuta daude. \n\nTelefonoa erabiltzen jarraitzeko, jatorrizko datuak berrezarri beharko dituzu. Berrezarri ondoren, telefonoa konfiguratzen duzunean, Google-ko kontuan egindako babeskopiak leheneratu ahal izango dituzu."</string>
     <string name="crypt_keeper_switch_input_method" msgid="4744137470890459582">"Aldatu idazketa-metodoa"</string>
     <string name="suggested_lock_settings_title" msgid="1518155558803371661">"Babestu telefonoa"</string>
     <string name="suggested_lock_settings_summary" product="tablet" msgid="1861066918594412519">"Ezarri pantailaren blokeoa tableta babesteko"</string>
@@ -762,7 +762,7 @@
     <string name="bluetooth_device_context_unpair" msgid="250588431708253041">"Desparekatu"</string>
     <string name="bluetooth_device_context_disconnect_unpair" msgid="4519151805677280077">"Deskonektatu eta desparekatu"</string>
     <string name="bluetooth_device_context_connect_advanced" msgid="423463405499392444">"Aukerak…"</string>
-    <string name="bluetooth_menu_advanced" msgid="7566858513372603652">"Ezarpen aurreratuak"</string>
+    <string name="bluetooth_menu_advanced" msgid="7566858513372603652">"Aurreratuak"</string>
     <string name="bluetooth_advanced_titlebar" msgid="6459469494039004784">"Bluetooth ezarpen aurreratuak"</string>
     <string name="bluetooth_empty_list_bluetooth_off" msgid="6255367297830430459">"Bluetooth aktibatuta badago, inguruko Bluetooth gailuekin komunika daiteke gailua."</string>
     <string name="bluetooth_scanning_on_info_message" msgid="5460370815156050550">"Bluetooth konexioa aktibatuta dagoenean, inguruko Bluetooth gailuekin komunika daiteke gailua.\n\nGailuaren erabilera hobetzeko, aplikazioek eta zerbitzuek wifi-sareak bilatzen jarraituko dute, baita wifi-konexioa desaktibatuta dagoenean ere. Besteak beste, kokapenean oinarritutako eginbideak eta zerbitzuak hobetzeko erabil daiteke. Aukera hori aldatzeko, joan "<annotation id="link">"gailuak bilatzeko ezarpenetara"</annotation>"."</string>
@@ -881,7 +881,7 @@
     <string name="wifi_menu_more_options" msgid="8318269834264035524">"Aukera gehiago"</string>
     <string name="wifi_menu_p2p" msgid="4945665601551289791">"Wi-Fi Direct"</string>
     <string name="wifi_menu_scan" msgid="9082691677803181629">"Bilatu"</string>
-    <string name="wifi_menu_advanced" msgid="5984484498045511072">"Ezarpen aurreratuak"</string>
+    <string name="wifi_menu_advanced" msgid="5984484498045511072">"Aurreratuak"</string>
     <string name="wifi_menu_configure" msgid="52192491120701266">"Konfiguratu"</string>
     <string name="wifi_menu_connect" msgid="3984327567173931219">"Konektatu sarera"</string>
     <string name="wifi_menu_remember" msgid="717257200269700641">"Gogoratu sarea"</string>
@@ -1168,7 +1168,7 @@
     <string name="color_mode_option_natural" msgid="1292837781836645320">"Naturalak"</string>
     <string name="color_mode_option_boosted" msgid="453557938434778933">"Nabarmenduak"</string>
     <string name="color_mode_option_saturated" msgid="7758384943407859851">"Saturatuak"</string>
-    <string name="color_mode_option_automatic" msgid="6572718611315165117">"Doigarria"</string>
+    <string name="color_mode_option_automatic" msgid="6572718611315165117">"Doigarriak"</string>
     <string name="color_mode_summary_natural" msgid="1247153893843263340">"Erabili kolore errealistak soilik"</string>
     <string name="color_mode_summary_automatic" msgid="6066740785261330514">"Doitu kolore bizi eta errealisten artean"</string>
     <string name="accelerometer_summary_on" product="tablet" msgid="5750977897791656412">"Aldatu orientazioa automatikoki tableta biratzean"</string>
@@ -1202,7 +1202,7 @@
     <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Aktibatuta / Pantaila ez da itzaliko hari begira zauden bitartean"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Desaktibatuta"</string>
     <string name="adaptive_sleep_description" msgid="812673735459170009">"Pantaila itzaltzea eragozten du hari begira zauden bitartean."</string>
-    <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Pantaila kontzienteak aurreko kamera erabiltzen du inor pantailari begira dagoen jakiteko. Gailuko eginbidea da, eta irudiak ez dira inoiz gordetzen, ez eta Google-ra bidaltzen ere."</string>
+    <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Pantaila kontzientea eginbideak aurreko kamera erabiltzen du inor pantailari begira dagoen jakiteko. Gailuko eginbidea da, eta irudiak ez dira inoiz gordetzen, ez eta Google-ra bidaltzen ere."</string>
     <string name="night_display_title" msgid="1305002424893349814">"Gaueko argia"</string>
     <string name="night_display_text" msgid="5330502493684652527">"Gaueko argiak tindu horikaraz janzten du pantaila. Horrela, ez zaizu horren nekagarria egingo argi gutxirekin pantailari begira egotea eta errazago hartuko duzu lo, gainera."</string>
     <string name="night_display_auto_mode_title" msgid="8493573087102481588">"Ordutegia"</string>
@@ -1399,7 +1399,7 @@
     <string name="sd_ejecting_title" msgid="595074246815112145">"Desmuntatzen"</string>
     <string name="sd_ejecting_summary" msgid="5708943172014003213">"Desmuntatzea abian da"</string>
     <string name="storage_low_title" msgid="6957178208426099592">"Memoria agortzen ari da"</string>
-    <string name="storage_low_summary" msgid="4475275204869514141">"Baliteke sistemaren funtzio batzuk behar bezala ez funtzionatzea, esaterako, sinkronizazioa. Saiatu memorian tokia egiten elementu batzuk ezabatuta edo desainguratuta, adibidez, aplikazioak edo multimedia-edukia."</string>
+    <string name="storage_low_summary" msgid="4475275204869514141">"Baliteke sistemaren funtzio batzuek behar bezala ez funtzionatzea; esaterako, sinkronizazioak. Memorian tokia egiteko, ezabatu elementu batzuk (adibidez, aplikazioak edo multimedia-edukia) edo ken iezaiezu aingura."</string>
     <string name="storage_menu_rename" msgid="3731682449294417745">"Aldatu izena"</string>
     <string name="storage_menu_mount" msgid="6395893560780365473">"Muntatu"</string>
     <string name="storage_menu_unmount" msgid="5041360076873514189">"Atera"</string>
@@ -2526,7 +2526,7 @@
     <string name="trusted_credentials_summary" msgid="7411781319056251582">"Bistaratu CA fidagarrien ziurtagiriak"</string>
     <string name="user_credentials" msgid="8365731467650306757">"Erabiltzaile-kredentzialak"</string>
     <string name="user_credentials_summary" msgid="7350223899317423252">"Ikusi eta aldatu gordetako kredentzialak"</string>
-    <string name="advanced_security_title" msgid="286883005673855845">"Ezarpen aurreratuak"</string>
+    <string name="advanced_security_title" msgid="286883005673855845">"Aurreratuak"</string>
     <string name="credential_storage_type" msgid="2585337320206095255">"Biltegiratze mota"</string>
     <string name="credential_storage_type_hardware" msgid="5054143224259023600">"Hardwarean gordetakoa"</string>
     <string name="credential_storage_type_software" msgid="1335905150062717150">"Softwarean soilik"</string>
@@ -2546,7 +2546,7 @@
     <string name="personal_data_section_title" msgid="9161854418510071558">"Datu pertsonalak"</string>
     <string name="backup_data_title" msgid="4461508563849583624">"Egin nire datuen babeskopia"</string>
     <string name="backup_data_summary" msgid="555459891017933746">"Egin datuen, Wi-Fi pasahitzen eta beste ezarpenen babeskopia Google zerbitzarietan."</string>
-    <string name="backup_configure_account_title" msgid="1534734650559070294">"Babeskopien kontua"</string>
+    <string name="backup_configure_account_title" msgid="1534734650559070294">"Babesk. gordetzeko kontua"</string>
     <string name="backup_data_management_title" msgid="6299288795610243508">"Kudeatu babeskopiak gordetzeko kontua"</string>
     <string name="include_app_data_title" msgid="6117211611131913293">"Sartu aplikazioetako datuak"</string>
     <string name="auto_restore_title" msgid="8367486774010915221">"Leheneratze automatikoa"</string>
@@ -2697,8 +2697,8 @@
     <string name="data_usage_app_restrict_dialog" msgid="4022530391896478031">"Eginbide horren eraginez, baliteke atzeko planoko datuak beharrezko dituzten aplikazioek funtzionatzeari uztea, sare mugikorrak baino ez badaude erabilgarri.\n\n Datuak behar bezala erabiltzeko kontrol gehiago dituzu aplikazioaren barruko ezarpenetan."</string>
     <string name="data_usage_restrict_denied_dialog" msgid="18928292832775805">"Atzeko planoko datuak murrizteko, datu-konexioarekin erabil daitezkeen datuak mugatu behar dituzu."</string>
     <string name="data_usage_auto_sync_on_dialog_title" msgid="2342323408229702005">"Sinkronizazio automatikoa aktibatu?"</string>
-    <string name="data_usage_auto_sync_on_dialog" product="tablet" msgid="4935430284683238901">"Kontuei sarean egiten dizkiezun aldaketa guztiak automatikoki kopiatuko dira tabletan.\n\nHorrez gain, baliteke kontu batzuek tabletan egiten dituzun aldaketak sarean kopiatzea. Google kontuek horrela funtzionatzen dute."</string>
-    <string name="data_usage_auto_sync_on_dialog" product="default" msgid="5004823486046340090">"Kontuei sarean egiten dizkiezun aldaketa guztiak automatikoki kopiatuko dira telefonoan.\n\nHorrez gain, baliteke kontu batzuek telefonoan egiten dituzun aldaketak sarean kopiatzea. Google kontuek horrela funtzionatzen dute."</string>
+    <string name="data_usage_auto_sync_on_dialog" product="tablet" msgid="4935430284683238901">"Kontuei sarean egiten dizkiezun aldaketa guztiak automatikoki kopiatuko dira tabletan.\n\nHorrez gain, baliteke kontu batzuek tabletan egiten dituzun aldaketak sarean kopiatzea. Google-ko kontuek horrela funtzionatzen dute."</string>
+    <string name="data_usage_auto_sync_on_dialog" product="default" msgid="5004823486046340090">"Kontuei sarean egiten dizkiezun aldaketa guztiak automatikoki kopiatuko dira telefonoan.\n\nHorrez gain, baliteke kontu batzuek telefonoan egiten dituzun aldaketak sarean kopiatzea. Google-ko kontuek horrela funtzionatzen dute."</string>
     <string name="data_usage_auto_sync_off_dialog_title" msgid="7105334544291643305">"Sinkronizazio automatikoa desaktibatu?"</string>
     <string name="data_usage_auto_sync_off_dialog" msgid="4057984234450947964">"Datuak eta bateria aurrezten lagunduko dizu, baina kontu bakoitza eskuz sinkronizatu beharko duzu informazio berriena biltzeko. Gainera, ez duzu berritasunen jakinarazpenik jasoko."</string>
     <string name="data_usage_cycle_editor_title" msgid="4967309390043599889">"Erabilera-zikloa berrezartzeko data"</string>
@@ -3290,7 +3290,7 @@
     <string name="configure_notification_settings" msgid="291914315140851270">"Jakinarazpenak"</string>
     <string name="recent_notifications" msgid="8125865995065032049">"Bidalitako azkenak"</string>
     <string name="recent_notifications_see_all_title" msgid="4089007770442871469">"Ikusi azken zazpi egunetako guztia"</string>
-    <string name="advanced_section_header" msgid="984680389373090015">"Ezarpen aurreratuak"</string>
+    <string name="advanced_section_header" msgid="984680389373090015">"Aurreratuak"</string>
     <string name="profile_section_header" msgid="5471479005472037417">"Laneko jakinarazpenak"</string>
     <string name="asst_capability_prioritizer_title" msgid="3488284760645922160">"Jakinarazpen automatikoen hobespenen ezartzailea"</string>
     <string name="asst_capability_prioritizer_summary" msgid="3525640645743790796">"Isilarazi eta jaitsi mailaz garrantzi gutxiagoko jakinarazpenak"</string>
@@ -3635,7 +3635,7 @@
     <string name="filter_notif_low_channels" msgid="6859599463135775287">"Kategoriak: garrantzi txikikoak"</string>
     <string name="filter_notif_blocked_channels" msgid="6110799550327612670">"Kategoriak: desaktibatutakoak"</string>
     <string name="filter_notif_dnd_channels" msgid="3251570137256371092">"Kategoriak: \"Ez molestatu\" salbuespenak"</string>
-    <string name="advanced_apps" msgid="6643869089344883537">"Ezarpen aurreratuak"</string>
+    <string name="advanced_apps" msgid="6643869089344883537">"Aurreratuak"</string>
     <string name="configure_apps" msgid="4066683118857400943">"Konfiguratu aplikazioak"</string>
     <string name="unknown_app" msgid="2312052973570376877">"Aplikazio ezezaguna"</string>
     <string name="app_permissions" msgid="3215958256821756086">"Baimenen kudeatzailea"</string>
@@ -4113,18 +4113,18 @@
     <string name="swipe_up_to_switch_apps_summary" msgid="4644068184114154787">"Aplikazioa aldatzeko, pasatu hatza gora Hasiera botoian, eta pasa ezazu berriro aplikazio guztiak ikusteko. Edozein pantailatan funtzionatzen du. Ikuspegi orokorraren botoia ez da egongo pantailaren behealdean eskuinetara."</string>
     <string name="swipe_up_to_switch_apps_suggestion_title" msgid="7641846365137536128">"Probatu Hasiera botoi berria"</string>
     <string name="swipe_up_to_switch_apps_suggestion_summary" msgid="7338653224520387852">"Aktibatu aplikazioa aldatzeko keinu berria"</string>
-    <string name="ambient_display_title" product="default" msgid="6785677099744344088">"Sakatu birritan telefonoa bertan dagoena ikusteko"</string>
+    <string name="ambient_display_title" product="default" msgid="6785677099744344088">"Sakatu birritan telefonoa pantailako informazioa ikusteko"</string>
     <string name="ambient_display_title" product="tablet" msgid="1106285490888683613">"Sakatu birritan tableta bertan dagoela ikusteko"</string>
     <string name="ambient_display_title" product="device" msgid="5064644474876041478">"Sakatu birritan gailua bertan dagoela ikusteko"</string>
     <string name="ambient_display_summary" msgid="4882910328216411109">"Ordua, jakinarazpenak eta bestelako informazioa ikusteko, sakatu pantaila birritan."</string>
-    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Jaso telefonoa bertan dagoena ikusteko"</string>
+    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Jaso telefonoa pantailako informazioa ikusteko"</string>
     <string name="ambient_display_pickup_title" product="tablet" msgid="1555456400210301959">"Jaso tableta bertan dagoela ikusteko"</string>
     <string name="ambient_display_pickup_title" product="device" msgid="2480126522988135037">"Jaso gailua bertan dagoela ikusteko"</string>
     <string name="ambient_display_wake_screen_title" msgid="3376988352851077102">"Esnarazi pantaila"</string>
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Ordua, jakinarazpenak eta bestelako informazioa ikusteko, hartu telefonoa."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Ordua, jakinarazpenak eta bestelako informazioa ikusteko, hartu tableta."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Ordua, jakinarazpenak eta bestelako informazioa ikusteko, hartu gailua."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Sakatu telefonoa egiaztatzeko"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Sakatu telefonoa pantailako informazioa ikusteko"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Sakatu tableta egiaztatzeko"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Sakatu gailua egiaztatzeko"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Ordua, jakinarazpenak eta bestelako informazioa ikusteko, sakatu pantaila."</string>
diff --git a/tests/CarDeveloperOptions/res/values-fa-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-fa-nokeys/strings.xml
new file mode 100644
index 0000000..83c5bb9
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fa-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"مدیریت برنامه‌های کاربردی"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fa/arrays.xml b/tests/CarDeveloperOptions/res/values-fa/arrays.xml
new file mode 100644
index 0000000..0ed3b99
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fa/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"امریکا"</item>
+    <item msgid="4791956477275129121">"اروپا"</item>
+    <item msgid="3812126832016254559">"آفریقا"</item>
+    <item msgid="2765816300353408280">"آسیا"</item>
+    <item msgid="6683489385344409742">"استرالیا"</item>
+    <item msgid="5194868215515664953">"اقیانوسیه"</item>
+    <item msgid="7044520255415007865">"همه"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"۱۵ ثانیه"</item>
+    <item msgid="772029947136115322">"۳۰ ثانیه"</item>
+    <item msgid="8743663928349474087">"۱ دقیقه"</item>
+    <item msgid="1506508631223164814">"۲ دقیقه"</item>
+    <item msgid="8664703938127907662">"۵ دقیقه"</item>
+    <item msgid="5827960506924849753">"۱۰ دقیقه"</item>
+    <item msgid="6677424950124253938">"۳۰ دقیقه"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"کوچک"</item>
+    <item msgid="591935967183159581">"پیش‌فرض"</item>
+    <item msgid="1714184661981538355">"بزرگ"</item>
+    <item msgid="6195563047686707484">"بزرگ‌ترین"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"در حال اسکن..."</item>
+    <item msgid="8058143476674427024">"در حال اتصال به <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"در حال راستی‌آزمایی با <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"در حال دریافت نشانی IP از <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"متصل شد به <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"معلق"</item>
+    <item msgid="4133290864821295785">"اتصال قطع شد از <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"اتصال قطع شد"</item>
+    <item msgid="2847316776634969068">"ناموفق"</item>
+    <item msgid="4390990424746035383">"مسدود شده"</item>
+    <item msgid="3618248791367063949">"جلوگیری موقت از اتصال ضعیف"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"دکمه Push"</item>
+    <item msgid="7401896200768713930">"پین از دستگاه مرتبط شده"</item>
+    <item msgid="4526848028011846710">"پین از این دستگاه"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"متصل"</item>
+    <item msgid="983792611851499732">"دعوت شده"</item>
+    <item msgid="5438273405428201793">"ناموفق"</item>
+    <item msgid="4646663015449312554">"دردسترس"</item>
+    <item msgid="3230556734162006146">"خارج از محدوده"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"۲ دقیقه"</item>
+    <item msgid="2759776603549270587">"۵ دقیقه"</item>
+    <item msgid="167772676068860015">"۱ ساعت"</item>
+    <item msgid="5985477119043628504">"بدون مهلت زمانی"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"۳۰ روز گذشته"</item>
+    <item msgid="3211287705232736964">"تنظیم چرخه مصرف..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"زمان استفاده"</item>
+    <item msgid="2784401352592276015">"آخرین زمان استفاده"</item>
+    <item msgid="249854287216326349">"نام برنامه"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"هیچ‌کدام"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"هیچ‌کدام"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"ثابت"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"هیچ‌کدام"</item>
+    <item msgid="1464741437353223198">"دفترچه راهنما"</item>
+    <item msgid="5793600062487886090">"پیکربندی خودکار پروکسی"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"هیچ‌کدام"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP یا CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"دستگاه ذخیره‌سازی داخلی"</item>
+    <item msgid="3186681694079967527">"کارت SD جدا شدنی"</item>
+    <item msgid="6902033473986647035">"سیستم تصمیم بگیرد"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"مکان"</item>
+    <item msgid="6842381562497597649">"شخصی"</item>
+    <item msgid="3966700236695683444">"پیام‌رسانی"</item>
+    <item msgid="8563996233342430477">"رسانه"</item>
+    <item msgid="5323851085993963783">"دستگاه"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"موقعیت مکانی غیردقیق"</item>
+    <item msgid="1830619568689922920">"موقعیت مکانی دقیق"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"لرزش"</item>
+    <item msgid="8632513128515114092">"خواندن مخاطبین"</item>
+    <item msgid="3741042113569620272">"تغییر مخاطبین"</item>
+    <item msgid="4204420969709009931">"خواندن گزارش تماس"</item>
+    <item msgid="2260380357119423209">"تغییر گزارش تماس"</item>
+    <item msgid="6550710385014530934">"خواندن تقویم"</item>
+    <item msgid="3575906174264853951">"تغییر تقویم"</item>
+    <item msgid="4319843242568057174">"جستجوی شبکه Wi‑Fi"</item>
+    <item msgid="2981791890467303819">"اعلان"</item>
+    <item msgid="6617825156152476692">"جستجوی شبکه سلولی"</item>
+    <item msgid="8865260890611559753">"تماس تلفنی"</item>
+    <item msgid="3254999273961542982">"خواندن پیامک"</item>
+    <item msgid="7711446453028825171">"نوشتن پیامک"</item>
+    <item msgid="6123238544099198034">"دریافت پیامک"</item>
+    <item msgid="838342167431596036">"دریافت پیامک‌های اضطراری"</item>
+    <item msgid="8554432731560956686">"دریافت فراپیام"</item>
+    <item msgid="7464863464299515059">"دریافت پیام ارسال داده WAP"</item>
+    <item msgid="310463075729606765">"ارسال پیامک"</item>
+    <item msgid="7338021933527689514">"خواندن پیامک ICC"</item>
+    <item msgid="6130369335466613036">"نوشتن پیامک ICC"</item>
+    <item msgid="6536865581421670942">"تغییر تنظیمات"</item>
+    <item msgid="4547203129183558973">"در بالا طراحی کنید"</item>
+    <item msgid="9080347512916542840">"اعلان‌های دسترسی"</item>
+    <item msgid="5332718516635907742">"دوربین"</item>
+    <item msgid="6098422447246167852">"ضبط صدا"</item>
+    <item msgid="9182794235292595296">"پخش صدا"</item>
+    <item msgid="8760743229597702019">"خواندن بریده‌دان"</item>
+    <item msgid="2266923698240538544">"تغییر بریده‌دان"</item>
+    <item msgid="1801619438618539275">"دکمه‌های رسانه‌ای"</item>
+    <item msgid="31588119965784465">"فوکوس صدا"</item>
+    <item msgid="7565226799008076833">"میزان کنترل"</item>
+    <item msgid="5420704980305018295">"میزان صدا"</item>
+    <item msgid="5797363115508970204">"حجم حلقه"</item>
+    <item msgid="8233154098550715999">"میزان صدای رسانه"</item>
+    <item msgid="5196715605078153950">"میزان صدای زنگ"</item>
+    <item msgid="394030698764284577">"میزان صدای اعلان"</item>
+    <item msgid="8952898972491680178">"میزان صدای بلوتوث"</item>
+    <item msgid="8506227454543690851">"بیدار باش"</item>
+    <item msgid="1108160036049727420">"کنترل موقعیت مکانی"</item>
+    <item msgid="1496205959751719491">"کنترل مکان پرقدرت"</item>
+    <item msgid="3776296279910987380">"دریافت آمار استفاده"</item>
+    <item msgid="8827100324471975602">"صدادار/بی‌صدا کردن میکروفن"</item>
+    <item msgid="6880736730520126864">"نمایش تست"</item>
+    <item msgid="4933375960222609935">"فرستادن رسانه"</item>
+    <item msgid="8357907018938895462">"فعال کردن VPN"</item>
+    <item msgid="8143812849911310973">"نوشتن تصویرزمینه"</item>
+    <item msgid="6266277260961066535">"ساختار دستیار"</item>
+    <item msgid="7715498149883482300">"عکس‌ صفحه‌نمایش دستیار"</item>
+    <item msgid="4046679376726313293">"خواندن وضعیت تلفن"</item>
+    <item msgid="6329507266039719587">"افزودن پست صوتی"</item>
+    <item msgid="7692440726415391408">"استفاده از SIP"</item>
+    <item msgid="8572453398128326267">"پردازش تماس خروجی"</item>
+    <item msgid="7775674394089376306">"اثر انگشت"</item>
+    <item msgid="3182815133441738779">"حسگرهای بدن"</item>
+    <item msgid="2793100005496829513">"خواندن پخش‌های سلولی"</item>
+    <item msgid="2633626056029384366">"مکان کاذب"</item>
+    <item msgid="8356842191824684631">"خواندن حافظه"</item>
+    <item msgid="5671906070163291500">"نوشتن در حافظه"</item>
+    <item msgid="2791955098549340418">"روشن کردن صفحه"</item>
+    <item msgid="5599435119609178367">"دریافت حساب‌ها"</item>
+    <item msgid="1165623660533024666">"اجرا در پس‌زمینه"</item>
+    <item msgid="6423861043647911030">"میزان دسترس‌پذیری"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"کوتاه"</item>
+    <item msgid="4816511817309094890">"متوسط"</item>
+    <item msgid="8305084671259331134">"طولانی"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"پیش‌فرض"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif فشرده"</item>
+    <item msgid="6529379119163117545">"Sans-serif با عرض ثابت"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif با عرض ثابت"</item>
+    <item msgid="4448481989108928248">"غیررسمی"</item>
+    <item msgid="4627069151979553527">"شکسته"</item>
+    <item msgid="6896773537705206194">"حروف بزرگ با اندازه کوچک"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"پیش‌فرض"</item>
+    <item msgid="6488643537808152001">"هیچ‌کدام"</item>
+    <item msgid="552332815156010137">"نمای کلی"</item>
+    <item msgid="7187891159463789272">"سایه‌دار"</item>
+    <item msgid="8019330250538856521">"برجسته"</item>
+    <item msgid="8987385315647049787">"فرورفته"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"٪۲۵"</item>
+    <item msgid="4665048002584838262">"۵۰٪"</item>
+    <item msgid="1874668269931014581">"٪۷۵"</item>
+    <item msgid="6462911487571123954">"۱۰۰٪"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"استفاده از پیش‌فرض‌های برنامه"</item>
+    <item msgid="8611890312638868524">"سفید در سیاه"</item>
+    <item msgid="5891360837786277638">"سیاه در سفید"</item>
+    <item msgid="2798457065945456853">"زرد در سیاه"</item>
+    <item msgid="5799049811524553967">"زرد در آبی"</item>
+    <item msgid="3673930830658169860">"سفارشی"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN با کلیدهای از قبل به اشتراک گذاشته شده"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN با گواهی"</item>
+    <item msgid="312397853907741968">"IPSec VPN با کلیدهای از قبل به اشتراک گذاشته شده و احراز هویت Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN با گواهی و احراز هویت Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN دارای گواهی و احراز هویت دوگانه"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"هیچ‌کدام"</item>
+    <item msgid="1157046369795346308">"دفترچه راهنما"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"اتصال قطع شد"</item>
+    <item msgid="8754480102834556765">"آماده سازی..."</item>
+    <item msgid="3351334355574270250">"در حال اتصال..."</item>
+    <item msgid="8303882153995748352">"متصل"</item>
+    <item msgid="9135049670787351881">"وقفه زمانی"</item>
+    <item msgid="2124868417182583926">"ناموفق"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"سؤال شود"</item>
+    <item msgid="7718817231348607934">"همیشه غیرمجاز"</item>
+    <item msgid="8184570120217958741">"همیشه مجاز است"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"دائمی"</item>
+    <item msgid="167418068739176448">"فعالیت برتر"</item>
+    <item msgid="4760813290195199773">"مهم (پیش‌زمینه)"</item>
+    <item msgid="2328684826817647595">"مهم (پس‌زمینه)"</item>
+    <item msgid="7746406490652867365">"پشتیبان‌گیری"</item>
+    <item msgid="5597404364389196754">"سنگین وزن"</item>
+    <item msgid="1290888779300174556">"سرویس (در حال اجرا)"</item>
+    <item msgid="7241098542073939046">"سرویس (در حال شروع مجدد)"</item>
+    <item msgid="6610439017684111046">"دریافت‌کننده"</item>
+    <item msgid="7367606086319921117">"صفحه اصلی"</item>
+    <item msgid="3344660712396741826">"آخرین فعالیت"</item>
+    <item msgid="5006559348883303865">"قرار داده شده در حافظه پنهان (فعالیت)"</item>
+    <item msgid="8633480732468137525">"قرار داده شده در حافظه پنهان (کلاینت فعالیت)"</item>
+    <item msgid="6248998242443333892">"قرار داده شده در حافظه پنهان (خالی)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"فیروزه‌ای"</item>
+    <item msgid="3228505970082457852">"آبی"</item>
+    <item msgid="6590260735734795647">"نیلی"</item>
+    <item msgid="3521763377357218577">"بنفش"</item>
+    <item msgid="5932337981182999919">"صورتی"</item>
+    <item msgid="5642914536624000094">"قرمز"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"بیش از ۳۰ روز پیش"</item>
+    <item msgid="8699273238891265610">"بیش از ۶۰ روز پیش"</item>
+    <item msgid="8346279419423837266">"بیش از ۹۰ روز پیش"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"۱"</item>
+    <item msgid="3118234477029486741">"۰"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"تشخیص خودکار"</item>
+    <item msgid="773943026484148895">"محدودشده حساب شود"</item>
+    <item msgid="1008268820118852416">"محدودنشده حساب شود"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"استفاده از MAC تصادفی (پیش‌فرض)"</item>
+    <item msgid="214234417308375326">"استفاده از MAC دستگاه"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"نه"</item>
+    <item msgid="1930581185557754880">"بله"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"تیره"</item>
+    <item msgid="5079453644557603349">"روشن"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"خاموش"</item>
+    <item msgid="4072198137051566919">"اشکال‌زدایی"</item>
+    <item msgid="2473005316958868509">"درازنویسی"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"فقط خانه"</item>
+    <item msgid="1161026694891024702">"خودکار"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA برگزیده"</item>
+    <item msgid="7581481130337402578">"فقط GSM"</item>
+    <item msgid="8579197487913425819">"فقط WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA خودکار"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo خودکار"</item>
+    <item msgid="4219607161971472471">"CDMA بدون EvDo"</item>
+    <item msgid="7278975240951052041">"فقط EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"جهانی"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"فقط TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"جهانی"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fa/strings.xml b/tests/CarDeveloperOptions/res/values-fa/strings.xml
index 44c80f4..8cf685d 100644
--- a/tests/CarDeveloperOptions/res/values-fa/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-fa/strings.xml
@@ -2270,9 +2270,9 @@
     <string name="battery_tip_smart_battery_title" product="tablet" msgid="203494973250969040">"عمر باتری رایانه لوحی‌تان را بهبود ببخشید"</string>
     <string name="battery_tip_smart_battery_title" product="device" msgid="7419448992583346364">"عمر باتری دستگاهتان را بهبود ببخشید"</string>
     <string name="battery_tip_smart_battery_summary" msgid="5344821856478265778">"مدیر باتری را روشن کنید"</string>
-    <string name="battery_tip_early_heads_up_title" msgid="707163785378746813">"بهینه‌سازی باتری را روشن کنید"</string>
+    <string name="battery_tip_early_heads_up_title" msgid="707163785378746813">"«بهینه‌سازی باتری» را روشن کنید"</string>
     <string name="battery_tip_early_heads_up_summary" msgid="4231489566422395156">"ممکن است شارژ باتری زودتر از معمول تمام شود"</string>
-    <string name="battery_tip_early_heads_up_done_title" msgid="112550885882648429">"بهینه‌سازی باتری روشن است"</string>
+    <string name="battery_tip_early_heads_up_done_title" msgid="112550885882648429">"«بهینه‌سازی باتری» روشن است"</string>
     <string name="battery_tip_early_heads_up_done_summary" msgid="8692257022962771181">"ممکن است بعضی از ویژگی‌ها محدود شود"</string>
     <string name="battery_tip_high_usage_title" product="default" msgid="4103005178310487352">"تلفن بیشتر از حد معمول استفاده شده است"</string>
     <string name="battery_tip_high_usage_title" product="tablet" msgid="1019583260005768965">"رایانه لوحی بیشتر از حد معمول استفاده شده است"</string>
@@ -2310,9 +2310,9 @@
     <string name="battery_tip_unrestrict_app_dialog_message" msgid="8120081438825031335">"این برنامه می‌تواند در پس‌زمینه از باتری استفاده کند. ممکن است شارژ باتری زودتر از حد انتظار تمام شود."</string>
     <string name="battery_tip_unrestrict_app_dialog_ok" msgid="9154938931448151479">"برداشتن"</string>
     <string name="battery_tip_unrestrict_app_dialog_cancel" msgid="7331148618292397166">"لغو"</string>
-    <string name="battery_tip_dialog_summary_message" product="default" msgid="7244950433272770280">"میزان باتری مصرفی توسط برنامه‌هایتان معمولی است. اگر برنامه‌ها بیش‌ازحد باتری مصرف کنند، تلفنتان کنش‌هایی پیشنهاد می‌کند که می‌توانید انجام دهید.\n\nاگر باتری رو به اتمام باشد، همیشه می‌توانید بهینه‌سازی باتری را روشن کنید."</string>
-    <string name="battery_tip_dialog_summary_message" product="tablet" msgid="1721081030632329647">"میزان باتری مصرفی توسط برنامه‌هایتان معمولی است. اگر برنامه‌ها بیش‌ازحد باتری مصرف کنند، رایانه لوحی‌تان کنش‌هایی پیشنهاد می‌کند که می‌توانید انجام دهید.\n\nاگر باتری رو به اتمام باشد، همیشه می‌توانید بهینه‌سازی باتری را روشن کنید."</string>
-    <string name="battery_tip_dialog_summary_message" product="device" msgid="146872407040848465">"میزان باتری مصرفی برنامه‌هایتان معمولی است. اگر برنامه‌ها بیش‌ازحد باتری مصرف کنند، دستگاهتان کنش‌هایی پیشنهاد می‌کند که می‌توانید انجام دهید.\n\nاگر باتری رو به اتمام باشد، همیشه می‌توانید بهینه‌سازی باتری را روشن کنید."</string>
+    <string name="battery_tip_dialog_summary_message" product="default" msgid="7244950433272770280">"میزان باتری مصرفی توسط برنامه‌هایتان معمولی است. اگر برنامه‌ها بیش‌ازحد باتری مصرف کنند، تلفنتان کنش‌هایی پیشنهاد می‌کند که می‌توانید انجام دهید.\n\nاگر باتری رو به اتمام باشد، همیشه می‌توانید «بهینه‌سازی باتری» را روشن کنید."</string>
+    <string name="battery_tip_dialog_summary_message" product="tablet" msgid="1721081030632329647">"میزان باتری مصرفی توسط برنامه‌هایتان معمولی است. اگر برنامه‌ها بیش‌ازحد باتری مصرف کنند، رایانه لوحی‌تان کنش‌هایی پیشنهاد می‌کند که می‌توانید انجام دهید.\n\nاگر باتری رو به اتمام باشد، همیشه می‌توانید «بهینه‌سازی باتری» را روشن کنید."</string>
+    <string name="battery_tip_dialog_summary_message" product="device" msgid="146872407040848465">"میزان باتری مصرفی برنامه‌هایتان معمولی است. اگر برنامه‌ها بیش‌ازحد باتری مصرف کنند، دستگاهتان کنش‌هایی پیشنهاد می‌کند که می‌توانید انجام دهید.\n\nاگر باتری رو به اتمام باشد، همیشه می‌توانید «بهینه‌سازی باتری» را روشن کنید."</string>
     <string name="smart_battery_manager_title" msgid="5744035036663849515">"مدیر باتری"</string>
     <string name="smart_battery_title" msgid="4919670408532804351">"مدیریت خودکار برنامه‌ها"</string>
     <string name="smart_battery_summary" msgid="640027046471198174">"محدود کردن باتری برای برنامه‌هایی که زیاد استفاده نمی‌کنید"</string>
@@ -2448,13 +2448,13 @@
     <string name="battery_saver_auto_percentage_summary" msgid="2036128588460338677">"در <xliff:g id="PERCENT">%1$s</xliff:g> روشن خواهد شد"</string>
     <string name="battery_saver_schedule_settings_title" msgid="574233428557678128">"تنظیم زمان‌بندی"</string>
     <string name="battery_saver_sticky_title_new" msgid="5328707297110866082">"وقتی شارژ کامل شد، خاموش شود"</string>
-    <string name="battery_saver_sticky_description_new" product="default" msgid="3406582427270935879">"وقتی شارژ تلفن <xliff:g id="PERCENT">%1$s</xliff:g> باشد، بهینه‌سازی باتری خاموش می‌شود"</string>
-    <string name="battery_saver_sticky_description_new" product="tablet" msgid="3284967694001857194">"وقتی شارژ رایانه لوحی <xliff:g id="PERCENT">%1$s</xliff:g> باشد، بهینه‌سازی باتری خاموش می‌شود"</string>
-    <string name="battery_saver_sticky_description_new" product="device" msgid="5056520668081504111">"وقتی شارژ دستگاه <xliff:g id="PERCENT">%1$s</xliff:g> باشد، بهینه‌سازی باتری خاموش می‌شود"</string>
+    <string name="battery_saver_sticky_description_new" product="default" msgid="3406582427270935879">"وقتی شارژ تلفن <xliff:g id="PERCENT">%1$s</xliff:g> باشد، «بهینه‌سازی باتری» خاموش می‌شود"</string>
+    <string name="battery_saver_sticky_description_new" product="tablet" msgid="3284967694001857194">"وقتی شارژ رایانه لوحی <xliff:g id="PERCENT">%1$s</xliff:g> باشد، «بهینه‌سازی باتری» خاموش می‌شود"</string>
+    <string name="battery_saver_sticky_description_new" product="device" msgid="5056520668081504111">"وقتی شارژ دستگاه <xliff:g id="PERCENT">%1$s</xliff:g> باشد، «بهینه‌سازی باتری» خاموش می‌شود"</string>
     <!-- no translation found for battery_saver_seekbar_title (7607123201469333645) -->
     <skip />
     <string name="battery_saver_seekbar_title_placeholder" msgid="2321082163892561703">"روشن کردن"</string>
-    <string name="battery_saver_master_switch_title" msgid="8241862826825517212">"استفاده از بهینه‌سازی باتری"</string>
+    <string name="battery_saver_master_switch_title" msgid="8241862826825517212">"استفاده از «بهینه‌سازی باتری»"</string>
     <string name="battery_saver_turn_on_automatically_title" msgid="7316920304024245838">"روشن شدن خودکار"</string>
     <string name="battery_saver_turn_on_automatically_never" msgid="2623381258359775227">"هیچ‌وقت"</string>
     <string name="battery_saver_turn_on_automatically_pct" msgid="434270432432390307">"در <xliff:g id="PERCENT">%1$s</xliff:g> باتری"</string>
@@ -3886,7 +3886,7 @@
     <string name="condition_zen_title" msgid="2128184708916052585">"«مزاحم نشوید» روشن است"</string>
     <string name="condition_zen_summary_phone_muted" msgid="4396050395522974654">"تلفن بی‌صدا است"</string>
     <string name="condition_zen_summary_with_exceptions" msgid="3435216391993785818">"بدون استثنا"</string>
-    <string name="condition_battery_title" msgid="6704870010912986274">"بهینه‌سازی باتری روشن است"</string>
+    <string name="condition_battery_title" msgid="6704870010912986274">"«بهینه‌سازی باتری» روشن است"</string>
     <string name="condition_battery_summary" msgid="1236078243905690620">"ویژگی‌ها محدود شده‌اند"</string>
     <string name="condition_cellular_title" msgid="6605277435894307935">"داده شبکه تلفن همراه خاموش است"</string>
     <string name="condition_cellular_summary" msgid="3607459310548343777">"اینترنت فقط ازطریق Wi‑Fi دردسترس است"</string>
@@ -4117,7 +4117,7 @@
     <string name="ambient_display_title" product="tablet" msgid="1106285490888683613">"برای بررسی رایانه لوحی، دو ضربه سریع بزنید"</string>
     <string name="ambient_display_title" product="device" msgid="5064644474876041478">"برای بررسی دستگاه، دو ضربه سریع بزنید"</string>
     <string name="ambient_display_summary" msgid="4882910328216411109">"برای بررسی زمان، اعلان‌ها و اطلاعات دیگر، روی صفحه‌نمایش دو ضربه سریع بزنید."</string>
-    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"برای بررسی تلفن، آن را بردارید"</string>
+    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"بررسی تلفن با برداشتن"</string>
     <string name="ambient_display_pickup_title" product="tablet" msgid="1555456400210301959">"برای بررسی رایانه لوحی، آن را بردارید"</string>
     <string name="ambient_display_pickup_title" product="device" msgid="2480126522988135037">"برای بررسی دستگاه، آن را بردارید"</string>
     <string name="ambient_display_wake_screen_title" msgid="3376988352851077102">"روشن کردن نمایشگر"</string>
diff --git a/tests/CarDeveloperOptions/res/values-fi-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-fi-nokeys/strings.xml
new file mode 100644
index 0000000..a391f6e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fi-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Hallinnoi sovelluksia"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fi/arrays.xml b/tests/CarDeveloperOptions/res/values-fi/arrays.xml
new file mode 100644
index 0000000..c458fce
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fi/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerikka"</item>
+    <item msgid="4791956477275129121">"Eurooppa"</item>
+    <item msgid="3812126832016254559">"Afrikka"</item>
+    <item msgid="2765816300353408280">"Aasia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Tyynimeri"</item>
+    <item msgid="7044520255415007865">"Kaikki"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekuntia"</item>
+    <item msgid="772029947136115322">"30 sekuntia"</item>
+    <item msgid="8743663928349474087">"1 minuutti"</item>
+    <item msgid="1506508631223164814">"2 minuuttia"</item>
+    <item msgid="8664703938127907662">"5 minuuttia"</item>
+    <item msgid="5827960506924849753">"10 minuuttia"</item>
+    <item msgid="6677424950124253938">"30 minuuttia"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Pieni"</item>
+    <item msgid="591935967183159581">"Oletus"</item>
+    <item msgid="1714184661981538355">"Suuri"</item>
+    <item msgid="6195563047686707484">"Suurin"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Etsitään..."</item>
+    <item msgid="8058143476674427024">"Yhdistetään verkkoon <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Varmennetaan verkkoon <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Haetaan IP-osoitetta verkosta <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="3283243151651124831">"Yhdistetty verkkoon <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Pidätetty"</item>
+    <item msgid="4133290864821295785">"Katkaistaan yhteys verkosta <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Yhteys katkaistu"</item>
+    <item msgid="2847316776634969068">"Epäonnistui"</item>
+    <item msgid="4390990424746035383">"Estetty"</item>
+    <item msgid="3618248791367063949">"Vältetään huonoa yhteyttä tilapäisesti"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Paina painiketta"</item>
+    <item msgid="7401896200768713930">"Vertaislaitteen PIN-koodi"</item>
+    <item msgid="4526848028011846710">"PIN-koodi laitteelta"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Yhdistetty"</item>
+    <item msgid="983792611851499732">"Kutsuttu"</item>
+    <item msgid="5438273405428201793">"Epäonnistui"</item>
+    <item msgid="4646663015449312554">"Saatavilla"</item>
+    <item msgid="3230556734162006146">"Katvealueella"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuuttia"</item>
+    <item msgid="2759776603549270587">"5 minuuttia"</item>
+    <item msgid="167772676068860015">"1 tunti"</item>
+    <item msgid="5985477119043628504">"Ei aikakatkaisua"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 viime päivää"</item>
+    <item msgid="3211287705232736964">"Aseta käyttöjakso…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Käyttöaika"</item>
+    <item msgid="2784401352592276015">"Viimeinen käyttöaika"</item>
+    <item msgid="249854287216326349">"Sovelluksen nimi"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ei yhtään"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ei yhtään"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Staattinen"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ei yhtään"</item>
+    <item msgid="1464741437353223198">"Käyttöopas"</item>
+    <item msgid="5793600062487886090">"Välitysp. autom. määritys"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ei yhtään"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP tai CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Laitteen sisäinen tallennustila"</item>
+    <item msgid="3186681694079967527">"Poistettava SD-kortti"</item>
+    <item msgid="6902033473986647035">"Anna järjestelmän päättää"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Sijainti"</item>
+    <item msgid="6842381562497597649">"Henkilökohtainen"</item>
+    <item msgid="3966700236695683444">"Viestit"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Laite"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"karkea sijainti"</item>
+    <item msgid="1830619568689922920">"tarkka sijainti"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"värinä"</item>
+    <item msgid="8632513128515114092">"lue yhteystietoja"</item>
+    <item msgid="3741042113569620272">"muokkaa yhteystietoja"</item>
+    <item msgid="4204420969709009931">"lue puhelulokia"</item>
+    <item msgid="2260380357119423209">"muokkaa puhelulokia"</item>
+    <item msgid="6550710385014530934">"lue kalenteria"</item>
+    <item msgid="3575906174264853951">"muokkaa kalenteria"</item>
+    <item msgid="4319843242568057174">"Wi-Fi-haku"</item>
+    <item msgid="2981791890467303819">"ilmoitus"</item>
+    <item msgid="6617825156152476692">"soluhaku"</item>
+    <item msgid="8865260890611559753">"soita numeroon"</item>
+    <item msgid="3254999273961542982">"lue tekstiviestejä"</item>
+    <item msgid="7711446453028825171">"kirjoita tekstiviestejä"</item>
+    <item msgid="6123238544099198034">"vastaanota tekstiviestejä"</item>
+    <item msgid="838342167431596036">"vastaanota hätätekstiviestejä"</item>
+    <item msgid="8554432731560956686">"vastaanota multimediaviestejä"</item>
+    <item msgid="7464863464299515059">"vastaanota WAP push -viestejä"</item>
+    <item msgid="310463075729606765">"lähetä tekstiviestejä"</item>
+    <item msgid="7338021933527689514">"lue ICC-tekstiviestejä"</item>
+    <item msgid="6130369335466613036">"kirjoita ICC-tekstiviestejä"</item>
+    <item msgid="6536865581421670942">"muokkaa asetuksia"</item>
+    <item msgid="4547203129183558973">"piirrä päälle"</item>
+    <item msgid="9080347512916542840">"käytä ilmoituksia"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"tallenna ääntä"</item>
+    <item msgid="9182794235292595296">"toista ääntä"</item>
+    <item msgid="8760743229597702019">"lue leikepöytä"</item>
+    <item msgid="2266923698240538544">"muokkaa leikepöytää"</item>
+    <item msgid="1801619438618539275">"mediapainikkeet"</item>
+    <item msgid="31588119965784465">"äänen painopiste"</item>
+    <item msgid="7565226799008076833">"pää-äänenvoimakkuus"</item>
+    <item msgid="5420704980305018295">"puheäänen voimakkuus"</item>
+    <item msgid="5797363115508970204">"soittoäänen voimakkuus"</item>
+    <item msgid="8233154098550715999">"median äänenvoimakkuus"</item>
+    <item msgid="5196715605078153950">"hälytyksen äänenvoimakkuus"</item>
+    <item msgid="394030698764284577">"ilmoituksen äänenvoimakkuus"</item>
+    <item msgid="8952898972491680178">"bluetooth-äänenvoimakkuus"</item>
+    <item msgid="8506227454543690851">"ei virransäästötilaa"</item>
+    <item msgid="1108160036049727420">"sijainnin seuranta"</item>
+    <item msgid="1496205959751719491">"seuraa suuritehoista sijaintia"</item>
+    <item msgid="3776296279910987380">"hae käyttötilastot"</item>
+    <item msgid="8827100324471975602">"mykistä mikrofoni / poista mykistys"</item>
+    <item msgid="6880736730520126864">"näytä ilmoitus"</item>
+    <item msgid="4933375960222609935">"lähetä media"</item>
+    <item msgid="8357907018938895462">"aktivoi VPN"</item>
+    <item msgid="8143812849911310973">"kirjoita taustakuva"</item>
+    <item msgid="6266277260961066535">"apurakenne"</item>
+    <item msgid="7715498149883482300">"apukuvakaappaus"</item>
+    <item msgid="4046679376726313293">"tarkastele puhelimen tilaa"</item>
+    <item msgid="6329507266039719587">"lisää vastaajaviesti"</item>
+    <item msgid="7692440726415391408">"käytä SIP:tä"</item>
+    <item msgid="8572453398128326267">"käsittele lähtevä puhelu"</item>
+    <item msgid="7775674394089376306">"sormenjälki"</item>
+    <item msgid="3182815133441738779">"kehon anturit"</item>
+    <item msgid="2793100005496829513">"tarkastele solulähetyksiä"</item>
+    <item msgid="2633626056029384366">"käytä imitoitua sijaintia"</item>
+    <item msgid="8356842191824684631">"tarkastele tallennustilaa"</item>
+    <item msgid="5671906070163291500">"kirjoita tallennustilaan"</item>
+    <item msgid="2791955098549340418">"kytke näyttö päälle"</item>
+    <item msgid="5599435119609178367">"hae tilit"</item>
+    <item msgid="1165623660533024666">"toimi taustalla"</item>
+    <item msgid="6423861043647911030">"esteettömyys äänenvoimakkuus"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Lyhyt"</item>
+    <item msgid="4816511817309094890">"Keskitaso"</item>
+    <item msgid="8305084671259331134">"Pitkä"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Oletus"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif, tiivistetty"</item>
+    <item msgid="6529379119163117545">"Sans Serif Monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif Monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Kursiivi"</item>
+    <item msgid="6896773537705206194">"Isot kirjaimet"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Oletus"</item>
+    <item msgid="6488643537808152001">"Ei yhtään"</item>
+    <item msgid="552332815156010137">"Ääriviiva"</item>
+    <item msgid="7187891159463789272">"Varjostus"</item>
+    <item msgid="8019330250538856521">"Korotettu"</item>
+    <item msgid="8987385315647049787">"Laskettu"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Käytä sovelluksen oletusarvoja"</item>
+    <item msgid="8611890312638868524">"Valkoinen mustalla"</item>
+    <item msgid="5891360837786277638">"Musta valkoisella"</item>
+    <item msgid="2798457065945456853">"Keltainen mustalla"</item>
+    <item msgid="5799049811524553967">"Keltainen sinisellä"</item>
+    <item msgid="3673930830658169860">"Muokattu"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"Esijaettuun avaimeen perustuva L2TP-/IPSec-VPN-verkko"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec-suojattu VPN-verkko varmenteilla"</item>
+    <item msgid="312397853907741968">"Esijaettuun avaimeen perustuva IPSec-suojattu VPN-verkko Xauth-todennuksella"</item>
+    <item msgid="3319427315593649917">"IPSec-suojattu VPN-verkko varmenteilla ja Xauth-todennuksella"</item>
+    <item msgid="8258927774145391041">"IPSec-suojattu VPN-verkko varmenteilla ja hybriditodennuksella"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ei mitään"</item>
+    <item msgid="1157046369795346308">"Käyttöopas"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Yhteys katkaistu"</item>
+    <item msgid="8754480102834556765">"Alustetaan..."</item>
+    <item msgid="3351334355574270250">"Yhdistetään…"</item>
+    <item msgid="8303882153995748352">"Yhdistetty"</item>
+    <item msgid="9135049670787351881">"Aikaraja"</item>
+    <item msgid="2124868417182583926">"Epäonnistui"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Kysy"</item>
+    <item msgid="7718817231348607934">"Älä salli koskaan"</item>
+    <item msgid="8184570120217958741">"Salli aina"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Pysyvä"</item>
+    <item msgid="167418068739176448">"Tärkein toiminta"</item>
+    <item msgid="4760813290195199773">"Tärkeä (etualalla)"</item>
+    <item msgid="2328684826817647595">"Tärkeä (taustalla)"</item>
+    <item msgid="7746406490652867365">"Varmuuskopiointi"</item>
+    <item msgid="5597404364389196754">"Resursseja kuluttava"</item>
+    <item msgid="1290888779300174556">"Palvelu (käynnissä)"</item>
+    <item msgid="7241098542073939046">"Palvelu (käynnistyy uudelleen)"</item>
+    <item msgid="6610439017684111046">"Vastaanottaja"</item>
+    <item msgid="7367606086319921117">"Aloitusruutu"</item>
+    <item msgid="3344660712396741826">"Viimeinen toiminta"</item>
+    <item msgid="5006559348883303865">"Välimuistissa (toiminta)"</item>
+    <item msgid="8633480732468137525">"Välimuistissa (toiminnan suorittaja)"</item>
+    <item msgid="6248998242443333892">"Välimuistissa (tyhjä)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Turkoosi"</item>
+    <item msgid="3228505970082457852">"Sininen"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Violetti"</item>
+    <item msgid="5932337981182999919">"Vaaleanpunainen"</item>
+    <item msgid="5642914536624000094">"Punainen"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Yli 30 päivää vanhat"</item>
+    <item msgid="8699273238891265610">"Yli 60 päivää vanhat"</item>
+    <item msgid="8346279419423837266">"Yli 90 päivää vanhat"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Tunnista automaattisesti."</item>
+    <item msgid="773943026484148895">"Merkitse maksulliseksi"</item>
+    <item msgid="1008268820118852416">"Merkitse maksuttomaksi"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Käytä satunnaistettua MAC-osoitetta (oletus)."</item>
+    <item msgid="214234417308375326">"Käytä laitteen MAC-osoitetta"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ei"</item>
+    <item msgid="1930581185557754880">"Kyllä"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tumma"</item>
+    <item msgid="5079453644557603349">"Vaalea"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Pois käytöstä"</item>
+    <item msgid="4072198137051566919">"Virheenkorjaus"</item>
+    <item msgid="2473005316958868509">"Monisanainen"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Vain kotipuhelin"</item>
+    <item msgid="1161026694891024702">"Automaattinen"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Ensisijaisesti GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Vain GSM"</item>
+    <item msgid="8579197487913425819">"Vain WCDMA"</item>
+    <item msgid="8465243227505412498">"Automaattinen GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automaattinen CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA ilman EvDoa"</item>
+    <item msgid="7278975240951052041">"Vain EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Maailmanlaajuinen"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Vain TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Maailmanlaajuinen"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fi/strings.xml b/tests/CarDeveloperOptions/res/values-fi/strings.xml
index cb13d36..e7aeac5 100644
--- a/tests/CarDeveloperOptions/res/values-fi/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-fi/strings.xml
@@ -3960,7 +3960,7 @@
       <item quantity="other"><xliff:g id="COUNT">%1$d</xliff:g> sovellusta saa käyttää rajattomasti dataa, kun Data Saver on käytössä.</item>
       <item quantity="one">1 sovellus saa käyttää rajattomasti dataa, kun Data Saver on käytössä.</item>
     </plurals>
-    <string name="data_usage_title" msgid="7874606430902201083">"Ensisijainen Data"</string>
+    <string name="data_usage_title" msgid="7874606430902201083">"Ensisijainen data"</string>
     <string name="data_usage_wifi_title" msgid="7161828479387766556">"Wi‑Fi-data"</string>
     <string name="data_used" msgid="1063553292806661784">"<xliff:g id="ID_1">^1</xliff:g> käytetty"</string>
     <string name="data_used_formatted" msgid="9150356955895106822">"<xliff:g id="ID_1">^1</xliff:g> <xliff:g id="ID_2">^2</xliff:g> käytetty"</string>
@@ -4442,7 +4442,7 @@
     <string name="network_connection_request_dialog_title" msgid="3150489262902506588">"Käytettävä laite: <xliff:g id="APPNAME">%1$s</xliff:g>"</string>
     <string name="network_connection_timeout_dialog_message" msgid="7036704569274087733">"Laitteita ei löytynyt. Varmista, että laitteet ovat päällä ja voivat muodostaa yhteyden."</string>
     <string name="network_connection_timeout_dialog_ok" msgid="5156496438627748361">"Yritä uudelleen"</string>
-    <string name="network_connection_errorstate_dialog_message" msgid="1599445930536043943">"Jokin meni vikaan. Sovellus peruutti laitteenvalintapyynnön."</string>
+    <string name="network_connection_errorstate_dialog_message" msgid="1599445930536043943">"Jotain meni pieleen.. Sovellus peruutti laitteenvalintapyynnön."</string>
     <string name="network_connection_connect_successful" msgid="888912275986965748">"Yhteyden muodostus onnistui"</string>
     <string name="network_connection_request_dialog_showall" msgid="396928496030183071">"Näytä kaikki"</string>
     <plurals name="show_bluetooth_devices" formatted="false" msgid="7451733907387872891">
diff --git a/tests/CarDeveloperOptions/res/values-fr-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-fr-nokeys/strings.xml
new file mode 100644
index 0000000..973a29d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fr-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gérer les applications"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fr-rCA-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-fr-rCA-nokeys/strings.xml
new file mode 100644
index 0000000..666523e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fr-rCA-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gérer applications"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fr-rCA/arrays.xml b/tests/CarDeveloperOptions/res/values-fr-rCA/arrays.xml
new file mode 100644
index 0000000..8aca177
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fr-rCA/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amérique"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Afrique"</item>
+    <item msgid="2765816300353408280">"Asie"</item>
+    <item msgid="6683489385344409742">"Australie"</item>
+    <item msgid="5194868215515664953">"Pacifique"</item>
+    <item msgid="7044520255415007865">"Tous"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 secondes"</item>
+    <item msgid="772029947136115322">"30 secondes"</item>
+    <item msgid="8743663928349474087">"1 minute"</item>
+    <item msgid="1506508631223164814">"2 minutes"</item>
+    <item msgid="8664703938127907662">"5 minutes"</item>
+    <item msgid="5827960506924849753">"10 minutes"</item>
+    <item msgid="6677424950124253938">"30 minutes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Petit"</item>
+    <item msgid="591935967183159581">"Par défaut"</item>
+    <item msgid="1714184661981538355">"Grande"</item>
+    <item msgid="6195563047686707484">"La plus grande"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Recherche…"</item>
+    <item msgid="8058143476674427024">"Connexion à <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Authentification avec <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Obtention de l\'adresse IP à partir de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Connecté à <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspendu"</item>
+    <item msgid="4133290864821295785">"Déconnexion de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Déconnecté"</item>
+    <item msgid="2847316776634969068">"Échec"</item>
+    <item msgid="4390990424746035383">"Bloqué"</item>
+    <item msgid="3618248791367063949">"Mauvaise connexion évitée momentanément"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Bouton de commande"</item>
+    <item msgid="7401896200768713930">"NIP de l\'appareil associé"</item>
+    <item msgid="4526848028011846710">"NIP de l\'appareil"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connecté"</item>
+    <item msgid="983792611851499732">"Invité"</item>
+    <item msgid="5438273405428201793">"Échec"</item>
+    <item msgid="4646663015449312554">"Disponible"</item>
+    <item msgid="3230556734162006146">"Hors de portée"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutes"</item>
+    <item msgid="2759776603549270587">"5 minutes"</item>
+    <item msgid="167772676068860015">"1 heure"</item>
+    <item msgid="5985477119043628504">"Aucun délai"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 derniers jours"</item>
+    <item msgid="3211287705232736964">"Défin. du cycle d\'util..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Temps d\'utilisation"</item>
+    <item msgid="2784401352592276015">"Dernière utilisation :"</item>
+    <item msgid="249854287216326349">"Nom de l\'application"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Aucun"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Aucun"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"Protocole DHCP"</item>
+    <item msgid="4377002609760712163">"Statique"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Aucun"</item>
+    <item msgid="1464741437353223198">"Manuel"</item>
+    <item msgid="5793600062487886090">"Config. auto du mandataire"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Aucun"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ou CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Mémoire interne du mobile"</item>
+    <item msgid="3186681694079967527">"Carte SD amovible"</item>
+    <item msgid="6902033473986647035">"Laisser le système décider"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Position"</item>
+    <item msgid="6842381562497597649">"Personnel"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Médias"</item>
+    <item msgid="5323851085993963783">"Appareil"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"position approximative"</item>
+    <item msgid="1830619568689922920">"position précise"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibration"</item>
+    <item msgid="8632513128515114092">"accéder aux contacts"</item>
+    <item msgid="3741042113569620272">"modifier les contacts"</item>
+    <item msgid="4204420969709009931">"lire le journal d\'appels"</item>
+    <item msgid="2260380357119423209">"modifier le journal d\'appels"</item>
+    <item msgid="6550710385014530934">"accéder à l\'agenda"</item>
+    <item msgid="3575906174264853951">"modifier l\'agenda"</item>
+    <item msgid="4319843242568057174">"détection du Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"détection du réseau mobile"</item>
+    <item msgid="8865260890611559753">"appeler"</item>
+    <item msgid="3254999273961542982">"lire les SMS"</item>
+    <item msgid="7711446453028825171">"écrire des SMS"</item>
+    <item msgid="6123238544099198034">"recevoir des SMS"</item>
+    <item msgid="838342167431596036">"recevoir des SMS d\'urgence"</item>
+    <item msgid="8554432731560956686">"recevoir des MMS"</item>
+    <item msgid="7464863464299515059">"recevoir des messages push WAP"</item>
+    <item msgid="310463075729606765">"envoyer des SMS"</item>
+    <item msgid="7338021933527689514">"lire les SMS ICC"</item>
+    <item msgid="6130369335466613036">"écrire des SMS ICC"</item>
+    <item msgid="6536865581421670942">"modifier les paramètres"</item>
+    <item msgid="4547203129183558973">"dessiner par dessus"</item>
+    <item msgid="9080347512916542840">"accéder aux notifications"</item>
+    <item msgid="5332718516635907742">"caméra"</item>
+    <item msgid="6098422447246167852">"enregistrer des fichiers audio"</item>
+    <item msgid="9182794235292595296">"lire le fichier audio"</item>
+    <item msgid="8760743229597702019">"lire le presse-papiers"</item>
+    <item msgid="2266923698240538544">"modifier le presse-papiers"</item>
+    <item msgid="1801619438618539275">"boutons multimédias"</item>
+    <item msgid="31588119965784465">"priorité audio"</item>
+    <item msgid="7565226799008076833">"volume général"</item>
+    <item msgid="5420704980305018295">"volume de la voix"</item>
+    <item msgid="5797363115508970204">"volume des sonneries"</item>
+    <item msgid="8233154098550715999">"volume des contenus multimédias"</item>
+    <item msgid="5196715605078153950">"volume des alarmes"</item>
+    <item msgid="394030698764284577">"volume des notifications"</item>
+    <item msgid="8952898972491680178">"volume Bluetooth"</item>
+    <item msgid="8506227454543690851">"maintenir activé"</item>
+    <item msgid="1108160036049727420">"suivre la position"</item>
+    <item msgid="1496205959751719491">"surveiller les lieux de grande puissance"</item>
+    <item msgid="3776296279910987380">"obtenir les statistiques d\'utilisation"</item>
+    <item msgid="8827100324471975602">"activer/désactiver le micro"</item>
+    <item msgid="6880736730520126864">"afficher le message"</item>
+    <item msgid="4933375960222609935">"projeter des contenus multimédias"</item>
+    <item msgid="8357907018938895462">"activer le RPV"</item>
+    <item msgid="8143812849911310973">"définir le fond d\'écran"</item>
+    <item msgid="6266277260961066535">"structure d\'assistance"</item>
+    <item msgid="7715498149883482300">"saisie d\'écran d\'assistance"</item>
+    <item msgid="4046679376726313293">"lire l\'état du téléphone"</item>
+    <item msgid="6329507266039719587">"ajouter des messages vocaux"</item>
+    <item msgid="7692440726415391408">"utiliser le protocole SIP"</item>
+    <item msgid="8572453398128326267">"traiter l\'appel sortant"</item>
+    <item msgid="7775674394089376306">"empreintes digitales"</item>
+    <item msgid="3182815133441738779">"capteurs corporels"</item>
+    <item msgid="2793100005496829513">"lire les messages de diffusion cellulaire"</item>
+    <item msgid="2633626056029384366">"créer une position fictive"</item>
+    <item msgid="8356842191824684631">"lire les données de l\'espace de stockage"</item>
+    <item msgid="5671906070163291500">"écrire dans les données de l\'espace de stockage"</item>
+    <item msgid="2791955098549340418">"activer l\'écran"</item>
+    <item msgid="5599435119609178367">"obtenir les comptes"</item>
+    <item msgid="1165623660533024666">"fonctionner en arrière-plan"</item>
+    <item msgid="6423861043647911030">"volume d\'accessibilité"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Court"</item>
+    <item msgid="4816511817309094890">"Moyenne"</item>
+    <item msgid="8305084671259331134">"Long"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Par défaut"</item>
+    <item msgid="4147246073737933622">"Sans empattement"</item>
+    <item msgid="3117680749167407907">"Sans empattement condensée"</item>
+    <item msgid="6529379119163117545">"Espace unique, sans empattement"</item>
+    <item msgid="1487203730637617924">"Avec empattement"</item>
+    <item msgid="4937790671987480464">"Espace unique, avec empattement"</item>
+    <item msgid="4448481989108928248">"Scripte"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Petites majuscules"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Par défaut"</item>
+    <item msgid="6488643537808152001">"Aucun"</item>
+    <item msgid="552332815156010137">"Plan"</item>
+    <item msgid="7187891159463789272">"Ombre projetée"</item>
+    <item msgid="8019330250538856521">"Surélevé"</item>
+    <item msgid="8987385315647049787">"Surbaissé"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Paramètres par défaut de l\'appli"</item>
+    <item msgid="8611890312638868524">"Texte blanc sur fond noir"</item>
+    <item msgid="5891360837786277638">"Texte noir sur fond blanc"</item>
+    <item msgid="2798457065945456853">"Texte jaune sur fond noir"</item>
+    <item msgid="5799049811524553967">"Texte jaune sur fond bleu"</item>
+    <item msgid="3673930830658169860">"Personnalisé"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"RPV PPTP"</item>
+    <item msgid="1349760781118368659">"RPV L2TP/IPSec avec clés pré-partagées"</item>
+    <item msgid="6128519070545038358">"RPV L2TP/IPSec avec certificats"</item>
+    <item msgid="312397853907741968">"RPV IPSec avec clés pré-partagées et authentification Xauth"</item>
+    <item msgid="3319427315593649917">"RPV IPSec avec certificats et authentification Xauth"</item>
+    <item msgid="8258927774145391041">"RPV IPSec avec certificats et authentification hybride"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Aucun"</item>
+    <item msgid="1157046369795346308">"Manuel"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Déconnecté"</item>
+    <item msgid="8754480102834556765">"Initialisation en cours..."</item>
+    <item msgid="3351334355574270250">"Connexion en cours…"</item>
+    <item msgid="8303882153995748352">"Connecté"</item>
+    <item msgid="9135049670787351881">"Expiration du délai"</item>
+    <item msgid="2124868417182583926">"Échec"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Demander"</item>
+    <item msgid="7718817231348607934">"Ne jamais autoriser"</item>
+    <item msgid="8184570120217958741">"Toujours autoriser"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Permanent"</item>
+    <item msgid="167418068739176448">"Activité principale"</item>
+    <item msgid="4760813290195199773">"Important (premier plan)"</item>
+    <item msgid="2328684826817647595">"Important (arrière-plan)"</item>
+    <item msgid="7746406490652867365">"Sauvegarde"</item>
+    <item msgid="5597404364389196754">"Poids lourd"</item>
+    <item msgid="1290888779300174556">"Service (en cours)"</item>
+    <item msgid="7241098542073939046">"Service (redémarrage)"</item>
+    <item msgid="6610439017684111046">"Récepteur"</item>
+    <item msgid="7367606086319921117">"Accueil"</item>
+    <item msgid="3344660712396741826">"Dernière activité"</item>
+    <item msgid="5006559348883303865">"Mise en cache (activité)"</item>
+    <item msgid="8633480732468137525">"Mise en cache (client d\'activité)"</item>
+    <item msgid="6248998242443333892">"Mise en cache (vide)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Turquoise"</item>
+    <item msgid="3228505970082457852">"Bleu"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Mauve"</item>
+    <item msgid="5932337981182999919">"Rose"</item>
+    <item msgid="5642914536624000094">"Rouge"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Depuis plus de 30 jours"</item>
+    <item msgid="8699273238891265610">"Depuis plus de 60 jours"</item>
+    <item msgid="8346279419423837266">"Depuis plus de 90 jours"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Détecter automatiquement"</item>
+    <item msgid="773943026484148895">"Considérer comme facturé à l\'usage"</item>
+    <item msgid="1008268820118852416">"Considérer comme non facturé à l\'usage"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Utiliser une adresse MAC aléatoire (par défaut)"</item>
+    <item msgid="214234417308375326">"Utiliser l\'adresse MAC de l\'appareil"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Non"</item>
+    <item msgid="1930581185557754880">"Oui"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Sombre"</item>
+    <item msgid="5079453644557603349">"Clair"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Désactivé"</item>
+    <item msgid="4072198137051566919">"Déboguer"</item>
+    <item msgid="2473005316958868509">"Détaillé"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Réseaux domestiques uniquement"</item>
+    <item msgid="1161026694891024702">"Automatique"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA de préférence"</item>
+    <item msgid="7581481130337402578">"GSM uniquement"</item>
+    <item msgid="8579197487913425819">"WCDMA uniquement"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatique"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatique"</item>
+    <item msgid="4219607161971472471">"CDMA sans EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo seulement"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA uniquement"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fr-rCA/strings.xml b/tests/CarDeveloperOptions/res/values-fr-rCA/strings.xml
index eb6583a..7b99106 100644
--- a/tests/CarDeveloperOptions/res/values-fr-rCA/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-fr-rCA/strings.xml
@@ -427,7 +427,7 @@
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"Suppr. données visage"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"Votre visage peut être utilisé pour déverrouiller votre appareil et accéder aux applications. "<annotation id="url">"En savoir plus"</annotation></string>
     <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"Supprimer les données des visages?"</string>
-    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"Les données enregistrées par Face Unlock seront supprimées de manière permanente et sécuritaire. Après la suppression, vous aurez besoin de notre NIP, de votre schéma ou de votre mot de passe pour déverrouiller votre téléphone, vous connecter à des applications et confirmer les paiements."</string>
+    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"Les données enregistrées par Face Unlock seront supprimées de manière permanente et sécuritaire. Après la suppression, vous aurez besoin de votre NIP, de votre schéma ou de votre mot de passe pour déverrouiller votre téléphone, vous connecter à des applications et confirmer les paiements."</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"Lecteur d\'empreintes digitales"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"Gérer les empreintes digitales"</string>
     <string name="fingerprint_usage_category_title" msgid="7298369141954599706">"Util. empr. dig. pour"</string>
@@ -3656,7 +3656,7 @@
     <string name="app_link_open_never" msgid="5774359835242754350">"Ne pas ouvrir dans cette application"</string>
     <string name="default_apps_title" msgid="3848048391400989931">"Par défaut"</string>
     <string name="default_for_work" msgid="7290411716804495366">"Par déf. pour util. professionn."</string>
-    <string name="assist_and_voice_input_title" msgid="324148194703846130">"Assist. et entrée vocale"</string>
+    <string name="assist_and_voice_input_title" msgid="324148194703846130">"Assist./entrée vocale"</string>
     <string name="default_assist_title" msgid="2060846994203235317">"Application d\'assistance"</string>
     <string name="assistant_security_warning_title" msgid="8014460924169723059">"Définir <xliff:g id="ASSISTANT_APP_NAME">%s</xliff:g> comme assistant?"</string>
     <string name="assistant_security_warning" msgid="1304057692847069938">"L\'assistant pourra accéder aux données des applications en cours d\'utilisation sur votre système, y compris les données visibles à l\'écran ou accessibles au sein des applications."</string>
@@ -4122,8 +4122,8 @@
     <string name="ambient_display_pickup_title" product="device" msgid="2480126522988135037">"Saisissez l\'appareil pour consulter les notifications"</string>
     <string name="ambient_display_wake_screen_title" msgid="3376988352851077102">"Réactiver l\'écran"</string>
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Pour vérifier l\'heure, vos notifications et d\'autres renseignements, saisir votre téléphone."</string>
-    <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Pour vérifier l\'heure, vos notifications et d\'autres renseignements, saisissez votre tablette."</string>
-    <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Pour vérifier l\'heure, vos notifications et d\'autres renseignements, saisissez votre appareil."</string>
+    <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Pour vérifier l\'heure, vos notifications et d\'autres renseignements, saisir votre tablette."</string>
+    <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Pour vérifier l\'heure, vos notifications et d\'autres renseignements, saisir votre appareil."</string>
     <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Toucher pour vérifier le téléphone"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Toucher pour vérifier la tablette"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Toucher pour vérifier l\'appareil"</string>
diff --git a/tests/CarDeveloperOptions/res/values-fr/arrays.xml b/tests/CarDeveloperOptions/res/values-fr/arrays.xml
new file mode 100644
index 0000000..2a61eaf
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-fr/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amérique"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Afrique"</item>
+    <item msgid="2765816300353408280">"Asie"</item>
+    <item msgid="6683489385344409742">"Australie"</item>
+    <item msgid="5194868215515664953">"Pacifique"</item>
+    <item msgid="7044520255415007865">"Tous"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 secondes"</item>
+    <item msgid="772029947136115322">"30 secondes"</item>
+    <item msgid="8743663928349474087">"1 minute"</item>
+    <item msgid="1506508631223164814">"2 minutes"</item>
+    <item msgid="8664703938127907662">"5 minutes"</item>
+    <item msgid="5827960506924849753">"10 minutes"</item>
+    <item msgid="6677424950124253938">"30 minutes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Petite"</item>
+    <item msgid="591935967183159581">"Par défaut"</item>
+    <item msgid="1714184661981538355">"Grande"</item>
+    <item msgid="6195563047686707484">"Très grande"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Recherche…"</item>
+    <item msgid="8058143476674427024">"Connexion à <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Authentification avec <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Récupération de l\'adresse IP à partir de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Connecté à <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Interrompu"</item>
+    <item msgid="4133290864821295785">"Déconnexion de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Déconnecté"</item>
+    <item msgid="2847316776634969068">"Échec"</item>
+    <item msgid="4390990424746035383">"Bloqué"</item>
+    <item msgid="3618248791367063949">"Mauvaise connexion évitée momentanément"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Bouton de commande"</item>
+    <item msgid="7401896200768713930">"Code de l\'appareil associé"</item>
+    <item msgid="4526848028011846710">"Code de l\'appareil"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connecté"</item>
+    <item msgid="983792611851499732">"Invité"</item>
+    <item msgid="5438273405428201793">"Échec"</item>
+    <item msgid="4646663015449312554">"Disponible"</item>
+    <item msgid="3230556734162006146">"Hors de portée"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutes"</item>
+    <item msgid="2759776603549270587">"5 minutes"</item>
+    <item msgid="167772676068860015">"1 heure"</item>
+    <item msgid="5985477119043628504">"Aucun délai"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 derniers jours"</item>
+    <item msgid="3211287705232736964">"Définir cycle conso..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Durée d\'utilisation"</item>
+    <item msgid="2784401352592276015">"Dernière utilisation"</item>
+    <item msgid="249854287216326349">"Nom de l\'application"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Aucun"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Aucun"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"Protocole DHCP"</item>
+    <item msgid="4377002609760712163">"Statique"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Aucun"</item>
+    <item msgid="1464741437353223198">"Manuel"</item>
+    <item msgid="5793600062487886090">"Configuration auto du proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Aucun"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ou CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Mémoire interne du mobile"</item>
+    <item msgid="3186681694079967527">"Carte SD amovible"</item>
+    <item msgid="6902033473986647035">"Laisser le système décider"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Localisation"</item>
+    <item msgid="6842381562497597649">"Personnel"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Support"</item>
+    <item msgid="5323851085993963783">"Appareil"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"position approximative"</item>
+    <item msgid="1830619568689922920">"position précise"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibreur"</item>
+    <item msgid="8632513128515114092">"accéder aux contacts"</item>
+    <item msgid="3741042113569620272">"modifier les contacts"</item>
+    <item msgid="4204420969709009931">"lire le journal d\'appels"</item>
+    <item msgid="2260380357119423209">"modifier le journal d\'appels"</item>
+    <item msgid="6550710385014530934">"accéder à l\'agenda"</item>
+    <item msgid="3575906174264853951">"modifier l\'agenda"</item>
+    <item msgid="4319843242568057174">"détection du Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"détection du réseau mobile"</item>
+    <item msgid="8865260890611559753">"appeler"</item>
+    <item msgid="3254999273961542982">"lire les SMS"</item>
+    <item msgid="7711446453028825171">"écrire des SMS"</item>
+    <item msgid="6123238544099198034">"recevoir des SMS"</item>
+    <item msgid="838342167431596036">"recevoir des SMS d\'urgence"</item>
+    <item msgid="8554432731560956686">"recevoir des MMS"</item>
+    <item msgid="7464863464299515059">"recevoir des messages push WAP"</item>
+    <item msgid="310463075729606765">"envoyer des SMS"</item>
+    <item msgid="7338021933527689514">"lire les SMS ICC"</item>
+    <item msgid="6130369335466613036">"écrire des SMS ICC"</item>
+    <item msgid="6536865581421670942">"modifier les paramètres"</item>
+    <item msgid="4547203129183558973">"dessiner par dessus"</item>
+    <item msgid="9080347512916542840">"accéder aux notifications"</item>
+    <item msgid="5332718516635907742">"caméra"</item>
+    <item msgid="6098422447246167852">"enregistrer fichier audio"</item>
+    <item msgid="9182794235292595296">"lire le fichier audio"</item>
+    <item msgid="8760743229597702019">"lire le Presse-papiers"</item>
+    <item msgid="2266923698240538544">"modifier le Presse-papiers"</item>
+    <item msgid="1801619438618539275">"boutons pour contenus multimédias"</item>
+    <item msgid="31588119965784465">"priorité audio"</item>
+    <item msgid="7565226799008076833">"volume général"</item>
+    <item msgid="5420704980305018295">"volume de la voix"</item>
+    <item msgid="5797363115508970204">"volume des sonneries"</item>
+    <item msgid="8233154098550715999">"volume des contenus multimédias"</item>
+    <item msgid="5196715605078153950">"volume des alarmes"</item>
+    <item msgid="394030698764284577">"volume des notifications"</item>
+    <item msgid="8952898972491680178">"volume Bluetooth"</item>
+    <item msgid="8506227454543690851">"maintenir activé"</item>
+    <item msgid="1108160036049727420">"suivre la position"</item>
+    <item msgid="1496205959751719491">"surveiller les requêtes de localisation qui nécessitent une quantité d\'énergie importante"</item>
+    <item msgid="3776296279910987380">"obtenir des statistiques d\'utilisation"</item>
+    <item msgid="8827100324471975602">"activer/désactiver le micro"</item>
+    <item msgid="6880736730520126864">"afficher le message"</item>
+    <item msgid="4933375960222609935">"projeter des contenus multimédias"</item>
+    <item msgid="8357907018938895462">"activer le VPN"</item>
+    <item msgid="8143812849911310973">"modifier le fond d\'écran"</item>
+    <item msgid="6266277260961066535">"structure d\'assistance"</item>
+    <item msgid="7715498149883482300">"aide à la capture d\'écran"</item>
+    <item msgid="4046679376726313293">"lire l\'état du téléphone"</item>
+    <item msgid="6329507266039719587">"ajouter des messages vocaux"</item>
+    <item msgid="7692440726415391408">"utiliser le protocole SIP"</item>
+    <item msgid="8572453398128326267">"traiter l\'appel sortant"</item>
+    <item msgid="7775674394089376306">"empreinte digitale"</item>
+    <item msgid="3182815133441738779">"capteurs corporels"</item>
+    <item msgid="2793100005496829513">"lire les diffusions cellulaires"</item>
+    <item msgid="2633626056029384366">"position fictive"</item>
+    <item msgid="8356842191824684631">"lire les données de l\'espace de stockage"</item>
+    <item msgid="5671906070163291500">"écrire dans les données de l\'espace de stockage"</item>
+    <item msgid="2791955098549340418">"activer l\'écran"</item>
+    <item msgid="5599435119609178367">"obtenir les comptes"</item>
+    <item msgid="1165623660533024666">"exécuter en arrière-plan"</item>
+    <item msgid="6423861043647911030">"volume d\'accessibilité"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Localisation"</item>
+    <item msgid="6656077694190491067">"Localisation"</item>
+    <item msgid="8790228218278477369">"Localisation"</item>
+    <item msgid="7836406246005211990">"Vibreur"</item>
+    <item msgid="3951439024549922598">"Accéder aux contacts"</item>
+    <item msgid="8802152411647068">"Modifier les contacts"</item>
+    <item msgid="229544934599698735">"Lire le journal d\'appels"</item>
+    <item msgid="7396102294405899613">"Modifier le journal d\'appels"</item>
+    <item msgid="3597797992398484655">"Accéder à l\'agenda"</item>
+    <item msgid="2705975774250907343">"Modifier l\'agenda"</item>
+    <item msgid="4668747371441932697">"Localisation"</item>
+    <item msgid="1487578921720243646">"Publier des notifications"</item>
+    <item msgid="4636080349724146638">"Localisation"</item>
+    <item msgid="673510900286463926">"Appeler"</item>
+    <item msgid="542083422784609790">"Lire des SMS ou des MMS"</item>
+    <item msgid="1033780373029588436">"Écrire des SMS ou des MMS"</item>
+    <item msgid="5647111115517787488">"Recevoir des SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Recevoir des SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Recevoir des SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Recevoir des SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Envoyer des SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Lire des SMS ou des MMS"</item>
+    <item msgid="6555678522277865572">"Écrire des SMS ou des MMS"</item>
+    <item msgid="6981734935578130884">"Modifier les paramètres"</item>
+    <item msgid="8705854389991425629">"Dessiner par dessus"</item>
+    <item msgid="5861356020344153651">"Accéder aux notifications"</item>
+    <item msgid="78432174621628659">"Caméra"</item>
+    <item msgid="3986116419882154794">"Enregistrer fichier audio"</item>
+    <item msgid="4516840825756409490">"Lire le fichier audio"</item>
+    <item msgid="6811712502798183957">"Lire le Presse-papiers"</item>
+    <item msgid="2780369012602289114">"Modifier le Presse-papiers"</item>
+    <item msgid="2331359440170850868">"Boutons multimédias"</item>
+    <item msgid="6133599737122751231">"Priorité audio"</item>
+    <item msgid="6844485713404805301">"Volume général"</item>
+    <item msgid="1600379420669104929">"Volume de la voix"</item>
+    <item msgid="6296768210470214866">"Volume de la sonnerie"</item>
+    <item msgid="510690696071629241">"Volume des contenus multimédias"</item>
+    <item msgid="406861638631430109">"Volume de l\'alarme"</item>
+    <item msgid="4715864795872233884">"Volume des notifications"</item>
+    <item msgid="2311478519251301183">"Volume Bluetooth"</item>
+    <item msgid="5133991377896747027">"Maintenir activé"</item>
+    <item msgid="2464189519136248621">"Localisation"</item>
+    <item msgid="2062677934050803037">"Localisation"</item>
+    <item msgid="1735171933192715957">"Obtenir des statistiques d\'utilisation"</item>
+    <item msgid="1014093788778383554">"Activer/Désactiver le micro"</item>
+    <item msgid="4199297950608622850">"Afficher le message"</item>
+    <item msgid="2527962435313398821">"Projeter des contenus multimédias"</item>
+    <item msgid="5117506254221861929">"Activer le VPN"</item>
+    <item msgid="8291198322681891160">"Modifier le fond d\'écran"</item>
+    <item msgid="7106921284621230961">"Structure d\'assistance"</item>
+    <item msgid="4496533640894624799">"Aide à la capture d\'écran"</item>
+    <item msgid="2598847264853993611">"Lire l\'état du téléphone"</item>
+    <item msgid="9215610846802973353">"Ajouter des messages vocaux"</item>
+    <item msgid="9186411956086478261">"Utiliser le protocole SIP"</item>
+    <item msgid="6884763100104539558">"Traiter l\'appel sortant"</item>
+    <item msgid="125513972170580692">"Empreinte digitale"</item>
+    <item msgid="2556071024281275619">"Capteurs corporels"</item>
+    <item msgid="617168514928339387">"Lire les diffusions cellulaires"</item>
+    <item msgid="7134693570516523585">"Position fictive"</item>
+    <item msgid="7224489175375229399">"Lire les données de l\'espace de stockage"</item>
+    <item msgid="8472735063903258202">"Écrire dans les données de l\'espace de stockage"</item>
+    <item msgid="4069276819909595110">"Activer l\'écran"</item>
+    <item msgid="1228338896751121025">"Obtenir les comptes"</item>
+    <item msgid="3181581793459233672">"Exécuter en arrière-plan"</item>
+    <item msgid="2340936043025374076">"Volume d\'accessibilité"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Court"</item>
+    <item msgid="4816511817309094890">"Moyenne "</item>
+    <item msgid="8305084671259331134">"Long"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Par défaut"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif condensé"</item>
+    <item msgid="6529379119163117545">"Sans Serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Scripte"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Petites majuscules"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Par défaut"</item>
+    <item msgid="6488643537808152001">"Aucun"</item>
+    <item msgid="552332815156010137">"Contour"</item>
+    <item msgid="7187891159463789272">"Ombre projetée"</item>
+    <item msgid="8019330250538856521">"Surélevé"</item>
+    <item msgid="8987385315647049787">"Bord en retrait"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Paramètres par défaut de l\'appli"</item>
+    <item msgid="8611890312638868524">"Texte blanc sur fond noir"</item>
+    <item msgid="5891360837786277638">"Texte noir sur fond blanc"</item>
+    <item msgid="2798457065945456853">"Texte jaune sur fond noir"</item>
+    <item msgid="5799049811524553967">"Texte jaune sur fond bleu"</item>
+    <item msgid="3673930830658169860">"Personnalisé"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"VPN L2TP/IPSec avec clés pré-partagées"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec avec certificats"</item>
+    <item msgid="312397853907741968">"VPN IPSec avec clés pré-partagées et authentification Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec avec certificats et authentification Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec avec certificats et authentification hybride"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Aucune"</item>
+    <item msgid="1157046369795346308">"Manuel"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Déconnecté"</item>
+    <item msgid="8754480102834556765">"Initialisation en cours..."</item>
+    <item msgid="3351334355574270250">"Connexion en cours…"</item>
+    <item msgid="8303882153995748352">"Connecté"</item>
+    <item msgid="9135049670787351881">"Délai"</item>
+    <item msgid="2124868417182583926">"Échec"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Demander"</item>
+    <item msgid="7718817231348607934">"Ne jamais autoriser"</item>
+    <item msgid="8184570120217958741">"Toujours autoriser"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Permanent"</item>
+    <item msgid="167418068739176448">"Activité principale"</item>
+    <item msgid="4760813290195199773">"Important (premier plan)"</item>
+    <item msgid="2328684826817647595">"Important (arrière-plan)"</item>
+    <item msgid="7746406490652867365">"Sauvegarde"</item>
+    <item msgid="5597404364389196754">"Haute densité"</item>
+    <item msgid="1290888779300174556">"Service (en cours)"</item>
+    <item msgid="7241098542073939046">"Service (redémarrage)"</item>
+    <item msgid="6610439017684111046">"Récepteur"</item>
+    <item msgid="7367606086319921117">"Accueil"</item>
+    <item msgid="3344660712396741826">"Dernière activité"</item>
+    <item msgid="5006559348883303865">"Mise en cache (activité)"</item>
+    <item msgid="8633480732468137525">"Mise en cache (client d\'activité)"</item>
+    <item msgid="6248998242443333892">"Mise en cache (vide)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Turquoise"</item>
+    <item msgid="3228505970082457852">"Bleu"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Violet"</item>
+    <item msgid="5932337981182999919">"Rose"</item>
+    <item msgid="5642914536624000094">"Rouge"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Depuis plus de 30 jours"</item>
+    <item msgid="8699273238891265610">"Depuis plus de 60 jours"</item>
+    <item msgid="8346279419423837266">"Depuis plus de 90 jours"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Détecter automatiquement"</item>
+    <item msgid="773943026484148895">"Considérer comme facturé à l\'usage"</item>
+    <item msgid="1008268820118852416">"Considérer comme non facturé à l\'usage"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Utiliser adresse MAC aléatoire (par défaut)"</item>
+    <item msgid="214234417308375326">"Utiliser l\'adresse MAC de l\'appareil"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Non"</item>
+    <item msgid="1930581185557754880">"Oui"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Sombre"</item>
+    <item msgid="5079453644557603349">"Clair"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Désactivé"</item>
+    <item msgid="4072198137051566919">"Débogage"</item>
+    <item msgid="2473005316958868509">"Détaillé"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Réseaux domestiques uniquement"</item>
+    <item msgid="1161026694891024702">"Automatique"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA de préférence"</item>
+    <item msgid="7581481130337402578">"GSM uniquement"</item>
+    <item msgid="8579197487913425819">"WCDMA uniquement"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatique"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatique"</item>
+    <item msgid="4219607161971472471">"CDMA sans EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo uniquement"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Général"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA uniquement"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Général"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-fr/strings.xml b/tests/CarDeveloperOptions/res/values-fr/strings.xml
index f67319d..a088087 100644
--- a/tests/CarDeveloperOptions/res/values-fr/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-fr/strings.xml
@@ -1256,7 +1256,7 @@
     <string name="ambient_display_category_triggers" msgid="3496111745340047504">"Activation du mode Veille"</string>
     <string name="doze_title" msgid="235269029233857546">"Nouvelles notifications"</string>
     <string name="doze_summary" msgid="6762274282827831706">"Activer l\'écran lors de la réception de notifications"</string>
-    <string name="doze_always_on_title" msgid="8555184965031789941">"Toujours activé"</string>
+    <string name="doze_always_on_title" msgid="8555184965031789941">"Mode Always-on"</string>
     <string name="doze_always_on_summary" msgid="7654436900436328950">"Afficher l\'heure, les icônes de notification et d\'autres informations. Batterie davantage sollicitée."</string>
     <string name="title_font_size" msgid="5021464556860010851">"Taille de la police"</string>
     <string name="short_summary_font_size" msgid="4141077908728522946">"Agrandir ou réduire le texte"</string>
@@ -2056,7 +2056,7 @@
     <string name="accessibility_screen_magnification_navbar_configuration_warning" msgid="6477234309484795550">"Le bouton Accessibilité est défini sur <xliff:g id="SERVICE">%1$s</xliff:g>. Pour utiliser la loupe, appuyez de manière prolongée sur le bouton Accessibilité, puis sélectionnez la loupe."</string>
     <string name="accessibility_global_gesture_preference_title" msgid="3842279082831426816">"Raccourci (volume)"</string>
     <string name="accessibility_shortcut_service_title" msgid="3516052294376744060">"Service associé au raccourci"</string>
-    <string name="accessibility_shortcut_service_on_lock_screen_title" msgid="1279441617927949980">"Autoriser depuis écran verrouillage"</string>
+    <string name="accessibility_shortcut_service_on_lock_screen_title" msgid="1279441617927949980">"Autoriser depuis l\'écran verrouillé"</string>
     <string name="accessibility_shortcut_description" msgid="1427049334225166395">"Lorsque le raccourci est activé, vous pouvez appuyer sur les deux touches de volume pendant trois secondes pour lancer une fonctionnalité d\'accessibilité."</string>
     <string name="accessibility_toggle_high_text_contrast_preference_title" msgid="5652244684961877255">"Texte avec contraste élevé"</string>
     <string name="accessibility_toggle_screen_magnification_auto_update_preference_title" msgid="2466317284195934003">"Mise à jour auto de la loupe"</string>
@@ -3096,16 +3096,16 @@
     <string name="keywords_sim_status" msgid="3852088576719874387">"réseau, état du réseau mobile, état du service, force du signal, type de réseau mobile, roaming, iccid"</string>
     <string name="keywords_model_and_hardware" msgid="2743197096210895251">"numéro de série, version logicielle"</string>
     <string name="keywords_android_version" msgid="4842749998088987740">"mise à jour du correctif de sécurité Android, version de bande de base, version de noyau"</string>
-    <string name="keywords_dark_ui_mode" msgid="1027966176887770318">"thème, clair, foncé, mode"</string>
+    <string name="keywords_dark_ui_mode" msgid="1027966176887770318">"thème, clair, sombre, mode"</string>
     <string name="keywords_financial_apps_sms_access" msgid="3236014691838121857">"application financière, sms, autorisation"</string>
-    <string name="keywords_systemui_theme" msgid="9150908170417305866">"thème foncé"</string>
+    <string name="keywords_systemui_theme" msgid="9150908170417305866">"thème sombre"</string>
     <string name="keywords_device_feedback" msgid="6948977907405738490">"bug"</string>
     <string name="keywords_ambient_display_screen" msgid="5873935693887583428">"affichage en mode veille, affichage de l\'écran de verrouillage"</string>
     <string name="keywords_lock_screen_notif" msgid="4914337222856805463">"notification de l\'écran de verrouillage, notifications"</string>
     <string name="keywords_face_settings" msgid="4117345666006836599">"visage"</string>
     <string name="keywords_fingerprint_settings" msgid="902902368701134163">"empreinte digitale, ajouter une empreinte digitale"</string>
     <string name="keywords_display_auto_brightness" msgid="1810596220466483996">"réduire la luminosité de l\'écran, écran tactile, batterie, réglage intelligent de la luminosité, luminosité dynamique"</string>
-    <string name="keywords_display_adaptive_sleep" msgid="1695357782432822811">"assombrir l\'écran, veille, batterie, délai d\'inactivité, attention, affichage, écran, inactivité"</string>
+    <string name="keywords_display_adaptive_sleep" msgid="1695357782432822811">"assombrir l\'écran, veille, batterie, délai d\'inactivité, regard, affichage, écran, inactivité"</string>
     <string name="keywords_auto_rotate" msgid="4320791369951647513">"faire pivoter, inverser, rotation, portrait, paysage, orientation, vertical, horizontal"</string>
     <string name="keywords_system_update_settings" msgid="4419971277998986067">"mettre à jour, android"</string>
     <string name="keywords_zen_mode_settings" msgid="4103819458182535493">"ne pas déranger, calendrier, notifications, bloquer, silence, vibreur, veille, travail, sélectionner, son, couper le son, jour, jour de semaine, week-end, soir de semaine, événement"</string>
@@ -4070,7 +4070,7 @@
     <string name="dark_ui_mode" msgid="703844190192599217">"Thème"</string>
     <string name="dark_ui_mode_title" msgid="8774932716427742413">"Sélectionner un thème"</string>
     <string name="dark_ui_settings_light_summary" msgid="5219102347744462812">"Ce paramètre s\'applique aussi aux applications"</string>
-    <string name="dark_ui_settings_dark_summary" msgid="7042737828943784289">"Le thème foncé s\'appliquera également aux applications compatibles."</string>
+    <string name="dark_ui_settings_dark_summary" msgid="7042737828943784289">"Le thème sombre s\'appliquera également aux applications compatibles."</string>
     <string name="quick_settings_developer_tiles" msgid="7423485925757678719">"Tuiles de configuration rapide pour les développeurs"</string>
     <string name="winscope_trace_quick_settings_title" msgid="940971040388411374">"Trace Winscope"</string>
     <string name="sensors_off_quick_settings_title" msgid="3655699045300438902">"Capteurs désactivés"</string>
diff --git a/tests/CarDeveloperOptions/res/values-gl-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-gl-nokeys/strings.xml
new file mode 100644
index 0000000..be6ba2e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-gl-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Xestionar aplicacións"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-gl/arrays.xml b/tests/CarDeveloperOptions/res/values-gl/arrays.xml
new file mode 100644
index 0000000..37aed84
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-gl/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"América"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"África"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacífico"</item>
+    <item msgid="7044520255415007865">"Todo"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundos"</item>
+    <item msgid="772029947136115322">"30 segundos"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minutos"</item>
+    <item msgid="8664703938127907662">"5 minutos"</item>
+    <item msgid="5827960506924849753">"10 minutos"</item>
+    <item msgid="6677424950124253938">"30 minutos"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Rede conectada"</item>
+    <item msgid="983792611851499732">"Invitado"</item>
+    <item msgid="5438273405428201793">"Incorrecto"</item>
+    <item msgid="4646663015449312554">"Dispoñible"</item>
+    <item msgid="3230556734162006146">"Fóra de cobertura"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutos"</item>
+    <item msgid="2759776603549270587">"5 minutos"</item>
+    <item msgid="167772676068860015">"1 hora"</item>
+    <item msgid="5985477119043628504">"Sen tempo de espera"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Últimos 30 días"</item>
+    <item msgid="3211287705232736964">"Definir ciclo de uso..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Tempo de uso"</item>
+    <item msgid="2784401352592276015">"Última vez que se utilizou"</item>
+    <item msgid="249854287216326349">"Nome da aplicación"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ningunha"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ningunha"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ningunha"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Proxy autoconfigurado"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ningunha"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ou CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Almacenamento interno do dispositivo"</item>
+    <item msgid="3186681694079967527">"Tarxeta SD extraíble"</item>
+    <item msgid="6902033473986647035">"Deixar decidir ao sistema"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Localización"</item>
+    <item msgid="6842381562497597649">"Persoal"</item>
+    <item msgid="3966700236695683444">"Mensaxaría"</item>
+    <item msgid="8563996233342430477">"Multimedia"</item>
+    <item msgid="5323851085993963783">"Dispositivo"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"localización aproximada"</item>
+    <item msgid="1830619568689922920">"localización precisa"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibración"</item>
+    <item msgid="8632513128515114092">"ler contactos"</item>
+    <item msgid="3741042113569620272">"modificar contactos"</item>
+    <item msgid="4204420969709009931">"ler rexistro de chamadas"</item>
+    <item msgid="2260380357119423209">"modificar rexistro de chamadas"</item>
+    <item msgid="6550710385014530934">"ler calendario"</item>
+    <item msgid="3575906174264853951">"modificar calendario"</item>
+    <item msgid="4319843242568057174">"exploración de wifi"</item>
+    <item msgid="2981791890467303819">"notificación"</item>
+    <item msgid="6617825156152476692">"exploración de cela"</item>
+    <item msgid="8865260890611559753">"chamada telefónica"</item>
+    <item msgid="3254999273961542982">"ler SMS"</item>
+    <item msgid="7711446453028825171">"escribir SMS"</item>
+    <item msgid="6123238544099198034">"recibir SMS"</item>
+    <item msgid="838342167431596036">"recibir SMS de emerxencia"</item>
+    <item msgid="8554432731560956686">"recibir MMS"</item>
+    <item msgid="7464863464299515059">"recibir WAP push"</item>
+    <item msgid="310463075729606765">"enviar SMS"</item>
+    <item msgid="7338021933527689514">"ler SMS ICC"</item>
+    <item msgid="6130369335466613036">"escribir SMS ICC"</item>
+    <item msgid="6536865581421670942">"modificar configuración"</item>
+    <item msgid="4547203129183558973">"debuxar na parte superior"</item>
+    <item msgid="9080347512916542840">"acceso ás notificacións"</item>
+    <item msgid="5332718516635907742">"cámara"</item>
+    <item msgid="6098422447246167852">"gravar audio"</item>
+    <item msgid="9182794235292595296">"reproducir audio"</item>
+    <item msgid="8760743229597702019">"ler portapapeis"</item>
+    <item msgid="2266923698240538544">"modificar portapapeis"</item>
+    <item msgid="1801619438618539275">"botóns multimedia"</item>
+    <item msgid="31588119965784465">"enfoque de audio"</item>
+    <item msgid="7565226799008076833">"volume principal"</item>
+    <item msgid="5420704980305018295">"volume da voz"</item>
+    <item msgid="5797363115508970204">"volume do ton"</item>
+    <item msgid="8233154098550715999">"volume multimedia"</item>
+    <item msgid="5196715605078153950">"volume da alarma"</item>
+    <item msgid="394030698764284577">"volume das notificacións"</item>
+    <item msgid="8952898972491680178">"volume do Bluetooth"</item>
+    <item msgid="8506227454543690851">"manter activo"</item>
+    <item msgid="1108160036049727420">"supervisar a localización"</item>
+    <item msgid="1496205959751719491">"supervisar localización de alta potencia"</item>
+    <item msgid="3776296279910987380">"obter estatísticas de uso"</item>
+    <item msgid="8827100324471975602">"desactivar/activar o son do micrófono"</item>
+    <item msgid="6880736730520126864">"mostrar notificación emerxente"</item>
+    <item msgid="4933375960222609935">"multimedia do proxecto"</item>
+    <item msgid="8357907018938895462">"activar VPN"</item>
+    <item msgid="8143812849911310973">"escribir fondo de pantalla"</item>
+    <item msgid="6266277260961066535">"estrutura do asistente"</item>
+    <item msgid="7715498149883482300">"captura de pantalla do asistente"</item>
+    <item msgid="4046679376726313293">"ler estado do teléfono"</item>
+    <item msgid="6329507266039719587">"engadir correo de voz"</item>
+    <item msgid="7692440726415391408">"usar SIP"</item>
+    <item msgid="8572453398128326267">"procesar chamada saínte"</item>
+    <item msgid="7775674394089376306">"impresión dixital"</item>
+    <item msgid="3182815133441738779">"sensores corporais"</item>
+    <item msgid="2793100005496829513">"ler difusións de cela"</item>
+    <item msgid="2633626056029384366">"localización falsa"</item>
+    <item msgid="8356842191824684631">"ler almacenamento"</item>
+    <item msgid="5671906070163291500">"escribir almacenamento"</item>
+    <item msgid="2791955098549340418">"activar pantalla"</item>
+    <item msgid="5599435119609178367">"obter contas"</item>
+    <item msgid="1165623660533024666">"executar en segundo plano"</item>
+    <item msgid="6423861043647911030">"volume de accesibilidade"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Curto"</item>
+    <item msgid="4816511817309094890">"Media"</item>
+    <item msgid="8305084671259331134">"Longo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predeterminado"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif condensada"</item>
+    <item msgid="6529379119163117545">"Monoespazado sen serifas"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Monoespazado con serifas"</item>
+    <item msgid="4448481989108928248">"Informal"</item>
+    <item msgid="4627069151979553527">"Cursiva"</item>
+    <item msgid="6896773537705206194">"Maiúsculas pequenas"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predeterminado"</item>
+    <item msgid="6488643537808152001">"Ningunha"</item>
+    <item msgid="552332815156010137">"Contorno"</item>
+    <item msgid="7187891159463789272">"Sombra"</item>
+    <item msgid="8019330250538856521">"Con relevo"</item>
+    <item msgid="8987385315647049787">"Afundido"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"VPN L2TP/IPSec con claves precompartidas"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec con certificados"</item>
+    <item msgid="312397853907741968">"VPN IPSec con claves precompartidas e autenticación Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec con certificados e autenticación Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec con certificados e autenticación híbrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ningún"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Preguntar"</item>
+    <item msgid="7718817231348607934">"Non permitir nunca"</item>
+    <item msgid="8184570120217958741">"Permitir sempre"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistente"</item>
+    <item msgid="167418068739176448">"Actividade principal"</item>
+    <item msgid="4760813290195199773">"Importante (primeiro plano)"</item>
+    <item msgid="2328684826817647595">"Importante (segundo plano)"</item>
+    <item msgid="7746406490652867365">"Copia de seguranza"</item>
+    <item msgid="5597404364389196754">"Peso pesado"</item>
+    <item msgid="1290888779300174556">"Servizo (en execución)"</item>
+    <item msgid="7241098542073939046">"Servizo (reiniciando)"</item>
+    <item msgid="6610439017684111046">"Receptor"</item>
+    <item msgid="7367606086319921117">"Inicio"</item>
+    <item msgid="3344660712396741826">"Última actividade"</item>
+    <item msgid="5006559348883303865">"Na caché (actividade)"</item>
+    <item msgid="8633480732468137525">"Na caché (cliente de actividade)"</item>
+    <item msgid="6248998242443333892">"Na caché (en branco)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Verde azulado"</item>
+    <item msgid="3228505970082457852">"Azul"</item>
+    <item msgid="6590260735734795647">"Índigo"</item>
+    <item msgid="3521763377357218577">"Violeta"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Vermello"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"De máis de 30 días"</item>
+    <item msgid="8699273238891265610">"De máis de 60 días"</item>
+    <item msgid="8346279419423837266">"De máis de 90 días"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detectar automaticamente"</item>
+    <item msgid="773943026484148895">"Tratar como rede sen tarifa plana"</item>
+    <item msgid="1008268820118852416">"Tratar como rede con tarifa plana"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Usar MAC aleatorio (valor predeterminado)"</item>
+    <item msgid="214234417308375326">"Usar dispositivo MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Non"</item>
+    <item msgid="1930581185557754880">"Si"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Escuro"</item>
+    <item msgid="5079453644557603349">"Claro"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desactivado"</item>
+    <item msgid="4072198137051566919">"Depuración"</item>
+    <item msgid="2473005316958868509">"Detallado"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Só redes domésticas"</item>
+    <item msgid="1161026694891024702">"Automaticamente"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Preferencia: GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Só GSM"</item>
+    <item msgid="8579197487913425819">"Só WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automático"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automático"</item>
+    <item msgid="4219607161971472471">"CDMA sen EvDo"</item>
+    <item msgid="7278975240951052041">"Só EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA e LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Só TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EvDo/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-gl/strings.xml b/tests/CarDeveloperOptions/res/values-gl/strings.xml
index 39c99aa..49997b1 100644
--- a/tests/CarDeveloperOptions/res/values-gl/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-gl/strings.xml
@@ -2499,7 +2499,7 @@
     <string name="voice_input_settings" msgid="4983011614890521505">"Configuración da entrada de voz"</string>
     <string name="voice_input_settings_title" msgid="6865032806501269306">"Entrada de voz"</string>
     <string name="voice_service_preference_section_title" msgid="2984112696100778038">"Servizos de entrada de voz"</string>
-    <string name="voice_interactor_preference_summary" msgid="7321365727286121067">"Interacción e palabra activa completa"</string>
+    <string name="voice_interactor_preference_summary" msgid="7321365727286121067">"Interacción e palabra de activación completa"</string>
     <string name="voice_recognizer_preference_summary" msgid="3681161319745912594">"Síntese de voz simple"</string>
     <string name="voice_interaction_security_warning" msgid="4986261746316889768">"Este servizo de entrada de voz poderá supervisar que a voz sempre estea activada e controlar as aplicacións compatibles coa voz no teu nome. Procede da aplicación <xliff:g id="VOICE_INPUT_SERVICE_APP_NAME">%s</xliff:g>. Queres activar o uso deste servizo?"</string>
     <string name="tts_engine_preference_title" msgid="1183116842356275061">"Motor preferido"</string>
@@ -2546,8 +2546,8 @@
     <string name="personal_data_section_title" msgid="9161854418510071558">"Datos persoais"</string>
     <string name="backup_data_title" msgid="4461508563849583624">"Realizar copia de seguranza dos meus datos"</string>
     <string name="backup_data_summary" msgid="555459891017933746">"Crea unha copia de seguranza dos datos da aplicación, dos contrasinais das redes wifi e doutras configuracións en servidores de Google"</string>
-    <string name="backup_configure_account_title" msgid="1534734650559070294">"Conta de copia seguranza"</string>
-    <string name="backup_data_management_title" msgid="6299288795610243508">"Xestionar conta de copia de seguranza"</string>
+    <string name="backup_configure_account_title" msgid="1534734650559070294">"Copia de seguranza: conta"</string>
+    <string name="backup_data_management_title" msgid="6299288795610243508">"Xestionar conta para a copia de seguranza"</string>
     <string name="include_app_data_title" msgid="6117211611131913293">"Incluír datos de aplicacións"</string>
     <string name="auto_restore_title" msgid="8367486774010915221">"Restauración automática"</string>
     <string name="auto_restore_summary" msgid="1941047568966428377">"Cando volvas instalar unha aplicación, restaura a configuración e os datos dos que fixeches unha copia de seguranza"</string>
@@ -4114,18 +4114,18 @@
     <string name="swipe_up_to_switch_apps_summary" msgid="4644068184114154787">"Para cambiar de aplicacións, pasa o dedo cara arriba no botón de inicio. Pásao de novo para ver todas as aplicacións. Este xesto funciona en calquera pantalla, así que deixarás de ter na parte inferior dereita o botón Visión xeral."</string>
     <string name="swipe_up_to_switch_apps_suggestion_title" msgid="7641846365137536128">"Proba o novo botón de inicio"</string>
     <string name="swipe_up_to_switch_apps_suggestion_summary" msgid="7338653224520387852">"Activa o novo xesto para cambiar de aplicacións"</string>
-    <string name="ambient_display_title" product="default" msgid="6785677099744344088">"Dobre toque para consultar o teléfono"</string>
+    <string name="ambient_display_title" product="default" msgid="6785677099744344088">"Dobre toque no teléfono para consultalo"</string>
     <string name="ambient_display_title" product="tablet" msgid="1106285490888683613">"Tocar dúas veces para consultar a tableta"</string>
     <string name="ambient_display_title" product="device" msgid="5064644474876041478">"Tocar dúas veces para consultar o dispositivo"</string>
     <string name="ambient_display_summary" msgid="4882910328216411109">"Para consultar a hora, as notificacións e outra información, toca a pantalla dúas veces."</string>
-    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Levantar teléfono para consultalo"</string>
+    <string name="ambient_display_pickup_title" product="default" msgid="7141652156907066938">"Levantar o teléfono para consultalo"</string>
     <string name="ambient_display_pickup_title" product="tablet" msgid="1555456400210301959">"Levantar a tableta para consultala"</string>
     <string name="ambient_display_pickup_title" product="device" msgid="2480126522988135037">"Levantar o dispositivo para consultalo"</string>
     <string name="ambient_display_wake_screen_title" msgid="3376988352851077102">"Activar a pantalla de bloqueo"</string>
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Para consultar a hora, as notificacións e outros datos, colle o teléfono."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Para consultar a hora, as notificacións e outros datos, colle a tableta."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Para consultar a hora, as notificacións e outros datos, colle o dispositivo."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Tocar para consultar o teléfono"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Toque no teléfono para consultalo"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Toca para consultar a tableta"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Tocar para consultar o dispositivo"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Para consultar a hora, as notificacións e outra información, toca a pantalla."</string>
diff --git a/tests/CarDeveloperOptions/res/values-gu-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-gu-nokeys/strings.xml
new file mode 100644
index 0000000..310e9da
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-gu-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"એપ્લિકેશન્સનું સંચાલન કરો"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-gu/arrays.xml b/tests/CarDeveloperOptions/res/values-gu/arrays.xml
new file mode 100644
index 0000000..6c1fba1
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-gu/arrays.xml
@@ -0,0 +1,345 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"અમેરિકા"</item>
+    <item msgid="4791956477275129121">"યુરોપ"</item>
+    <item msgid="3812126832016254559">"આફ્રિકા"</item>
+    <item msgid="2765816300353408280">"એશિયા"</item>
+    <item msgid="6683489385344409742">"ઑસ્ટ્રેલિયા"</item>
+    <item msgid="5194868215515664953">"પેસિફિક"</item>
+    <item msgid="7044520255415007865">"તમામ"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"કનેક્ટ થયું"</item>
+    <item msgid="983792611851499732">"આમંત્રિત"</item>
+    <item msgid="5438273405428201793">"અસફળ"</item>
+    <item msgid="4646663015449312554">"ઉપલબ્ધ"</item>
+    <item msgid="3230556734162006146">"શ્રેણીથી બહાર"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"છેલ્લા 30 દિવસ"</item>
+    <item msgid="3211287705232736964">"વપરાશ સાયકલ સેટ કરો..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"વપરાશ સમય"</item>
+    <item msgid="2784401352592276015">"છેલ્લે ઉપયોગ કરેલ સમય"</item>
+    <item msgid="249854287216326349">"એપ્લિકેશનનું નામ"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"કોઈ નહીં"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"કોઈ નહીં"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"કોઈ નહીં"</item>
+    <item msgid="1464741437353223198">"મેન્યુઅલ"</item>
+    <item msgid="5793600062487886090">"પ્રોક્સી આપમેળે ગોઠવો"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"કોઈ નહીં"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP અથવા CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"આંતરિક ઉપકરણ સંગ્રહ"</item>
+    <item msgid="3186681694079967527">"દૂર કરવા યોગ્ય SD કાર્ડ"</item>
+    <item msgid="6902033473986647035">"સિસ્ટમને નક્કી કરવા દો"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"સ્થાન"</item>
+    <item msgid="6842381562497597649">"વ્યક્તિગત"</item>
+    <item msgid="3966700236695683444">"મેસેજિંગ"</item>
+    <item msgid="8563996233342430477">"મીડિયા"</item>
+    <item msgid="5323851085993963783">"ઉપકરણ"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ખરબચડું સ્થાન"</item>
+    <item msgid="1830619568689922920">"સારું સ્થાન"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"વાઇબ્રેટ"</item>
+    <item msgid="8632513128515114092">"સંપર્કો વાંચો"</item>
+    <item msgid="3741042113569620272">"સંપર્કો સંશોધિત કરો"</item>
+    <item msgid="4204420969709009931">"કૉલ લૉગ વાંચો"</item>
+    <item msgid="2260380357119423209">"કૉલ લૉગ સંશોધિત કરો"</item>
+    <item msgid="6550710385014530934">"કૅલેન્ડર વાંચો"</item>
+    <item msgid="3575906174264853951">"કૅલેન્ડર સંશોધિત કરો"</item>
+    <item msgid="4319843242568057174">"wi-fi સ્કેન કરો"</item>
+    <item msgid="2981791890467303819">"નોટિફિકેશન"</item>
+    <item msgid="6617825156152476692">"સેલ સ્કેન"</item>
+    <item msgid="8865260890611559753">"કૉલ કરો"</item>
+    <item msgid="3254999273961542982">"SMS વાંચો"</item>
+    <item msgid="7711446453028825171">"SMS લખો"</item>
+    <item msgid="6123238544099198034">"SMS પ્રાપ્ત કરો"</item>
+    <item msgid="838342167431596036">"કટોકટી SMS પ્રાપ્ત કરો"</item>
+    <item msgid="8554432731560956686">"MMS પ્રાપ્ત કરો"</item>
+    <item msgid="7464863464299515059">"WAP પુશ પ્રાપ્ત કરો"</item>
+    <item msgid="310463075729606765">"SMS મોકલો"</item>
+    <item msgid="7338021933527689514">"ICC SMS વાંચો"</item>
+    <item msgid="6130369335466613036">"ICC SMS લખો"</item>
+    <item msgid="6536865581421670942">"સેટિંગ્સ સંશોધિત કરો"</item>
+    <item msgid="4547203129183558973">"શીર્ષ પર ખેંચો"</item>
+    <item msgid="9080347512916542840">"ઍક્સેસ સૂચનાઓ"</item>
+    <item msgid="5332718516635907742">"કૅમેરો"</item>
+    <item msgid="6098422447246167852">"ઑડિઓ રેકોર્ડ કરો"</item>
+    <item msgid="9182794235292595296">"ઑડિઓ ચલાવો"</item>
+    <item msgid="8760743229597702019">"ક્લિપબોર્ડ વાંચો"</item>
+    <item msgid="2266923698240538544">"ક્લિપબોર્ડ સંશોધિત કરો"</item>
+    <item msgid="1801619438618539275">"મીડિયા બટન્સ"</item>
+    <item msgid="31588119965784465">"ઑડિઓ ફોકસ"</item>
+    <item msgid="7565226799008076833">"માસ્ટર વૉલ્યૂમ"</item>
+    <item msgid="5420704980305018295">"વૉઇસ વૉલ્યૂમ"</item>
+    <item msgid="5797363115508970204">"રિંગ વૉલ્યૂમ"</item>
+    <item msgid="8233154098550715999">"મીડિયા વૉલ્યૂમ"</item>
+    <item msgid="5196715605078153950">"એલાર્મ વૉલ્યૂમ"</item>
+    <item msgid="394030698764284577">"નોટિફિકેશન વૉલ્યૂમ"</item>
+    <item msgid="8952898972491680178">"બ્લૂટૂથ વૉલ્યૂમ"</item>
+    <item msgid="8506227454543690851">"સક્રિય રાખો"</item>
+    <item msgid="1108160036049727420">"સ્થાનને મૉનિટર કરો"</item>
+    <item msgid="1496205959751719491">"હાઇ પાવર સ્થાન મૉનિટર કરો"</item>
+    <item msgid="3776296279910987380">"વપરાશ આંકડા મેળવો"</item>
+    <item msgid="8827100324471975602">"માઇક્રોફોનનો અવાજ બંધ/ચાલુ કરો"</item>
+    <item msgid="6880736730520126864">"ટોસ્ટ બતાવો"</item>
+    <item msgid="4933375960222609935">"પ્રોજેક્ટ મીડિયા"</item>
+    <item msgid="8357907018938895462">"VPN સક્રિય કરો"</item>
+    <item msgid="8143812849911310973">"વૉલપેપર પર લખો"</item>
+    <item msgid="6266277260961066535">"મદદ સંરચના"</item>
+    <item msgid="7715498149883482300">"મદદ સ્ક્રીનશોટ"</item>
+    <item msgid="4046679376726313293">"ફોન સ્થિતિ વાંચો"</item>
+    <item msgid="6329507266039719587">"વૉઇસમેઇલ ઉમેરો"</item>
+    <item msgid="7692440726415391408">"sip નો ઉપયોગ કરો"</item>
+    <item msgid="8572453398128326267">"આઉટગોઇંગ કૉલ પર પ્રક્રિયા કરો"</item>
+    <item msgid="7775674394089376306">"ફિંગરપ્રિન્ટની સેટિંગ"</item>
+    <item msgid="3182815133441738779">"બોડી સેન્સર્સ"</item>
+    <item msgid="2793100005496829513">"સેલ બ્રોડકાસ્ટ્સ વાંચો"</item>
+    <item msgid="2633626056029384366">"મોક સ્થાન"</item>
+    <item msgid="8356842191824684631">"સ્ટોરેજ વાંચો"</item>
+    <item msgid="5671906070163291500">"સ્ટોરેજ પર લખો"</item>
+    <item msgid="2791955098549340418">"સ્ક્રીન ચાલુ કરો"</item>
+    <item msgid="5599435119609178367">"એકાઉન્ટ્સ મેળવો"</item>
+    <item msgid="1165623660533024666">"પૃષ્ઠભૂમિમાં ચલાવો"</item>
+    <item msgid="6423861043647911030">"ઍક્સેસિબિલિટી વૉલ્યૂમ"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"નાનો"</item>
+    <item msgid="4816511817309094890">"મધ્યમ"</item>
+    <item msgid="8305084671259331134">"લાંબો"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ડિફૉલ્ટ"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"કૅઝૂઅલ"</item>
+    <item msgid="4627069151979553527">"કર્સિવ"</item>
+    <item msgid="6896773537705206194">"નાના કેપિટલ્સ"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+    <!-- no translation found for captioning_edge_type_selector_titles:4 (8019330250538856521) -->
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"પહેલાંથી શેર કરેલ કીઝ સાથે L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"પ્રમાણપત્રો સાથે L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"પૂર્વ શેર કરેલી કીઝ અને Xauth પ્રમાણીકરણ સાથે IPSec VPN"</item>
+    <item msgid="3319427315593649917">"પ્રમાણપત્રો અને Xauth પ્રમાણીકરણ સાથે IPSec VPN"</item>
+    <item msgid="8258927774145391041">"પ્રમાણપત્રો અને સંકર પ્રમાણીકરણ સાથે IPSec VPN"</item>
+  </string-array>
+    <!-- no translation found for vpn_proxy_settings:0 (2958623927055120839) -->
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"પૂછો"</item>
+    <item msgid="7718817231348607934">"ક્યારેય મંજૂરી આપશો નહીં"</item>
+    <item msgid="8184570120217958741">"હંમેશા મંજૂરી આપો"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"નિરંતર"</item>
+    <item msgid="167418068739176448">"ટોચની પ્રવૃત્તિ"</item>
+    <item msgid="4760813290195199773">"મહત્વપૂર્ણ (અગ્રભૂમિ)"</item>
+    <item msgid="2328684826817647595">"મહત્વપૂર્ણ (બૅકગ્રાઉન્ડ)"</item>
+    <item msgid="7746406490652867365">"બૅકઅપ"</item>
+    <item msgid="5597404364389196754">"ભારે વજન"</item>
+    <item msgid="1290888779300174556">"સેવા (ચાલે છે)"</item>
+    <item msgid="7241098542073939046">"સેવા (પુનઃપ્રારંભ થાય છે)"</item>
+    <item msgid="6610439017684111046">"પ્રાપ્તકર્તા"</item>
+    <item msgid="7367606086319921117">"ઘર"</item>
+    <item msgid="3344660712396741826">"છેલ્લી પ્રવૃત્તિ"</item>
+    <item msgid="5006559348883303865">"કેશ્ડ (પ્રવૃત્તિ)"</item>
+    <item msgid="8633480732468137525">"કેશ્ડ (પ્રવૃત્તિ ક્લાઇન્ટ)"</item>
+    <item msgid="6248998242443333892">"કેશ્ડ (ખાલી)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"મોરપીછ"</item>
+    <item msgid="3228505970082457852">"વાદળી"</item>
+    <item msgid="6590260735734795647">"ઘેરો વાદળી રંગ"</item>
+    <item msgid="3521763377357218577">"જાંબલી"</item>
+    <item msgid="5932337981182999919">"ગુલાબી"</item>
+    <item msgid="5642914536624000094">"લાલ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 દિવસથી વધુ જૂના"</item>
+    <item msgid="8699273238891265610">"60 દિવસથી વધુ જૂના"</item>
+    <item msgid="8346279419423837266">"90 દિવસથી વધુ જૂના"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"આપમેળે શોધો"</item>
+    <item msgid="773943026484148895">"મીટર કરેલ તરીકે ગણો"</item>
+    <item msgid="1008268820118852416">"મીટર ન કરેલ તરીકે ગણો"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"રેન્ડમ કરેલ MACનો ઉપયોગ કરો (ડિફૉલ્ટ)"</item>
+    <item msgid="214234417308375326">"MAC ડિવાઇસનો ઉપયોગ કરો"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"નહીં"</item>
+    <item msgid="1930581185557754880">"હા"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ઘેરી"</item>
+    <item msgid="5079453644557603349">"આછું"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"બંધ"</item>
+    <item msgid="4072198137051566919">"ડિબગ કરો"</item>
+    <item msgid="2473005316958868509">"શબ્દબહુલ"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"માત્ર હોમ"</item>
+    <item msgid="1161026694891024702">"આપમેળે"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA પસંદ કર્યો છે"</item>
+    <item msgid="7581481130337402578">"માત્ર GSM"</item>
+    <item msgid="8579197487913425819">"માત્ર WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ઑટો"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ઑટો"</item>
+    <item msgid="4219607161971472471">"EvDo વિના CDMA"</item>
+    <item msgid="7278975240951052041">"માત્ર EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"વૈશ્વિક"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"માત્ર TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"વૈશ્વિક"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-gu/strings.xml b/tests/CarDeveloperOptions/res/values-gu/strings.xml
index 66f468b..0b9dd64 100644
--- a/tests/CarDeveloperOptions/res/values-gu/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-gu/strings.xml
@@ -165,7 +165,7 @@
     <string name="bluetooth_sap_acceptance_dialog_text" msgid="1909352413109340355">"<xliff:g id="DEVICE_NAME_0">%1$s</xliff:g> તમારા સિમ કાર્ડને અ‍ૅક્સેસ કરવા માગે છે. સિમ કાર્ડની અ‍ૅક્સેસને મંજૂરી આપવું કનેક્શનના સમયગાળા માટે તમારા ઉપકરણ પર ડેટા કનેક્ટિવિટીને અક્ષમ કરશે. <xliff:g id="DEVICE_NAME_1">%2$s?</xliff:g> ને અ‍ૅક્સેસ આપો"</string>
     <string name="bluetooth_device_name_summary" msgid="8661066392056595005">"તે અન્ય ઉપકરણોને \'<xliff:g id="DEVICE_NAME">^1</xliff:g>\' તરીકે દેખાય છે"</string>
     <string name="bluetooth_off_footer" msgid="7658444560543730571">"અન્ય ઉપકરણો સાથે કનેક્ટ કરવા માટે બ્લૂટૂથ ચાલુ કરો."</string>
-    <string name="bluetooth_paired_device_title" msgid="8361860197780425286">"તમારા ઉપકરણો"</string>
+    <string name="bluetooth_paired_device_title" msgid="8361860197780425286">"તમારા ડિવાઇસ"</string>
     <string name="bluetooth_pairing_page_title" msgid="9053463656712597709">"નવા ઉપકરણ જોડો"</string>
     <string name="bluetooth_pref_summary" product="tablet" msgid="3601662966604648212">"તમારા ટૅબ્લેટને નજીકના બ્લૂટૂથ ઉપકરણો સાથે સંચાર કરવાની મંજૂરી આપો"</string>
     <string name="bluetooth_pref_summary" product="device" msgid="2286727776570956969">"તમારા ઉપકરણને નજીકના બ્લૂટૂથ ઉપકરણો સાથે સંચાર કરવાની મંજૂરી આપો"</string>
@@ -2902,7 +2902,7 @@
     <string name="user_enable_calling_confirm_message" msgid="2490126715153125970">"કૉલ ઇતિહાસ આ વપરાશકર્તા સાથે શેર કરવામાં આવશે."</string>
     <string name="user_enable_calling_and_sms_confirm_title" msgid="4153856398523366976">"ફોન કૉલ્સ અને SMS ચાલુ કરીએ?"</string>
     <string name="user_enable_calling_and_sms_confirm_message" msgid="3278802798876095734">"કૉલ અને SMS ઇતિહાસ આ વપરાશકર્તા સાથે શેર કરવામાં આવશે."</string>
-    <string name="emergency_info_title" msgid="1522609271881425375">"કટોકટી માહિતી"</string>
+    <string name="emergency_info_title" msgid="1522609271881425375">"ઇમર્જન્સીની માહિતી"</string>
     <string name="emergency_info_summary" msgid="7280464759837387342">"<xliff:g id="USER_NAME">%1$s</xliff:g> માટે માહિતી અને સંપર્કો"</string>
     <string name="application_restrictions" msgid="6871981013736536763">"ઍપ્લિકેશનો અને સામગ્રીને મંજૂરી આપો"</string>
     <string name="apps_with_restrictions_header" msgid="8656739605673756176">"પ્રતિબંધો ધરાવતી ઍપ્લિકેશનો"</string>
diff --git a/tests/CarDeveloperOptions/res/values-hi-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-hi-nokeys/strings.xml
new file mode 100644
index 0000000..edadd10
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hi-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ऐप्लिकेशन प्रबंधित करें"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hi/arrays.xml b/tests/CarDeveloperOptions/res/values-hi/arrays.xml
new file mode 100644
index 0000000..f88282e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hi/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"अमेरिका"</item>
+    <item msgid="4791956477275129121">"यूरोप"</item>
+    <item msgid="3812126832016254559">"अफ़्रीका"</item>
+    <item msgid="2765816300353408280">"एशिया"</item>
+    <item msgid="6683489385344409742">"ऑस्ट्रेलिया"</item>
+    <item msgid="5194868215515664953">"पेसिफ़िक"</item>
+    <item msgid="7044520255415007865">"सभी"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 सेकंड"</item>
+    <item msgid="772029947136115322">"30 सेकंड"</item>
+    <item msgid="8743663928349474087">"एक मिनट"</item>
+    <item msgid="1506508631223164814">"दो मिनट"</item>
+    <item msgid="8664703938127907662">"5 मिनट"</item>
+    <item msgid="5827960506924849753">"10 मिनट"</item>
+    <item msgid="6677424950124253938">"30 मिनट"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"छोटा"</item>
+    <item msgid="591935967183159581">"डिफ़ॉल्ट"</item>
+    <item msgid="1714184661981538355">"बड़ा"</item>
+    <item msgid="6195563047686707484">"सबसे बड़ा"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"स्‍कैन कर रहा है…"</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> से कनेक्‍ट कर रहा है…"</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> के साथ प्रमाणीकरण कर रहा है…"</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> से IP पता पा रहा है..."</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> से कनेक्‍ट किया गया"</item>
+    <item msgid="6600156231416890902">"निलंबित"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> से डिस्‍कनेक्‍ट कर रहा है…"</item>
+    <item msgid="3980154971187953257">"डिसकनेक्ट किया गया"</item>
+    <item msgid="2847316776634969068">"असफल"</item>
+    <item msgid="4390990424746035383">"अवरोधित"</item>
+    <item msgid="3618248791367063949">"खराब कनेक्शन को अस्थायी रूप से अनदेखा कर रहा है"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"पुश बटन"</item>
+    <item msgid="7401896200768713930">"साथी डिवाइस से पिन"</item>
+    <item msgid="4526848028011846710">"इस डिवाइस से पिन"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"कनेक्ट किया गया"</item>
+    <item msgid="983792611851499732">"आमंत्रित"</item>
+    <item msgid="5438273405428201793">"असफल"</item>
+    <item msgid="4646663015449312554">"उपलब्ध"</item>
+    <item msgid="3230556734162006146">"सीमा क्षेत्र से बाहर"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"दो मिनट"</item>
+    <item msgid="2759776603549270587">"5 मिनट"</item>
+    <item msgid="167772676068860015">"एक घंटा"</item>
+    <item msgid="5985477119043628504">"कभी टाइम आउट नहीं होगा"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"पिछले 30 दिन"</item>
+    <item msgid="3211287705232736964">"उपयोग चक्र सेट करें..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"उपयोग समय"</item>
+    <item msgid="2784401352592276015">"पिछली बार उपयोग किया गया"</item>
+    <item msgid="249854287216326349">"ऐप्लिकेशन का नाम"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"कुछ नहीं"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"कुछ नहीं"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"स्थिर"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"कुछ नहीं"</item>
+    <item msgid="1464741437353223198">"मैन्युअल"</item>
+    <item msgid="5793600062487886090">"प्रॉक्सी ऑटो-कॉन्फ़िग"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"कुछ नहीं"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP या CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"आंतरिक डिवाइस मेमोरी"</item>
+    <item msgid="3186681694079967527">"निकाले जाने योग्‍य SD कार्ड"</item>
+    <item msgid="6902033473986647035">"सिस्‍टम को तय करने दें"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"जगह"</item>
+    <item msgid="6842381562497597649">"व्यक्तिगत"</item>
+    <item msgid="3966700236695683444">"संदेश सेवा"</item>
+    <item msgid="8563996233342430477">"मीडिया"</item>
+    <item msgid="5323851085993963783">"डिवाइस"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"अस्पष्ट जगह"</item>
+    <item msgid="1830619568689922920">"सटीक जगह"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"कंपन (वाइब्रेशन)"</item>
+    <item msgid="8632513128515114092">"संपर्क पढ़ें"</item>
+    <item msgid="3741042113569620272">"संपर्कों को बदलें"</item>
+    <item msgid="4204420969709009931">"कॉल लॉग पढ़ें"</item>
+    <item msgid="2260380357119423209">"कॉल लॉग बदलें"</item>
+    <item msgid="6550710385014530934">"कैलेंडर पढ़ें"</item>
+    <item msgid="3575906174264853951">"कैलेंडर बदलें"</item>
+    <item msgid="4319843242568057174">"वाई-फ़ाई स्कैन"</item>
+    <item msgid="2981791890467303819">"सूचना"</item>
+    <item msgid="6617825156152476692">"सेल स्कैन"</item>
+    <item msgid="8865260890611559753">"फ़ोन पर कॉल करें"</item>
+    <item msgid="3254999273961542982">"मैसेज (एसएमएस) पढ़ें"</item>
+    <item msgid="7711446453028825171">"मैसेज (एसएमएस) लिखें"</item>
+    <item msgid="6123238544099198034">"मैसेज (एसएमएस) पाएं"</item>
+    <item msgid="838342167431596036">"आपातकालीन मैसेज (एसएमएस) पाएं"</item>
+    <item msgid="8554432731560956686">"मल्टीमीडिया मैसेज (एमएमएस) पाएं"</item>
+    <item msgid="7464863464299515059">"WAP पुश पाएं"</item>
+    <item msgid="310463075729606765">"मैसेज (एसएमएस) भेजें"</item>
+    <item msgid="7338021933527689514">"ICC मैसेज (एसएमएस) पढ़ें"</item>
+    <item msgid="6130369335466613036">"ICC मैसेज (एसएमएस) लिखें"</item>
+    <item msgid="6536865581421670942">"सेटिंग बदलें"</item>
+    <item msgid="4547203129183558973">"ऊपर बनाएं"</item>
+    <item msgid="9080347512916542840">"सूचना पाएं"</item>
+    <item msgid="5332718516635907742">"कैमरा"</item>
+    <item msgid="6098422447246167852">"ऑडियो रिकॉर्ड करें"</item>
+    <item msgid="9182794235292595296">"ऑडियो चलाएं"</item>
+    <item msgid="8760743229597702019">"क्लिपबोर्ड पढ़ें"</item>
+    <item msgid="2266923698240538544">"क्लिपबोर्ड बदलें"</item>
+    <item msgid="1801619438618539275">"मीडिया बटन"</item>
+    <item msgid="31588119965784465">"ऑडियो फ़ोकस"</item>
+    <item msgid="7565226799008076833">"मास्टर आवाज़"</item>
+    <item msgid="5420704980305018295">"बोलने की आवाज़"</item>
+    <item msgid="5797363115508970204">"रिंग आवाज़"</item>
+    <item msgid="8233154098550715999">"मीडिया की आवाज़"</item>
+    <item msgid="5196715605078153950">"अलार्म की आवाज़"</item>
+    <item msgid="394030698764284577">"सूचना की आवाज़"</item>
+    <item msgid="8952898972491680178">"ब्लूटूथ की आवाज़"</item>
+    <item msgid="8506227454543690851">"सचेत रखें"</item>
+    <item msgid="1108160036049727420">"जगह की निगरानी करें"</item>
+    <item msgid="1496205959751719491">"उच्च पावर वाली जगह की निगरानी करें"</item>
+    <item msgid="3776296279910987380">"उपयोग के आंकड़े पाएं"</item>
+    <item msgid="8827100324471975602">"माइक्रोफ़ोन म्यूट/अनम्यूट करें"</item>
+    <item msgid="6880736730520126864">"टोस्ट दिखाएं"</item>
+    <item msgid="4933375960222609935">"प्रोजेक्ट मीडिया"</item>
+    <item msgid="8357907018938895462">"VPN सक्रिय करें"</item>
+    <item msgid="8143812849911310973">"वॉलपेपर पर लिखें"</item>
+    <item msgid="6266277260961066535">"सहायक संरचना"</item>
+    <item msgid="7715498149883482300">"सहायक स्क्रीनशॉट"</item>
+    <item msgid="4046679376726313293">"फ़ोन स्‍थिति पढ़ें"</item>
+    <item msgid="6329507266039719587">"वॉइसमेल जोड़ें"</item>
+    <item msgid="7692440726415391408">"सिप का उपयोग करें"</item>
+    <item msgid="8572453398128326267">"कॉल करें"</item>
+    <item msgid="7775674394089376306">"फ़िंगरप्रिंट"</item>
+    <item msgid="3182815133441738779">"शरीर संवेदक"</item>
+    <item msgid="2793100005496829513">"सेल ब्रॉडकास्ट (CBC) पढ़ें"</item>
+    <item msgid="2633626056029384366">"नकली जगह"</item>
+    <item msgid="8356842191824684631">"मेमोरी पढ़ें"</item>
+    <item msgid="5671906070163291500">"मेमोरी लिखें"</item>
+    <item msgid="2791955098549340418">"स्क्रीन चालू करें"</item>
+    <item msgid="5599435119609178367">"खाते पाएं"</item>
+    <item msgid="1165623660533024666">"पृष्ठभूमि में चलाएं"</item>
+    <item msgid="6423861043647911030">"सुलभता सुविधाओं के लिए आवाज़"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"जगह"</item>
+    <item msgid="6656077694190491067">"जगह"</item>
+    <item msgid="8790228218278477369">"जगह"</item>
+    <item msgid="7836406246005211990">"कंपन"</item>
+    <item msgid="3951439024549922598">"संपर्क पढ़ें"</item>
+    <item msgid="8802152411647068">"संपर्कों को बदलें"</item>
+    <item msgid="229544934599698735">"कॉल लॉग पढ़ें"</item>
+    <item msgid="7396102294405899613">"कॉल लॉग बदलें"</item>
+    <item msgid="3597797992398484655">"कैलेंडर पढ़ें"</item>
+    <item msgid="2705975774250907343">"कैलेंडर बदलें"</item>
+    <item msgid="4668747371441932697">"जगह"</item>
+    <item msgid="1487578921720243646">"सूचना पोस्ट करें"</item>
+    <item msgid="4636080349724146638">"जगह"</item>
+    <item msgid="673510900286463926">"फ़ोन पर कॉल करें"</item>
+    <item msgid="542083422784609790">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) पढ़ें"</item>
+    <item msgid="1033780373029588436">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) लिखें"</item>
+    <item msgid="5647111115517787488">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) पाएं"</item>
+    <item msgid="8591105601108455893">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) पाएं"</item>
+    <item msgid="7730995008517841903">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) पाएं"</item>
+    <item msgid="2613033109026626086">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) पाएं"</item>
+    <item msgid="3037159047591081136">"SMS/MMS भेजें"</item>
+    <item msgid="4726682243833913568">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) पढ़ें"</item>
+    <item msgid="6555678522277865572">"मैसेज (एसएमएस)/मल्टीमीडिया मैसेज (एमएमएस) लिखें"</item>
+    <item msgid="6981734935578130884">"सेटिंग बदलें"</item>
+    <item msgid="8705854389991425629">"ऊपर बनाएं"</item>
+    <item msgid="5861356020344153651">"सूचना पाएं"</item>
+    <item msgid="78432174621628659">"कैमरा"</item>
+    <item msgid="3986116419882154794">"ऑडियो रिकॉर्ड करें"</item>
+    <item msgid="4516840825756409490">"ऑडियो चलाएं"</item>
+    <item msgid="6811712502798183957">"क्लिपबोर्ड पढ़ें"</item>
+    <item msgid="2780369012602289114">"क्लिपबोर्ड बदलें"</item>
+    <item msgid="2331359440170850868">"मीडिया बटन"</item>
+    <item msgid="6133599737122751231">"ऑडियो फ़ोकस"</item>
+    <item msgid="6844485713404805301">"मास्टर आवाज़"</item>
+    <item msgid="1600379420669104929">"बोलने की आवाज़"</item>
+    <item msgid="6296768210470214866">"रिंग की आवाज़"</item>
+    <item msgid="510690696071629241">"मीडिया की आवाज़"</item>
+    <item msgid="406861638631430109">"अलार्म की आवाज़"</item>
+    <item msgid="4715864795872233884">"सूचना की आवाज़"</item>
+    <item msgid="2311478519251301183">"ब्लूटूथ की आवाज़"</item>
+    <item msgid="5133991377896747027">"सचेत रखें"</item>
+    <item msgid="2464189519136248621">"स्थान"</item>
+    <item msgid="2062677934050803037">"जगह"</item>
+    <item msgid="1735171933192715957">"उपयोग के आंकड़े पाएं"</item>
+    <item msgid="1014093788778383554">"माइक्रोफ़ोन म्यूट/अनम्यूट करें"</item>
+    <item msgid="4199297950608622850">"टोस्ट दिखाएं"</item>
+    <item msgid="2527962435313398821">"प्रोजेक्ट मीडिया"</item>
+    <item msgid="5117506254221861929">"VPN सक्रिय करें"</item>
+    <item msgid="8291198322681891160">"वॉलपेपर पर लिखें"</item>
+    <item msgid="7106921284621230961">"सहायक संरचना"</item>
+    <item msgid="4496533640894624799">"सहायक स्क्रीनशॉट"</item>
+    <item msgid="2598847264853993611">"फ़ोन स्‍थिति पढ़ें"</item>
+    <item msgid="9215610846802973353">"वॉइसमेल जोड़ें"</item>
+    <item msgid="9186411956086478261">"सिप का उपयोग करें"</item>
+    <item msgid="6884763100104539558">"कॉल करें"</item>
+    <item msgid="125513972170580692">"फ़िंगरप्रिंट"</item>
+    <item msgid="2556071024281275619">"शरीर संवेदक"</item>
+    <item msgid="617168514928339387">"सेल ब्रॉडकास्ट (CBC) पढ़ें"</item>
+    <item msgid="7134693570516523585">"नकली जगह"</item>
+    <item msgid="7224489175375229399">"मेमोरी पढ़ें"</item>
+    <item msgid="8472735063903258202">"मेमोरी लिखें"</item>
+    <item msgid="4069276819909595110">"स्क्रीन चालू करें"</item>
+    <item msgid="1228338896751121025">"खाते पाएं"</item>
+    <item msgid="3181581793459233672">"पृष्ठभूमि में चलाएं"</item>
+    <item msgid="2340936043025374076">"सुलभता सुविधाओं के लिए आवाज़"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"कम"</item>
+    <item msgid="4816511817309094890">"मध्यम"</item>
+    <item msgid="8305084671259331134">"ज़्यादा"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"डिफ़ॉल्ट"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"डिफ़ॉल्ट"</item>
+    <item msgid="6488643537808152001">"कुछ नहीं"</item>
+    <item msgid="552332815156010137">"आउटलाइन"</item>
+    <item msgid="7187891159463789272">"ड्रॉप शैडो"</item>
+    <item msgid="8019330250538856521">"विस्तृत"</item>
+    <item msgid="8987385315647049787">"संक्षिप्त"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"ऐप्लिकेशन की डिफ़ॉल्ट शैलियां"</item>
+    <item msgid="8611890312638868524">"काले पर सफ़ेद"</item>
+    <item msgid="5891360837786277638">"सफ़ेद पर काला"</item>
+    <item msgid="2798457065945456853">"काले पर पीला"</item>
+    <item msgid="5799049811524553967">"नीले पर पीला"</item>
+    <item msgid="3673930830658169860">"पसंद के मुताबिक"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"पहले से शेयर की गई कुंजी के साथ L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"प्रमाणपत्रों के साथ L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"पहले से शेयर की गई कुंजियों और Xauth प्रमाणीकरण के साथ IPSec VPN"</item>
+    <item msgid="3319427315593649917">"प्रमाणपत्रों और Xauth प्रमाणीकरण के साथ IPSec VPN"</item>
+    <item msgid="8258927774145391041">"प्रमाणपत्रों और संकर प्रमाणीकरण के साथ IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"कोई नहीं"</item>
+    <item msgid="1157046369795346308">"मैन्युअल"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"डिसकनेक्ट किया गया"</item>
+    <item msgid="8754480102834556765">"आरंभ हो रहा है..."</item>
+    <item msgid="3351334355574270250">"कनेक्ट हो रहा है..."</item>
+    <item msgid="8303882153995748352">"कनेक्ट किया गया"</item>
+    <item msgid="9135049670787351881">"समयबाह्य"</item>
+    <item msgid="2124868417182583926">"असफल"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"पूछें"</item>
+    <item msgid="7718817231348607934">"कभी भी अनुमति न दें"</item>
+    <item msgid="8184570120217958741">"हमेशा अनुमति दें"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"निरंतर"</item>
+    <item msgid="167418068739176448">"शीर्ष गतिविधि"</item>
+    <item msgid="4760813290195199773">"महत्वपूर्ण (अग्रभाग)"</item>
+    <item msgid="2328684826817647595">"महत्वपूर्ण (पृष्ठभूमि)"</item>
+    <item msgid="7746406490652867365">"बैकअप लें"</item>
+    <item msgid="5597404364389196754">"अत्यधिक"</item>
+    <item msgid="1290888779300174556">"सेवा (चल रही है)"</item>
+    <item msgid="7241098542073939046">"सेवा (फिर से प्रारंभ हो रही है)"</item>
+    <item msgid="6610439017684111046">"प्राप्तकर्ता"</item>
+    <item msgid="7367606086319921117">"घर"</item>
+    <item msgid="3344660712396741826">"अंतिम गतिविधि"</item>
+    <item msgid="5006559348883303865">"संचित (गतिविधि)"</item>
+    <item msgid="8633480732468137525">"संचित (गतिविधि क्लाइंट)"</item>
+    <item msgid="6248998242443333892">"संचित (खाली)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"हरा-नीला"</item>
+    <item msgid="3228505970082457852">"नीला"</item>
+    <item msgid="6590260735734795647">"गहरा नीला"</item>
+    <item msgid="3521763377357218577">"बैंगनी"</item>
+    <item msgid="5932337981182999919">"गुलाबी"</item>
+    <item msgid="5642914536624000094">"लाल"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 दिन से ज़्यादा पुराने"</item>
+    <item msgid="8699273238891265610">"60 दिन से ज़्यादा पुराने"</item>
+    <item msgid="8346279419423837266">"90 दिन से ज़्यादा पुराने"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"नेटवर्क की अपने आप पहचान हो"</item>
+    <item msgid="773943026484148895">"इस कनेक्शन में डेटा से जुड़ी पाबंदी है"</item>
+    <item msgid="1008268820118852416">"इस कनेक्शन में डेटा से जुड़ी पाबंदी नहीं है"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"किसी भी MAC पते का इस्तेमाल करें (डिफ़ॉल्ट सेटिंग)"</item>
+    <item msgid="214234417308375326">"डिवाइस के एमएसी का इस्तेमाल करें"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"नहीं"</item>
+    <item msgid="1930581185557754880">"हां"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"गहरे रंग की थीम"</item>
+    <item msgid="5079453644557603349">"हल्के रंग की थीम"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"बंद"</item>
+    <item msgid="4072198137051566919">"डीबग"</item>
+    <item msgid="2473005316958868509">"ज़्यादा जानकारी डालें"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"सिर्फ़ होम पेज"</item>
+    <item msgid="1161026694891024702">"ऑटोमैटिक"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA पसंदीदा"</item>
+    <item msgid="7581481130337402578">"सिर्फ़ GSM"</item>
+    <item msgid="8579197487913425819">"सिर्फ़ WCDMA"</item>
+    <item msgid="8465243227505412498">"अपने आप GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"अपने आप CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"EvDo के बिना CDMA"</item>
+    <item msgid="7278975240951052041">"सिर्फ़ EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"हर जगह लागू"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"सिर्फ़ TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/सिम"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"हर जगह लागू"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hi/strings.xml b/tests/CarDeveloperOptions/res/values-hi/strings.xml
index dcf995e..39d6cbb 100644
--- a/tests/CarDeveloperOptions/res/values-hi/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-hi/strings.xml
@@ -222,7 +222,7 @@
     <string name="radio_info_call_redirect_label" msgid="2679891718182753061">"कॉल रीडयरेक्ट:"</string>
     <string name="radio_info_ppp_resets_label" msgid="2785162965440312941">"बूट के बाद से PPP रीसेट की संख्या:"</string>
     <string name="radio_info_current_network_label" msgid="5785805819312999094">"वर्तमान नेटवर्क:"</string>
-    <string name="radio_info_ppp_received_label" msgid="5217391494757374330">"डेटा प्राप्त हुआ:"</string>
+    <string name="radio_info_ppp_received_label" msgid="5217391494757374330">"डेटा पाया गया:"</string>
     <string name="radio_info_gsm_service_label" msgid="7488842563230281026">"वॉइस सेवा:"</string>
     <string name="radio_info_signal_strength_label" msgid="7773514616083573394">"सिग्नल की शक्ति:"</string>
     <string name="radio_info_call_status_label" msgid="8241020608714164780">"वॉइस कॉल स्थिति:"</string>
@@ -318,7 +318,7 @@
     <string name="roaming_warning_multiuser" product="tablet" msgid="7090388691615686893">"जब आप डेटा रोमिंग की अनुमति देते हैं, तो हो सकता है कि आपको ज़्यादा रोमिंग शुल्क लगे!\n\nयह सेटिंग इस टैबलेट के सभी उपयोगकर्ताओं को प्रभावित करती है."</string>
     <string name="roaming_warning_multiuser" product="default" msgid="6999819541078827556">"जब आप डेटा रोमिंग की अनुमति देते हैं, तो हो सकता है कि आपको ज़्यादा रोमिंग शुल्क लगे!\n\nयह सेटिंग इस फ़ोन के सभी उपयोगकर्ताओं को प्रभावित करती है."</string>
     <string name="roaming_reenable_title" msgid="6985082191178297921">"डेटा रोमिंग की अनुमति दें?"</string>
-    <string name="networks" msgid="3073876464102136771">"ऑपरेटर चयन"</string>
+    <string name="networks" msgid="3073876464102136771">"ऑपरेटर चुनें"</string>
     <string name="sum_carrier_select" msgid="8964744180598499121">"कोई नेटवर्क ऑपरेटर चुनें"</string>
     <string name="date_and_time_settings_title" msgid="7827088656940910631">"तारीख और समय"</string>
     <string name="date_and_time_settings_title_setup_wizard" msgid="1573030770187844365">"तारीख और समय सेट करें"</string>
@@ -372,8 +372,8 @@
     <string name="location_settings_master_switch_title" msgid="3108016866082816733">"जगह की जानकारी की सुविधा का इस्तेमाल करें"</string>
     <string name="location_settings_summary_location_off" msgid="5563530256978372978">"बंद करें"</string>
     <plurals name="location_settings_summary_location_on" formatted="false" msgid="7893342914540884818">
-      <item quantity="one">चालू - <xliff:g id="COUNT_1">%1$d</xliff:g> ऐप्लिकेशन जगह की जानकारी एक्सेस कर सकते हैं</item>
-      <item quantity="other">चालू - <xliff:g id="COUNT_1">%1$d</xliff:g> ऐप्लिकेशन जगह की जानकारी एक्सेस कर सकते हैं</item>
+      <item quantity="one">चालू - <xliff:g id="COUNT_1">%1$d</xliff:g> ऐप्लिकेशन जगह की जानकारी ऐक्सेस कर सकते हैं</item>
+      <item quantity="other">चालू - <xliff:g id="COUNT_1">%1$d</xliff:g> ऐप्लिकेशन जगह की जानकारी ऐक्सेस कर सकते हैं</item>
     </plurals>
     <string name="location_settings_loading_app_permission_stats" msgid="7818169326621327628">"लोड हो रहा है…"</string>
     <string name="account_settings_title" msgid="7870321267198486578">"खाते"</string>
@@ -425,7 +425,7 @@
     <string name="security_settings_face_settings_require_confirmation" msgid="7312024271060416438">"हमेशा पुष्टि करना ज़रूरी है"</string>
     <string name="security_settings_face_settings_require_confirmation_details" msgid="8740564864091803429">"ऐप्लिकेशन में प्रमाणित करते समय हमेशा पुष्टि करना ज़रूरी है"</string>
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"चेहरे का डेटा हटाएं"</string>
-    <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"आप अपने चेहरे के ज़रिए अपने डिवाइस को अनलॉक कर सकते हैं और ऐप्लिकेशन एक्सेस कर सकते हैं. "<annotation id="url">"ज़्यादा जानें"</annotation></string>
+    <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"आप अपने चेहरे के ज़रिए अपने डिवाइस को अनलॉक कर सकते हैं और ऐप्लिकेशन ऐक्सेस कर सकते हैं. "<annotation id="url">"ज़्यादा जानें"</annotation></string>
     <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"चेहरे से जुड़ा डेटा मिटाएं?"</string>
     <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"चेहरे की पहचान करके डिवाइस को अनलॉक करने की सुविधा के ज़रिए रिकॉर्ड किया गया डेटा हमेशा के लिए और सुरक्षित रूप से मिटा दिया जाएगा. मिटाने के बाद अपने फ़ोन को अनलॉक करने, ऐप्लिकेशन में साइन इन करने और भुगतान की पुष्टि करने के लिए आपको पिन, पैटर्न या पासवर्ड की ज़रूरत होगी."</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"उंगली की छाप"</string>
@@ -474,7 +474,7 @@
     <string name="security_settings_fingerprint_enroll_finish_message" msgid="5862643337893923347">"जब आपको यह आइकॉन दिखाई दे, तब पहचान के लिए या खरीदारियों को मंज़ूरी देने के लिए अपना फ़िंगरप्रिंट इस्तेमाल करें"</string>
     <string name="security_settings_fingerprint_enroll_enrolling_skip" msgid="1473280156532146933">"इसे बाद में करें"</string>
     <string name="setup_fingerprint_enroll_enrolling_skip_title" msgid="2816424026528101690">"फ़िंगरप्रिंट सेटअप छोड़ें?"</string>
-    <string name="setup_fingerprint_enroll_enrolling_skip_message" msgid="8139299964344809780">"आपने अपने फ़ोन को अनलॉक करने के एक तरीके के रूप में अपने फ़िंगरप्रिंट का उपयोग करने का चयन किया है. अगर आप इसे अभी छोड़ते हैं, तो आपको इसे बाद में सेट करना होगा. सेटअप में करीब एक मिनट लगता है."</string>
+    <string name="setup_fingerprint_enroll_enrolling_skip_message" msgid="8139299964344809780">"आपने अपने फ़ोन को अनलॉक करने के एक तरीके के रूप में अपने फ़िंगरप्रिंट का उपयोग करने का चुनाव किया है. अगर आप इसे अभी छोड़ते हैं, तो आपको इसे बाद में सेट करना होगा. सेटअप में करीब एक मिनट लगता है."</string>
     <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="tablet" msgid="1384438077720821127">"अपने टैबलेट को \'स्क्रीन लॉक\' की मदद से सुरक्षित रखें ताकि इसके खोने या चोरी होने पर, कोई इसका इस्तेमाल न कर पाए. आपको फ़िंगरप्रिंट सेट करने के लिए भी, \'स्क्रीन लॉक\' सुविधा की ज़रूरत है. \'रद्द करें\' पर टैप करें. इसके बाद, कोई पिन सेट करें या \'स्क्रीन लॉक\' का कोई दूसरा विकल्प चुनें."</string>
     <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="device" msgid="7207112623501771824">"अपने डिवाइस को \'स्क्रीन लॉक\' की मदद से सुरक्षित रखें ताकि इसके खोने या चोरी होने पर, कोई इसका इस्तेमाल न कर पाए. आपको फ़िंगरप्रिंट सेट करने के लिए भी, \'स्क्रीन लॉक\' सुविधा की ज़रूरत है. \'रद्द करें\' पर टैप करें. इसके बाद, कोई पिन सेट करें या \'स्क्रीन लॉक\' का कोई दूसरा विकल्प चुनें."</string>
     <string name="fingerprint_lock_screen_setup_skip_dialog_text" product="default" msgid="7623975730623531606">"अपने फ़ोन को \'स्क्रीन लॉक\' की मदद से सुरक्षित रखें ताकि इसके खोने या चोरी होने पर, कोई इसका इस्तेमाल न कर पाए. आपको फ़िंगरप्रिंट सेट करने के लिए भी, \'स्क्रीन लॉक\' सुविधा की ज़रूरत है. \'रद्द करें\' पर टैप करें. इसके बाद, कोई पिन सेट करें या \'स्क्रीन लॉक\' का कोई दूसरा विकल्प चुनें."</string>
@@ -495,7 +495,7 @@
     <string name="fingerprint_enroll_button_add" msgid="6335782936874996629">"कोई और जोड़ें"</string>
     <string name="fingerprint_enroll_button_next" msgid="6419214079104413695">"आगे बढ़ें"</string>
     <string name="security_settings_fingerprint_enroll_disclaimer" msgid="5831834311961551423">"अपना फ़ोन अनलॉक करने के साथ-साथ, खरीदारी और ऐप ऐक्‍सेस को अधिकृत करने के लिए आप अपनी फ़िंगरप्रिंट का भी उपयोग कर सकते हैं. "<annotation id="url">"ज़्यादा जानें"</annotation></string>
-    <string name="security_settings_fingerprint_enroll_disclaimer_lockscreen_disabled" msgid="7954742554236652690">" स्क्रीन लॉक विकल्प बंद है. ज़्यादा जानने के लिए, अपने संगठन के एडमिन से संपर्क करें. "<annotation id="admin_details">"ज़्यादा जानकारी{"</annotation>\n\n"आप खरीदारी और ऐप एक्सेस की अनुमति देने के लिए अब भी अपने फ़िंगरप्रिंट का इस्तेमाल कर सकते हैं. "<annotation id="url">"ज़्यादा जानें"</annotation></string>
+    <string name="security_settings_fingerprint_enroll_disclaimer_lockscreen_disabled" msgid="7954742554236652690">" स्क्रीन लॉक विकल्प बंद है. ज़्यादा जानने के लिए, अपने संगठन के एडमिन से संपर्क करें. "<annotation id="admin_details">"ज़्यादा जानकारी{"</annotation>\n\n"आप खरीदारी और ऐप ऐक्सेस की अनुमति देने के लिए अब भी अपने फ़िंगरप्रिंट का इस्तेमाल कर सकते हैं. "<annotation id="url">"ज़्यादा जानें"</annotation></string>
     <string name="security_settings_fingerprint_enroll_lift_touch_again" msgid="1670703069782212223">"उंगली उठाएं और सेंसर को फिर छूएं"</string>
     <string name="fingerprint_add_max" msgid="2939393314646115661">"आप <xliff:g id="COUNT">%d</xliff:g> फ़िंगरप्रिंट तक जोड़ सकते हैं"</string>
     <string name="fingerprint_intro_error_max" msgid="3247720976621039437">"आप अधिकतम संख्या में फ़िंगरप्रिंट जोड़ चुके हैं"</string>
@@ -710,7 +710,7 @@
     <string name="lockpattern_tutorial_cancel_label" msgid="450401426127674369">"रद्द करें"</string>
     <string name="lockpattern_tutorial_continue_label" msgid="8474690922559443018">"आगे बढ़ें"</string>
     <string name="lock_setup" msgid="8710689848703935088">"सेटअप पूरा हुआ."</string>
-    <string name="manage_device_admin" msgid="322047441168191695">"डिवाइस के एडमिन ऐप्लिकेशन का एक्सेस"</string>
+    <string name="manage_device_admin" msgid="322047441168191695">"डिवाइस के एडमिन ऐप्लिकेशन का ऐक्सेस"</string>
     <string name="number_of_device_admins_none" msgid="8519193548630223132">"कोई भी सक्रिय ऐप्लिकेशन नहीं है"</string>
     <plurals name="number_of_device_admins" formatted="false" msgid="6445613288828151224">
       <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> सक्रिय ऐप</item>
@@ -809,8 +809,8 @@
     <string name="wifi_display_options_forget" msgid="7882982544626742073">"भूलें"</string>
     <string name="wifi_display_options_done" msgid="5922060890309265817">"हो गया"</string>
     <string name="wifi_display_options_name" msgid="8477627781133827607">"नाम"</string>
-    <string name="wifi_band_24ghz" msgid="2973143764653628618">"2.4 GHz"</string>
-    <string name="wifi_band_5ghz" msgid="6469832209748522207">"5 GHz"</string>
+    <string name="wifi_band_24ghz" msgid="2973143764653628618">"2.4 गीगाहर्ट्ज़"</string>
+    <string name="wifi_band_5ghz" msgid="6469832209748522207">"5 गीगाहर्ट्ज़"</string>
     <string name="wifi_sign_in_button_text" msgid="7573695522292386360">"साइन इन करें"</string>
     <string name="wifi_tap_to_sign_in" msgid="1075925570550560453">"नेटवर्क में साइन इन करने के लिए टैप करें"</string>
     <string name="tx_link_speed" msgid="4557508597788146162">"<xliff:g id="TRANSMIT_LINK_SPEED">%1$d</xliff:g> एमबीपीएस"</string>
@@ -823,7 +823,7 @@
     <string name="nfc_quick_toggle_summary" product="tablet" msgid="983451155092850657">"जब टैबलेट अन्य डिवाइस को स्पर्श करे तो डेटा ट्रांसफर करने दें"</string>
     <string name="nfc_quick_toggle_summary" product="default" msgid="7141056939052895142">"जब फ़ोन दूसरे डिवाइस को टच करे तो डेटा ट्रांसफर करने दें"</string>
     <string name="nfc_disclaimer_title" msgid="4860231267351602970">"NFC चालू करें"</string>
-    <string name="nfc_disclaimer_content" msgid="3066113577854565782">"NFC इस डिवाइस और आस-पास के अन्य डिवाइस या लक्ष्यों के बीच डेटा का लेन-देन करता है, जैसे कि भुगतान टर्मिनल, एक्सेस रीडर और सहभागी विज्ञापन या टैग."</string>
+    <string name="nfc_disclaimer_content" msgid="3066113577854565782">"NFC इस डिवाइस और आस-पास के अन्य डिवाइस या लक्ष्यों के बीच डेटा का लेन-देन करता है, जैसे कि भुगतान टर्मिनल, ऐक्सेस रीडर और सहभागी विज्ञापन या टैग."</string>
     <string name="nfc_secure_settings_title" msgid="5153751163174916581">"NFC सुरक्षित करें"</string>
     <string name="nfc_secure_toggle_summary" product="default" msgid="7631183023440112192">"NFC भुगतान और ट्रांज़िट के इस्तेमाल की अनुमति तभी दें, जब स्क्रीन अनलॉक की गई हो"</string>
     <string name="android_beam_settings_title" msgid="3083436415873738389">"Android बीम"</string>
@@ -843,7 +843,7 @@
     <string name="wifi_starting" msgid="1299466156783469023">"वाई-फ़ाई  चालू हो रहा है…"</string>
     <string name="wifi_stopping" msgid="413711069039939520">"वाई-फ़ाई  बंद हो रहा है…"</string>
     <string name="wifi_error" msgid="5605801874484465557">"गड़बड़ी"</string>
-    <string name="wifi_sap_no_channel_error" msgid="6881796988574851628">"5 GHz बैंड इस देश में उपलब्‍ध नहीं है"</string>
+    <string name="wifi_sap_no_channel_error" msgid="6881796988574851628">"5 गीगाहर्ट्ज़ बैंड इस देश में उपलब्‍ध नहीं है"</string>
     <string name="wifi_in_airplane_mode" msgid="4729571191578262246">"हवाई जहाज़ मोड में"</string>
     <string name="wifi_notify_open_networks" msgid="4782239203624619655">"ओपन नेटवर्क की सूचना"</string>
     <string name="wifi_notify_open_networks_summary" msgid="1383681260705466715">"बढ़िया इंटरनेट देने वाला सार्वजनिक नेटवर्क मिलने पर बताएं"</string>
@@ -924,7 +924,7 @@
     <string name="wifi_show_password" msgid="7878398590772942202">"पासवर्ड दिखाएं"</string>
     <string name="wifi_ap_band_config" msgid="6565016368079288433">"AP बैंड चुनें"</string>
     <string name="wifi_ap_choose_auto" msgid="7927637960569365785">"अपने आप"</string>
-    <string name="wifi_ap_choose_2G" msgid="43198403259714736">"2.4 GHz बैंड"</string>
+    <string name="wifi_ap_choose_2G" msgid="43198403259714736">"2.4 गीगाहर्ट्ज़ बैंड"</string>
     <string name="wifi_ap_choose_5G" msgid="2624859713183683146">"5.0 गीगाहर्ट्ज़ का बैंड"</string>
     <string name="wifi_ap_prefer_5G" msgid="8339172330471170142">"5.0 गीगाहर्ट्ज़ बैंड का इस्तेमाल करना बेहतर होगा"</string>
     <string name="wifi_ap_2G" msgid="5793110086517338494">"2.4 गीगाहर्ट्ज़"</string>
@@ -986,7 +986,7 @@
     <string name="wifi_hotspot_title" msgid="2631956539767069385">"कनेक्ट करने के लिए साइन इन करें?"</string>
     <string name="wifi_hotspot_message" msgid="6762452611090766607">"<xliff:g id="APP_NAME">%1$s</xliff:g> के लिए नेटवर्क से कनेक्ट करने से पहले साइन करें."</string>
     <string name="wifi_hotspot_connect" msgid="409079339360849653">"कनेक्ट करें"</string>
-    <string name="no_internet_access_text" msgid="7093326244145734504">"इस नेटवर्क में कोई इंटरनेट एक्सेस नहीं है. जुड़े रहें?"</string>
+    <string name="no_internet_access_text" msgid="7093326244145734504">"इस नेटवर्क में कोई इंटरनेट ऐक्सेस नहीं है. जुड़े रहें?"</string>
     <string name="partial_connectivity_text" msgid="2142157808079235684">"सीमित कनेक्टिविटी की वजह से हो सकता है कुछ ऐप्लिकेशन और सेवाएं न काम करें. फिर भी इस्तेमाल करें?"</string>
     <string name="no_internet_access_remember" msgid="1368137189939004202">"इस नेटवर्क के लिए फिर से ना पूछें"</string>
     <string name="lost_internet_access_title" msgid="1061916948695946130">"वाई-फ़ाई इंटरनेट से नहीं जुड़ा है"</string>
@@ -1519,8 +1519,8 @@
     <string name="storage_wizard_ready_v2_internal_moved_body" msgid="4133133596316768033">"आपकी सामग्री <xliff:g id="NAME_0">^1</xliff:g> में ले जाई जा चुकी है. \n\nइस <xliff:g id="NAME_1">^2</xliff:g> को प्रबंधित करने के लिए, "<b>"सेटिंग &gt; मेमोरी में जाएं"</b>"."</string>
     <string name="battery_status_title" msgid="8731200319740671905">"बैटरी स्‍थिति"</string>
     <string name="battery_level_title" msgid="5207775387973771646">"बैटरी स्‍तर"</string>
-    <string name="apn_settings" msgid="8130776653826271664">"एक्सेस पॉइंट नाम"</string>
-    <string name="apn_edit" msgid="4350571070853305357">"एक्सेस पॉइंट में बदलाव करें"</string>
+    <string name="apn_settings" msgid="8130776653826271664">"ऐक्सेस पॉइंट नाम"</string>
+    <string name="apn_edit" msgid="4350571070853305357">"ऐक्सेस पॉइंट में बदलाव करें"</string>
     <string name="apn_not_set" msgid="5344235604466825691">"सेट नहीं है"</string>
     <string name="apn_name" msgid="8431432886706852226">"नाम"</string>
     <string name="apn_apn" msgid="190519449579357696">"APN"</string>
@@ -1644,10 +1644,10 @@
     <string name="location_app_level_permissions" msgid="1298041503927632960">"ऐप्लिकेशन की अनुमति"</string>
     <string name="location_app_permission_summary_location_off" msgid="541372845344796336">"जगह की जानकारी बंद है"</string>
     <plurals name="location_app_permission_summary_location_on" formatted="false" msgid="7904821382328758218">
-      <item quantity="one"> <xliff:g id="TOTAL_LOCATION_APP_COUNT_3">%2$d</xliff:g> में से <xliff:g id="BACKGROUND_LOCATION_APP_COUNT_2">%1$d</xliff:g> ऐप्लिकेशन के पास असीमित एक्सेस है</item>
-      <item quantity="other"> <xliff:g id="TOTAL_LOCATION_APP_COUNT_3">%2$d</xliff:g> में से <xliff:g id="BACKGROUND_LOCATION_APP_COUNT_2">%1$d</xliff:g> ऐप्लिकेशन के पास असीमित एक्सेस है</item>
+      <item quantity="one"> <xliff:g id="TOTAL_LOCATION_APP_COUNT_3">%2$d</xliff:g> में से <xliff:g id="BACKGROUND_LOCATION_APP_COUNT_2">%1$d</xliff:g> ऐप्लिकेशन के पास असीमित ऐक्सेस है</item>
+      <item quantity="other"> <xliff:g id="TOTAL_LOCATION_APP_COUNT_3">%2$d</xliff:g> में से <xliff:g id="BACKGROUND_LOCATION_APP_COUNT_2">%1$d</xliff:g> ऐप्लिकेशन के पास असीमित ऐक्सेस है</item>
     </plurals>
-    <string name="location_category_recent_location_access" msgid="286059523360285026">"हाल ही में एक्सेस की गई जगह की जानकारी"</string>
+    <string name="location_category_recent_location_access" msgid="286059523360285026">"हाल ही में ऐक्सेस की गई जगह की जानकारी"</string>
     <string name="location_recent_location_access_view_details" msgid="2051602261436245905">"जानकारी देखें"</string>
     <string name="location_no_recent_apps" msgid="77502059586413278">"किसी भी ऐप ने हाल में जगह का अनुरोध नहीं किया है"</string>
     <string name="location_no_recent_accesses" msgid="6289916310397279890">"किसी भी ऐप्लिकेशन ने हाल ही में जगह की जानकारी का इस्तेमाल नहीं किया"</string>
@@ -1665,12 +1665,12 @@
     <string name="location_gps" msgid="688049341158297763">"GPS उपग्रह"</string>
     <string name="location_street_level" product="tablet" msgid="4459804798444296650">"आपकी जगह का पता लगाने के लिए, ऐप को आपके टैबलेट पर जीपीएस का इस्तेमाल करने दें"</string>
     <string name="location_street_level" product="default" msgid="7407688345675450051">"आपकी जगह का पता लगाने के लिए, ऐप को आपके फ़ोन पर जीपीएस का इस्तेमाल करने दें"</string>
-    <string name="assisted_gps" msgid="5411780261117055175">"सहायता प्राप्त GPS का उपयोग करें"</string>
+    <string name="assisted_gps" msgid="5411780261117055175">"सहायता पाए हुए GPS का उपयोग करें"</string>
     <string name="assisted_gps_enabled" msgid="2561022181775725369">"GPS की सहायता के लिए सर्वर का उपयोग करें (नेटवर्क उपयोग कम करने के लिए अनचेक करें)"</string>
     <string name="assisted_gps_disabled" msgid="6448758788217415937">"GPS की सहायता के लिए सर्वर का उपयोग करें (GPS निष्‍पादन बेहतर बनाने के लिए अनचेक करें)"</string>
     <string name="use_location_title" msgid="7724788634359496634">"जगह और Google सर्च"</string>
     <string name="use_location_summary" msgid="7396716606067400283">"सर्च नतीजों और अन्‍य सेवाओं में सुधार के लिए Google को आपकी जगह का इस्तेमाल करने दें"</string>
-    <string name="location_access_title" msgid="8587974819606800029">"मेरी जगह को एक्सेस करें"</string>
+    <string name="location_access_title" msgid="8587974819606800029">"मेरी जगह को ऐक्सेस करें"</string>
     <string name="location_access_summary" msgid="6919495149026354355">"जिन ऐप ने आपसे अनुमति मांगी है उन्हें अपने जगह की जानकारी का इस्तेमाल करने दें"</string>
     <string name="location_sources_heading" msgid="8526658357120282741">"स्‍थानीय स्रोत"</string>
     <string name="about_settings" product="tablet" msgid="4869626690708456341">"टैबलेट के बारे में"</string>
@@ -1688,7 +1688,7 @@
     <string name="terms_title" msgid="1804549588198223771">"नियम और शर्तें"</string>
     <string name="webview_license_title" msgid="8244960025549725051">"सिस्टम वेबव्यू लाइसेंस"</string>
     <string name="wallpaper_attributions" msgid="2941987966332943253">"वॉलपेपर"</string>
-    <string name="wallpaper_attributions_values" msgid="4461979853894606323">"उपग्रह इमेजरी प्रदाता:\n©2014 CNES / Astrium, DigitalGlobe, Bluesky"</string>
+    <string name="wallpaper_attributions_values" msgid="4461979853894606323">"उपग्रह इमेजरी प्रोवाइडर:\n©2014 CNES / Astrium, DigitalGlobe, Bluesky"</string>
     <string name="settings_manual_activity_title" msgid="7599911755054286789">"मैन्युअल"</string>
     <string name="settings_manual_activity_unavailable" msgid="4872502775018655343">"मैन्युअल को लोड करने में कोई समस्‍या है."</string>
     <string name="settings_license_activity_title" msgid="1099045216283677608">"तीसरे-पक्ष का लाइसेंस"</string>
@@ -1804,7 +1804,7 @@
       <item quantity="one">%d आइटम</item>
       <item quantity="other">%d आइटम</item>
     </plurals>
-    <string name="clear_uri_btn_text" msgid="3528618179883855727">"एक्सेस साफ़ करें"</string>
+    <string name="clear_uri_btn_text" msgid="3528618179883855727">"ऐक्सेस साफ़ करें"</string>
     <string name="controls_label" msgid="5609285071259457221">"नियंत्रण"</string>
     <string name="force_stop" msgid="9213858124674772386">"ज़बरदस्ती रोकें"</string>
     <string name="total_size_label" msgid="3929917501176594692">"सम्पूर्ण जगह"</string>
@@ -2372,10 +2372,10 @@
     <string name="usage_type_phone" product="tablet" msgid="4279605085824633501">"टैबलेट"</string>
     <string name="usage_type_phone" product="default" msgid="3901842461077646153">"फ़ोन"</string>
     <string name="usage_type_data_send" msgid="6339880867171142725">"मोबाइल पैकेट भेजे गए"</string>
-    <string name="usage_type_data_recv" msgid="2099757621601333453">"मोबाइल पैकेट प्राप्त हुए"</string>
+    <string name="usage_type_data_recv" msgid="2099757621601333453">"मोबाइल पैकेट मिले"</string>
     <string name="usage_type_radio_active" msgid="4123481281606636561">"मोबाइल रेडियो सक्रिय"</string>
     <string name="usage_type_data_wifi_send" msgid="4457097885099163617">"वाई-फ़ाई  पैकेट भेजे गए"</string>
-    <string name="usage_type_data_wifi_recv" msgid="6629526425662663926">"वाई-फ़ाई  पैकेट प्राप्त हुए"</string>
+    <string name="usage_type_data_wifi_recv" msgid="6629526425662663926">"वाई-फ़ाई  पैकेट मिले"</string>
     <string name="usage_type_audio" msgid="510459400845396879">"ऑडियो"</string>
     <string name="usage_type_video" msgid="8161701367674306793">"वीडियो"</string>
     <string name="usage_type_camera" msgid="2276450385733155264">"कैमरा"</string>
@@ -2536,7 +2536,7 @@
     <string name="credentials_reset_hint" msgid="3484350477764088169">"सभी सामग्री हटाएं?"</string>
     <string name="credentials_erased" msgid="7287088033523869085">"प्रमाणिकता मेमोरी मिटा दिया गया है."</string>
     <string name="credentials_not_erased" msgid="9137227570738627637">"प्रमाणिकता मेमोरी मिटाया नहीं जा सका."</string>
-    <string name="usage_access_title" msgid="7981321142726540574">"उपयोग के एक्सेस वाले ऐप्लिकेशन"</string>
+    <string name="usage_access_title" msgid="7981321142726540574">"उपयोग के ऐक्सेस वाले ऐप्लिकेशन"</string>
     <string name="emergency_tone_title" msgid="130211364025984428">"आपातकालीन डायलिंग सिग्नल"</string>
     <string name="emergency_tone_summary" msgid="8035940153401622240">"आपातकालीन कॉल करने के दौरान व्‍यवहार सेट करें"</string>
     <string name="privacy_settings_title" msgid="3573891462732375772">"बैकअप लें"</string>
@@ -2566,7 +2566,7 @@
     <string name="no_device_admins" msgid="4129231900385977460">"कोई भी डिवाइस व्यवस्थापक ऐप्लिकेशन उपलब्ध नहीं है"</string>
     <string name="personal_device_admin_title" msgid="759440849188565661">"व्यक्तिगत"</string>
     <string name="managed_device_admin_title" msgid="8021522755492551726">"दफ़्तर"</string>
-    <string name="sms_access_restriction_enabled" msgid="3006320256764718303">"मैसेज (एसएमएस) और कॉल लॉग एक्सेस प्रतिबंधित करें"</string>
+    <string name="sms_access_restriction_enabled" msgid="3006320256764718303">"मैसेज (एसएमएस) और कॉल लॉग ऐक्सेस प्रतिबंधित करें"</string>
     <string name="sms_access_restriction_enabled_summary" msgid="9011946580977780063">"सिर्फ़ डिफ़ॉल्ट फ़ोन और मैसेज-सेवा देने वाले ऐप्लिकेशन के पास मैसेज (एसएमएस) और कॉल लॉग की अनुमतियां होती हैं"</string>
     <string name="no_trust_agents" msgid="5757792915019113084">"कोई ट्रस्ट एजेंट उपलब्ध नहीं"</string>
     <string name="add_device_admin_msg" msgid="3573765823476931173">"इस डिवाइस एडमिन ऐप्लिकेशन को चालू करें?"</string>
@@ -2596,7 +2596,7 @@
     <string name="work_mode_off_summary" msgid="1688885392211178315">"ऐप्लिकेशन और सूचनाएं बंद हैं"</string>
     <string name="remove_managed_profile_label" msgid="4625542553784793536">"वर्क प्रोफ़ाइल निकालें"</string>
     <string name="background_data" msgid="8275750862371471171">"पृष्ठभूमि डेटा"</string>
-    <string name="background_data_summary" msgid="799640633948841990">"ऐप्लिकेशन किसी भी समय डेटा समन्वयित, भेज और प्राप्त कर सकते हैं"</string>
+    <string name="background_data_summary" msgid="799640633948841990">"ऐप्लिकेशन किसी भी समय डेटा सिंक करना, भेज, और पा सकते हैं"</string>
     <string name="background_data_dialog_title" msgid="8306650658158895976">"पृष्ठभू. डेटा अक्षम करें?"</string>
     <string name="background_data_dialog_message" msgid="8126774244911656527">"बैकग्राउंड डेटा को बंद करने से बैटरी ज़्यादा चलती है और डेटा कम खर्च होता है. हो सकता है कि कुछ ऐप अब भी बैकग्राउंड में डेटा इस्तेमाल कर रहे हों."</string>
     <string name="sync_automatically" msgid="5746117156896468099">"ऐप डेटा अपने आप सिंक करें"</string>
@@ -2717,7 +2717,7 @@
     <string name="data_usage_sweep_limit" msgid="6101105504557548269"><font size="18">"<xliff:g id="NUMBER">^1</xliff:g>"</font>" "<font size="9">"<xliff:g id="UNIT">^2</xliff:g>"</font>\n<font size="12">"सीमा"</font></string>
     <string name="data_usage_uninstalled_apps" msgid="4152786786140875769">"निकाले गए ऐप्लिकेशन"</string>
     <string name="data_usage_uninstalled_apps_users" msgid="61092462416505112">"ऐप्लिकेशन  और उपयोगकर्ताओं को निकालें"</string>
-    <string name="data_usage_received_sent" msgid="5532467049487334656">"<xliff:g id="RECEIVED">%1$s</xliff:g> प्राप्त, <xliff:g id="SENT">%2$s</xliff:g> भेजा"</string>
+    <string name="data_usage_received_sent" msgid="5532467049487334656">"<xliff:g id="RECEIVED">%1$s</xliff:g> पाया, <xliff:g id="SENT">%2$s</xliff:g> भेजा"</string>
     <string name="data_usage_total_during_range" msgid="7307562900020512747">"<xliff:g id="RANGE">%2$s</xliff:g>: करीब <xliff:g id="TOTAL">%1$s</xliff:g> का उपयोग किया गया."</string>
     <string name="data_usage_total_during_range_mobile" product="tablet" msgid="366118962920532455">"<xliff:g id="RANGE">%2$s</xliff:g>: आपके टैबलेट के द्वारा मापे जाने के अनुसार, करीब <xliff:g id="TOTAL">%1$s</xliff:g> का उपयोग किया गया. आपके कैरियर की डेटा गणना अलग हो सकती है."</string>
     <string name="data_usage_total_during_range_mobile" product="default" msgid="3504412681869806383">"<xliff:g id="RANGE">%2$s</xliff:g>: आपके फ़ोन के द्वारा मापे जाने के अनुसार, करीब <xliff:g id="TOTAL">%1$s</xliff:g> का उपयोग किया गया. आपके कैरियर की डेटा गणना अलग हो सकती है."</string>
@@ -2751,7 +2751,7 @@
     <string name="vpn_save_login" msgid="6215503139606646915">"खाते की जानकारी सेव करें"</string>
     <string name="vpn_not_used" msgid="2889520789132261454">"(उपयोग नहीं किया)"</string>
     <string name="vpn_no_ca_cert" msgid="486605757354800838">"(सर्वर सत्‍यापित न करें)"</string>
-    <string name="vpn_no_server_cert" msgid="679622228649855629">"(सर्वर से प्राप्त)"</string>
+    <string name="vpn_no_server_cert" msgid="679622228649855629">"(सर्वर से मिला)"</string>
     <string name="vpn_always_on_invalid_reason_type" msgid="165810330614905489">"यह वीपीएन प्रकार हमेशा कनेक्ट नहीं रह सकता"</string>
     <string name="vpn_always_on_invalid_reason_server" msgid="3864424127328210700">"हमेशा-चालू VPN सिर्फ़ संख्या वाले सर्वर पतों का समर्थन करता है"</string>
     <string name="vpn_always_on_invalid_reason_no_dns" msgid="3814114757059738225">"हमेशा-चालू VPN के लिए एक DNS सर्वर तय किया जाना चाहिए"</string>
@@ -2937,7 +2937,7 @@
     <string name="severe_threats_title" msgid="1987698359027211862">"गंभीर धमकियां"</string>
     <string name="severe_threats_summary" msgid="1148147804181873835">"जान और माल के गंभीर खतरों के लिए अलर्ट पाएं"</string>
     <string name="amber_alerts_title" msgid="8274651933750533271">"AMBER अलर्ट"</string>
-    <string name="amber_alerts_summary" msgid="7570943549000256418">"बाल अपहरणों के बारे में बुलेटिन प्राप्त करें"</string>
+    <string name="amber_alerts_summary" msgid="7570943549000256418">"बाल अपहरणों के बारे में बुलेटिन पाएं"</string>
     <string name="repeat_title" msgid="507090203366188931">"दोहराएं"</string>
     <string name="call_manager_enable_title" msgid="6345443572463650308">"कॉल प्रबंधक चालू करें"</string>
     <string name="call_manager_enable_summary" msgid="6998536841827752058">"इस सेवा को कॉल करने का आपका तरीका प्रबंधित करने दें."</string>
@@ -2946,7 +2946,7 @@
     <skip />
     <string name="cell_broadcast_settings" msgid="5750066270993255966">"इमरजेंसी के समय सूचनाएं"</string>
     <string name="network_operators_settings" msgid="7822337582828465633">"नेटवर्क ऑपरेटर"</string>
-    <string name="access_point_names" msgid="7992382237358800596">"एक्सेस पॉइंट का नाम"</string>
+    <string name="access_point_names" msgid="7992382237358800596">"ऐक्सेस पॉइंट का नाम"</string>
     <string name="enhanced_4g_lte_mode_title" msgid="1624079276378568594">"VoLTE"</string>
     <string name="enhanced_4g_lte_mode_title_advanced_calling" msgid="5155507161065290507">"बेहतर कॉलिंग"</string>
     <string name="enhanced_4g_lte_mode_title_4g_calling" msgid="1262729135500839141">"4G कॉलिंग"</string>
@@ -3017,7 +3017,7 @@
     <string name="sim_notification_summary" msgid="6421556454979313850">"सेट करने के लिए टैप करें"</string>
     <string name="sim_pref_divider" msgid="4967718397875240190">"इसके लिए पसंदीदा सिम"</string>
     <string name="sim_calls_ask_first_prefs_title" msgid="8209265235625420102">"हर बार पूछें"</string>
-    <string name="sim_selection_required_pref" msgid="8738591348923992419">"चयन आवश्यक है"</string>
+    <string name="sim_selection_required_pref" msgid="8738591348923992419">"चुनना ज़रूरी है"</string>
     <string name="sim_selection_channel_title" msgid="5671915549529226023">"सिम का चुनाव"</string>
     <string name="dashboard_title" msgid="3343056553551876215">"सेटिंग"</string>
     <plurals name="settings_suggestion_header_summary_hidden_items" formatted="false" msgid="4475734332610696843">
@@ -3300,7 +3300,7 @@
     <string name="hide_silent_icons_summary" msgid="2624346914488256888">"स्थिति बार में बिना आवाज़ की सूचनाओं के आइकॉन छिपाएं"</string>
     <string name="notification_badging_title" msgid="6311699476970264712">"सूचना बिंदुओं की अनुमति दें"</string>
     <string name="notification_bubbles_title" msgid="9196562435741861317">"बबल"</string>
-    <string name="notification_bubbles_summary" msgid="4624512775901949578">"फ़्लोटिंग शॉर्टकट का इस्तेमाल करके ऐप्लिकेशन की सामग्री कहीं से भी फटाफट एक्सेस करें"</string>
+    <string name="notification_bubbles_summary" msgid="4624512775901949578">"फ़्लोटिंग शॉर्टकट का इस्तेमाल करके ऐप्लिकेशन की सामग्री कहीं से भी फटाफट ऐक्सेस करें"</string>
     <string name="bubbles_feature_education" msgid="8979109826818881018">"कुछ सूचनाएं और दूसरी सामग्री स्क्रीन पर बबल के रूप में दिखाई दे सकती हैं. बबल खोलने के लिए इस पर टैप करें. इसे खारिज करने के लिए इसे खींचकर स्क्रीन पर नीचे की ओर ले जाएं."</string>
     <string name="bubbles_app_toggle_title" msgid="6401217027603326439">"बबल"</string>
     <string name="bubbles_app_toggle_summary" msgid="7707611139796553855">"<xliff:g id="APP_NAME">%1$s</xliff:g> को कुछ सूचनाएं बबल के तौर पर दिखाने की अनुमति दें"</string>
@@ -3353,7 +3353,7 @@
     <string name="notifications_sent_daily" msgid="6874886521964822824">"करीब <xliff:g id="NUMBER">%1$s</xliff:g> सूचनाएं हर दिन"</string>
     <string name="notifications_sent_weekly" msgid="5859675428990259432">"करीब <xliff:g id="NUMBER">%1$s</xliff:g> सूचनाएं हर हफ़्ते"</string>
     <string name="notifications_sent_never" msgid="237997329598144638">"कभी नहीं"</string>
-    <string name="manage_notification_access_title" msgid="5348743662189787547">"सूचना का एक्सेस"</string>
+    <string name="manage_notification_access_title" msgid="5348743662189787547">"सूचना का ऐक्सेस"</string>
     <string name="work_profile_notification_access_blocked_summary" msgid="8148871282484870576">"वर्क प्रोफ़ाइल सूचना की पहुंच रोक दी गई है"</string>
     <string name="manage_notification_access_summary_zero" msgid="236809421271593016">"ऐप सूचनाएं नहीं पढ़ सकते"</string>
     <plurals name="manage_notification_access_summary_nonzero" formatted="false" msgid="8496218948429646792">
@@ -3362,12 +3362,12 @@
     </plurals>
     <string name="notification_assistant_title" msgid="8216604031352764011">"सूचना सहायक"</string>
     <string name="no_notification_assistant" msgid="9140123568386413264">"किसी सहायक की सुविधा नहीं है"</string>
-    <string name="no_notification_listeners" msgid="1366386609506834717">"इंस्टॉल किए गए किसी भी ऐप ने सूचना के एक्सेस का अनुरोध नहीं किया है."</string>
-    <string name="notification_assistant_security_warning_title" msgid="4190584438086738496">"<xliff:g id="SERVICE">%1$s</xliff:g> के लिए सूचना एक्सेस करने की अनुमति दें?"</string>
+    <string name="no_notification_listeners" msgid="1366386609506834717">"इंस्टॉल किए गए किसी भी ऐप ने सूचना के ऐक्सेस का अनुरोध नहीं किया है."</string>
+    <string name="notification_assistant_security_warning_title" msgid="4190584438086738496">"<xliff:g id="SERVICE">%1$s</xliff:g> के लिए सूचना ऐक्सेस करने की अनुमति दें?"</string>
     <string name="notification_assistant_security_warning_summary" msgid="6924513399671031930">"<xliff:g id="NOTIFICATION_ASSISTANT_NAME">%1$s</xliff:g> आपकी हर सूचना पढ़ पाएगा. इसमें आपकी निजी जानकारी, जैसे कि संपर्कों के नाम और आपको आने वाले मैसेज में लिखी चीज़ें शामिल हैं. यह सूचनाओं में बदलाव करने, उन्हें खारिज करने या उनमें मौजूद कार्रवाई बटनों को ट्रिगर करने जैसे काम भी कर पाएगा. \n\nइससे यह ऐप्लिकेशन \'परेशान न करें\' सुविधा चालू या बंद कर पाएगा या इससे जुड़ी सेटिंग बदल पाएगा."</string>
-    <string name="notification_listener_security_warning_title" msgid="4902253246428777797">"<xliff:g id="SERVICE">%1$s</xliff:g> के लिए सूचना को एक्सेस करने की अनुमति दें?"</string>
+    <string name="notification_listener_security_warning_title" msgid="4902253246428777797">"<xliff:g id="SERVICE">%1$s</xliff:g> के लिए सूचना को ऐक्सेस करने की अनुमति दें?"</string>
     <string name="notification_listener_security_warning_summary" msgid="4454702907350100288">"<xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g> संपर्क नामों और आपको मिलने वाले मैसेज जैसी निजी जानकारी सहित, सभी सूचनाएं पढ़ सकता है. वह सूचना खारिज कर सकेगा और उनमें शामिल कार्रवाई बटनों को ट्रिगर भी कर सकेगा. \n\nइससे ऐप \'परेशान न करें\' सुविधा को चालू या बंद कर सकता है और उससे जुड़ी सेटिंग को भी बदल सकता है"</string>
-    <string name="notification_listener_disable_warning_summary" msgid="162165151519082978">"अगर आप <xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g> के लिए सूचना का एक्सेस बंद करते हैं, तो \'परेशान न करें\' सेवा का एक्सेस भी बंद हो सकता है."</string>
+    <string name="notification_listener_disable_warning_summary" msgid="162165151519082978">"अगर आप <xliff:g id="NOTIFICATION_LISTENER_NAME">%1$s</xliff:g> के लिए सूचना का ऐक्सेस बंद करते हैं, तो \'परेशान न करें\' सेवा का ऐक्सेस भी बंद हो सकता है."</string>
     <string name="notification_listener_disable_warning_confirm" msgid="7863495391671154188">"बंद करें"</string>
     <string name="notification_listener_disable_warning_cancel" msgid="6264631825225298458">"रद्द करें"</string>
     <string name="vr_listeners_title" msgid="511483902408792832">"VR सहायक सेवाएं"</string>
@@ -3383,7 +3383,7 @@
     <string name="picture_in_picture_app_detail_title" msgid="3916189052657425936">"पिक्चर में पिक्चर"</string>
     <string name="picture_in_picture_app_detail_switch" msgid="747422998967185418">"पिक्चर में पिक्चर बनाने की अनुमति दें"</string>
     <string name="picture_in_picture_app_detail_summary" msgid="918632751775525347">"ऐप के खुले होने पर या आपके उसे छोड़ देने के बाद, उस ऐप को पिक्चर में पिक्चर बनाने की अनुमति दें (उदाहरण के लिए, कोई वीडियो देखते रहने के लिए). यह विंडो उन दूसरे ऐप्लिकेशन के ऊपर दिखाई देती है जिनका आप उपयोग कर रहे हैं."</string>
-    <string name="manage_zen_access_title" msgid="3058206309728524196">"परेशान न करें सुविधा का एक्सेस"</string>
+    <string name="manage_zen_access_title" msgid="3058206309728524196">"परेशान न करें सुविधा का ऐक्सेस"</string>
     <string name="zen_access_detail_switch" msgid="8706332327904974500">"\'परेशान न करें\' सुविधा चालू करें"</string>
     <string name="zen_access_empty_text" msgid="7667538993781607731">"इंस्टॉल किए गए किसी भी ऐप ने परेशान ना करें सुविधा के इस्तेमाल का अनुरोध नहीं किया है"</string>
     <string name="loading_notification_apps" msgid="1978345231934072091">"ऐप्लिकेशन लोड हो रहे हैं..."</string>
@@ -3671,7 +3671,7 @@
     <string name="system_app" msgid="4111402206594443265">"(सिस्टम)"</string>
     <string name="system_default_app" msgid="1454719098589351197">"(सिस्टम डिफ़ॉल्ट)"</string>
     <string name="apps_storage" msgid="5658466038269046038">"ऐप्लिकेशन मेमोरी"</string>
-    <string name="usage_access" msgid="2023443456361489516">"इस्तेमाल का एक्‍सेस"</string>
+    <string name="usage_access" msgid="2023443456361489516">"इस्तेमाल का ऐक्‍सेस"</string>
     <string name="permit_usage_access" msgid="3321727608629752758">"\'डेटा खर्च\' देखने की इजाज़त दें"</string>
     <string name="app_usage_preference" msgid="5691545073101551727">"ऐप उपयोग की प्राथमिकताएं"</string>
     <string name="time_spent_in_app_pref_title" msgid="2803186835902798451">"स्क्रीन समय"</string>
@@ -3750,13 +3750,13 @@
     <string name="usb_summary_photo_transfers_power" msgid="4424106272137720464">"पीटीपी और पावर देना"</string>
     <string name="usb_summary_MIDI_power" msgid="7685597621357005180">"एमआईडीआई (मिडी) और पावर देना"</string>
     <string name="background_check_pref" msgid="664081406854758392">"बैकग्राउंड की जॉंच"</string>
-    <string name="background_check_title" msgid="4136736684290307970">"पूरे बैकग्राउंड की एक्सेस"</string>
+    <string name="background_check_title" msgid="4136736684290307970">"पूरे बैकग्राउंड की ऐक्सेस"</string>
     <string name="assist_access_context_title" msgid="2274614501747710439">"स्क्रीन के लेख का उपयोग करना"</string>
-    <string name="assist_access_context_summary" msgid="5867997494395842785">"सहायक ऐप्लिकेशन को स्क्रीन पर मौजूद सामग्री को लेख के रूप में एक्सेस करने दें"</string>
+    <string name="assist_access_context_summary" msgid="5867997494395842785">"सहायक ऐप्लिकेशन को स्क्रीन पर मौजूद सामग्री को लेख के रूप में ऐक्सेस करने दें"</string>
     <string name="assist_access_screenshot_title" msgid="1991014038776117688">"स्क्रीनशॉट का उपयोग करना"</string>
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"सहायक ऐप्लिकेशन को स्क्रीन की इमेज तक पहुंचने दें"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"स्क्रीन फ़्लैश करें"</string>
-    <string name="assist_flash_summary" msgid="6697095786317559129">"जब सहायक ऐप्लिकेशन स्क्रीन पर मौजूद लेख या स्क्रीनशॉट को एक्सेस करे तो स्क्रीन के किनारों पर रोशनी चमकाएं"</string>
+    <string name="assist_flash_summary" msgid="6697095786317559129">"जब सहायक ऐप्लिकेशन स्क्रीन पर मौजूद लेख या स्क्रीनशॉट को ऐक्सेस करे तो स्क्रीन के किनारों पर रोशनी चमकाएं"</string>
     <string name="assist_footer" msgid="7030121180457472165">"आप जो स्क्रीन देख रहे हैं, उसकी जानकारी के आधार पर सहायक ऐप्लिकेशन आपकी मदद कर सकते हैं. कुछ ऐप्लिकेशन पर, आपकी पूरी मदद करने के लिए लॉन्चर और बोलकर फ़ोन को निर्देश देना, ये दोनों सेवाएं काम करती हैं."</string>
     <string name="average_memory_use" msgid="5333366040118953945">"औसत मेमोरी उपयोग"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"अधिकतम मेमोरी उपयोग"</string>
@@ -3781,7 +3781,7 @@
     <string name="no_data_usage" msgid="903383745620135746">"किसी डेटा का उपयोग नहीं किया गया"</string>
     <string name="zen_access_warning_dialog_title" msgid="7704910289810337055">"<xliff:g id="APP">%1$s</xliff:g> के लिए परेशान न करें की ऐक्सेस की अनुमति दें?"</string>
     <string name="zen_access_warning_dialog_summary" msgid="2717755746850874577">"यह ऐप, परेशान न करें को चालू/बंद कर सकेगा और संबंधित सेटिंग में बदलाव कर सकेगा."</string>
-    <string name="zen_access_disabled_package_warning" msgid="7086237569177576966">"इसे चालू रखें क्योंकि सूचना का एक्सेस चालू है"</string>
+    <string name="zen_access_disabled_package_warning" msgid="7086237569177576966">"इसे चालू रखें क्योंकि सूचना का ऐक्सेस चालू है"</string>
     <string name="zen_access_revoke_warning_dialog_title" msgid="6850994585577513299">"<xliff:g id="APP">%1$s</xliff:g> के लिए परेशान न करें की पहुंच रद्द करें?"</string>
     <string name="zen_access_revoke_warning_dialog_summary" msgid="3487422193181311403">"इस ऐप के द्वारा, परेशान न करें के लिए बनाए गए सभी नियम निकाल दिए जाएंगे."</string>
     <string name="ignore_optimizations_on" msgid="4373971641328943551">"ऑप्‍टिमाइज़ ना करें"</string>
@@ -3790,7 +3790,7 @@
     <string name="ignore_optimizations_off_desc" msgid="5598702251817814289">"बेहतर बैटरी जीवनकाल के लिए सुझाया गया"</string>
     <string name="ignore_optimizations_title" msgid="7924345545276166305">"<xliff:g id="APP">%s</xliff:g> को बैटरी ऑप्टिमाइज़ेशन को अनदेखा करने की अनुमति दें?"</string>
     <string name="app_list_preference_none" msgid="7100409177446935028">"कोई नहीं"</string>
-    <string name="work_profile_usage_access_warning" msgid="403208064382097510">"इस ऐप के इस्तेमाल का एक्सेस बंद करने के बाद भी आपका एडमिन आपकी वर्क प्रोफ़ाइल के ऐप का डेटा खर्च ट्रैक कर सकते हैं"</string>
+    <string name="work_profile_usage_access_warning" msgid="403208064382097510">"इस ऐप के इस्तेमाल का ऐक्सेस बंद करने के बाद भी आपका एडमिन आपकी वर्क प्रोफ़ाइल के ऐप का डेटा खर्च ट्रैक कर सकते हैं"</string>
     <string name="accessibility_lock_screen_progress" msgid="8242917828598820049">"<xliff:g id="COUNT_1">%2$d</xliff:g> में से <xliff:g id="COUNT_0">%1$d</xliff:g> वर्णों का उपयोग किया गया"</string>
     <string name="draw_overlay" msgid="2878665072530660668">"दूसरे ऐप के ऊपर दिखाएं"</string>
     <string name="system_alert_window_settings" msgid="3024330223417646567">"दूसरे ऐप के ऊपर दिखाएं"</string>
@@ -3809,7 +3809,7 @@
     <string name="write_settings" msgid="9009040811145552108">"सिस्‍टम सेटिंग बदलें"</string>
     <string name="keywords_write_settings" msgid="3450405263390246293">"सिस्‍टम सेटिंग में बदलाव करें लिखें"</string>
     <string name="write_settings_summary" msgid="4650251358459404247">"<xliff:g id="COUNT_1">%2$d</xliff:g> में से <xliff:g id="COUNT_0">%1$d</xliff:g> ऐप्लिकेशन को सिस्टम सेटिंग बदलने की अनुमति दी गई"</string>
-    <string name="financial_apps_sms_access_title" msgid="3422655018008259655">"वित्तीय ऐप्लिकेशन मैसेज (एसएमएस) एक्सेस"</string>
+    <string name="financial_apps_sms_access_title" msgid="3422655018008259655">"वित्तीय ऐप्लिकेशन मैसेज (एसएमएस) ऐक्सेस"</string>
     <string name="filter_install_sources_apps" msgid="4519839764020866701">"अन्य ऐप्लिकेशन इंस्टॉल कर सकते हैं"</string>
     <string name="filter_write_settings_apps" msgid="6864144615530081121">"सिस्टम सेटिंग को बदल सकते हैं"</string>
     <string name="write_settings_title" msgid="5852614614193830632">"सिस्टम सेटिंग को बदल सकते हैं"</string>
@@ -4045,7 +4045,7 @@
     <string name="display_cutout_emulation_keywords" msgid="6795671536772871439">"डिसप्ले कटआउट, नॉच"</string>
     <string name="overlay_option_device_default" msgid="165508753381657697">"डिवाइस की डिफ़ॉल्ट सेटिंग"</string>
     <string name="overlay_toast_failed_to_apply" msgid="5692251825129250040">"ओवरले लागू नहीं किया जा सका"</string>
-    <string name="special_access" msgid="1453926335914696206">"ऐप्लिकेशन के लिए खास एक्सेस"</string>
+    <string name="special_access" msgid="1453926335914696206">"ऐप्लिकेशन के लिए खास ऐक्सेस"</string>
     <plurals name="special_access_summary" formatted="false" msgid="5182092345063909346">
       <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> ऐप्लिकेशन बिना पाबंदी के डेटा का उपयोग कर सकते हैं</item>
       <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> ऐप्लिकेशन बिना पाबंदी के डेटा का उपयोग कर सकते हैं</item>
@@ -4062,7 +4062,7 @@
     <string name="developer_smallest_width" msgid="2603134476228805075">"सबसे कम चौड़ाई की स्क्रीन सेट करें"</string>
     <string name="premium_sms_none" msgid="940723020871007898">"इंस्टॉल किए गए किसी भी ऐप ने प्रीमियम मैसेज (एसएमएस) की पहुंच का अनुरोध नहीं किया है"</string>
     <string name="premium_sms_warning" msgid="7604011651486294515">"प्रीमियम मैसेज (एसएमएस) के लिए आपको पैसे देने पड़ सकते हैं और इससे आपकी मोबाइल और इंटरनेट सेवा देने वाली कंपनी का बिल बढ़ जाएगा. अगर आप किसी ऐप के लिए अनुमति देते हैं, तो आप उस ऐप का इस्तेमाल करके प्रीमियम मैसेज (एसएमएस) भेज सकते हैं."</string>
-    <string name="premium_sms_access" msgid="4550027460595822851">"प्रीमियम मैसेज (एसएमएस) का एक्सेस"</string>
+    <string name="premium_sms_access" msgid="4550027460595822851">"प्रीमियम मैसेज (एसएमएस) का ऐक्सेस"</string>
     <string name="bluetooth_disabled" msgid="6588102116819268238">"बंद"</string>
     <string name="bluetooth_connected_summary" msgid="439920840053965217">"<xliff:g id="ID_1">%1$s</xliff:g> से कनेक्‍ट है"</string>
     <string name="bluetooth_connected_multiple_devices_summary" msgid="596205630653123250">"कई डिवाइस से कनेक्ट है"</string>
@@ -4079,7 +4079,7 @@
     <string name="managed_profile_contact_search_summary" msgid="7278267480246726951">"कॉल करने वालों (कॉलर) और संपर्कों की पहचान करने के लिए अपने संगठन को संपर्क खोजने दें"</string>
     <string name="cross_profile_calendar_title" msgid="2351605904015067145">"क्रॉस-प्रोफ़ाइल कैलेंडर"</string>
     <string name="cross_profile_calendar_summary" msgid="3196258680438896098">"निजी कैलेंडर पर काम से जुड़े इवेंट दिखाएं"</string>
-    <string name="cross_profile_calendar_restricted_summary" msgid="6892589892357409107">"आपका संगठन निजी ऐप्लिकेशन को आपके काम से जुड़े कैलेंडर का एक्सेस करने की अनुमति नहीं देता"</string>
+    <string name="cross_profile_calendar_restricted_summary" msgid="6892589892357409107">"आपका संगठन निजी ऐप्लिकेशन को आपके काम से जुड़े कैलेंडर का ऐक्सेस करने की अनुमति नहीं देता"</string>
     <plurals name="hours" formatted="false" msgid="135936773984899873">
       <item quantity="one"><xliff:g id="NUMBER">%s</xliff:g> घंटे</item>
       <item quantity="other"><xliff:g id="NUMBER">%s</xliff:g> घंटे</item>
@@ -4246,7 +4246,7 @@
     <string name="webview_disabled_for_user" msgid="8057805373224993504">"(उपयोगकर्ता <xliff:g id="USER">%s</xliff:g> के लिए बंद है)"</string>
     <string name="autofill_app" msgid="3990765434980280073">"अपने आप भरने की सेवा"</string>
     <string name="autofill_keywords" msgid="7717726766232862218">"ऑटो, भरना, ऑटोमैटिक भरना"</string>
-    <string name="autofill_confirmation_message" msgid="1385894598730361304">"&lt;b&gt;पक्का करें कि आप इस ऐप्लिकेशन पर भरोसा करते हैं&lt;/b&gt; &lt;br/&gt; &lt;br/&gt; &lt;xliff:g id=app_name example=Google ऑटोमैटिक भरना&gt;%1$s&lt;/xliff:g&gt; ऑटोमैटिक भरी जा सकने वाली चीज़ें निर्धारित करने के लिए आपकी स्क्रीन पर मौजूद चीज़ों का उपयोग करता है."</string>
+    <string name="autofill_confirmation_message" msgid="1385894598730361304">"&lt;b&gt;पक्का करें कि आप इस ऐप्लिकेशन पर भरोसा करते हैं&lt;/b&gt; &lt;br/&gt; &lt;br/&gt; &lt;xliff:g id=app_name example=Google ऑटोमैटिक भरना&gt;%1$s&lt;/xliff:g&gt; ऑटोमैटिक भरी जा सकने वाली चीज़ें तय करने के लिए आपकी स्क्रीन पर मौजूद चीज़ों का इस्तेमाल करता है."</string>
     <string name="debug_autofill_category" msgid="6262526615416295645">"अपने आप भरने की सुविधा (ऑटो फ़िल)"</string>
     <string name="autofill_logging_level_title" msgid="2577340324541102626">"लॉग की गई जानकारी का लेवल"</string>
     <string name="autofill_max_partitions" msgid="125269645910590057">"हर सत्र में ज़्यादा से ज़्यादा इतने अनुरोध शामिल कर सकते हैं"</string>
@@ -4376,7 +4376,7 @@
     <string name="carrier_settings_title" msgid="7989949967020825268">"मोबाइल और इंटरनेट सेवा देने वाली कंपनी से जुड़ी सेटिंग"</string>
     <string name="cdma_lte_data_service" msgid="8996857851150069339">"डेटा सेवा सेट अप करें"</string>
     <string name="mobile_data_settings_title" msgid="3439626666647519547">"मोबाइल डेटा"</string>
-    <string name="mobile_data_settings_summary" msgid="6492798151325636912">"मोबाइल नेटवर्क का इस्तेमाल करके डेटा एक्सेस करें"</string>
+    <string name="mobile_data_settings_summary" msgid="6492798151325636912">"मोबाइल नेटवर्क का इस्तेमाल करके डेटा ऐक्सेस करें"</string>
     <string name="mobile_data_settings_summary_auto_switch" msgid="3665863214578471494">"नेटवर्क होने पर फ़ोन अपने आप इस कैरियर पर आ जाएगा"</string>
     <string name="calls_preference" msgid="2076353032705811243">"कॉल की प्राथमिकता"</string>
     <string name="sms_preference" msgid="8449270011976880">"मैसेज (एसएमएस) की प्राथमिकता"</string>
@@ -4434,7 +4434,7 @@
     <string name="roaming_check_price_warning" msgid="5883499714594419439">"कीमतों की जानकारी के लिए आपको नेटवर्क सेवा देने वाली कंपनी से संपर्क करें."</string>
     <string name="mobile_data_usage_title" msgid="2376358672434990037">"ऐप्लिकेशन का डेटा इस्तेमाल"</string>
     <string name="mobile_network_mode_error" msgid="6818434186286086554">"गलत नेटवर्क मोड <xliff:g id="NETWORKMODEID">%1$d</xliff:g>. अनदेखा करें."</string>
-    <string name="mobile_network_apn_title" msgid="5628635067747404382">"एक्सेस पॉइंट नाम"</string>
+    <string name="mobile_network_apn_title" msgid="5628635067747404382">"ऐक्सेस पॉइंट नाम"</string>
     <string name="manual_mode_disallowed_summary" msgid="799800630000340665">"<xliff:g id="CARRIER">%1$s</xliff:g> से कनेक्ट होने पर उपलब्ध नहीं है"</string>
     <string name="emergency_info_contextual_card_summary" msgid="5541444321969803486">"चिकित्सा से जुड़ी जानकारी, आपातकालीन संपर्क"</string>
     <string name="see_more" msgid="7463940160389802632">"ज़्यादा देखें"</string>
@@ -4482,8 +4482,8 @@
     </plurals>
     <string name="accessibility_usage_title" msgid="3920601240120963611">"सुलभता सुविधाओं का इस्तेमाल"</string>
     <plurals name="accessibility_usage_summary" formatted="false" msgid="2604152087205501644">
-      <item quantity="one"><xliff:g id="SERVICE_COUNT">%1$d</xliff:g> ऐप्लिकेशन के पास आपके डिवाइस का पूरा एक्सेस है</item>
-      <item quantity="other"><xliff:g id="SERVICE_COUNT">%1$d</xliff:g> ऐप्लिकेशन के पास आपके डिवाइस का पूरा एक्सेस है</item>
+      <item quantity="one"><xliff:g id="SERVICE_COUNT">%1$d</xliff:g> ऐप्लिकेशन के पास आपके डिवाइस का पूरा ऐक्सेस है</item>
+      <item quantity="other"><xliff:g id="SERVICE_COUNT">%1$d</xliff:g> ऐप्लिकेशन के पास आपके डिवाइस का पूरा ऐक्सेस है</item>
     </plurals>
     <string name="manage_app_notification" msgid="9072118910762792295">"<xliff:g id="APP_NAME">%1$s</xliff:g> की सूचनाएं प्रबंधित करें"</string>
     <string name="no_suggested_app" msgid="509257628685025383">"कोई भी सुझाया गया ऐप्लिकेशन नहीं है"</string>
@@ -4500,7 +4500,7 @@
     <string name="wfc_disclaimer_disagree_text" msgid="908289420390194127">"नहीं, धन्यवाद"</string>
     <string name="wfc_disclaimer_location_title_text" msgid="5696194250838686019">"जगह"</string>
     <string name="wfc_disclaimer_location_desc_text" msgid="3879710366995108723">"इस सेवा को उपलब्ध कराने के लिए मोबाइल नेटवर्क की सुविधा उपलब्ध कराने वाली कंपनी आपकी जगह की जानकारी इकट्ठा कर सकती है.\n\nकृपया कंपनी की निजता नीति को ध्यान से पढ़ें."</string>
-    <string name="forget_passpoint_dialog_message" msgid="3337626966248310367">"आप बचे हुए समय या डेटा का एक्सेस खो सकते हैं. हटाने से पहले अपनी सेवा देने वाली कंपनी से पुष्टि कर लें."</string>
+    <string name="forget_passpoint_dialog_message" msgid="3337626966248310367">"आप बचे हुए समय या डेटा का ऐक्सेस खो सकते हैं. हटाने से पहले अपनी सेवा देने वाली कंपनी से पुष्टि कर लें."</string>
     <string name="keywords_content_capture" msgid="5401877823529928976">"सामग्री कैप्चर, स्मार्ट सुझाव"</string>
     <string name="content_capture" msgid="1709538093513983279">"स्मार्ट सुझाव"</string>
     <string name="content_capture_summary" msgid="2675659095218714681">"Android को आपकी स्क्रीन पर दिखाई दे रही जानकारी, वीडियो या ऑडियो में सुनाई दे रही सामग्री सेव करने की अनुमति दें. Android आपके डिवाइस की गतिविधि के मुताबिक काम आने वाले सुझाव देता है."</string>
diff --git a/tests/CarDeveloperOptions/res/values-hr-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-hr-nokeys/strings.xml
new file mode 100644
index 0000000..aae8d26
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hr-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Upravljanje aplikacijama"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hr/arrays.xml b/tests/CarDeveloperOptions/res/values-hr/arrays.xml
new file mode 100644
index 0000000..24c64cf
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hr/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Azija"</item>
+    <item msgid="6683489385344409742">"Australija"</item>
+    <item msgid="5194868215515664953">"Pacifički"</item>
+    <item msgid="7044520255415007865">"Sve"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekunda"</item>
+    <item msgid="772029947136115322">"30 sekundi"</item>
+    <item msgid="8743663928349474087">"1 minuta"</item>
+    <item msgid="1506508631223164814">"2 minute"</item>
+    <item msgid="8664703938127907662">"5 minuta"</item>
+    <item msgid="5827960506924849753">"10 minuta"</item>
+    <item msgid="6677424950124253938">"30 minuta"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Malen"</item>
+    <item msgid="591935967183159581">"Zadano"</item>
+    <item msgid="1714184661981538355">"Velik"</item>
+    <item msgid="6195563047686707484">"Najveće"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skeniranje..."</item>
+    <item msgid="8058143476674427024">"Povezivanje na mrežu <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Autentifikacija s mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Dohvaćanje IP adrese s mreže <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Povezano s mrežom <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Obustavljeno"</item>
+    <item msgid="4133290864821295785">"Isključivanje iz mreže <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Niste povezani"</item>
+    <item msgid="2847316776634969068">"Neuspješno"</item>
+    <item msgid="4390990424746035383">"Blokirano"</item>
+    <item msgid="3618248791367063949">"Privremeno izbjegavanje loše veze"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Pritisnuti gumb"</item>
+    <item msgid="7401896200768713930">"PIN s paralelnog uređaja"</item>
+    <item msgid="4526848028011846710">"PIN s ovog uređaja"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Povezano"</item>
+    <item msgid="983792611851499732">"Pozvan"</item>
+    <item msgid="5438273405428201793">"Neuspješno"</item>
+    <item msgid="4646663015449312554">"Dostupno"</item>
+    <item msgid="3230556734162006146">"Izvan dometa"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minute"</item>
+    <item msgid="2759776603549270587">"5 minuta"</item>
+    <item msgid="167772676068860015">"Jedan sat"</item>
+    <item msgid="5985477119043628504">"Nikada ne istječe"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Posljednjih 30 dana"</item>
+    <item msgid="3211287705232736964">"Postavi ciklus uporabe..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Vrijeme upotrebe"</item>
+    <item msgid="2784401352592276015">"Posljednja upotreba"</item>
+    <item msgid="249854287216326349">"Naziv aplikacije"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ništa"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ništa"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statično"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ništa"</item>
+    <item msgid="1464741437353223198">"Priručnik"</item>
+    <item msgid="5793600062487886090">"Autom. konfig. proxyja"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ništa"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ili CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interno pohranjivanje na uređaj"</item>
+    <item msgid="3186681694079967527">"Prijenosna SD kartica"</item>
+    <item msgid="6902033473986647035">"Neka sustav odluči"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokacija"</item>
+    <item msgid="6842381562497597649">"Osobno"</item>
+    <item msgid="3966700236695683444">"Slanje poruka"</item>
+    <item msgid="8563996233342430477">"Mediji"</item>
+    <item msgid="5323851085993963783">"Uređaj"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"približna lokacija"</item>
+    <item msgid="1830619568689922920">"precizna lokacija"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibriranje"</item>
+    <item msgid="8632513128515114092">"čitanje kontakata"</item>
+    <item msgid="3741042113569620272">"izmjena kontakata"</item>
+    <item msgid="4204420969709009931">"čitanje zapisnika poziva"</item>
+    <item msgid="2260380357119423209">"izmjena zapisnika poziva"</item>
+    <item msgid="6550710385014530934">"čitanje kalendara"</item>
+    <item msgid="3575906174264853951">"izmjena kalendara"</item>
+    <item msgid="4319843242568057174">"skeniranje Wi-Fija"</item>
+    <item msgid="2981791890467303819">"obavijest"</item>
+    <item msgid="6617825156152476692">"skeniranje ćelije"</item>
+    <item msgid="8865260890611559753">"poziv na telefon"</item>
+    <item msgid="3254999273961542982">"čitanje SMS-a"</item>
+    <item msgid="7711446453028825171">"pisanje SMS-a"</item>
+    <item msgid="6123238544099198034">"primanje SMS-a"</item>
+    <item msgid="838342167431596036">"primanje SMS-a u nuždi"</item>
+    <item msgid="8554432731560956686">"primanje MMS-a"</item>
+    <item msgid="7464863464299515059">"primanje WAP obavijesti"</item>
+    <item msgid="310463075729606765">"slanje SMS-a"</item>
+    <item msgid="7338021933527689514">"čitanje ICC SMS-a"</item>
+    <item msgid="6130369335466613036">"pisanje ICC SMS-a"</item>
+    <item msgid="6536865581421670942">"izmjena postavki"</item>
+    <item msgid="4547203129183558973">"povlačenje na vrh"</item>
+    <item msgid="9080347512916542840">"pristup obavijestima"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"snimanje zvuka"</item>
+    <item msgid="9182794235292595296">"reprodukcija audiozapisa"</item>
+    <item msgid="8760743229597702019">"čitaj međuspremnik"</item>
+    <item msgid="2266923698240538544">"izmijeni međuspremnik"</item>
+    <item msgid="1801619438618539275">"medijski gumbi"</item>
+    <item msgid="31588119965784465">"audiofokus"</item>
+    <item msgid="7565226799008076833">"glavna glasnoća"</item>
+    <item msgid="5420704980305018295">"glasnoća glasa"</item>
+    <item msgid="5797363115508970204">"glasnoća zvona"</item>
+    <item msgid="8233154098550715999">"glasnoća medija"</item>
+    <item msgid="5196715605078153950">"glasnoća alarma"</item>
+    <item msgid="394030698764284577">"glasnoća obavijesti"</item>
+    <item msgid="8952898972491680178">"glasnoća Bluetootha"</item>
+    <item msgid="8506227454543690851">"zadrži u aktivnom stanju"</item>
+    <item msgid="1108160036049727420">"praćenje lokacije"</item>
+    <item msgid="1496205959751719491">"praćenje lokacije s visokom potrošnjom energije"</item>
+    <item msgid="3776296279910987380">"dohvaćanje statistike o upotrebi"</item>
+    <item msgid="8827100324471975602">"isključivanje/uključivanje mikrofona"</item>
+    <item msgid="6880736730520126864">"prikaz poruke"</item>
+    <item msgid="4933375960222609935">"projiciranje medija"</item>
+    <item msgid="8357907018938895462">"aktiviranje VPN-a"</item>
+    <item msgid="8143812849911310973">"pozadinska slika za pisanje"</item>
+    <item msgid="6266277260961066535">"pomoćna struktura"</item>
+    <item msgid="7715498149883482300">"pomoćna snimka zaslona"</item>
+    <item msgid="4046679376726313293">"čitanje stanja telefona"</item>
+    <item msgid="6329507266039719587">"dodavanje govorne pošte"</item>
+    <item msgid="7692440726415391408">"upotreba SIP-a"</item>
+    <item msgid="8572453398128326267">"obrada odlaznog poziva"</item>
+    <item msgid="7775674394089376306">"otisak prsta"</item>
+    <item msgid="3182815133441738779">"biometrijski senzori"</item>
+    <item msgid="2793100005496829513">"čitanje poruka mobilne mreže"</item>
+    <item msgid="2633626056029384366">"lažiranje lokacije"</item>
+    <item msgid="8356842191824684631">"čitanje pohrane"</item>
+    <item msgid="5671906070163291500">"pisanje u pohranu"</item>
+    <item msgid="2791955098549340418">"uključivanje zaslona"</item>
+    <item msgid="5599435119609178367">"dohvaćanje računa"</item>
+    <item msgid="1165623660533024666">"izvođenje u pozadini"</item>
+    <item msgid="6423861043647911030">"glasnoća pristupačnosti"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kratko"</item>
+    <item msgid="4816511817309094890">"Srednja"</item>
+    <item msgid="8305084671259331134">"Dugo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Zadano"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif zgusnuti"</item>
+    <item msgid="6529379119163117545">"Fiksna širina bez serifa"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Fiksna širina sa serifima"</item>
+    <item msgid="4448481989108928248">"Jednostavno"</item>
+    <item msgid="4627069151979553527">"Kurziv"</item>
+    <item msgid="6896773537705206194">"Mala slova"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Zadano"</item>
+    <item msgid="6488643537808152001">"Ništa"</item>
+    <item msgid="552332815156010137">"Obris"</item>
+    <item msgid="7187891159463789272">"Sjena"</item>
+    <item msgid="8019330250538856521">"Povišeno"</item>
+    <item msgid="8987385315647049787">"Utisnuto"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Uporaba zadanih postavki aplikacije"</item>
+    <item msgid="8611890312638868524">"Bijelo na crnom"</item>
+    <item msgid="5891360837786277638">"Crno na bijelom"</item>
+    <item msgid="2798457065945456853">"Žuto na crnom"</item>
+    <item msgid="5799049811524553967">"Žuto na plavom"</item>
+    <item msgid="3673930830658169860">"Prilagođeno"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN s unaprijed dijeljenim ključevima"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN s certifikatima"</item>
+    <item msgid="312397853907741968">"IPSec VPN s unaprijed dijeljenim ključevima i Xauth autentifikacijom"</item>
+    <item msgid="3319427315593649917">"IPSec VPN s certifikatima i Xauth autentifikacijom"</item>
+    <item msgid="8258927774145391041">"IPSec VPN s certifikatima i hibridnom autentifikacijom"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ništa"</item>
+    <item msgid="1157046369795346308">"Priručnik"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Niste povezani"</item>
+    <item msgid="8754480102834556765">"Pokreće se..."</item>
+    <item msgid="3351334355574270250">"Povezivanje…"</item>
+    <item msgid="8303882153995748352">"Povezano"</item>
+    <item msgid="9135049670787351881">"Privremeni prekid"</item>
+    <item msgid="2124868417182583926">"Neuspješno"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Postavi pitanje"</item>
+    <item msgid="7718817231348607934">"Ne dopuštaj nikada"</item>
+    <item msgid="8184570120217958741">"Dopusti uvijek"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Postojana"</item>
+    <item msgid="167418068739176448">"Glavna aktivnost"</item>
+    <item msgid="4760813290195199773">"Važna (u prvom planu)"</item>
+    <item msgid="2328684826817647595">"Važna (u pozadini)"</item>
+    <item msgid="7746406490652867365">"Sigurnosna kopija"</item>
+    <item msgid="5597404364389196754">"Teška"</item>
+    <item msgid="1290888779300174556">"Usluga (izvodi se)"</item>
+    <item msgid="7241098542073939046">"Usluga (ponovno pokretanje)"</item>
+    <item msgid="6610439017684111046">"Prijamnik"</item>
+    <item msgid="7367606086319921117">"Kuća"</item>
+    <item msgid="3344660712396741826">"Posljednja aktivnost"</item>
+    <item msgid="5006559348883303865">"Predmemorija (aktivnost)"</item>
+    <item msgid="8633480732468137525">"Predmemorija (klijent aktivnosti)"</item>
+    <item msgid="6248998242443333892">"Predmemorija (prazna)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Tirkiznoplava"</item>
+    <item msgid="3228505970082457852">"Plava"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Ljubičasta"</item>
+    <item msgid="5932337981182999919">"Ružičasta"</item>
+    <item msgid="5642914536624000094">"Crvena"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Starije od 30 dana"</item>
+    <item msgid="8699273238891265610">"Starije od 60 dana"</item>
+    <item msgid="8346279419423837266">"Starije od 90 dana"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Automatsko otkrivanje"</item>
+    <item msgid="773943026484148895">"Mreža s ograničenim prometom"</item>
+    <item msgid="1008268820118852416">"Mreža bez ograničenja prometa"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Koristi nasumično određen MAC (zadano)"</item>
+    <item msgid="214234417308375326">"Upotrijebite MAC uređaja"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ne"</item>
+    <item msgid="1930581185557754880">"Da"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tamno"</item>
+    <item msgid="5079453644557603349">"Svijetlo"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Isključeno"</item>
+    <item msgid="4072198137051566919">"Otklanjanje pogrešaka"</item>
+    <item msgid="2473005316958868509">"Opširno"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Samo matično"</item>
+    <item msgid="1161026694891024702">"Automatski"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Preporučeno: GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Samo GSM"</item>
+    <item msgid="8579197487913425819">"Samo WCDMA"</item>
+    <item msgid="8465243227505412498">"Automatski GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automatski CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA bez EvDo-a"</item>
+    <item msgid="7278975240951052041">"Samo EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalno"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Samo TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalno"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hr/strings.xml b/tests/CarDeveloperOptions/res/values-hr/strings.xml
index 9709c6f..63c6f93 100644
--- a/tests/CarDeveloperOptions/res/values-hr/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-hr/strings.xml
@@ -3950,7 +3950,7 @@
     <string name="condition_battery_summary" msgid="1236078243905690620">"Značajke su ograničene"</string>
     <string name="condition_cellular_title" msgid="6605277435894307935">"Mobilni su podaci isključeni"</string>
     <string name="condition_cellular_summary" msgid="3607459310548343777">"Internet je dostupan samo putem Wi‑Fija"</string>
-    <string name="condition_bg_data_title" msgid="184684435298857712">"Ušteda podataka"</string>
+    <string name="condition_bg_data_title" msgid="184684435298857712">"Štednja podat. prometa"</string>
     <string name="condition_bg_data_summary" msgid="5194942860807136682">"Značajke su ograničene"</string>
     <string name="condition_work_title" msgid="9046811302347490371">"Radni je profil isključen"</string>
     <string name="condition_work_summary" msgid="5586134491975748565">"Za aplikacije i obavijesti"</string>
@@ -4170,13 +4170,13 @@
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"Priručnik"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"Oslobodi prostor odmah"</string>
     <string name="gesture_preference_title" msgid="583646591518373785">"Pokreti"</string>
-    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Brzi pokreti za upravljanje telefonom"</string>
-    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Brzi pokreti za upravljanje tabletom"</string>
-    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Brzi pokreti za upravljanje uređajem"</string>
+    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Brze kretnje za upravljanje telefonom"</string>
+    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Brze kretnje za upravljanje tabletom"</string>
+    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Brze kretnje za upravljanje uređajem"</string>
     <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Otvaranje fotoaparata"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"Da biste brzo otvorili fotoaparat, dvaput pritisnite tipku za uključivanje/isključivanje. Funkcionira na svim zaslonima."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Brzo otvaranje fotoaparata"</string>
-    <string name="double_twist_for_camera_mode_title" msgid="2606032140297556018">"Prebacivanje fotoaparata"</string>
+    <string name="double_twist_for_camera_mode_title" msgid="2606032140297556018">"Promjena fotoaparata"</string>
     <string name="double_twist_for_camera_mode_summary" msgid="8979914206876018137"></string>
     <string name="double_twist_for_camera_suggestion_title" msgid="5932411386316771246">"Brže snimanje selfieja"</string>
     <string name="swipe_up_to_switch_apps_summary" msgid="4644068184114154787">"Da biste promijenili aplikaciju, prijeđite prstom prema gore po gumbu početnog zaslona. Ponovo prijeđite prstom prema gore da biste vidjeli sve aplikacije. Funkcionira na svim zaslonima. Više nećete imati gumb Pregled u donjem desnom kutu zaslona."</string>
diff --git a/tests/CarDeveloperOptions/res/values-hu-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-hu-nokeys/strings.xml
new file mode 100644
index 0000000..a10767c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hu-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Alkalmazások kezelése"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hu/arrays.xml b/tests/CarDeveloperOptions/res/values-hu/arrays.xml
new file mode 100644
index 0000000..e54321f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hu/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Európa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Ázsia"</item>
+    <item msgid="6683489385344409742">"Ausztrália"</item>
+    <item msgid="5194868215515664953">"Csendes-óceán"</item>
+    <item msgid="7044520255415007865">"Összes"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 másodperc"</item>
+    <item msgid="772029947136115322">"30 másodperc"</item>
+    <item msgid="8743663928349474087">"1 perc"</item>
+    <item msgid="1506508631223164814">"2 perc"</item>
+    <item msgid="8664703938127907662">"5 perc"</item>
+    <item msgid="5827960506924849753">"10 perc"</item>
+    <item msgid="6677424950124253938">"30 perc"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Kicsi"</item>
+    <item msgid="591935967183159581">"Alapértelmezett"</item>
+    <item msgid="1714184661981538355">"Nagy"</item>
+    <item msgid="6195563047686707484">"A legnagyobb"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Keresés..."</item>
+    <item msgid="8058143476674427024">"Csatlakozás a(z) <xliff:g id="NETWORK_NAME">%1$s</xliff:g> hálózathoz..."</item>
+    <item msgid="7547609081339573756">"Hitelesítés a(z) <xliff:g id="NETWORK_NAME">%1$s</xliff:g> hálózaton..."</item>
+    <item msgid="5145158315060185414">"IP-cím lekérése a(z) <xliff:g id="NETWORK_NAME">%1$s</xliff:g> hálózattól..."</item>
+    <item msgid="3283243151651124831">"Kapcsolódva a(z) <xliff:g id="NETWORK_NAME">%1$s</xliff:g> hálózathoz"</item>
+    <item msgid="6600156231416890902">"Felfüggesztve"</item>
+    <item msgid="4133290864821295785">"Kapcsolat bontása <xliff:g id="NETWORK_NAME">%1$s</xliff:g> hálózattal..."</item>
+    <item msgid="3980154971187953257">"Szétkapcsolva"</item>
+    <item msgid="2847316776634969068">"Sikertelen"</item>
+    <item msgid="4390990424746035383">"Letiltva"</item>
+    <item msgid="3618248791367063949">"A rossz minőségű kapcsolatok átmeneti elkerülése"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Nyomógomb"</item>
+    <item msgid="7401896200768713930">"Partnereszköztől kapott PIN"</item>
+    <item msgid="4526848028011846710">"A készülék PIN-kódja"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Csatlakozva"</item>
+    <item msgid="983792611851499732">"Meghívott"</item>
+    <item msgid="5438273405428201793">"Sikertelen"</item>
+    <item msgid="4646663015449312554">"Rendelkezésre áll"</item>
+    <item msgid="3230556734162006146">"Tartományon kívül"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 perc"</item>
+    <item msgid="2759776603549270587">"5 perc"</item>
+    <item msgid="167772676068860015">"1 óra"</item>
+    <item msgid="5985477119043628504">"Soha ne legyen időtúllépés"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Legutóbbi 30 nap"</item>
+    <item msgid="3211287705232736964">"Ciklus beállítása…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Használat ideje"</item>
+    <item msgid="2784401352592276015">"Utoljára használva"</item>
+    <item msgid="249854287216326349">"Alkalmazás neve"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Nincs"</item>
+    <item msgid="8655686691660180616">"MSCHAPv2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Nincs"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPv2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statikus"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Nincs"</item>
+    <item msgid="1464741437353223198">"Útmutató"</item>
+    <item msgid="5793600062487886090">"Proxy auto. beállítása"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Nincs"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP vagy CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Belső tárhely"</item>
+    <item msgid="3186681694079967527">"Eltávolítható SD-kártya"</item>
+    <item msgid="6902033473986647035">"Döntse el a rendszer"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Tartózkodási hely"</item>
+    <item msgid="6842381562497597649">"Személyes"</item>
+    <item msgid="3966700236695683444">"Üzenetváltás"</item>
+    <item msgid="8563996233342430477">"Média"</item>
+    <item msgid="5323851085993963783">"Eszköz"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"hozzávetőleges helymeghatározás"</item>
+    <item msgid="1830619568689922920">"pontos helymeghatározás"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"rezgés"</item>
+    <item msgid="8632513128515114092">"névjegyek olvasása"</item>
+    <item msgid="3741042113569620272">"névjegyek módosítása"</item>
+    <item msgid="4204420969709009931">"hívásnapló olvasása"</item>
+    <item msgid="2260380357119423209">"hívásnapló módosítása"</item>
+    <item msgid="6550710385014530934">"naptár olvasása"</item>
+    <item msgid="3575906174264853951">"naptár módosítása"</item>
+    <item msgid="4319843242568057174">"Wi-Fi hálózat keresése"</item>
+    <item msgid="2981791890467303819">"értesítés"</item>
+    <item msgid="6617825156152476692">"hálózatkeresés"</item>
+    <item msgid="8865260890611559753">"telefonálás"</item>
+    <item msgid="3254999273961542982">"SMS olvasása"</item>
+    <item msgid="7711446453028825171">"SMS írása"</item>
+    <item msgid="6123238544099198034">"SMS fogadása"</item>
+    <item msgid="838342167431596036">"sürgősségi SMS fogadása"</item>
+    <item msgid="8554432731560956686">"MMS fogadása"</item>
+    <item msgid="7464863464299515059">"WAP push fogadása"</item>
+    <item msgid="310463075729606765">"SMS küldése"</item>
+    <item msgid="7338021933527689514">"ICC SMS olvasása"</item>
+    <item msgid="6130369335466613036">"ICC SMS írása"</item>
+    <item msgid="6536865581421670942">"beállítások módosítása"</item>
+    <item msgid="4547203129183558973">"megjelenítés felül"</item>
+    <item msgid="9080347512916542840">"Hozzáférési értesítések"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"hanganyag rögzítése"</item>
+    <item msgid="9182794235292595296">"hanganyag lejátszása"</item>
+    <item msgid="8760743229597702019">"vágólap olvasása"</item>
+    <item msgid="2266923698240538544">"vágólap módosítása"</item>
+    <item msgid="1801619438618539275">"médiagombok"</item>
+    <item msgid="31588119965784465">"audiofókusz"</item>
+    <item msgid="7565226799008076833">"hangerő-szabályozó"</item>
+    <item msgid="5420704980305018295">"beszéd hangereje"</item>
+    <item msgid="5797363115508970204">"csengés hangereje"</item>
+    <item msgid="8233154098550715999">"média hangereje"</item>
+    <item msgid="5196715605078153950">"ébresztés hangereje"</item>
+    <item msgid="394030698764284577">"értesítés hangereje"</item>
+    <item msgid="8952898972491680178">"bluetooth hangereje"</item>
+    <item msgid="8506227454543690851">"ébren tartás"</item>
+    <item msgid="1108160036049727420">"hely figyelése"</item>
+    <item msgid="1496205959751719491">"magas energiaszintű helyek figyelése"</item>
+    <item msgid="3776296279910987380">"használati statisztikák lekérése"</item>
+    <item msgid="8827100324471975602">"mikrofon némítása és a némítás feloldása"</item>
+    <item msgid="6880736730520126864">"üzenet megjelenítése"</item>
+    <item msgid="4933375960222609935">"médiatartalom kivetítése"</item>
+    <item msgid="8357907018938895462">"VPN aktiválása"</item>
+    <item msgid="8143812849911310973">"háttérkép írása"</item>
+    <item msgid="6266277260961066535">"segédlet a szerkezethez"</item>
+    <item msgid="7715498149883482300">"segédlet a képernyőképhez"</item>
+    <item msgid="4046679376726313293">"telefonállapot olvasása"</item>
+    <item msgid="6329507266039719587">"hangposta hozzáadása"</item>
+    <item msgid="7692440726415391408">"SIP használata"</item>
+    <item msgid="8572453398128326267">"kimenő hívás feldolgozása"</item>
+    <item msgid="7775674394089376306">"ujjlenyomat"</item>
+    <item msgid="3182815133441738779">"testérzékelők"</item>
+    <item msgid="2793100005496829513">"cellán belüli üzenetszórás olvasása"</item>
+    <item msgid="2633626056029384366">"helyimitálás"</item>
+    <item msgid="8356842191824684631">"tárhely olvasása"</item>
+    <item msgid="5671906070163291500">"tárhely írása"</item>
+    <item msgid="2791955098549340418">"képernyő bekapcsolása"</item>
+    <item msgid="5599435119609178367">"fiókok beszerzése"</item>
+    <item msgid="1165623660533024666">"futtatás a háttérben"</item>
+    <item msgid="6423861043647911030">"kisegítő lehetőségek – hangerő"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Rövid"</item>
+    <item msgid="4816511817309094890">"Közepes"</item>
+    <item msgid="8305084671259331134">"Hosszú"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Alapértelmezett"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif, sűrű betűköz"</item>
+    <item msgid="6529379119163117545">"Nem proporcionális sans-serif"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Nem proporcionális serif"</item>
+    <item msgid="4448481989108928248">"Általános"</item>
+    <item msgid="4627069151979553527">"Kurzív"</item>
+    <item msgid="6896773537705206194">"Kiskapitális"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Alapértelmezett"</item>
+    <item msgid="6488643537808152001">"Nincs"</item>
+    <item msgid="552332815156010137">"Körvonal"</item>
+    <item msgid="7187891159463789272">"Árnyékolás"</item>
+    <item msgid="8019330250538856521">"Kiemelt"</item>
+    <item msgid="8987385315647049787">"Nyomott"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Alapbeállítások használata"</item>
+    <item msgid="8611890312638868524">"Fekete alapon fehér"</item>
+    <item msgid="5891360837786277638">"Fehér alapon fekete"</item>
+    <item msgid="2798457065945456853">"Fekete alapon sárga"</item>
+    <item msgid="5799049811524553967">"Kék alapon sárga"</item>
+    <item msgid="3673930830658169860">"Egyéni"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN megosztott kulcsokkal"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN-tanúsítványokkal"</item>
+    <item msgid="312397853907741968">"IPSec VPN előre megosztott kulcsokkal és Xauth azonosítás"</item>
+    <item msgid="3319427315593649917">"IPSec VPN-tanúsítványokkal és Xauth azonosítás"</item>
+    <item msgid="8258927774145391041">"IPSec VPN-tanúsítványokkal és hibrid azonosítás"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nincs"</item>
+    <item msgid="1157046369795346308">"Útmutató"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Szétkapcsolva"</item>
+    <item msgid="8754480102834556765">"Inicializálás..."</item>
+    <item msgid="3351334355574270250">"Csatlakozás…"</item>
+    <item msgid="8303882153995748352">"Csatlakozva"</item>
+    <item msgid="9135049670787351881">"Időtúllépés"</item>
+    <item msgid="2124868417182583926">"Sikertelen"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Kérdés"</item>
+    <item msgid="7718817231348607934">"Soha nem engedélyezem"</item>
+    <item msgid="8184570120217958741">"Engedélyezés mindig"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Állandó"</item>
+    <item msgid="167418068739176448">"Leggyakoribb tevékenység"</item>
+    <item msgid="4760813290195199773">"Fontos (előtérben)"</item>
+    <item msgid="2328684826817647595">"Fontos (háttérben)"</item>
+    <item msgid="7746406490652867365">"Biztonsági mentés"</item>
+    <item msgid="5597404364389196754">"Számottevő"</item>
+    <item msgid="1290888779300174556">"Szolgáltatás (fut)"</item>
+    <item msgid="7241098542073939046">"Szolgáltatás (újraindul)"</item>
+    <item msgid="6610439017684111046">"Fogadó"</item>
+    <item msgid="7367606086319921117">"Otthon"</item>
+    <item msgid="3344660712396741826">"Legutóbbi tevékenység"</item>
+    <item msgid="5006559348883303865">"Gyorsítótárazott (tevékenység)"</item>
+    <item msgid="8633480732468137525">"Gyorsítótárazott (tevékenységkliens)"</item>
+    <item msgid="6248998242443333892">"Gyorsítótárazott (üres)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Pávakék"</item>
+    <item msgid="3228505970082457852">"Kék"</item>
+    <item msgid="6590260735734795647">"Indigókék"</item>
+    <item msgid="3521763377357218577">"Lila"</item>
+    <item msgid="5932337981182999919">"Rózsaszín"</item>
+    <item msgid="5642914536624000094">"Piros"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Több mint 30 napos"</item>
+    <item msgid="8699273238891265610">"Több mint 60 napos"</item>
+    <item msgid="8346279419423837266">"Több mint 90 napos"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Automatikus észlelés"</item>
+    <item msgid="773943026484148895">"Kezelje forgalomkorlátosként"</item>
+    <item msgid="1008268820118852416">"Kezelje nem forgalomkorlátosként"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Véletlenszerű MAC-cím használata (alapértelmezett)"</item>
+    <item msgid="214234417308375326">"Az eszköz MAC-címének használata"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nem"</item>
+    <item msgid="1930581185557754880">"Igen"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Sötét"</item>
+    <item msgid="5079453644557603349">"Világos"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Ki"</item>
+    <item msgid="4072198137051566919">"Hibakeresés"</item>
+    <item msgid="2473005316958868509">"Részletes"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Csak otthoni"</item>
+    <item msgid="1161026694891024702">"Automatikus"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA a preferált"</item>
+    <item msgid="7581481130337402578">"Csak GSM"</item>
+    <item msgid="8579197487913425819">"Csak WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA – automatikus"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo – automatikus"</item>
+    <item msgid="4219607161971472471">"CDMA EvDo nélkül"</item>
+    <item msgid="7278975240951052041">"Csak EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globális"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Csak TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globális"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hu/strings.xml b/tests/CarDeveloperOptions/res/values-hu/strings.xml
index cd36ce2..6a4d697 100644
--- a/tests/CarDeveloperOptions/res/values-hu/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-hu/strings.xml
@@ -1194,7 +1194,7 @@
     <string name="auto_brightness_very_high_title" msgid="6649896560889239565">"Nagyon magas"</string>
     <string name="auto_brightness_subtitle" msgid="8516999348793100665">"Előnyben részesített fényerőszint"</string>
     <string name="auto_brightness_off_summary" msgid="6162650416289359104">"Ne módosuljon a rendelkezésre álló fény alapján"</string>
-    <string name="auto_brightness_very_high_summary" msgid="7202032980509583918">"Megnövekedett akkumulátorhasználat"</string>
+    <string name="auto_brightness_very_high_summary" msgid="7202032980509583918">"Növeli az akkumulátorhasználatot"</string>
     <string name="auto_brightness_disclaimer" msgid="5416696351199148809">"A fényerőt a rendelkezésre álló fényhez optimalizálja. Átmenetileg továbbra is módosíthatja a fényerőt, ha be van kapcsolva a funkció."</string>
     <string name="auto_brightness_description" msgid="8209140379089535411">"A képernyő fényerőssége automatikusan alkalmazkodik a környezethez és az adott tevékenységhez. A csúszka manuális mozgatásával segít az alkalmazkodó fényerő funkciónak az Ön személyes preferenciáinak megtanulásában."</string>
     <string name="display_white_balance_title" msgid="5747260735311935143">"Kijelző fehéregyensúlya"</string>
@@ -1257,7 +1257,7 @@
     <string name="doze_title" msgid="235269029233857546">"Új értesítések"</string>
     <string name="doze_summary" msgid="6762274282827831706">"Képernyő felébresztése értesítés érkezésekor"</string>
     <string name="doze_always_on_title" msgid="8555184965031789941">"Mindig bekapcsolva"</string>
-    <string name="doze_always_on_summary" msgid="7654436900436328950">"Az idő, az értesítési ikonok és egyéb információk megjelenítése. Megnövekedett akkumulátorhasználat."</string>
+    <string name="doze_always_on_summary" msgid="7654436900436328950">"Az idő, az értesítési ikonok és egyéb információk megjelenítése. Növeli az akkumulátorhasználatot."</string>
     <string name="title_font_size" msgid="5021464556860010851">"Betűméret"</string>
     <string name="short_summary_font_size" msgid="4141077908728522946">"Szöveg nagyítása és kicsinyítése"</string>
     <string name="sim_lock_settings" msgid="1986924650622642189">"SIM-kártya lezárási beállításai"</string>
@@ -4124,7 +4124,7 @@
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Az idő, az értesítések és egyéb információk megtekintéséhez vegye kezébe telefonját."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Az idő, az értesítések és egyéb információk megtekintéséhez vegye a kezébe táblagépét."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Az idő, az értesítések és egyéb információk megtekintéséhez vegye kezébe eszközét."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Koppintson a telefon megtekintéséhez"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Koppintás a telefon megtekintéséhez"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Koppintson a táblagép megtekintéséhez"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Koppintson az eszköz megtekintéséhez"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Az idő, az értesítések és egyéb információk megtekintéséhez koppintson a képernyőre."</string>
diff --git a/tests/CarDeveloperOptions/res/values-hy-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-hy-nokeys/strings.xml
new file mode 100644
index 0000000..339d877
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hy-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Կառավարել ծրագրերը"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hy/arrays.xml b/tests/CarDeveloperOptions/res/values-hy/arrays.xml
new file mode 100644
index 0000000..253ce7e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-hy/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Ամերիկա"</item>
+    <item msgid="4791956477275129121">"Եվրոպա"</item>
+    <item msgid="3812126832016254559">"Աֆրիկա"</item>
+    <item msgid="2765816300353408280">"Ասիա"</item>
+    <item msgid="6683489385344409742">"Ավստրալիա"</item>
+    <item msgid="5194868215515664953">"Խաղաղօվկիանոսյան"</item>
+    <item msgid="7044520255415007865">"Բոլորը"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 վայրկյան"</item>
+    <item msgid="772029947136115322">"30 վայրկյան"</item>
+    <item msgid="8743663928349474087">"1 րոպե"</item>
+    <item msgid="1506508631223164814">"2 րոպե"</item>
+    <item msgid="8664703938127907662">"5 րոպե"</item>
+    <item msgid="5827960506924849753">"10 րոպե"</item>
+    <item msgid="6677424950124253938">"30 րոպե"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Փոքր"</item>
+    <item msgid="591935967183159581">"Կանխադրված"</item>
+    <item msgid="1714184661981538355">"Մեծ"</item>
+    <item msgid="6195563047686707484">"Ամենամեծ"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Սկանավորում…"</item>
+    <item msgid="8058143476674427024">"Միանում է <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-ին…"</item>
+    <item msgid="7547609081339573756">"Նույնականացում <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-ի հետ…"</item>
+    <item msgid="5145158315060185414">"IP հասցեի ստացում <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-ից…"</item>
+    <item msgid="3283243151651124831">"Միացված է <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-ին"</item>
+    <item msgid="6600156231416890902">"Անջատված"</item>
+    <item msgid="4133290864821295785">"Անջատվում է <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-ից…"</item>
+    <item msgid="3980154971187953257">"Անջատված է"</item>
+    <item msgid="2847316776634969068">"Անհաջող"</item>
+    <item msgid="4390990424746035383">"Արգելափակված է"</item>
+    <item msgid="3618248791367063949">"Վատ ցանցից ժամանակավոր խուսափում"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Սեղմման կոճակ"</item>
+    <item msgid="7401896200768713930">"Հավասարազոր սարքի PIN-ը"</item>
+    <item msgid="4526848028011846710">"PIN-ը այս սարքից"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Միացած է"</item>
+    <item msgid="983792611851499732">"Հրավիրված է"</item>
+    <item msgid="5438273405428201793">"Անհաջող"</item>
+    <item msgid="4646663015449312554">"Առկա է"</item>
+    <item msgid="3230556734162006146">"Ընդգրկույթից դուրս"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 րոպե"</item>
+    <item msgid="2759776603549270587">"5 րոպե"</item>
+    <item msgid="167772676068860015">"1 ժամ"</item>
+    <item msgid="5985477119043628504">"Ժամանակի սպառումը բացառել"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Վերջին 30 օրում"</item>
+    <item msgid="3211287705232736964">"Սահմանել օգտագործման ցիկլը..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Օգտագործման ժամանակը"</item>
+    <item msgid="2784401352592276015">"Վերջին օգտագործումը"</item>
+    <item msgid="249854287216326349">"Ծրագրի անունը"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ոչ մեկը"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ոչ մեկը"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Ստատիկ"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ոչ մեկը"</item>
+    <item msgid="1464741437353223198">"Ձեռքով"</item>
+    <item msgid="5793600062487886090">"Պրոքսիի ինքնակարգավորում"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ոչ մեկը"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP կամ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Սարքի ներքին պահոց"</item>
+    <item msgid="3186681694079967527">"Շարժական SD քարտ"</item>
+    <item msgid="6902033473986647035">"Թույլատրել համակարգը որոշի"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Տեղադրություն"</item>
+    <item msgid="6842381562497597649">"Անձնական"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Մեդիա"</item>
+    <item msgid="5323851085993963783">"Սարք"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"հենակետային տեղանք"</item>
+    <item msgid="1830619568689922920">"ճշգրիտ տեղադրություն"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"թրթռոց"</item>
+    <item msgid="8632513128515114092">"տեսնել կոնտակտների ցանկը"</item>
+    <item msgid="3741042113569620272">"փոփոխել կոնտակտների ցանկը"</item>
+    <item msgid="4204420969709009931">"տեսնել զանգերի մատյանը"</item>
+    <item msgid="2260380357119423209">"փոփոխել զանգերի մատյանը"</item>
+    <item msgid="6550710385014530934">"կարդալ օրացույցը"</item>
+    <item msgid="3575906174264853951">"փոփոխել օրացույցը"</item>
+    <item msgid="4319843242568057174">"wi-fi սկանավորում"</item>
+    <item msgid="2981791890467303819">"ծանուցում"</item>
+    <item msgid="6617825156152476692">"բջջային սկանավորում"</item>
+    <item msgid="8865260890611559753">"Հեռախոսահամար"</item>
+    <item msgid="3254999273961542982">"կարդալ SMS-ը"</item>
+    <item msgid="7711446453028825171">"գրել SMS"</item>
+    <item msgid="6123238544099198034">"ստանալ SMS"</item>
+    <item msgid="838342167431596036">"ստանալ արտակարգ իրավիճակների SMS-ներ"</item>
+    <item msgid="8554432731560956686">"ստանալ MMS"</item>
+    <item msgid="7464863464299515059">"ստանալ WAP սեղմում"</item>
+    <item msgid="310463075729606765">"ուղարկել SMS"</item>
+    <item msgid="7338021933527689514">"կարդալ ICC SMS"</item>
+    <item msgid="6130369335466613036">"գրել ICC SMS"</item>
+    <item msgid="6536865581421670942">"փոփոխել կարգավորումները"</item>
+    <item msgid="4547203129183558973">"պատկերել վերին մասում"</item>
+    <item msgid="9080347512916542840">"մուտք գործել ծանուցումներ"</item>
+    <item msgid="5332718516635907742">"ֆոտոխցիկ"</item>
+    <item msgid="6098422447246167852">"ձայնագրել աուդիո ֆայլ"</item>
+    <item msgid="9182794235292595296">"նվագարկել ձայնանյութը"</item>
+    <item msgid="8760743229597702019">"կարդալ սեղմատախտակը"</item>
+    <item msgid="2266923698240538544">"փոփոխել սեղմատախտակը"</item>
+    <item msgid="1801619438618539275">"մեդիա կոճակներ"</item>
+    <item msgid="31588119965784465">"աուդիո ֆոկուս"</item>
+    <item msgid="7565226799008076833">"ձայնի հիմնական բարձրություն"</item>
+    <item msgid="5420704980305018295">"ձայնի բարձրություն"</item>
+    <item msgid="5797363115508970204">"զանգի բարձրություն"</item>
+    <item msgid="8233154098550715999">"մեդիանյութերի ձայնի բարձրություն"</item>
+    <item msgid="5196715605078153950">"զարթուցիչի ձայնի բարձրություն"</item>
+    <item msgid="394030698764284577">"ծանուցման ձայնի բարձրություն"</item>
+    <item msgid="8952898972491680178">"bluetooth-ի ձայնի բարձրություն"</item>
+    <item msgid="8506227454543690851">"արթուն պահել"</item>
+    <item msgid="1108160036049727420">"վերահսկել տեղադրությունը"</item>
+    <item msgid="1496205959751719491">"մշտադիտարկել էներգատար տեղանքները"</item>
+    <item msgid="3776296279910987380">"ստանալ օգտագործման վիճակագրությունը"</item>
+    <item msgid="8827100324471975602">"խոսափողն անջատել/միացնել"</item>
+    <item msgid="6880736730520126864">"ցույց տալ ծանուցումը"</item>
+    <item msgid="4933375960222609935">"տեսարձակել մեդիան"</item>
+    <item msgid="8357907018938895462">"ակտիվացնել VPN-ը"</item>
+    <item msgid="8143812849911310973">"պաստառների պահում"</item>
+    <item msgid="6266277260961066535">"օժանդակ կառույց"</item>
+    <item msgid="7715498149883482300">"օժանդակ սքրինշոթ"</item>
+    <item msgid="4046679376726313293">"կարդալ հեռախոսի վիճակի տվյալները"</item>
+    <item msgid="6329507266039719587">"ավելացնել ձայնային փոստ"</item>
+    <item msgid="7692440726415391408">"օգտագործել sip-ը"</item>
+    <item msgid="8572453398128326267">"մշակել ելքային զանգը"</item>
+    <item msgid="7775674394089376306">"մատնահետք"</item>
+    <item msgid="3182815133441738779">"մարմնի տվիչներ"</item>
+    <item msgid="2793100005496829513">"կարդալ բջջային հեռարձակումները"</item>
+    <item msgid="2633626056029384366">"կեղծել տեղադրությունը"</item>
+    <item msgid="8356842191824684631">"կարդալ կրիչի բովանդակությունը"</item>
+    <item msgid="5671906070163291500">"փոփոխել կրիչի բովանդակությունը"</item>
+    <item msgid="2791955098549340418">"միացնել էկրանը"</item>
+    <item msgid="5599435119609178367">"ստանալ հաշիվները"</item>
+    <item msgid="1165623660533024666">"աշխատել ֆոնային ռեժիմում"</item>
+    <item msgid="6423861043647911030">"մատչելիության ծավալ"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Կարճ"</item>
+    <item msgid="4816511817309094890">"Միջին"</item>
+    <item msgid="8305084671259331134">"Երկար"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Կանխադրված"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif խտացրած"</item>
+    <item msgid="6529379119163117545">"Sans-serif միալայնք"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif միալայնք"</item>
+    <item msgid="4448481989108928248">"Առօրյա"</item>
+    <item msgid="4627069151979553527">"Ձեռագիր"</item>
+    <item msgid="6896773537705206194">"Փոքր մեծատառեր"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Կանխադրված"</item>
+    <item msgid="6488643537808152001">"Ոչ մեկը"</item>
+    <item msgid="552332815156010137">"Ուրվագիծ"</item>
+    <item msgid="7187891159463789272">"Ստվերով"</item>
+    <item msgid="8019330250538856521">"Ուռուցիկ"</item>
+    <item msgid="8987385315647049787">"Ճնշված"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Օգտագործել կանխադրվածները"</item>
+    <item msgid="8611890312638868524">"Սպիտակը սևի վրա"</item>
+    <item msgid="5891360837786277638">"Սևը սպիտակի վրա"</item>
+    <item msgid="2798457065945456853">"Դեղինը սևի վրա"</item>
+    <item msgid="5799049811524553967">"Դեղինը կապույտի վրա"</item>
+    <item msgid="3673930830658169860">"Այլ ձայներ"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN նախորոշված ստեղներով"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN վկայագրերով"</item>
+    <item msgid="312397853907741968">"IPSec VPN նախորոշված ստեղներով և Xauth նույնականացմամբ"</item>
+    <item msgid="3319427315593649917">"IPSec VPN վկայականներով և Xauth նույնականացմամբ"</item>
+    <item msgid="8258927774145391041">"IPSec VPN վկայագրերով և խառնածին նույնականացմամբ"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ոչ մեկը"</item>
+    <item msgid="1157046369795346308">"Ձեռքով"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Անջատված է"</item>
+    <item msgid="8754480102834556765">"Նախապատրաստվում է..."</item>
+    <item msgid="3351334355574270250">"Միանում է..."</item>
+    <item msgid="8303882153995748352">"Միացած է"</item>
+    <item msgid="9135049670787351881">"Ժամանակի սպառում"</item>
+    <item msgid="2124868417182583926">"Անհաջող"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Հարցնել"</item>
+    <item msgid="7718817231348607934">"Երբեք չթույլատրել"</item>
+    <item msgid="8184570120217958741">"Միշտ թույլատրել"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Կայուն"</item>
+    <item msgid="167418068739176448">"Առավել հաճախակի կատարվող գործողությունը"</item>
+    <item msgid="4760813290195199773">"Կարևոր (ակտիվ ռեժիմ)"</item>
+    <item msgid="2328684826817647595">"Կարևոր (ֆոնային ռեժիմ)"</item>
+    <item msgid="7746406490652867365">"Պահուստավորում"</item>
+    <item msgid="5597404364389196754">"Խիստ ծանրաբեռնվածություն"</item>
+    <item msgid="1290888779300174556">"Ծառայություն (ակտիվ է)"</item>
+    <item msgid="7241098542073939046">"Ծառայություն (վերագործարկվում է)"</item>
+    <item msgid="6610439017684111046">"Ստացող"</item>
+    <item msgid="7367606086319921117">"Հիմնական"</item>
+    <item msgid="3344660712396741826">"Վերջին գործողությունը"</item>
+    <item msgid="5006559348883303865">"Քեշավորված (գործողությունը)"</item>
+    <item msgid="8633480732468137525">"Քեշավորված (սպասառուի գործողությունը)"</item>
+    <item msgid="6248998242443333892">"Քեշավորված (դատարկ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Փիրուզագույն"</item>
+    <item msgid="3228505970082457852">"Կապույտ"</item>
+    <item msgid="6590260735734795647">"Ինդիգո"</item>
+    <item msgid="3521763377357218577">"Մանուշակագույն"</item>
+    <item msgid="5932337981182999919">"Վարդագույն"</item>
+    <item msgid="5642914536624000094">"Կարմիր"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 օրից հին"</item>
+    <item msgid="8699273238891265610">"60 օրից հին"</item>
+    <item msgid="8346279419423837266">"90 օրից հին"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Ավտոմատ հայտնաբերում"</item>
+    <item msgid="773943026484148895">"Սահմանափակ"</item>
+    <item msgid="1008268820118852416">"Անսահմանափակ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Օգտագործել պատահական MAC հասցե (կանխադրված)"</item>
+    <item msgid="214234417308375326">"Օգտագործել սարքի MAC հասցեն"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ոչ"</item>
+    <item msgid="1930581185557754880">"Այո"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Մուգ"</item>
+    <item msgid="5079453644557603349">"Բաց"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Անջատված է"</item>
+    <item msgid="4072198137051566919">"Վրիպազերծում"</item>
+    <item msgid="2473005316958868509">"Մանրամասն"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Միայն տնային ցանցերը"</item>
+    <item msgid="1161026694891024702">"Ավտոմատ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA (նախընտրելի ռեժիմ)"</item>
+    <item msgid="7581481130337402578">"Միայն GSM"</item>
+    <item msgid="8579197487913425819">"Միայն WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ավտոմատ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ավտոմատ"</item>
+    <item msgid="4219607161971472471">"CDMA առանց EvDo"</item>
+    <item msgid="7278975240951052041">"Միայն EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA+LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Համաշխարհային"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Միայն TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Համաշխարհային"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-hy/strings.xml b/tests/CarDeveloperOptions/res/values-hy/strings.xml
index 97158d9..845af38 100644
--- a/tests/CarDeveloperOptions/res/values-hy/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-hy/strings.xml
@@ -370,7 +370,7 @@
     <string name="Accounts_settings_title" msgid="7901374987121953746">"Հաշիվներ"</string>
     <string name="location_settings_title" msgid="2707201457572301030">"Տեղադրություն"</string>
     <string name="location_settings_master_switch_title" msgid="3108016866082816733">"Օգտագործել տեղորոշումը"</string>
-    <string name="location_settings_summary_location_off" msgid="5563530256978372978">"Անջատած է"</string>
+    <string name="location_settings_summary_location_off" msgid="5563530256978372978">"Անջատված է"</string>
     <plurals name="location_settings_summary_location_on" formatted="false" msgid="7893342914540884818">
       <item quantity="one">Միացված է: Տեղադրության տվյալները հասանելի են <xliff:g id="COUNT_1">%1$d</xliff:g> հավելվածի:</item>
       <item quantity="other">Միացված է: Տեղադրության տվյալները հասանելի են <xliff:g id="COUNT_1">%1$d</xliff:g> հավելվածի:</item>
@@ -561,7 +561,7 @@
     <string name="unlock_set_unlock_launch_picker_title" msgid="2731152716948003853">"Էկրանի կողպում"</string>
     <string name="unlock_set_unlock_launch_picker_summary_lock_immediately" msgid="5596186270725220642">"<xliff:g id="UNLOCK_METHOD">%1$s</xliff:g> / Անմիջապես քնից հետո"</string>
     <string name="unlock_set_unlock_launch_picker_summary_lock_after_timeout" msgid="3861167251234952373">"<xliff:g id="UNLOCK_METHOD">%1$s</xliff:g> / <xliff:g id="TIMEOUT_STRING">%2$s</xliff:g> քնից հետո"</string>
-    <string name="unlock_set_unlock_launch_picker_title_profile" msgid="7976345264630422921">"Աշխատանքային պրոֆիլի փական"</string>
+    <string name="unlock_set_unlock_launch_picker_title_profile" msgid="7976345264630422921">"Աշխ․ պրոֆիլի կողպում"</string>
     <string name="unlock_set_unlock_launch_picker_change_title" msgid="32310692507029407">"Փոխել էկրանի կողպումը"</string>
     <string name="unlock_set_unlock_launch_picker_change_summary" msgid="2072792784866320522">"Փոխել կամ կասեցնել նախշը, PIN-ը կամ գաղտնաբառի անվտանգությունը"</string>
     <string name="unlock_set_unlock_launch_picker_enable_summary" msgid="9070847611379078795">"Ընտրել էկրանի կողպման եղանակը"</string>
@@ -828,7 +828,7 @@
     <string name="nfc_secure_toggle_summary" product="default" msgid="7631183023440112192">"Թույլատրել NFC-ի միջոցով վճարումներն ու տվյալների փոխանցումը միայն, երբ էկրանն ապակողպված է"</string>
     <string name="android_beam_settings_title" msgid="3083436415873738389">"Android Beam"</string>
     <string name="android_beam_on_summary" msgid="8068287225180474199">"Տվյալների փոխանակում NFC-ով"</string>
-    <string name="android_beam_off_summary" msgid="7365818039159364600">"Անջատած է"</string>
+    <string name="android_beam_off_summary" msgid="7365818039159364600">"Անջատված է"</string>
     <string name="nfc_disabled_summary" msgid="2181777971122724361">"Անհասանելի է, քանի որ NFC-ն անջատված է"</string>
     <string name="android_beam_label" msgid="5340299879556025708">"Android Beam"</string>
     <string name="android_beam_explained" msgid="4501176353247859329">"Այս գործառույթը թույլ է տալիս մեկ սարքից մյուսին փոխանցել տարբեր տեսակի բովանդակություն (այդ թվում կոնտակտներ, վեբ էջեր և տեսանյութեր)՝ սարքերը միմյանց մոտ պահելով:\n\nՊարզապես մոտեցրեք սարքերը միմյանց (հիմնականում հետևի մասերով իրար) և հպեք ձեր էկրանին: Հավելվածը կորոշի, թե ինչ տվյալներ փոխանցել։"</string>
@@ -1168,7 +1168,7 @@
     <string name="color_mode_option_natural" msgid="1292837781836645320">"Բնական"</string>
     <string name="color_mode_option_boosted" msgid="453557938434778933">"Պայծառ"</string>
     <string name="color_mode_option_saturated" msgid="7758384943407859851">"Հագեցած"</string>
-    <string name="color_mode_option_automatic" msgid="6572718611315165117">"Հարմարողական"</string>
+    <string name="color_mode_option_automatic" msgid="6572718611315165117">"Հարմարվող"</string>
     <string name="color_mode_summary_natural" msgid="1247153893843263340">"Օգտագործեք միայն ճշգրիտ վերարտադրվող գույներ"</string>
     <string name="color_mode_summary_automatic" msgid="6066740785261330514">"Կարգավորեք գույների պայծառությունն ու ճշգրտությունը"</string>
     <string name="accelerometer_summary_on" product="tablet" msgid="5750977897791656412">"Ավտոմատ փոխել դիրքավորումը պլանշետը պտտելիս"</string>
@@ -1178,7 +1178,7 @@
     <string name="brightness" msgid="7309120144111305275">"Պայծառության մակարդակ"</string>
     <string name="brightness_title" msgid="5660190946911149690">"Պայծառություն"</string>
     <string name="brightness_summary" msgid="8687101964451818730">"Կարգաբերել էկրանի պայծառությունը"</string>
-    <string name="auto_brightness_title" msgid="908511534369820426">"Հարմարողական պայծառություն"</string>
+    <string name="auto_brightness_title" msgid="908511534369820426">"Հարմարվող պայծառություն"</string>
     <string name="auto_brightness_summary_on" msgid="121488862610275737">"Միացված է"</string>
     <string name="auto_brightness_summary_off" msgid="8569141123211510256">"Անջատված է"</string>
     <string name="auto_brightness_summary_very_low" msgid="7625647285740629347">"Նախընտրելի է շատ ցածր պայծառությունը"</string>
@@ -1196,12 +1196,12 @@
     <string name="auto_brightness_off_summary" msgid="6162650416289359104">"Չկարգավորել առկա լույսի համար"</string>
     <string name="auto_brightness_very_high_summary" msgid="7202032980509583918">"Մարտկոցի ավելի երկար օգտագործում"</string>
     <string name="auto_brightness_disclaimer" msgid="5416696351199148809">"Լույսի պայծառության մակարդակի օպտիմալացում: Նույնիսկ երբ այս գործառույթը միացված է, դուք կարող եք ժամանակավորապես կարգավորել պայծառությունը:"</string>
-    <string name="auto_brightness_description" msgid="8209140379089535411">"Էկրանի պայծառությունն ավտոմատ կկարգավորվի՝ կախված միջավայրի պայմաններից և ձեր գործողություններից։ Դուք կարող եք տեղաշարժել սահիչը՝ թույլ տալով հարմարողական պայծառությանը հիշել ձեր կարգավորումները։"</string>
+    <string name="auto_brightness_description" msgid="8209140379089535411">"Էկրանի պայծառությունն ավտոմատ կկարգավորվի՝ կախված միջավայրի պայմաններից և ձեր գործողություններից։ Դուք կարող եք տեղաշարժել սահիչը՝ թույլ տալով հարմարվող պայծառությանը հիշել ձեր կարգավորումները։"</string>
     <string name="display_white_balance_title" msgid="5747260735311935143">"Էկրանի սպիտակի բալանս"</string>
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Ադապտիվ քնած ռեժիմ"</string>
-    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Միացված է – Երբ դուք նայում եք էկրանին, այն չի անջատվի։"</string>
+    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Միացված է – Եթե նայում եք էկրանին, այն չի անջատվի։"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Անջատված է"</string>
-    <string name="adaptive_sleep_description" msgid="812673735459170009">"Երբ դուք նայում եք էկրանին, այն չի անջատվի։"</string>
+    <string name="adaptive_sleep_description" msgid="812673735459170009">"Եթե նայում եք էկրանին, այն չի անջատվի։"</string>
     <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Ադապտիվ քնած ռեժիմում սարքն օգտագործում է առջևի տեսախցիկը, որպեսզի հետևի՝ արդյոք ինչ-որ մեկը նայում է էկրանին։ Այս գործառույթն աշխատում է միայն ձեր սարքում, իսկ պատկերները չեն պահվում և չեն ուղարկվում Google-ին։"</string>
     <string name="night_display_title" msgid="1305002424893349814">"Գիշերային ռեժիմ"</string>
     <string name="night_display_text" msgid="5330502493684652527">"Գիշերային ռեժիմը դեղնավուն երանգ է հաղորդում էկրանին: Դա թույլ է տալիս հանել աչքերի լարվածությունը և օգնում է ավելի արագ քնել։"</string>
@@ -1213,7 +1213,7 @@
     <string name="night_display_end_time_title" msgid="2760793157124245911">"Ավարտ"</string>
     <string name="night_display_status_title" msgid="1727020934735770319">"Կարգավիճակ"</string>
     <string name="night_display_temperature_title" msgid="8375126629902616296">"Ինտենսիվություն"</string>
-    <string name="night_display_summary_off" msgid="8850539785332228069">"Անջատած է / <xliff:g id="ID_1">%1$s</xliff:g>"</string>
+    <string name="night_display_summary_off" msgid="8850539785332228069">"Անջատված է / <xliff:g id="ID_1">%1$s</xliff:g>"</string>
     <string name="night_display_summary_off_auto_mode_never" msgid="8618824386434992487">"Ավտոմատ չի միանա"</string>
     <string name="night_display_summary_off_auto_mode_custom" msgid="596847003171394411">"Ավտոմատ կմիանա <xliff:g id="ID_1">%1$s</xliff:g>-ին"</string>
     <string name="night_display_summary_off_auto_mode_twilight" msgid="4071750976585359952">"Ավտոմատ կմիանա մայրամուտին"</string>
@@ -1459,7 +1459,7 @@
     <string name="storage_wizard_init_internal_title" msgid="8750856962785644870">"Օգտագործել որպես ներքին հիշողություն"</string>
     <string name="storage_wizard_init_internal_summary" msgid="4510546464921608029">"Հավելվածները, լուսանկարները և այլ բաներ միայն այս սարքի վրա պահեստավորելու համար: Հարկավոր է ձևաչափում, որի արդյունքում այն չի աշխատի այլ սարքերի վրա:"</string>
     <string name="storage_wizard_format_confirm_title" msgid="7785358616068633439">"Ձևաչափել որպես ներքին պահեստ"</string>
-    <string name="storage_wizard_format_confirm_body" msgid="4107762933332992624">"<xliff:g id="NAME_0">^1</xliff:g>-ի անվտանգությունը ապահովելու համար այն պետք է ձևաչափել: \n\nՈրից հետո այս <xliff:g id="NAME_1">^1</xliff:g>-ը կաշխատի միայն այս սարքի վրա: \n\n"<b>"Ձևաչափումից հետո <xliff:g id="NAME_2">^1</xliff:g>-ի վրա պահեստավորված բոլոր տվյալները կջնջվեն:"</b>" Տվյալները չկորցնելու համար չմոռանաք նախ պահուստավորել դրանք:"</string>
+    <string name="storage_wizard_format_confirm_body" msgid="4107762933332992624">"<xliff:g id="NAME_0">^1</xliff:g>-ի անվտանգությունը ապահովելու համար այն պետք է ձևաչափել: \n\nԴրանից հետո այս <xliff:g id="NAME_1">^1</xliff:g>-ը կաշխատի միայն այս սարքի վրա: \n\n"<b>"Ձևաչափումից հետո <xliff:g id="NAME_2">^1</xliff:g>-ի վրա պահեստավորված բոլոր տվյալները կջնջվեն:"</b>" Տվյալները չկորցնելու համար չմոռանաք նախ պահուստավորել դրանք:"</string>
     <string name="storage_wizard_format_confirm_public_title" msgid="5866830103788091426">"Ձևաչափել որպես կրիչ"</string>
     <string name="storage_wizard_format_confirm_public_body" msgid="1451308701654703353">"Հարկավոր է ձևաչափել <xliff:g id="NAME_0">^1</xliff:g>-ը: \n\n"<b>"Ձևաչափման արդյունքում <xliff:g id="NAME_1">^1</xliff:g>-ի վրա պահեստավորած բոլոր տվյալները կջնջվեն:"</b>" Եթե չեք ցանկանում կորցնել տվյալները, նախապես պահուստավորեք դրանք:"</string>
     <string name="storage_wizard_format_confirm_next" msgid="236947984802247625">"Ջնջել և ձևաչափել"</string>
@@ -1558,7 +1558,7 @@
     <string name="error_mcc_not3" msgid="1333037488064427164">"MCC դաշտը պետք է 3 նիշ ունենա:"</string>
     <string name="error_mnc_not23" msgid="6738398924368729180">"MNC դաշտը պետք է լինի առնվազն 2 կամ 3 թվանշան:"</string>
     <string name="error_adding_apn_type" msgid="671634520340569678">"Օպերատորը չի թույլատրում ավելացնել %s տեսակի APN-ներ:"</string>
-    <string name="restore_default_apn" msgid="7195266404077471007">"Լռելյայն APN կարգավորումների վերականգնում:"</string>
+    <string name="restore_default_apn" msgid="7195266404077471007">"Կանխադրված APN կարգավորումների վերականգնում:"</string>
     <string name="menu_restore" msgid="3799288817317293115">"Վերականգնել կանխադրվածները"</string>
     <string name="restore_default_apn_completed" msgid="5671734152740058937">"Սկզբնական APN կարգավորումների վերակարգավորումն ավարտված է:"</string>
     <string name="reset_dashboard_title" msgid="7084966342252178530">"Զրոյացման ընտրանքներ"</string>
@@ -1976,7 +1976,7 @@
     <string name="keyboard_layout_dialog_title" msgid="4762706917037085797">"Ընտրել ստեղնաշարի դասավորությունը"</string>
     <string name="keyboard_layout_dialog_setup_button" msgid="771293535107618283">"Կարգավորել ստեղնաշարի դասավորությունը"</string>
     <string name="keyboard_layout_dialog_switch_hint" msgid="138516114253502182">"Փոխարկելու համար սեղմեք Control-Բացակ"</string>
-    <string name="keyboard_layout_default_label" msgid="8368579311667189793">"Լռելյայն"</string>
+    <string name="keyboard_layout_default_label" msgid="8368579311667189793">"Կանխադրված"</string>
     <string name="keyboard_layout_picker_title" msgid="6958831599253031987">"Ստեղնաշարի դասավորություն"</string>
     <string name="user_dict_settings_title" msgid="1415462066249818756">"Անձնական բառարան"</string>
     <string name="user_dict_settings_for_work_title" msgid="3995828731001225748">"Անձնական բառարան աշխատանքի համար"</string>
@@ -2103,7 +2103,7 @@
       <item quantity="other"><xliff:g id="NUMBER_DEVICE_COUNT_1">%1$d</xliff:g> պահված լսողական ապարատներ</item>
     </plurals>
     <string name="accessibility_summary_state_enabled" msgid="7357731696603247963">"Միացված է"</string>
-    <string name="accessibility_summary_state_disabled" msgid="9197369047683087620">"Անջատած է"</string>
+    <string name="accessibility_summary_state_disabled" msgid="9197369047683087620">"Անջատված է"</string>
     <string name="accessibility_summary_state_stopped" msgid="3170264683616172746">"Չի աշխատում: Տեղեկությունների համար հպեք:"</string>
     <string name="accessibility_description_state_stopped" msgid="7666178628053039493">"Այս ծառայությունը նորմալ չի աշխատում:"</string>
     <string name="enable_quick_setting" msgid="1580451877998661255">"Ցույց տալ Արագ կարգավորումներում"</string>
@@ -2157,7 +2157,7 @@
     <string name="captioning_typeface" msgid="7893208796949341767">"Տառատեսակի ընտանիքը"</string>
     <string name="captioning_preview_text" msgid="4877753964772618049">"Ենթագրերն այսպիսին կլինեն"</string>
     <string name="captioning_preview_characters" msgid="6469599599352973561">"Aa"</string>
-    <string name="locale_default" msgid="910074908458214054">"Լռելյայն"</string>
+    <string name="locale_default" msgid="910074908458214054">"Կանխադրված"</string>
     <string name="color_title" msgid="132875486061816584">"Գույն"</string>
     <string name="color_unspecified" msgid="2081242275041140693">"Կանխադրված"</string>
     <string name="color_none" msgid="6073562573637028315">"Ոչինչ"</string>
@@ -2329,7 +2329,7 @@
     <string name="battery_auto_restriction_title" msgid="488905332794794076">"Օգտագործել մարտկոցի կառավարիչը"</string>
     <string name="battery_auto_restriction_summary" msgid="1638072655581821837">"Հայտնաբերել հավելվածները, որոնք արագ սպառում են մարտկոցի լիցքը"</string>
     <string name="battery_manager_on" msgid="5626982529932239656">"Միացված է – Մարտկոցի լիցքն արագ սպառող հավելվածների հայտնաբերում"</string>
-    <string name="battery_manager_off" msgid="9114027524232450371">"Անջատած է"</string>
+    <string name="battery_manager_off" msgid="9114027524232450371">"Անջատված է"</string>
     <plurals name="battery_manager_app_restricted" formatted="false" msgid="6721813588142691216">
       <item quantity="one">Սահմանափակված է %1$d հավելված</item>
       <item quantity="other">Սահմանափակված է %1$d հավելված</item>
@@ -2459,7 +2459,7 @@
     <string name="battery_saver_turn_on_automatically_never" msgid="2623381258359775227">"Երբեք"</string>
     <string name="battery_saver_turn_on_automatically_pct" msgid="434270432432390307">"մատկոցի <xliff:g id="PERCENT">%1$s</xliff:g> լիցքի դեպքում"</string>
     <string name="battery_percentage" msgid="7782252476471033843">"Մարտկոցի լիցքը"</string>
-    <string name="battery_percentage_description" msgid="9219875229166700610">"Ցուցադրել մարտկոցի լիցքի տոկոսը կարգավիճակի գոտում"</string>
+    <string name="battery_percentage_description" msgid="9219875229166700610">"Մարտկոցի տոկոսը ցուցադրել կարգավիճակի գոտում"</string>
     <string name="process_stats_summary_title" msgid="9189588417488537954">"Գործընթացի վիճակագրություն"</string>
     <string name="process_stats_summary" msgid="8077998499161221885">"Ընթացիկ գործընթացների տեխնիկական վիճակագրություն"</string>
     <string name="app_memory_use" msgid="5126237308545653706">"Օգտագործվող հիշողություն"</string>
@@ -3234,7 +3234,7 @@
     <string name="zen_interruption_level_priority" msgid="9178419297408319234">"Միայն կարևորները"</string>
     <string name="zen_mode_and_condition" msgid="4123722186007123567">"<xliff:g id="ZEN_MODE">%1$s</xliff:g>։ <xliff:g id="EXIT_CONDITION">%2$s</xliff:g>"</string>
     <string name="zen_mode_sound_summary_on_with_info" msgid="2539952366467518398">"Միացված է/<xliff:g id="ID_1">%1$s</xliff:g>"</string>
-    <string name="zen_mode_sound_summary_off_with_info" msgid="3910718455243440265">"Անջատած է/<xliff:g id="ID_1">%1$s</xliff:g>"</string>
+    <string name="zen_mode_sound_summary_off_with_info" msgid="3910718455243440265">"Անջատված է/<xliff:g id="ID_1">%1$s</xliff:g>"</string>
     <string name="zen_mode_sound_summary_off" msgid="2800265178411749309">"Անջատված է"</string>
     <string name="zen_mode_sound_summary_on" msgid="6964666541479146310">"Միացված է"</string>
     <string name="zen_mode_duration_summary_always_prompt" msgid="7642321938427056823">"Հարցնել ամեն անգամ (եթե ավտոմատ չմիանա)"</string>
@@ -3400,8 +3400,8 @@
     <string name="app_settings_link" msgid="8465287765715790984">"Հավելվածի լրացուցիչ կարգավորումները"</string>
     <string name="app_notification_listing_summary_zero" msgid="4047782719487686699">"Միացված է բոլոր հավելվածների համար"</string>
     <plurals name="app_notification_listing_summary_others" formatted="false" msgid="1161774065480666519">
-      <item quantity="one">Անջատած է <xliff:g id="COUNT_1">%d</xliff:g> հավելվածի համար</item>
-      <item quantity="other">Անջատած է <xliff:g id="COUNT_1">%d</xliff:g> հավելվածի համար</item>
+      <item quantity="one">Անջատված է <xliff:g id="COUNT_1">%d</xliff:g> հավելվածի համար</item>
+      <item quantity="other">Անջատված է <xliff:g id="COUNT_1">%d</xliff:g> հավելվածի համար</item>
     </plurals>
     <plurals name="deleted_channels" formatted="false" msgid="7741359084299446208">
       <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> categories deleted</item>
@@ -3996,7 +3996,7 @@
     <string name="suggestion_additional_fingerprints_summary" msgid="1916547587832484196">"Ապակողպում այլ մատով"</string>
     <string name="battery_saver_on_summary" msgid="6841062406467435672">"Միացված է"</string>
     <string name="battery_saver_off_scheduled_summary" msgid="3740414764069188669">"Միանում է լիցքի <xliff:g id="BATTERY_PERCENTAGE">%1$s</xliff:g>-ի դեպքում"</string>
-    <string name="battery_saver_off_summary" msgid="8736555723004299721">"Անջատած է"</string>
+    <string name="battery_saver_off_summary" msgid="8736555723004299721">"Անջատված է"</string>
     <string name="battery_saver_button_turn_on" msgid="3748696527267573793">"Միացնել հիմա"</string>
     <string name="battery_saver_button_turn_off" msgid="2912950982503267828">"Անջատել հիմա"</string>
     <string name="not_battery_optimizing" msgid="2616044774307734160">"Մարտկոցի օպտիմալացումը չի օգտագործվում"</string>
@@ -4329,7 +4329,7 @@
     <string name="homepage_all_settings" msgid="3201220879559136116">"Բոլոր կարգավորումները"</string>
     <string name="homepage_personal_settings" msgid="7472638597249114564">"Հուշումներ"</string>
     <string name="choose_network_title" msgid="3213314359630522396">"Ընտրել ցանց"</string>
-    <string name="network_disconnected" msgid="8677203031237141594">"Անջատած է"</string>
+    <string name="network_disconnected" msgid="8677203031237141594">"Անջատված է"</string>
     <string name="network_connected" msgid="8197627827976712053">"Միացած է"</string>
     <string name="network_connecting" msgid="8798611458457547110">"Միացում…"</string>
     <string name="network_could_not_connect" msgid="552874922030763713">"Չհաջողվեց միանալ"</string>
diff --git a/tests/CarDeveloperOptions/res/values-in-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-in-nokeys/strings.xml
new file mode 100644
index 0000000..6f78115
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-in-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Kelola aplikasi"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-in/arrays.xml b/tests/CarDeveloperOptions/res/values-in/arrays.xml
new file mode 100644
index 0000000..0d1ab0c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-in/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Eropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pasifik"</item>
+    <item msgid="7044520255415007865">"Semua"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 detik"</item>
+    <item msgid="772029947136115322">"30 detik"</item>
+    <item msgid="8743663928349474087">"1 menit"</item>
+    <item msgid="1506508631223164814">"2 menit"</item>
+    <item msgid="8664703938127907662">"5 menit"</item>
+    <item msgid="5827960506924849753">"10 menit"</item>
+    <item msgid="6677424950124253938">"30 menit"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Kecil"</item>
+    <item msgid="591935967183159581">"Default"</item>
+    <item msgid="1714184661981538355">"Besar"</item>
+    <item msgid="6195563047686707484">"Terbesar"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Memindai..."</item>
+    <item msgid="8058143476674427024">"Menyambung ke <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Mengautentikasi dengan <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Mendapatkan alamat IP dari <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Tersambung ke <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Ditangguhkan"</item>
+    <item msgid="4133290864821295785">"Diputus dari <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Sambungan terputus"</item>
+    <item msgid="2847316776634969068">"Gagal"</item>
+    <item msgid="4390990424746035383">"Diblokir"</item>
+    <item msgid="3618248791367063949">"Menghindari sambungan buruk untuk sementara"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Tekan tombol"</item>
+    <item msgid="7401896200768713930">"PIN dari perangkat rekan"</item>
+    <item msgid="4526848028011846710">"PIN dari perangkat ini"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Terhubung"</item>
+    <item msgid="983792611851499732">"Diundang"</item>
+    <item msgid="5438273405428201793">"Gagal"</item>
+    <item msgid="4646663015449312554">"Tersedia"</item>
+    <item msgid="3230556734162006146">"Di luar jangkauan"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 menit"</item>
+    <item msgid="2759776603549270587">"5 menit"</item>
+    <item msgid="167772676068860015">"1 jam"</item>
+    <item msgid="5985477119043628504">"Tanpa waktu tunggu"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 hari terakhir"</item>
+    <item msgid="3211287705232736964">"Setel alur penggunaan..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Waktu penggunaan"</item>
+    <item msgid="2784401352592276015">"Terakhir kali digunakan"</item>
+    <item msgid="249854287216326349">"Nama apl"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Tidak ada"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Tidak ada"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statis"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Tidak ada"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Konfig. Otomatis Proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Tidak ada"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP atau CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Penyimpanan perangkat internal"</item>
+    <item msgid="3186681694079967527">"Kartu SD yang dapat dicopot"</item>
+    <item msgid="6902033473986647035">"Biarkan sistem menentukan"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokasi"</item>
+    <item msgid="6842381562497597649">"Pribadi"</item>
+    <item msgid="3966700236695683444">"Pesan"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Perangkat"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"lokasi sementara"</item>
+    <item msgid="1830619568689922920">"lokasi terperinci"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"getar"</item>
+    <item msgid="8632513128515114092">"membaca kontak"</item>
+    <item msgid="3741042113569620272">"ubah kontak"</item>
+    <item msgid="4204420969709009931">"baca log panggilan"</item>
+    <item msgid="2260380357119423209">"ubah log panggilan"</item>
+    <item msgid="6550710385014530934">"membaca kalender"</item>
+    <item msgid="3575906174264853951">"ubah kalender"</item>
+    <item msgid="4319843242568057174">"pemindaian Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notifikasi"</item>
+    <item msgid="6617825156152476692">"pemindaian seluler"</item>
+    <item msgid="8865260890611559753">"telepon"</item>
+    <item msgid="3254999273961542982">"baca SMS"</item>
+    <item msgid="7711446453028825171">"tulis SMS"</item>
+    <item msgid="6123238544099198034">"terima SMS"</item>
+    <item msgid="838342167431596036">"terima SMS darurat"</item>
+    <item msgid="8554432731560956686">"terima MMS"</item>
+    <item msgid="7464863464299515059">"terima WAP push"</item>
+    <item msgid="310463075729606765">"kirim SMS"</item>
+    <item msgid="7338021933527689514">"baca ICC SMS"</item>
+    <item msgid="6130369335466613036">"tulis ICC SMS"</item>
+    <item msgid="6536865581421670942">"ubah setelan"</item>
+    <item msgid="4547203129183558973">"gambar di atas"</item>
+    <item msgid="9080347512916542840">"akses notifikasi"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"rekam audio"</item>
+    <item msgid="9182794235292595296">"putar audio"</item>
+    <item msgid="8760743229597702019">"baca papan klip"</item>
+    <item msgid="2266923698240538544">"ubah papan klip"</item>
+    <item msgid="1801619438618539275">"tombol media"</item>
+    <item msgid="31588119965784465">"fokus audio"</item>
+    <item msgid="7565226799008076833">"volume master"</item>
+    <item msgid="5420704980305018295">"volume suara"</item>
+    <item msgid="5797363115508970204">"volume dering"</item>
+    <item msgid="8233154098550715999">"volume media"</item>
+    <item msgid="5196715605078153950">"volume alarm"</item>
+    <item msgid="394030698764284577">"volume notifikasi"</item>
+    <item msgid="8952898972491680178">"volume bluetooth"</item>
+    <item msgid="8506227454543690851">"tetap aktif"</item>
+    <item msgid="1108160036049727420">"monitor lokasi"</item>
+    <item msgid="1496205959751719491">"memantau lokasi berdaya tinggi"</item>
+    <item msgid="3776296279910987380">"dapatkan statistik penggunaan"</item>
+    <item msgid="8827100324471975602">"bisukan/suarakan mikrofon"</item>
+    <item msgid="6880736730520126864">"tampilkan seranta"</item>
+    <item msgid="4933375960222609935">"media proyek"</item>
+    <item msgid="8357907018938895462">"aktifkan VPN"</item>
+    <item msgid="8143812849911310973">"tulis wallpaper"</item>
+    <item msgid="6266277260961066535">"bantu struktur"</item>
+    <item msgid="7715498149883482300">"bantu screenshot"</item>
+    <item msgid="4046679376726313293">"baca status telepon"</item>
+    <item msgid="6329507266039719587">"tambahkan pesan suara"</item>
+    <item msgid="7692440726415391408">"gunakan sip"</item>
+    <item msgid="8572453398128326267">"proses panggilan keluar"</item>
+    <item msgid="7775674394089376306">"sidik jari"</item>
+    <item msgid="3182815133441738779">"sensor tubuh"</item>
+    <item msgid="2793100005496829513">"baca siaran sel"</item>
+    <item msgid="2633626056029384366">"lokasi palsu"</item>
+    <item msgid="8356842191824684631">"baca penyimpanan"</item>
+    <item msgid="5671906070163291500">"tulis penyimpanan"</item>
+    <item msgid="2791955098549340418">"aktifkan layar"</item>
+    <item msgid="5599435119609178367">"dapatkan akun"</item>
+    <item msgid="1165623660533024666">"jalankan di latar belakang"</item>
+    <item msgid="6423861043647911030">"volume aksesibilitas"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Singkat"</item>
+    <item msgid="4816511817309094890">"Sedang"</item>
+    <item msgid="8305084671259331134">"Lama"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Default"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif spasi tunggal"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif spasi tunggal"</item>
+    <item msgid="4448481989108928248">"Santai"</item>
+    <item msgid="4627069151979553527">"Kursif"</item>
+    <item msgid="6896773537705206194">"Kapital kecil"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Default"</item>
+    <item msgid="6488643537808152001">"Tidak ada"</item>
+    <item msgid="552332815156010137">"Garis batas"</item>
+    <item msgid="7187891159463789272">"Drop shadow"</item>
+    <item msgid="8019330250538856521">"Dinaikkan"</item>
+    <item msgid="8987385315647049787">"Diturunkan"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Gunakan setelan default aplikasi"</item>
+    <item msgid="8611890312638868524">"Putih berlatar hitam"</item>
+    <item msgid="5891360837786277638">"Hitam berlatar putih"</item>
+    <item msgid="2798457065945456853">"Kuning berlatar hitam"</item>
+    <item msgid="5799049811524553967">"Kuning berlatar biru"</item>
+    <item msgid="3673930830658169860">"Khusus"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN dengan kunci pra-bagi"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN dengan sertifikat"</item>
+    <item msgid="312397853907741968">"IPSec VPN dengan kunci pra-bagi dan autentikasi Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN dengan sertifikat dan autentikasi Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN dengan sertifikat dan autentikasi hibrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Tidak ada"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Sambungan terputus"</item>
+    <item msgid="8754480102834556765">"Memulai..."</item>
+    <item msgid="3351334355574270250">"Menyambung..."</item>
+    <item msgid="8303882153995748352">"Terhubung"</item>
+    <item msgid="9135049670787351881">"Waktu habis"</item>
+    <item msgid="2124868417182583926">"Gagal"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Tanya"</item>
+    <item msgid="7718817231348607934">"Jangan pernah izinkan"</item>
+    <item msgid="8184570120217958741">"Selalu izinkan"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Tetap"</item>
+    <item msgid="167418068739176448">"Aktivitas teratas"</item>
+    <item msgid="4760813290195199773">"Penting (latar depan)"</item>
+    <item msgid="2328684826817647595">"Penting (latar belakang)"</item>
+    <item msgid="7746406490652867365">"Pencadangan"</item>
+    <item msgid="5597404364389196754">"Beban berat"</item>
+    <item msgid="1290888779300174556">"Layanan (berjalan)"</item>
+    <item msgid="7241098542073939046">"Layanan (memulai ulang)"</item>
+    <item msgid="6610439017684111046">"Penerima"</item>
+    <item msgid="7367606086319921117">"Beranda"</item>
+    <item msgid="3344660712396741826">"Aktivitas terakhir"</item>
+    <item msgid="5006559348883303865">"Disimpan dalam cache (aktivitas)"</item>
+    <item msgid="8633480732468137525">"Disimpan dalam cache (klien aktivitas)"</item>
+    <item msgid="6248998242443333892">"Disimpan dalam cache (kosong)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Hijau kebiruan"</item>
+    <item msgid="3228505970082457852">"Biru"</item>
+    <item msgid="6590260735734795647">"Nila"</item>
+    <item msgid="3521763377357218577">"Ungu"</item>
+    <item msgid="5932337981182999919">"Merah Muda"</item>
+    <item msgid="5642914536624000094">"Merah"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Lebih dari 30 hari"</item>
+    <item msgid="8699273238891265610">"Lebih dari 60 hari"</item>
+    <item msgid="8346279419423837266">"Lebih dari 90 hari"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Deteksi otomatis"</item>
+    <item msgid="773943026484148895">"Perlakukan sebagai berbayar"</item>
+    <item msgid="1008268820118852416">"Perlakukan sebagai tidak berbayar"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Gunakan MAC acak (default)"</item>
+    <item msgid="214234417308375326">"Gunakan MAC perangkat"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Tidak"</item>
+    <item msgid="1930581185557754880">"Ya"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Gelap"</item>
+    <item msgid="5079453644557603349">"Cerah"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Nonaktif"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Panjang"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Hanya Layar utama"</item>
+    <item msgid="1161026694891024702">"Otomatis"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA dipilih"</item>
+    <item msgid="7581481130337402578">"Hanya GSM"</item>
+    <item msgid="8579197487913425819">"Hanya WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA otomatis"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo otomatis"</item>
+    <item msgid="4219607161971472471">"CDMA tanpa EvDo"</item>
+    <item msgid="7278975240951052041">"Hanya EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Hanya TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-in/strings.xml b/tests/CarDeveloperOptions/res/values-in/strings.xml
index 36b5633..525e775 100644
--- a/tests/CarDeveloperOptions/res/values-in/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-in/strings.xml
@@ -531,11 +531,11 @@
     <string name="crypt_keeper_warn_wipe" msgid="700814581500057050">"Peringatan: Perangkat Anda akan dihapus setelah <xliff:g id="COUNT">^1</xliff:g> percobaan gagal lagi dalam pembukaan kunci!"</string>
     <string name="crypt_keeper_enter_password" msgid="726933635335219421">"Ketikkan sandi Anda"</string>
     <string name="crypt_keeper_failed_title" msgid="1906382607060855782">"Enkripsi gagal"</string>
-    <string name="crypt_keeper_failed_summary" product="tablet" msgid="7844833877734529625">"Enkripsi terputus dan tidak dapat diselesaikan. Akibatnya, data pada tablet Anda tidak dapat diakses lagi. \n\n Untuk terus menggunakan tablet, Anda perlu mengembalikannya ke setelan pabrik. Saat menyiapkan tablet setelah mengembalikannya ke setelan pabrik, Anda memiliki kesempatan untuk memulihkan data apa pun yang telah di-backup ke Akun Google."</string>
-    <string name="crypt_keeper_failed_summary" product="default" msgid="2895589681839090312">"Enkripsi terputus dan tidak dapat diselesaikan. Akibatnya, data di ponsel Anda tidak dapat diakses lagi. \n\n Untuk terus menggunakan ponsel, Anda perlu mengembalikannya ke setelan pabrik. Saat menyiapkan ponsel setelah mengembalikannya ke setelan pabrik, Anda memiliki kesempatan untuk memulihkan data apa pun yang telah di-backup ke Akun Google."</string>
+    <string name="crypt_keeper_failed_summary" product="tablet" msgid="7844833877734529625">"Enkripsi terputus dan tidak dapat diselesaikan. Akibatnya, data pada tablet Anda tidak dapat diakses lagi. \n\n Untuk terus menggunakan tablet, Anda perlu mengembalikannya ke setelan pabrik. Saat menyiapkan tablet setelah mengembalikannya ke setelan pabrik, Anda memiliki kesempatan untuk memulihkan data apa pun yang telah dicadangkan ke Akun Google."</string>
+    <string name="crypt_keeper_failed_summary" product="default" msgid="2895589681839090312">"Enkripsi terputus dan tidak dapat diselesaikan. Akibatnya, data di ponsel Anda tidak dapat diakses lagi. \n\n Untuk terus menggunakan ponsel, Anda perlu mengembalikannya ke setelan pabrik. Saat menyiapkan ponsel setelah mengembalikannya ke setelan pabrik, Anda memiliki kesempatan untuk memulihkan data apa pun yang telah dicadangkan ke Akun Google."</string>
     <string name="crypt_keeper_data_corrupt_title" msgid="6561535293845985713">"Dekripsi gagal"</string>
-    <string name="crypt_keeper_data_corrupt_summary" product="tablet" msgid="7018748502706237323">"Sandi yang Anda masukkan benar, namun sayangnya data rusak. \n\nUntuk melanjutkan dengan tablet, Anda perlu mengembalikannya ke setelan pabrik. Saat menyiapkan tablet setelah disetel ulang, akan ada kesempatan untuk memulihkan data apa pun yang telah di-backup ke Akun Google."</string>
-    <string name="crypt_keeper_data_corrupt_summary" product="default" msgid="5798580588985326937">"Sandi yang Anda masukkan benar, namun sayangnya data rusak. \n\nUntuk melanjutkan dengan ponsel, Anda perlu mengembalikannya ke setelan pabrik. Jika Anda menyiapkan ponsel setelah setel ulang, akan ada kesempatan untuk memulihkan data apa pun yang telah di-backup ke Akun Google."</string>
+    <string name="crypt_keeper_data_corrupt_summary" product="tablet" msgid="7018748502706237323">"Sandi yang Anda masukkan benar, namun sayangnya data rusak. \n\nUntuk melanjutkan dengan tablet, Anda perlu mengembalikannya ke setelan pabrik. Saat menyiapkan tablet setelah disetel ulang, akan ada kesempatan untuk memulihkan data apa pun yang telah dicadangkan ke Akun Google."</string>
+    <string name="crypt_keeper_data_corrupt_summary" product="default" msgid="5798580588985326937">"Sandi yang Anda masukkan benar, namun sayangnya data rusak. \n\nUntuk melanjutkan dengan ponsel, Anda perlu mengembalikannya ke setelan pabrik. Jika Anda menyiapkan ponsel setelah setel ulang, akan ada kesempatan untuk memulihkan data apa pun yang telah dicadangkan ke Akun Google."</string>
     <string name="crypt_keeper_switch_input_method" msgid="4744137470890459582">"Beralih metode masukan"</string>
     <string name="suggested_lock_settings_title" msgid="1518155558803371661">"Amankan ponsel Anda"</string>
     <string name="suggested_lock_settings_summary" product="tablet" msgid="1861066918594412519">"Setel kunci layar untuk melindungi tablet"</string>
@@ -555,7 +555,7 @@
     <string name="setup_lock_settings_picker_message" product="device" msgid="2098404520816295371">"Cegah orang lain menggunakan perangkat ini tanpa izin Anda dengan mengaktifkan fitur perlindungan perangkat. Pilih kunci layar yang ingin Anda gunakan."</string>
     <string name="setup_lock_settings_picker_message" product="default" msgid="2003984443953672040">"Cegah orang lain menggunakan ponsel ini tanpa izin Anda dengan mengaktifkan fitur perlindungan perangkat. Pilih kunci layar yang ingin Anda gunakan."</string>
     <string name="lock_settings_picker_fingerprint_message" msgid="1344567476145156885">"Pilih metode kunci layar cadangan"</string>
-    <string name="lock_settings_picker_face_message" msgid="6413145626861812959">"Pilih metode kunci layar backup"</string>
+    <string name="lock_settings_picker_face_message" msgid="6413145626861812959">"Pilih metode kunci layar cadangan"</string>
     <string name="setup_lock_settings_options_button_label" msgid="4197315143877977385">"Opsi kunci layar"</string>
     <string name="setup_lock_settings_options_dialog_title" msgid="5241946349173768827">"Opsi kunci layar"</string>
     <string name="unlock_set_unlock_launch_picker_title" msgid="2731152716948003853">"Kunci layar"</string>
@@ -586,7 +586,7 @@
     <string name="face_unlock_set_unlock_pin" msgid="3320824093518497476">"Autentikasi wajah + PIN"</string>
     <string name="face_unlock_set_unlock_password" msgid="8962344604388383659">"Autentikasi wajah + Sandi"</string>
     <string name="face_unlock_skip_face" msgid="7173197040501143880">"Lanjutkan tanpa autentikasi wajah"</string>
-    <string name="face_unlock_title" msgid="1298031162909236127">"Anda dapat membuka kunci ponsel menggunakan wajah. Demi keamanan, opsi ini memerlukan kunci layar backup."</string>
+    <string name="face_unlock_title" msgid="1298031162909236127">"Anda dapat membuka kunci ponsel menggunakan wajah. Demi keamanan, opsi ini memerlukan kunci layar cadangan."</string>
     <string name="unlock_set_unlock_disabled_summary" msgid="1713159782896140817">"Dinonaktifkan oleh admin, kebijakan enkripsi, atau penyimpanan kredensial"</string>
     <string name="unlock_set_unlock_mode_off" msgid="2950701212659081973">"Tidak ada"</string>
     <string name="unlock_set_unlock_mode_none" msgid="3441605629077912292">"Geser"</string>
@@ -821,7 +821,7 @@
     <string name="art_verifier_for_debuggable_summary" msgid="2204242476996701111">"Izinkan ART memverifikasi bytecode untuk aplikasi yang dapat di-debug"</string>
     <string name="nfc_quick_toggle_title" msgid="4990697912813795002">"NFC"</string>
     <string name="nfc_quick_toggle_summary" product="tablet" msgid="983451155092850657">"Memungkinkan pertukaran data saat tablet bersentuhan dengan perangkat lain"</string>
-    <string name="nfc_quick_toggle_summary" product="default" msgid="7141056939052895142">"Memungkinkan pertukaran data saat ponsel bersentuhan dengan perangkat lain"</string>
+    <string name="nfc_quick_toggle_summary" product="default" msgid="7141056939052895142">"Mungkinkan pertukaran data saat ponsel bersentuhan dengan perangkat lain"</string>
     <string name="nfc_disclaimer_title" msgid="4860231267351602970">"Aktifkan NFC"</string>
     <string name="nfc_disclaimer_content" msgid="3066113577854565782">"NFC mempertukarkan data antara perangkat ini dan perangkat atau target lain di sekitar, seperti terminal pembayaran, pembaca akses, dan iklan atau tag interaktif."</string>
     <string name="nfc_secure_settings_title" msgid="5153751163174916581">"Amankan NFC"</string>
@@ -1199,7 +1199,7 @@
     <string name="auto_brightness_description" msgid="8209140379089535411">"Kecerahan layar akan disesuaikan otomatis dengan lingkungan dan aktivitas Anda. Anda dapat memindahkan penggeser secara manual untuk membantu kecerahan adaptif belajar dari preferensi Anda."</string>
     <string name="display_white_balance_title" msgid="5747260735311935143">"White balance layar"</string>
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Screen aware"</string>
-    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Aktif/Layar tidak akan mati jika Anda sedang melihatnya"</string>
+    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Aktif / Layar tidak akan mati jika Anda sedang melihatnya"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Nonaktif"</string>
     <string name="adaptive_sleep_description" msgid="812673735459170009">"Mencegah layar mati jika Anda sedang melihatnya."</string>
     <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Screen aware menggunakan kamera depan untuk mengetahui apakah seseorang sedang melihat layar. Fitur ini berjalan di perangkat, dan gambar tidak pernah disimpan atau dikirimkan ke Google."</string>
@@ -1437,7 +1437,7 @@
     <string name="storage_dialog_unmounted" msgid="515810851912430933">"<xliff:g id="NAME_0">^1</xliff:g> ini dikeluarkan dengan aman, tetapi masih ada. \n\nUntuk menggunakan <xliff:g id="NAME_1">^1</xliff:g> ini, Anda harus memasangnya terlebih dahulu."</string>
     <string name="storage_dialog_unmountable" msgid="7082856306456936054">"<xliff:g id="NAME_0">^1</xliff:g> ini rusak. \n\nUntuk menggunakan <xliff:g id="NAME_1">^1</xliff:g> ini, Anda harus menyiapkannya terlebih dahulu."</string>
     <string name="storage_dialog_unsupported" msgid="8274023677580782553">"Perangkat ini tidak mendukung <xliff:g id="NAME_0">^1</xliff:g> ini. \n\nUntuk menggunakan <xliff:g id="NAME_1">^1</xliff:g> ini dengan perangkat ini, Anda harus menyiapkannya terlebih dahulu."</string>
-    <string name="storage_internal_format_details" msgid="2780806013122012384">"Setelah memformat, Anda dapat menggunakan <xliff:g id="NAME_0">^1</xliff:g> ini di perangkat lain. \n\nSemua data di <xliff:g id="NAME_1">^1</xliff:g> ini akan dihapus. Pertimbangkan untuk melakukan backup terlebih dahulu. \n\n"<b>"Backup foto &amp; media lain"</b>" \nPindahkan file media ke penyimpanan alternatif di perangkat ini, atau transfer ke komputer menggunakan kabel USB. \n\n"<b>"Backup aplikasi"</b>" \nSemua aplikasi yang disimpan di <xliff:g id="NAME_6">^1</xliff:g> ini akan di-uninstal dan datanya akan dihapus. Untuk menyimpan aplikasi tersebut, pindahkan ke penyimpanan alternatif di perangkat ini."</string>
+    <string name="storage_internal_format_details" msgid="2780806013122012384">"Setelah memformat, Anda dapat menggunakan <xliff:g id="NAME_0">^1</xliff:g> ini di perangkat lain. \n\nSemua data di <xliff:g id="NAME_1">^1</xliff:g> ini akan dihapus. Pertimbangkan untuk melakukan pencadangan terlebih dahulu. \n\n"<b>"Cadangkan foto &amp; media lain"</b>" \nPindahkan file media ke penyimpanan alternatif di perangkat ini, atau transfer ke komputer menggunakan kabel USB. \n\n"<b>"Cadangkan aplikasi"</b>" \nSemua aplikasi yang disimpan di <xliff:g id="NAME_6">^1</xliff:g> ini akan di-uninstal dan datanya akan dihapus. Untuk menyimpan aplikasi tersebut, pindahkan ke penyimpanan alternatif di perangkat ini."</string>
     <string name="storage_internal_unmount_details" msgid="4667435317528624039"><b>"Saat Anda mengeluarkan <xliff:g id="NAME_0">^1</xliff:g> ini, aplikasi yang tersimpan di situ tidak akan berfungsi lagi, dan file media yang tersimpan di situ baru dapat tersedia jika dicolokkan kembali."</b>" \n\n <xliff:g id="NAME_1">^1</xliff:g> ini diformat untuk berfungsi hanya di perangkat ini dan tidak akan berfungsi di perangkat lain."</string>
     <string name="storage_internal_forget_details" msgid="5655856574682184453">"Untuk menggunakan aplikasi, foto, atau data dalam <xliff:g id="NAME">^1</xliff:g> ini, colokkan kembali. \n\nAtau, Anda dapat memilih untuk melupakan penyimpanan ini jika perangkat tidak tersedia. \n\nJika Anda memilih untuk melupakan, semua data dalam perangkat ini akan hilang selamanya. \n\nNanti Anda dapat memasang ulang aplikasi, tetapi datanya yang disimpan di perangkat ini akan hilang."</string>
     <string name="storage_internal_forget_confirm_title" msgid="331032276130605241">"Lupakan <xliff:g id="NAME">^1</xliff:g>?"</string>
@@ -1497,7 +1497,7 @@
     <string name="storage_wizard_init_v2_external_action" msgid="4649591913020218098">"Penyimpanan portabel"</string>
     <string name="storage_wizard_init_v2_later" msgid="2605006907172213466">"Siapkan nanti"</string>
     <string name="storage_wizard_format_confirm_v2_title" msgid="1884699177320256159">"Format <xliff:g id="NAME">^1</xliff:g> ini?"</string>
-    <string name="storage_wizard_format_confirm_v2_body" msgid="977657376082074305">"<xliff:g id="NAME_0">^1</xliff:g> perlu diformat untuk menyimpan aplikasi, file, dan media. \n\nMemformat akan menghapus konten yang ada di <xliff:g id="NAME_1">^2</xliff:g>. Agar konten tidak hilang, backup ke <xliff:g id="NAME_2">^3</xliff:g> atau perangkat lain."</string>
+    <string name="storage_wizard_format_confirm_v2_body" msgid="977657376082074305">"<xliff:g id="NAME_0">^1</xliff:g> perlu diformat untuk menyimpan aplikasi, file, dan media. \n\nMemformat akan menghapus konten yang ada di <xliff:g id="NAME_1">^2</xliff:g>. Agar konten tidak hilang, cadangkan ke <xliff:g id="NAME_2">^3</xliff:g> atau perangkat lain."</string>
     <string name="storage_wizard_format_confirm_v2_action" msgid="5576917958786300415">"Format <xliff:g id="NAME">^1</xliff:g>"</string>
     <string name="storage_wizard_migrate_v2_title" msgid="6728034411587320249">"Pindahkan konten ke <xliff:g id="NAME">^1</xliff:g>?"</string>
     <string name="storage_wizard_migrate_v2_body" product="tablet" msgid="6943007011251294950">"Anda dapat memindahkan file, media, dan aplikasi tertentu ke <xliff:g id="NAME">^1</xliff:g> ini. \n\nPemindahan ini akan mengosongkan <xliff:g id="SIZE">^2</xliff:g> dari penyimpanan tablet dan memerlukan waktu sekitar <xliff:g id="DURATION">^3</xliff:g>."</string>
@@ -2061,7 +2061,7 @@
     <string name="accessibility_toggle_high_text_contrast_preference_title" msgid="5652244684961877255">"Teks kontras tinggi"</string>
     <string name="accessibility_toggle_screen_magnification_auto_update_preference_title" msgid="2466317284195934003">"Perbarui otomatis pembesaran layar"</string>
     <string name="accessibility_toggle_screen_magnification_auto_update_preference_summary" msgid="6625473745911276917">"Perbarui pembesaran layar di transisi aplikasi"</string>
-    <string name="accessibility_power_button_ends_call_prerefence_title" msgid="6172987104538172869">"Tombol daya - tutup telepon"</string>
+    <string name="accessibility_power_button_ends_call_prerefence_title" msgid="6172987104538172869">"Tombol daya untuk tutup telepon"</string>
     <string name="accessibility_toggle_large_pointer_icon_title" msgid="9127905775116570565">"Penunjuk mouse besar"</string>
     <string name="accessibility_disable_animations" msgid="8378441317115710009">"Hapus animasi"</string>
     <string name="accessibility_toggle_master_mono_title" msgid="899550848196702565">"Audio mono"</string>
@@ -2081,7 +2081,7 @@
     <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"Jeda sentuh lama"</string>
     <string name="accessibility_display_inversion_preference_title" msgid="3852635518618938998">"Inversi warna"</string>
     <string name="accessibility_display_inversion_preference_subtitle" msgid="69291255322175323">"Mungkin memengaruhi performa"</string>
-    <string name="accessibility_autoclick_preference_title" msgid="9164599088410340405">"Lama singgah"</string>
+    <string name="accessibility_autoclick_preference_title" msgid="9164599088410340405">"Klik otomatis setelah diam"</string>
     <string name="accessibility_autoclick_description" msgid="5492414927846407499">"Jika menggunakan mouse, Anda dapat menyetel kursor untuk mengambil tindakan secara otomatis saat kursor berhenti bergerak selama waktu tertentu."</string>
     <string name="accessibility_autoclick_delay_preference_title" msgid="8303022510942147049">"Keterlambatan sebelum klik"</string>
     <string name="accessibility_vibration_settings_title" msgid="1902649657883159406">"Getaran"</string>
@@ -2328,7 +2328,7 @@
     <string name="restricted_app_detail_footer" msgid="482460517275754465">"Aplikasi ini telah menggunakan daya baterai di background. Aplikasi yang dibatasi mungkin tidak berfungsi dengan baik dan notifikasi dapat tertunda."</string>
     <string name="battery_auto_restriction_title" msgid="488905332794794076">"Gunakan Pengelola Baterai"</string>
     <string name="battery_auto_restriction_summary" msgid="1638072655581821837">"Mendeteksi jika aplikasi menghabiskan baterai"</string>
-    <string name="battery_manager_on" msgid="5626982529932239656">"Aktif/Mendeteksi jika aplikasi menghabiskan baterai"</string>
+    <string name="battery_manager_on" msgid="5626982529932239656">"Aktif / Mendeteksi jika aplikasi menghabiskan baterai"</string>
     <string name="battery_manager_off" msgid="9114027524232450371">"Nonaktif"</string>
     <plurals name="battery_manager_app_restricted" formatted="false" msgid="6721813588142691216">
       <item quantity="other">%1$d aplikasi dibatasi</item>
@@ -2539,19 +2539,19 @@
     <string name="usage_access_title" msgid="7981321142726540574">"Apl dengan akses penggunaan"</string>
     <string name="emergency_tone_title" msgid="130211364025984428">"Sinyal panggilan darurat"</string>
     <string name="emergency_tone_summary" msgid="8035940153401622240">"Setel perilaku ketika panggilan darurat dilakukan"</string>
-    <string name="privacy_settings_title" msgid="3573891462732375772">"Backup"</string>
+    <string name="privacy_settings_title" msgid="3573891462732375772">"Pencadangan"</string>
     <string name="backup_summary_state_on" msgid="1725597360282574647">"Aktif"</string>
     <string name="backup_summary_state_off" msgid="7138020503288730492">"Nonaktif"</string>
-    <string name="backup_section_title" msgid="8177209731777904656">"Mencadangkan &amp; memulihkan"</string>
+    <string name="backup_section_title" msgid="8177209731777904656">"Pencadangan &amp; pemulihan"</string>
     <string name="personal_data_section_title" msgid="9161854418510071558">"Data pribadi"</string>
     <string name="backup_data_title" msgid="4461508563849583624">"Cadangkan data saya"</string>
     <string name="backup_data_summary" msgid="555459891017933746">"Mencadangkan data aplikasi, sandi Wi-Fi, dan setelan lainnya ke server Google"</string>
-    <string name="backup_configure_account_title" msgid="1534734650559070294">"Akun backup"</string>
-    <string name="backup_data_management_title" msgid="6299288795610243508">"Kelola akun backup"</string>
+    <string name="backup_configure_account_title" msgid="1534734650559070294">"Akun cadangan"</string>
+    <string name="backup_data_management_title" msgid="6299288795610243508">"Kelola akun cadangan"</string>
     <string name="include_app_data_title" msgid="6117211611131913293">"Sertakan data aplikasi"</string>
     <string name="auto_restore_title" msgid="8367486774010915221">"Pemulihan otomatis"</string>
-    <string name="auto_restore_summary" msgid="1941047568966428377">"Pulihkan backup setelan dan data saat menginstal ulang aplikasi"</string>
-    <string name="backup_inactive_title" msgid="5513496915638307750">"Layanan backup tidak aktif"</string>
+    <string name="auto_restore_summary" msgid="1941047568966428377">"Pulihkan cadangan setelan dan data saat menginstal ulang aplikasi"</string>
+    <string name="backup_inactive_title" msgid="5513496915638307750">"Layanan pencadangan tidak aktif"</string>
     <string name="backup_configure_account_default_summary" msgid="5718298066335006412">"Saat ini, tidak ada akun yang menyimpan data cadangan"</string>
     <string name="backup_erase_dialog_title" msgid="8178424339104463014"></string>
     <string name="backup_erase_dialog_message" msgid="8767843355330070902">"Berhenti mencadangkan sandi Wi-Fi, bookmark, setelan lainnya, dan data aplikasi, serta menghapus semua salinan di server Google?"</string>
@@ -3039,7 +3039,7 @@
     <string name="account_dashboard_title" msgid="4734300939532555885">"Akun"</string>
     <string name="account_dashboard_default_summary" msgid="6822549669771936206">"Tidak ada akun yang ditambahkan"</string>
     <string name="app_default_dashboard_title" msgid="6575301028225232193">"Aplikasi default"</string>
-    <string name="system_dashboard_summary" msgid="6582464466735779394">"Bahasa, gestur, waktu, backup"</string>
+    <string name="system_dashboard_summary" msgid="6582464466735779394">"Bahasa, gestur, waktu, pencadangan"</string>
     <string name="search_results_title" msgid="4160717656435503940">"Setelan"</string>
     <string name="keywords_wifi" msgid="8477688080895466846">"wifi, wi-fi, sambungan jaringan, internet, nirkabel, data, wi fi"</string>
     <string name="keywords_wifi_notify_open_networks" msgid="1031260564121854773">"Notifikasi Wi‑Fi, notifikasi wi‑fi"</string>
@@ -3088,7 +3088,7 @@
     <string name="keywords_profile_challenge" msgid="8653718001253979611">"tantangan kerja, kerja, profil"</string>
     <string name="keywords_unification" msgid="2020759909366983593">"profil kerja, profil yang dikelola, menyatukan, penyatuan, kerja, profil"</string>
     <string name="keywords_gesture" msgid="5031323247529869644">"gestur"</string>
-    <string name="keywords_payment_settings" msgid="4745023716567666052">"bayar, tap, pembayaran"</string>
+    <string name="keywords_payment_settings" msgid="4745023716567666052">"bayar, ketuk, pembayaran"</string>
     <string name="keywords_backup" msgid="7433356270034921627">"backup, back up"</string>
     <string name="keywords_assist_gesture_launch" msgid="2711433664837843513">"gestur"</string>
     <string name="keywords_face_unlock" msgid="651615819291927262">"wajah, buka kunci, autentikasi, login"</string>
@@ -3233,8 +3233,8 @@
     <string name="zen_mode_settings_dnd_custom_settings_footer_link" msgid="4007974052885089379"><annotation id="link">" Lihat setelan kustom"</annotation></string>
     <string name="zen_interruption_level_priority" msgid="9178419297408319234">"Hanya untuk prioritas"</string>
     <string name="zen_mode_and_condition" msgid="4123722186007123567">"<xliff:g id="ZEN_MODE">%1$s</xliff:g>. <xliff:g id="EXIT_CONDITION">%2$s</xliff:g>"</string>
-    <string name="zen_mode_sound_summary_on_with_info" msgid="2539952366467518398">"Aktif/<xliff:g id="ID_1">%1$s</xliff:g>"</string>
-    <string name="zen_mode_sound_summary_off_with_info" msgid="3910718455243440265">"Nonaktif/<xliff:g id="ID_1">%1$s</xliff:g>"</string>
+    <string name="zen_mode_sound_summary_on_with_info" msgid="2539952366467518398">"Aktif / <xliff:g id="ID_1">%1$s</xliff:g>"</string>
+    <string name="zen_mode_sound_summary_off_with_info" msgid="3910718455243440265">"Nonaktif / <xliff:g id="ID_1">%1$s</xliff:g>"</string>
     <string name="zen_mode_sound_summary_off" msgid="2800265178411749309">"Nonaktif"</string>
     <string name="zen_mode_sound_summary_on" msgid="6964666541479146310">"Aktif"</string>
     <string name="zen_mode_duration_summary_always_prompt" msgid="7642321938427056823">"Selalu tanya (kecuali diaktifkan otomatis)"</string>
@@ -3861,7 +3861,7 @@
     <string name="memory_summary" msgid="9121871336058042600">"Rata-rata <xliff:g id="USED_MEMORY">%1$s</xliff:g> dari <xliff:g id="TOTAL_MEMORY">%2$s</xliff:g> memori digunakan"</string>
     <string name="users_summary" msgid="6693338169439092387">"Login sebagai <xliff:g id="USER_NAME">%1$s</xliff:g>"</string>
     <string name="payment_summary" msgid="1381646849276543242">"<xliff:g id="APP_NAME">%1$s</xliff:g> default"</string>
-    <string name="backup_disabled" msgid="6941165814784765643">"Backup dinonaktifkan"</string>
+    <string name="backup_disabled" msgid="6941165814784765643">"Pencadangan dinonaktifkan"</string>
     <string name="android_version_summary" msgid="2192751442789395445">"Diupdate ke Android <xliff:g id="VERSION">%1$s</xliff:g>"</string>
     <string name="android_version_pending_update_summary" msgid="3554543810520655076">"Ada update"</string>
     <string name="disabled_by_policy_title" msgid="1238318274952958846">"Tindakan tidak diizinkan"</string>
@@ -4104,7 +4104,7 @@
     <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Isyarat cepat untuk mengontrol ponsel"</string>
     <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Isyarat cepat untuk mengontrol tablet"</string>
     <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Isyarat cepat untuk mengontrol perangkat"</string>
-    <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Beralih ke kamera"</string>
+    <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Buka kamera"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"Untuk membuka kamera dengan cepat, tekan tombol power 2 kali. Berfungsi di layar mana pun."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Buka kamera dengan cepat"</string>
     <string name="double_twist_for_camera_mode_title" msgid="2606032140297556018">"Balik kamera"</string>
@@ -4250,7 +4250,7 @@
     <string name="debug_autofill_category" msgid="6262526615416295645">"IsiOtomatis"</string>
     <string name="autofill_logging_level_title" msgid="2577340324541102626">"Level logging"</string>
     <string name="autofill_max_partitions" msgid="125269645910590057">"Permintaan maks per sesi"</string>
-    <string name="autofill_max_visible_datasets" msgid="2791081640248423492">"Jumlah dataset maks yang terlihat"</string>
+    <string name="autofill_max_visible_datasets" msgid="2791081640248423492">"Jumlah set data maks yang terlihat"</string>
     <string name="autofill_reset_developer_options" msgid="7208417230269613101">"Setel ulang ke nilai default"</string>
     <string name="autofill_reset_developer_options_complete" msgid="5686061993002179524">"Opsi developer IsiOtomatis telah direset"</string>
     <string name="device_theme" msgid="8992291311481135893">"Tema perangkat"</string>
diff --git a/tests/CarDeveloperOptions/res/values-is-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-is-nokeys/strings.xml
new file mode 100644
index 0000000..9a2aee9
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-is-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Stjórna forritum"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-is/arrays.xml b/tests/CarDeveloperOptions/res/values-is/arrays.xml
new file mode 100644
index 0000000..10f0501
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-is/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Ameríka"</item>
+    <item msgid="4791956477275129121">"Evrópa"</item>
+    <item msgid="3812126832016254559">"Afríka"</item>
+    <item msgid="2765816300353408280">"Asía"</item>
+    <item msgid="6683489385344409742">"Ástralía"</item>
+    <item msgid="5194868215515664953">"Kyrrahaf"</item>
+    <item msgid="7044520255415007865">"Allar"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekúndur"</item>
+    <item msgid="772029947136115322">"30 sekúndur"</item>
+    <item msgid="8743663928349474087">"1 mínúta"</item>
+    <item msgid="1506508631223164814">"2 mínútur"</item>
+    <item msgid="8664703938127907662">"5 mínútur"</item>
+    <item msgid="5827960506924849753">"10 mínútur"</item>
+    <item msgid="6677424950124253938">"30 mínútur"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Tengt"</item>
+    <item msgid="983792611851499732">"Boðið"</item>
+    <item msgid="5438273405428201793">"Mistókst"</item>
+    <item msgid="4646663015449312554">"Í boði"</item>
+    <item msgid="3230556734162006146">"Ekkert samband"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 mínútur"</item>
+    <item msgid="2759776603549270587">"5 mínútur"</item>
+    <item msgid="167772676068860015">"1 klukkustund"</item>
+    <item msgid="5985477119043628504">"Renna aldrei út á tíma"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Síðustu 30 dagar"</item>
+    <item msgid="3211287705232736964">"Velja notkunartímabil..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Notkunartími"</item>
+    <item msgid="2784401352592276015">"Síðast notað"</item>
+    <item msgid="249854287216326349">"Heiti forrits"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ekkert"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ekkert"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ekkert"</item>
+    <item msgid="1464741437353223198">"Handbók"</item>
+    <item msgid="5793600062487886090">"Sjálfstilling proxy-þjóns"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ekkert"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP eða CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Innbyggð geymsla tækis"</item>
+    <item msgid="3186681694079967527">"Laust SD-kort"</item>
+    <item msgid="6902033473986647035">"Leyfa kerfinu að ráða"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Staðsetning"</item>
+    <item msgid="6842381562497597649">"Persónulegt"</item>
+    <item msgid="3966700236695683444">"Skilaboð"</item>
+    <item msgid="8563996233342430477">"Margmiðlun"</item>
+    <item msgid="5323851085993963783">"Tæki"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"gróflega áætluð staðsetning"</item>
+    <item msgid="1830619568689922920">"nákvæm staðsetning"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"titringur"</item>
+    <item msgid="8632513128515114092">"lesa tengiliði"</item>
+    <item msgid="3741042113569620272">"breyta tengiliðum"</item>
+    <item msgid="4204420969709009931">"lesa símtalaskrá"</item>
+    <item msgid="2260380357119423209">"breyta símtalaskrá"</item>
+    <item msgid="6550710385014530934">"lesa dagatal"</item>
+    <item msgid="3575906174264853951">"breyta dagatali"</item>
+    <item msgid="4319843242568057174">"wi-fi leit"</item>
+    <item msgid="2981791890467303819">"tilkynning"</item>
+    <item msgid="6617825156152476692">"leit að símasambandi"</item>
+    <item msgid="8865260890611559753">"hringja í síma"</item>
+    <item msgid="3254999273961542982">"lesa SMS"</item>
+    <item msgid="7711446453028825171">"skrifa SMS"</item>
+    <item msgid="6123238544099198034">"taka á móti SMS"</item>
+    <item msgid="838342167431596036">"fá neyðartextaskilaboð"</item>
+    <item msgid="8554432731560956686">"taka á móti MMS"</item>
+    <item msgid="7464863464299515059">"fá WAP-sendingar"</item>
+    <item msgid="310463075729606765">"senda SMS"</item>
+    <item msgid="7338021933527689514">"lesa ICC SMS"</item>
+    <item msgid="6130369335466613036">"skrifa ICC SMS"</item>
+    <item msgid="6536865581421670942">"breyta stillingum"</item>
+    <item msgid="4547203129183558973">"teikna yfir"</item>
+    <item msgid="9080347512916542840">"aðgangstilkynningar"</item>
+    <item msgid="5332718516635907742">"myndavél"</item>
+    <item msgid="6098422447246167852">"taka upp hljóð"</item>
+    <item msgid="9182794235292595296">"spila hljóð"</item>
+    <item msgid="8760743229597702019">"lesa klippiborð"</item>
+    <item msgid="2266923698240538544">"breyta klippiborði"</item>
+    <item msgid="1801619438618539275">"margmiðlunarhnappar"</item>
+    <item msgid="31588119965784465">"fókus hljóðs"</item>
+    <item msgid="7565226799008076833">"meginhljóðstyrkur"</item>
+    <item msgid="5420704980305018295">"hljóðstyrkur raddar"</item>
+    <item msgid="5797363115508970204">"hljóðstyrkur hringingar"</item>
+    <item msgid="8233154098550715999">"hljóðstyrkur margmiðlunarefnis"</item>
+    <item msgid="5196715605078153950">"hljóðstyrkur vekjara"</item>
+    <item msgid="394030698764284577">"hljóðstyrkur tilkynninga"</item>
+    <item msgid="8952898972491680178">"hljóðstyrkur bluetooth"</item>
+    <item msgid="8506227454543690851">"ekki fara í biðstöðu"</item>
+    <item msgid="1108160036049727420">"fylgjast með staðsetningu"</item>
+    <item msgid="1496205959751719491">"fylgjast með staðsetningum með miklum styrk"</item>
+    <item msgid="3776296279910987380">"fá talnagögn um notkun"</item>
+    <item msgid="8827100324471975602">"kveikja/slökkva á hljóðnema"</item>
+    <item msgid="6880736730520126864">"sýna tilkynningu"</item>
+    <item msgid="4933375960222609935">"margmiðlunarefni verkefnis"</item>
+    <item msgid="8357907018938895462">"virkja VPN"</item>
+    <item msgid="8143812849911310973">"skrifa veggfóður"</item>
+    <item msgid="6266277260961066535">"aðstoða við uppbyggingu"</item>
+    <item msgid="7715498149883482300">"aðstoða við skjámynd"</item>
+    <item msgid="4046679376726313293">"lesa stöðu síma"</item>
+    <item msgid="6329507266039719587">"bæta við talhólfi"</item>
+    <item msgid="7692440726415391408">"nota SIP"</item>
+    <item msgid="8572453398128326267">"vinna úr hringdu símtali"</item>
+    <item msgid="7775674394089376306">"fingrafar"</item>
+    <item msgid="3182815133441738779">"líkamsskynjarar"</item>
+    <item msgid="2793100005496829513">"lesa skilaboð frá endurvarpa"</item>
+    <item msgid="2633626056029384366">"gervistaðsetning"</item>
+    <item msgid="8356842191824684631">"lesa geymslu"</item>
+    <item msgid="5671906070163291500">"skrifa í geymslu"</item>
+    <item msgid="2791955098549340418">"kveikja á skjánum"</item>
+    <item msgid="5599435119609178367">"fá reikninga"</item>
+    <item msgid="1165623660533024666">"keyra í bakgrunni"</item>
+    <item msgid="6423861043647911030">"hljóðstyrkur aðgengis"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Stutt"</item>
+    <item msgid="4816511817309094890">"Í meðallagi"</item>
+    <item msgid="8305084671259331134">"Langt"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Sjálfgefið"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Þjappað sans-serif"</item>
+    <item msgid="6529379119163117545">"Sans-serif jafnbreitt"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif jafnbreitt"</item>
+    <item msgid="4448481989108928248">"Óformlegt"</item>
+    <item msgid="4627069151979553527">"Tengt"</item>
+    <item msgid="6896773537705206194">"Litlir hástafir"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Sjálfgefið"</item>
+    <item msgid="6488643537808152001">"Ekkert"</item>
+    <item msgid="552332815156010137">"Útlína"</item>
+    <item msgid="7187891159463789272">"Skuggi"</item>
+    <item msgid="8019330250538856521">"Lyft"</item>
+    <item msgid="8987385315647049787">"Lækkað"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN með lyklum sem hefur verið deilt"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN með vottorðum"</item>
+    <item msgid="312397853907741968">"IPSec VPN með með lyklum sem hefur verið deilt og Xauth-staðfestingu"</item>
+    <item msgid="3319427315593649917">"IPSec VPN með vottorðum og Xauth-staðfestingu"</item>
+    <item msgid="8258927774145391041">"IPSec VPN með vottorðum og blandaðri staðfestingu"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ekkert"</item>
+    <item msgid="1157046369795346308">"Handbók"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Spyrja"</item>
+    <item msgid="7718817231348607934">"Leyfa aldrei"</item>
+    <item msgid="8184570120217958741">"Leyfa alltaf"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Viðvarandi"</item>
+    <item msgid="167418068739176448">"Mesta virkni"</item>
+    <item msgid="4760813290195199773">"Mikilvægt (forgrunnur)"</item>
+    <item msgid="2328684826817647595">"Mikilvægt (bakgrunnur)"</item>
+    <item msgid="7746406490652867365">"Öryggisafrit"</item>
+    <item msgid="5597404364389196754">"Þung vinnsla"</item>
+    <item msgid="1290888779300174556">"Þjónusta (í gangi)"</item>
+    <item msgid="7241098542073939046">"Þjónusta (endurræsist)"</item>
+    <item msgid="6610439017684111046">"Móttakari"</item>
+    <item msgid="7367606086319921117">"Heim"</item>
+    <item msgid="3344660712396741826">"Síðasta virkni"</item>
+    <item msgid="5006559348883303865">"Í skyndiminni (virkni)"</item>
+    <item msgid="8633480732468137525">"Í skyndiminni (virknibiðlari)"</item>
+    <item msgid="6248998242443333892">"Í skyndiminni (autt)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Blágrænn"</item>
+    <item msgid="3228505970082457852">"Blár"</item>
+    <item msgid="6590260735734795647">"Dimmfjólublár"</item>
+    <item msgid="3521763377357218577">"Fjólublár"</item>
+    <item msgid="5932337981182999919">"Bleikur"</item>
+    <item msgid="5642914536624000094">"Rauður"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Eldri en 30 daga"</item>
+    <item msgid="8699273238891265610">"Eldri en 60 daga"</item>
+    <item msgid="8346279419423837266">"Eldri en 90 daga"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Greina sjálfkrafa"</item>
+    <item msgid="773943026484148895">"Meðhöndla sem mælt"</item>
+    <item msgid="1008268820118852416">"Meðhöndla sem ótakmarkað"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Nota MAC-vistfang af handahófi (sjálfgefið)"</item>
+    <item msgid="214234417308375326">"Nota MAC-vistfang tækis"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nei"</item>
+    <item msgid="1930581185557754880">"Já"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Dökkt"</item>
+    <item msgid="5079453644557603349">"Ljóst"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Slökkt"</item>
+    <item msgid="4072198137051566919">"Kemba"</item>
+    <item msgid="2473005316958868509">"Ítarleg"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Aðeins heimakerfi"</item>
+    <item msgid="1161026694891024702">"Sjálfvirkt"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA fyrsta val"</item>
+    <item msgid="7581481130337402578">"GSM eingöngu"</item>
+    <item msgid="8579197487913425819">"WCDMA eingöngu"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA sjálfvirkt"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo sjálfvirkt"</item>
+    <item msgid="4219607161971472471">"CDMA án EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo eingöngu"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Alþjóðlegt"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Aðeins TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Alþjóðlegt"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-it-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-it-nokeys/strings.xml
new file mode 100644
index 0000000..4546e65
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-it-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gestisci applicazioni"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-it/arrays.xml b/tests/CarDeveloperOptions/res/values-it/arrays.xml
new file mode 100644
index 0000000..5eaf55f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-it/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacifico"</item>
+    <item msgid="7044520255415007865">"Tutte"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 secondi"</item>
+    <item msgid="772029947136115322">"30 secondi"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minuti"</item>
+    <item msgid="8664703938127907662">"5 minuti"</item>
+    <item msgid="5827960506924849753">"10 minuti"</item>
+    <item msgid="6677424950124253938">"30 minuti"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Piccole"</item>
+    <item msgid="591935967183159581">"Predefinito"</item>
+    <item msgid="1714184661981538355">"Grandi"</item>
+    <item msgid="6195563047686707484">"Più grandi"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Ricerca..."</item>
+    <item msgid="8058143476674427024">"Connessione a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Autenticazione con <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Recupero indirizzo IP da <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Connessa a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Sospeso"</item>
+    <item msgid="4133290864821295785">"Disconnessione da <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Disconnesso"</item>
+    <item msgid="2847316776634969068">"Non riuscita"</item>
+    <item msgid="4390990424746035383">"Bloccate"</item>
+    <item msgid="3618248791367063949">"Al momento vengono evitate connessioni deboli"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Pulsante di comando"</item>
+    <item msgid="7401896200768713930">"PIN del dispositivo peer"</item>
+    <item msgid="4526848028011846710">"PIN da dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Connessa"</item>
+    <item msgid="983792611851499732">"Invitato"</item>
+    <item msgid="5438273405428201793">"Non riuscita"</item>
+    <item msgid="4646663015449312554">"Disponibile"</item>
+    <item msgid="3230556734162006146">"Fuori dal raggio d\'azione"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuti"</item>
+    <item msgid="2759776603549270587">"5 minuti"</item>
+    <item msgid="167772676068860015">"1 ora"</item>
+    <item msgid="5985477119043628504">"Mai in timeout"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Ultimi 30 giorni"</item>
+    <item msgid="3211287705232736964">"Imp. ciclo di utilizzo..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Tempo di utilizzo"</item>
+    <item msgid="2784401352592276015">"Data ultimo utilizzo:"</item>
+    <item msgid="249854287216326349">"Nome applicazione"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Nessuna"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Nessuna"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statico"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Nessuna"</item>
+    <item msgid="1464741437353223198">"Manuale"</item>
+    <item msgid="5793600062487886090">"Configurazione automatica proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Nessuna"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP o CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Memorizzazione su dispositivo interno"</item>
+    <item msgid="3186681694079967527">"Scheda SD rimovibile"</item>
+    <item msgid="6902033473986647035">"Impostazione di sistema"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Posizione"</item>
+    <item msgid="6842381562497597649">"Personali"</item>
+    <item msgid="3966700236695683444">"Messaggi"</item>
+    <item msgid="8563996233342430477">"Supporti"</item>
+    <item msgid="5323851085993963783">"Dispositivo"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"posizione approssimativa"</item>
+    <item msgid="1830619568689922920">"posizione precisa"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrazione"</item>
+    <item msgid="8632513128515114092">"lettura contatti"</item>
+    <item msgid="3741042113569620272">"modifica dei contatti"</item>
+    <item msgid="4204420969709009931">"lettura del registro chiamate"</item>
+    <item msgid="2260380357119423209">"modifica del registro chiamate"</item>
+    <item msgid="6550710385014530934">"lettura calendario"</item>
+    <item msgid="3575906174264853951">"modifica del calendario"</item>
+    <item msgid="4319843242568057174">"scansione Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notifica"</item>
+    <item msgid="6617825156152476692">"scansione cell"</item>
+    <item msgid="8865260890611559753">"chiamate telefono"</item>
+    <item msgid="3254999273961542982">"lettura SMS"</item>
+    <item msgid="7711446453028825171">"scrittura SMS"</item>
+    <item msgid="6123238544099198034">"ricezione SMS"</item>
+    <item msgid="838342167431596036">"ricezione SMS di emergenza"</item>
+    <item msgid="8554432731560956686">"ricezione MMS"</item>
+    <item msgid="7464863464299515059">"ricezione push WAP"</item>
+    <item msgid="310463075729606765">"invio SMS"</item>
+    <item msgid="7338021933527689514">"lettura SMS ICC"</item>
+    <item msgid="6130369335466613036">"scrittura SMS ICC"</item>
+    <item msgid="6536865581421670942">"modifica delle impostazioni"</item>
+    <item msgid="4547203129183558973">"traccia in alto"</item>
+    <item msgid="9080347512916542840">"accesso a notifiche"</item>
+    <item msgid="5332718516635907742">"fotocamera"</item>
+    <item msgid="6098422447246167852">"registrazione audio"</item>
+    <item msgid="9182794235292595296">"riproduzione audio"</item>
+    <item msgid="8760743229597702019">"lettura degli appunti"</item>
+    <item msgid="2266923698240538544">"modifica degli appunti"</item>
+    <item msgid="1801619438618539275">"pulsanti contenuti multimediali"</item>
+    <item msgid="31588119965784465">"focus audio"</item>
+    <item msgid="7565226799008076833">"volume principale"</item>
+    <item msgid="5420704980305018295">"volume voce"</item>
+    <item msgid="5797363115508970204">"volume suoneria"</item>
+    <item msgid="8233154098550715999">"volume contenuti multimediali"</item>
+    <item msgid="5196715605078153950">"volume sveglia"</item>
+    <item msgid="394030698764284577">"volume notifiche"</item>
+    <item msgid="8952898972491680178">"volume bluetooth"</item>
+    <item msgid="8506227454543690851">"mantieni attivo"</item>
+    <item msgid="1108160036049727420">"monitora posizione"</item>
+    <item msgid="1496205959751719491">"monitora geolocalizzazione a consumo elevato"</item>
+    <item msgid="3776296279910987380">"ricevi statistiche sull\'utilizzo"</item>
+    <item msgid="8827100324471975602">"attiva/disattiva microfono"</item>
+    <item msgid="6880736730520126864">"visualizzazione dell\'avviso popup"</item>
+    <item msgid="4933375960222609935">"elementi multimediali dei progetti"</item>
+    <item msgid="8357907018938895462">"attivazione della VPN"</item>
+    <item msgid="8143812849911310973">"scrittura dello sfondo"</item>
+    <item msgid="6266277260961066535">"assistenza per la struttura"</item>
+    <item msgid="7715498149883482300">"assistenza per lo screenshot"</item>
+    <item msgid="4046679376726313293">"lettura dello stato del telefono"</item>
+    <item msgid="6329507266039719587">"aggiunta di un messaggio vocale"</item>
+    <item msgid="7692440726415391408">"utilizzo di SIP"</item>
+    <item msgid="8572453398128326267">"elaborazione della chiamata in uscita"</item>
+    <item msgid="7775674394089376306">"impronta digitale"</item>
+    <item msgid="3182815133441738779">"sensori per il corpo"</item>
+    <item msgid="2793100005496829513">"lettura di cell broadcast"</item>
+    <item msgid="2633626056029384366">"posizione fittizia"</item>
+    <item msgid="8356842191824684631">"lettura dello spazio di archiviazione"</item>
+    <item msgid="5671906070163291500">"scrittura nello spazio di archiviazione"</item>
+    <item msgid="2791955098549340418">"attivazione dello schermo"</item>
+    <item msgid="5599435119609178367">"recupero di account"</item>
+    <item msgid="1165623660533024666">"esecuzione in background"</item>
+    <item msgid="6423861043647911030">"volume accessibilità"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Posizione"</item>
+    <item msgid="6656077694190491067">"Posizione"</item>
+    <item msgid="8790228218278477369">"Posizione"</item>
+    <item msgid="7836406246005211990">"Vibrazione"</item>
+    <item msgid="3951439024549922598">"Lettura contatti"</item>
+    <item msgid="8802152411647068">"Modifica dei contatti"</item>
+    <item msgid="229544934599698735">"Lettura del registro chiamate"</item>
+    <item msgid="7396102294405899613">"Modifica del registro chiamate"</item>
+    <item msgid="3597797992398484655">"Lettura calendario"</item>
+    <item msgid="2705975774250907343">"Modifica del calendario"</item>
+    <item msgid="4668747371441932697">"Posizione"</item>
+    <item msgid="1487578921720243646">"Pubblicazione notifica"</item>
+    <item msgid="4636080349724146638">"Posizione"</item>
+    <item msgid="673510900286463926">"Chiamate telefono"</item>
+    <item msgid="542083422784609790">"Lettura di SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Scrittura di SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Ricezione SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Ricezione SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Ricezione SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Ricezione SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Invio SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Lettura di SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Scrittura di SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Modifica delle impostazioni"</item>
+    <item msgid="8705854389991425629">"Traccia in alto"</item>
+    <item msgid="5861356020344153651">"Accesso a notifiche"</item>
+    <item msgid="78432174621628659">"Fotocamera"</item>
+    <item msgid="3986116419882154794">"Registrazione audio"</item>
+    <item msgid="4516840825756409490">"Riproduzione audio"</item>
+    <item msgid="6811712502798183957">"Lettura degli appunti"</item>
+    <item msgid="2780369012602289114">"Modifica degli appunti"</item>
+    <item msgid="2331359440170850868">"Pulsanti contenuti multimediali"</item>
+    <item msgid="6133599737122751231">"Focus audio"</item>
+    <item msgid="6844485713404805301">"Volume principale"</item>
+    <item msgid="1600379420669104929">"Volume voce"</item>
+    <item msgid="6296768210470214866">"Volume suoneria"</item>
+    <item msgid="510690696071629241">"Volume contenuti multimediali"</item>
+    <item msgid="406861638631430109">"Volume sveglia"</item>
+    <item msgid="4715864795872233884">"Volume notifiche"</item>
+    <item msgid="2311478519251301183">"Volume Bluetooth"</item>
+    <item msgid="5133991377896747027">"Mantieni attivo"</item>
+    <item msgid="2464189519136248621">"Posizione"</item>
+    <item msgid="2062677934050803037">"Posizione"</item>
+    <item msgid="1735171933192715957">"Ricevi statistiche sull\'utilizzo"</item>
+    <item msgid="1014093788778383554">"Attiva/disattiva microfono"</item>
+    <item msgid="4199297950608622850">"Visualizzazione dell\'avviso popup"</item>
+    <item msgid="2527962435313398821">"Proiezione di contenuti multimediali"</item>
+    <item msgid="5117506254221861929">"Attivazione della VPN"</item>
+    <item msgid="8291198322681891160">"Scrivi sfondo"</item>
+    <item msgid="7106921284621230961">"Assistenza per la struttura"</item>
+    <item msgid="4496533640894624799">"Assistenza per lo screenshot"</item>
+    <item msgid="2598847264853993611">"Lettura dello stato del telefono"</item>
+    <item msgid="9215610846802973353">"Aggiunta di un messaggio vocale"</item>
+    <item msgid="9186411956086478261">"Utilizzo di SIP"</item>
+    <item msgid="6884763100104539558">"Elaborazione della chiamata in uscita"</item>
+    <item msgid="125513972170580692">"Impronta digitale"</item>
+    <item msgid="2556071024281275619">"Sensori per il corpo"</item>
+    <item msgid="617168514928339387">"Lettura di cell broadcast"</item>
+    <item msgid="7134693570516523585">"Posizione fittizia"</item>
+    <item msgid="7224489175375229399">"Lettura dello spazio di archiviazione"</item>
+    <item msgid="8472735063903258202">"Scrittura nello spazio di archiviazione"</item>
+    <item msgid="4069276819909595110">"Attivazione dello schermo"</item>
+    <item msgid="1228338896751121025">"Recupero di account"</item>
+    <item msgid="3181581793459233672">"Esecuzione in background"</item>
+    <item msgid="2340936043025374076">"Volume accessibilità"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Breve"</item>
+    <item msgid="4816511817309094890">"Media"</item>
+    <item msgid="8305084671259331134">"Lungo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predefinito"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Corsivo"</item>
+    <item msgid="6896773537705206194">"Maiuscoletto"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predefinito"</item>
+    <item msgid="6488643537808152001">"Nessuna"</item>
+    <item msgid="552332815156010137">"Struttura"</item>
+    <item msgid="7187891159463789272">"Ombreggiatura"</item>
+    <item msgid="8019330250538856521">"In rilievo"</item>
+    <item msgid="8987385315647049787">"Incassato"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Impostazioni predefinite app"</item>
+    <item msgid="8611890312638868524">"Bianco su nero"</item>
+    <item msgid="5891360837786277638">"Nero su bianco"</item>
+    <item msgid="2798457065945456853">"Giallo su nero"</item>
+    <item msgid="5799049811524553967">"Giallo su blu"</item>
+    <item msgid="3673930830658169860">"Personalizzato"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"VPN L2TP/IPSec con chiavi precondivise"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec con certificati"</item>
+    <item msgid="312397853907741968">"VPN IPSec con chiavi precondivise e autenticazione Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec con certificati e autenticazione Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec con certificati e autenticazione ibrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nessuna"</item>
+    <item msgid="1157046369795346308">"Manuale"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Disconnesso"</item>
+    <item msgid="8754480102834556765">"Inizializzazione..."</item>
+    <item msgid="3351334355574270250">"Connessione..."</item>
+    <item msgid="8303882153995748352">"Connessa"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Non riuscita"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Chiedi"</item>
+    <item msgid="7718817231348607934">"Non consentire mai"</item>
+    <item msgid="8184570120217958741">"Consenti sempre"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistente"</item>
+    <item msgid="167418068739176448">"Prima attività"</item>
+    <item msgid="4760813290195199773">"Importante (in primo piano)"</item>
+    <item msgid="2328684826817647595">"Importante (in background)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Pesante"</item>
+    <item msgid="1290888779300174556">"Servizio (in esecuzione)"</item>
+    <item msgid="7241098542073939046">"Service (riavvio)"</item>
+    <item msgid="6610439017684111046">"Ricevitore"</item>
+    <item msgid="7367606086319921117">"Home"</item>
+    <item msgid="3344660712396741826">"Ultima attività"</item>
+    <item msgid="5006559348883303865">"Memorizzata nella cache (attività)"</item>
+    <item msgid="8633480732468137525">"Memorizzata nella cache (client attività)"</item>
+    <item msgid="6248998242443333892">"Memorizzata nella cache (vuoto)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Verde acqua"</item>
+    <item msgid="3228505970082457852">"Blu"</item>
+    <item msgid="6590260735734795647">"Indaco"</item>
+    <item msgid="3521763377357218577">"Viola"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Rosso"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Più vecchi di 30 giorni"</item>
+    <item msgid="8699273238891265610">"Più vecchi di 60 giorni"</item>
+    <item msgid="8346279419423837266">"Più vecchi di 90 giorni"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Rileva automaticamente"</item>
+    <item msgid="773943026484148895">"Considera a consumo"</item>
+    <item msgid="1008268820118852416">"Considera non a consumo"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Usa MAC casuale (opzione predefinita)"</item>
+    <item msgid="214234417308375326">"Utilizza indirizzo MAC del dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Sì"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Scuro"</item>
+    <item msgid="5079453644557603349">"Chiaro"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Off"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Dettagliata"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Solo domestica"</item>
+    <item msgid="1161026694891024702">"Automatica"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferito"</item>
+    <item msgid="7581481130337402578">"Solo GSM"</item>
+    <item msgid="8579197487913425819">"Solo WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatico"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatico"</item>
+    <item msgid="4219607161971472471">"CDMA senza EvDo"</item>
+    <item msgid="7278975240951052041">"Solo EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globale"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Solo TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globale"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-it/strings.xml b/tests/CarDeveloperOptions/res/values-it/strings.xml
index 4bf10e9..e8e1828 100644
--- a/tests/CarDeveloperOptions/res/values-it/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-it/strings.xml
@@ -426,7 +426,7 @@
     <string name="security_settings_face_settings_require_confirmation_details" msgid="8740564864091803429">"Chiedi sempre conferma per l\'autenticazione nelle app"</string>
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"Rimuovi dati viso"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"Il tuo viso può essere utilizzato per sbloccare il tuo dispositivo e accedere alle app. "<annotation id="url">"Ulteriori informazioni"</annotation></string>
-    <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"Rimuovere i dati viso?"</string>
+    <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"Rimuovere i dati del viso?"</string>
     <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"I dati registrati da Sblocco col sorriso verranno eliminati in modo definitivo e sicuro. Dopo la rimozione, ti serviranno il tuo PIN, la tua sequenza o la tua password per sbloccare il telefono, accedere alle app e confermare i pagamenti."</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"Impronta digitale"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"Gestisci impronte digitali"</string>
diff --git a/tests/CarDeveloperOptions/res/values-iw-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-iw-nokeys/strings.xml
new file mode 100644
index 0000000..5887fc4
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-iw-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ניהול אפליקציות"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-iw/arrays.xml b/tests/CarDeveloperOptions/res/values-iw/arrays.xml
new file mode 100644
index 0000000..7d38fa6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-iw/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"אמריקה"</item>
+    <item msgid="4791956477275129121">"אירופה"</item>
+    <item msgid="3812126832016254559">"אפריקה"</item>
+    <item msgid="2765816300353408280">"אסיה"</item>
+    <item msgid="6683489385344409742">"אוסטרליה"</item>
+    <item msgid="5194868215515664953">"האוקיינוס השקט"</item>
+    <item msgid="7044520255415007865">"הכול"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 שניות"</item>
+    <item msgid="772029947136115322">"30 שניות"</item>
+    <item msgid="8743663928349474087">"דקה"</item>
+    <item msgid="1506508631223164814">"2 דקות"</item>
+    <item msgid="8664703938127907662">"5 דקות"</item>
+    <item msgid="5827960506924849753">"10 דקות"</item>
+    <item msgid="6677424950124253938">"30 דקות"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"קטן"</item>
+    <item msgid="591935967183159581">"ברירת מחדל"</item>
+    <item msgid="1714184661981538355">"גדול"</item>
+    <item msgid="6195563047686707484">"הכי גדול"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"סורק..."</item>
+    <item msgid="8058143476674427024">"מתחבר אל <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"מאמת עם <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"משיג כתובת IP מתוך <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"מחובר אל <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"בהשעיה"</item>
+    <item msgid="4133290864821295785">"מתנתק מרשת <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"מנותק"</item>
+    <item msgid="2847316776634969068">"נכשל"</item>
+    <item msgid="4390990424746035383">"חסום"</item>
+    <item msgid="3618248791367063949">"נמנע זמנית מחיבור חלש"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"לחצן דחיפה"</item>
+    <item msgid="7401896200768713930">"קוד גישה ממכשיר עמית"</item>
+    <item msgid="4526848028011846710">"קוד גישה ממכשיר זה"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"מחובר"</item>
+    <item msgid="983792611851499732">"הוזמן"</item>
+    <item msgid="5438273405428201793">"נכשל"</item>
+    <item msgid="4646663015449312554">"זמין"</item>
+    <item msgid="3230556734162006146">"מחוץ לטווח"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 דקות"</item>
+    <item msgid="2759776603549270587">"5 דקות"</item>
+    <item msgid="167772676068860015">"שעה אחת"</item>
+    <item msgid="5985477119043628504">"ללא זמן קצוב לתפוגה"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 הימים האחרונים"</item>
+    <item msgid="3211287705232736964">"הגדר מחזור שימוש..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"זמן שימוש"</item>
+    <item msgid="2784401352592276015">"מועד שימוש אחרון"</item>
+    <item msgid="249854287216326349">"שם האפליקציה"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ללא"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ללא"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"סטטי"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ללא"</item>
+    <item msgid="1464741437353223198">"ידני"</item>
+    <item msgid="5793600062487886090">"הגדרה אוט\' לשרת proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ללא"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP או CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"אחסון פנימי במכשיר"</item>
+    <item msgid="3186681694079967527">"כרטיס SD נשלף"</item>
+    <item msgid="6902033473986647035">"המערכת תחליט"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"מיקום"</item>
+    <item msgid="6842381562497597649">"אישי"</item>
+    <item msgid="3966700236695683444">"העברת הודעות"</item>
+    <item msgid="8563996233342430477">"מדיה"</item>
+    <item msgid="5323851085993963783">"מכשיר"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"מיקום משוער"</item>
+    <item msgid="1830619568689922920">"מיקום מדויק"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"רטט"</item>
+    <item msgid="8632513128515114092">"קרא אנשי קשר"</item>
+    <item msgid="3741042113569620272">"שנה אנשי קשר"</item>
+    <item msgid="4204420969709009931">"קרא יומן שיחות"</item>
+    <item msgid="2260380357119423209">"שנה יומן שיחות"</item>
+    <item msgid="6550710385014530934">"קרא יומן"</item>
+    <item msgid="3575906174264853951">"שנה יומן"</item>
+    <item msgid="4319843242568057174">"סריקת Wi-Fi"</item>
+    <item msgid="2981791890467303819">"התראה"</item>
+    <item msgid="6617825156152476692">"סריקה סלולרית"</item>
+    <item msgid="8865260890611559753">"שיחת טלפון"</item>
+    <item msgid="3254999273961542982">"קרא SMS"</item>
+    <item msgid="7711446453028825171">"כתוב SMS"</item>
+    <item msgid="6123238544099198034">"קבל SMS"</item>
+    <item msgid="838342167431596036">"קבל SMS חירום"</item>
+    <item msgid="8554432731560956686">"קבל MMS"</item>
+    <item msgid="7464863464299515059">"קבל WAP בדחיפה"</item>
+    <item msgid="310463075729606765">"שלח SMS"</item>
+    <item msgid="7338021933527689514">"קרא ICC SMS"</item>
+    <item msgid="6130369335466613036">"כתוב ICC SMS"</item>
+    <item msgid="6536865581421670942">"שנה הגדרות"</item>
+    <item msgid="4547203129183558973">"צייר מעל"</item>
+    <item msgid="9080347512916542840">"גישה אל התראות"</item>
+    <item msgid="5332718516635907742">"מצלמה"</item>
+    <item msgid="6098422447246167852">"הקלט אודיו"</item>
+    <item msgid="9182794235292595296">"הפעל את האודיו"</item>
+    <item msgid="8760743229597702019">"קרא לוח"</item>
+    <item msgid="2266923698240538544">"שנה לוח"</item>
+    <item msgid="1801619438618539275">"לחצני מדיה"</item>
+    <item msgid="31588119965784465">"מיקוד אודיו"</item>
+    <item msgid="7565226799008076833">"שליטה ראשית בעוצמת קול"</item>
+    <item msgid="5420704980305018295">"עוצמת קול של דיבור"</item>
+    <item msgid="5797363115508970204">"עוצמת קול של צלצול"</item>
+    <item msgid="8233154098550715999">"עוצמת קול של מדיה"</item>
+    <item msgid="5196715605078153950">"עוצמת קול של התרעה"</item>
+    <item msgid="394030698764284577">"עוצמת קול של התראה"</item>
+    <item msgid="8952898972491680178">"עוצמת קול של Bluetooth"</item>
+    <item msgid="8506227454543690851">"שמור במצב פעיל"</item>
+    <item msgid="1108160036049727420">"עקוב אחר מיקום"</item>
+    <item msgid="1496205959751719491">"מעקב אחר מיקום עם צריכת סוללה גבוהה"</item>
+    <item msgid="3776296279910987380">"קבל סטטיסטיקת שימוש"</item>
+    <item msgid="8827100324471975602">"השתק/בטל השתקה של המיקרופון"</item>
+    <item msgid="6880736730520126864">"הצגת הודעה קופצת"</item>
+    <item msgid="4933375960222609935">"הקרן מדיה"</item>
+    <item msgid="8357907018938895462">"הפעלת VPN"</item>
+    <item msgid="8143812849911310973">"כתיבת טפט"</item>
+    <item msgid="6266277260961066535">"סיוע למבנה"</item>
+    <item msgid="7715498149883482300">"סיוע לצילום מסך"</item>
+    <item msgid="4046679376726313293">"קריאת מצב טלפון"</item>
+    <item msgid="6329507266039719587">"הוספת דואר קולי"</item>
+    <item msgid="7692440726415391408">"שימוש ב-SIP"</item>
+    <item msgid="8572453398128326267">"עיבוד שיחה יוצאת"</item>
+    <item msgid="7775674394089376306">"טביעת אצבע"</item>
+    <item msgid="3182815133441738779">"חיישני גוף"</item>
+    <item msgid="2793100005496829513">"קריאת שידורים סלולריים"</item>
+    <item msgid="2633626056029384366">"הדמיית מיקום"</item>
+    <item msgid="8356842191824684631">"קריאת אחסון"</item>
+    <item msgid="5671906070163291500">"כתיבת אחסון"</item>
+    <item msgid="2791955098549340418">"הפעלת מסך"</item>
+    <item msgid="5599435119609178367">"קבלת חשבונות"</item>
+    <item msgid="1165623660533024666">"הרצה ברקע"</item>
+    <item msgid="6423861043647911030">"עוצמת קול של נגישות"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"קצר"</item>
+    <item msgid="4816511817309094890">"בינונית"</item>
+    <item msgid="8305084671259331134">"ארוך"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ברירת מחדל"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif דחוס"</item>
+    <item msgid="6529379119163117545">"Sans-serif עם רווח יחיד"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif עם רווח יחיד"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"כתב-יד"</item>
+    <item msgid="6896773537705206194">"רישיות קטנות"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ברירת מחדל"</item>
+    <item msgid="6488643537808152001">"ללא"</item>
+    <item msgid="552332815156010137">"קו מתאר"</item>
+    <item msgid="7187891159463789272">"הטלת צללית"</item>
+    <item msgid="8019330250538856521">"מובלט"</item>
+    <item msgid="8987385315647049787">"שקוע"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"ברירות המחדל של האפליקציה"</item>
+    <item msgid="8611890312638868524">"לבן על גבי שחור"</item>
+    <item msgid="5891360837786277638">"שחור על גבי לבן"</item>
+    <item msgid="2798457065945456853">"צהוב על גבי שחור"</item>
+    <item msgid="5799049811524553967">"צהוב על גבי כחול"</item>
+    <item msgid="3673930830658169860">"מותאם אישית"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN עם מפתחות משותפים מראש"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN עם אישורים"</item>
+    <item msgid="312397853907741968">"IPSec VPN עם מפתחות משותפים מראש ואימות Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN עם אישורים ואימות Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN עם אישורים ואימות משולב"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ללא"</item>
+    <item msgid="1157046369795346308">"ידני"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"מנותק"</item>
+    <item msgid="8754480102834556765">"מאתחל..."</item>
+    <item msgid="3351334355574270250">"מתחבר…"</item>
+    <item msgid="8303882153995748352">"מחובר"</item>
+    <item msgid="9135049670787351881">"זמן קצוב לתפוגה"</item>
+    <item msgid="2124868417182583926">"נכשל"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"שאל"</item>
+    <item msgid="7718817231348607934">"לעולם אל תאפשר"</item>
+    <item msgid="8184570120217958741">"אפשר תמיד"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"קבוע"</item>
+    <item msgid="167418068739176448">"פעילות מובילה"</item>
+    <item msgid="4760813290195199773">"חשוב (קדמה)"</item>
+    <item msgid="2328684826817647595">"חשוב (רקע)"</item>
+    <item msgid="7746406490652867365">"גיבוי"</item>
+    <item msgid="5597404364389196754">"משקל כבד"</item>
+    <item msgid="1290888779300174556">"שירות (פועל)"</item>
+    <item msgid="7241098542073939046">"שירות (מאתחל)"</item>
+    <item msgid="6610439017684111046">"מקבל"</item>
+    <item msgid="7367606086319921117">"דף הבית"</item>
+    <item msgid="3344660712396741826">"פעילות אחרונה"</item>
+    <item msgid="5006559348883303865">"בקובץ שמור (פעילות)"</item>
+    <item msgid="8633480732468137525">"בקובץ שמור (לקוח פעילות)"</item>
+    <item msgid="6248998242443333892">"בקובץ שמור (ריק)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"כחול-ירקרק"</item>
+    <item msgid="3228505970082457852">"כחול"</item>
+    <item msgid="6590260735734795647">"כחול כהה"</item>
+    <item msgid="3521763377357218577">"סגול"</item>
+    <item msgid="5932337981182999919">"ורוד"</item>
+    <item msgid="5642914536624000094">"אדום"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"בני למעלה מ-30 ימים"</item>
+    <item msgid="8699273238891265610">"בני למעלה מ-60 ימים"</item>
+    <item msgid="8346279419423837266">"בני למעלה מ-90 ימים"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"גילוי אוטומטי"</item>
+    <item msgid="773943026484148895">"יש להתייחס כרשת נמדדת"</item>
+    <item msgid="1008268820118852416">"יש להתייחס כרשת לא נמדדת"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"שימוש ב-MAC אקראי (ברירת מחדל)"</item>
+    <item msgid="214234417308375326">"שימוש ב-MAC של המכשיר"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"לא"</item>
+    <item msgid="1930581185557754880">"כן"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"כהה"</item>
+    <item msgid="5079453644557603349">"בהיר"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"כבוי"</item>
+    <item msgid="4072198137051566919">"ניפוי באגים"</item>
+    <item msgid="2473005316958868509">"מרובה-מילים"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"בית בלבד"</item>
+    <item msgid="1161026694891024702">"באופן אוטומטי"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA מועדפת"</item>
+    <item msgid="7581481130337402578">"GSM בלבד"</item>
+    <item msgid="8579197487913425819">"WCDMA בלבד"</item>
+    <item msgid="8465243227505412498">"GSM/‏WCDMA אוטומטית"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo אוטומטית"</item>
+    <item msgid="4219607161971472471">"CDMA ללא EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo בלבד"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"כללי"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA בלבד"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"כללי"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ja-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ja-nokeys/strings.xml
new file mode 100644
index 0000000..c7ccad0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ja-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"アプリケーションを管理"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ja/arrays.xml b/tests/CarDeveloperOptions/res/values-ja/arrays.xml
new file mode 100644
index 0000000..4e76253
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ja/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"アメリカ"</item>
+    <item msgid="4791956477275129121">"ヨーロッパ"</item>
+    <item msgid="3812126832016254559">"アフリカ"</item>
+    <item msgid="2765816300353408280">"アジア"</item>
+    <item msgid="6683489385344409742">"オーストラリア"</item>
+    <item msgid="5194868215515664953">"太平洋"</item>
+    <item msgid="7044520255415007865">"すべて"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15秒"</item>
+    <item msgid="772029947136115322">"30秒"</item>
+    <item msgid="8743663928349474087">"1分"</item>
+    <item msgid="1506508631223164814">"2分"</item>
+    <item msgid="8664703938127907662">"5分"</item>
+    <item msgid="5827960506924849753">"10分"</item>
+    <item msgid="6677424950124253938">"30分"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"小"</item>
+    <item msgid="591935967183159581">"デフォルト"</item>
+    <item msgid="1714184661981538355">"大"</item>
+    <item msgid="6195563047686707484">"最大"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"スキャンしています..."</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>に接続中..."</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>で認証しています..."</item>
+    <item msgid="5145158315060185414">"IPアドレスを<xliff:g id="NETWORK_NAME">%1$s</xliff:g>から取得しています..."</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>に接続しました"</item>
+    <item msgid="6600156231416890902">"強制停止"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>から切断中..."</item>
+    <item msgid="3980154971187953257">"切断"</item>
+    <item msgid="2847316776634969068">"失敗"</item>
+    <item msgid="4390990424746035383">"ブロック済み"</item>
+    <item msgid="3618248791367063949">"接続不良により一時的に無効"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"プッシュボタン"</item>
+    <item msgid="7401896200768713930">"ピアデバイスのPIN"</item>
+    <item msgid="4526848028011846710">"このデバイスのPIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"接続済み"</item>
+    <item msgid="983792611851499732">"招待済み"</item>
+    <item msgid="5438273405428201793">"失敗"</item>
+    <item msgid="4646663015449312554">"使用可能"</item>
+    <item msgid="3230556734162006146">"圏外"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2分"</item>
+    <item msgid="2759776603549270587">"5分"</item>
+    <item msgid="167772676068860015">"1時間"</item>
+    <item msgid="5985477119043628504">"タイムアウトしない"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"過去30日間"</item>
+    <item msgid="3211287705232736964">"使用サイクルを設定..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"使用時間"</item>
+    <item msgid="2784401352592276015">"前回の使用"</item>
+    <item msgid="249854287216326349">"アプリ名"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"なし"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"なし"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"静的"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"なし"</item>
+    <item msgid="1464741437353223198">"マニュアル"</item>
+    <item msgid="5793600062487886090">"プロキシの自動設定"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"なし"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAPまたはCHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"内部デバイスストレージ"</item>
+    <item msgid="3186681694079967527">"リムーバブルSDカード"</item>
+    <item msgid="6902033473986647035">"システムで判断する"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"現在地"</item>
+    <item msgid="6842381562497597649">"ユーザー設定"</item>
+    <item msgid="3966700236695683444">"メッセージ"</item>
+    <item msgid="8563996233342430477">"メディア"</item>
+    <item msgid="5323851085993963783">"デバイス"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"おおよその位置情報"</item>
+    <item msgid="1830619568689922920">"精細な位置情報"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"バイブレーション"</item>
+    <item msgid="8632513128515114092">"連絡先の読み取り"</item>
+    <item msgid="3741042113569620272">"連絡先の変更"</item>
+    <item msgid="4204420969709009931">"通話履歴の読み取り"</item>
+    <item msgid="2260380357119423209">"通話履歴の変更"</item>
+    <item msgid="6550710385014530934">"カレンダーの読み取り"</item>
+    <item msgid="3575906174264853951">"カレンダーの変更"</item>
+    <item msgid="4319843242568057174">"Wi-Fiスキャン"</item>
+    <item msgid="2981791890467303819">"通知"</item>
+    <item msgid="6617825156152476692">"セルスキャン"</item>
+    <item msgid="8865260890611559753">"通話の発信"</item>
+    <item msgid="3254999273961542982">"SMSの読み取り"</item>
+    <item msgid="7711446453028825171">"SMSの書き込み"</item>
+    <item msgid="6123238544099198034">"SMSの受信"</item>
+    <item msgid="838342167431596036">"緊急SMSの受信"</item>
+    <item msgid="8554432731560956686">"MMSの受信"</item>
+    <item msgid="7464863464299515059">"WAPプッシュの受信"</item>
+    <item msgid="310463075729606765">"SMSの送信"</item>
+    <item msgid="7338021933527689514">"ICC SMSの読み取り"</item>
+    <item msgid="6130369335466613036">"ICC SMSの書き込み"</item>
+    <item msgid="6536865581421670942">"設定の変更"</item>
+    <item msgid="4547203129183558973">"上部に描画"</item>
+    <item msgid="9080347512916542840">"通知へのアクセス"</item>
+    <item msgid="5332718516635907742">"カメラ"</item>
+    <item msgid="6098422447246167852">"音声の録音"</item>
+    <item msgid="9182794235292595296">"音声の再生"</item>
+    <item msgid="8760743229597702019">"クリップボードの読み取り"</item>
+    <item msgid="2266923698240538544">"クリップボードの変更"</item>
+    <item msgid="1801619438618539275">"メディアボタン"</item>
+    <item msgid="31588119965784465">"音声フォーカス"</item>
+    <item msgid="7565226799008076833">"主音量"</item>
+    <item msgid="5420704980305018295">"音声の音量"</item>
+    <item msgid="5797363115508970204">"着信音の音量"</item>
+    <item msgid="8233154098550715999">"メディアの音量"</item>
+    <item msgid="5196715605078153950">"アラームの音量"</item>
+    <item msgid="394030698764284577">"通知音量"</item>
+    <item msgid="8952898972491680178">"Bluetoothの音量"</item>
+    <item msgid="8506227454543690851">"スリープモードにしない"</item>
+    <item msgid="1108160036049727420">"場所を監視"</item>
+    <item msgid="1496205959751719491">"高精度の現在地情報を監視"</item>
+    <item msgid="3776296279910987380">"使用統計情報を取得"</item>
+    <item msgid="8827100324471975602">"マイクをミュート/ミュート解除"</item>
+    <item msgid="6880736730520126864">"トーストの表示"</item>
+    <item msgid="4933375960222609935">"メディアプロジェクション"</item>
+    <item msgid="8357907018938895462">"VPN の有効化"</item>
+    <item msgid="8143812849911310973">"壁紙の書き込み"</item>
+    <item msgid="6266277260961066535">"ストラクチャのアシスト"</item>
+    <item msgid="7715498149883482300">"スクリーンショットのアシスト"</item>
+    <item msgid="4046679376726313293">"スマートフォンのステータスの読み取り"</item>
+    <item msgid="6329507266039719587">"ボイスメールの追加"</item>
+    <item msgid="7692440726415391408">"SIP の使用"</item>
+    <item msgid="8572453398128326267">"発信の処理"</item>
+    <item msgid="7775674394089376306">"指紋"</item>
+    <item msgid="3182815133441738779">"ボディー センサー"</item>
+    <item msgid="2793100005496829513">"緊急速報メールの読み取り"</item>
+    <item msgid="2633626056029384366">"仮の現在地情報"</item>
+    <item msgid="8356842191824684631">"ストレージの読み取り"</item>
+    <item msgid="5671906070163291500">"ストレージへの書き込み"</item>
+    <item msgid="2791955098549340418">"画面をオン"</item>
+    <item msgid="5599435119609178367">"アカウントの取得"</item>
+    <item msgid="1165623660533024666">"バックグラウンドで実行"</item>
+    <item msgid="6423861043647911030">"ユーザー補助機能の音量"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"現在地"</item>
+    <item msgid="6656077694190491067">"現在地"</item>
+    <item msgid="8790228218278477369">"現在地"</item>
+    <item msgid="7836406246005211990">"バイブレーション"</item>
+    <item msgid="3951439024549922598">"連絡先の読み取り"</item>
+    <item msgid="8802152411647068">"連絡先の変更"</item>
+    <item msgid="229544934599698735">"通話履歴の読み取り"</item>
+    <item msgid="7396102294405899613">"通話履歴の変更"</item>
+    <item msgid="3597797992398484655">"カレンダーの読み取り"</item>
+    <item msgid="2705975774250907343">"カレンダーの変更"</item>
+    <item msgid="4668747371441932697">"現在地"</item>
+    <item msgid="1487578921720243646">"通知の投稿"</item>
+    <item msgid="4636080349724146638">"位置情報"</item>
+    <item msgid="673510900286463926">"通話の発信"</item>
+    <item msgid="542083422784609790">"SMS/MMSの読み取り"</item>
+    <item msgid="1033780373029588436">"SMS/MMSの書き込み"</item>
+    <item msgid="5647111115517787488">"SMS/MMSの受信"</item>
+    <item msgid="8591105601108455893">"SMS/MMSの受信"</item>
+    <item msgid="7730995008517841903">"SMS/MMSの受信"</item>
+    <item msgid="2613033109026626086">"SMS/MMSの受信"</item>
+    <item msgid="3037159047591081136">"SMS/MMSの送信"</item>
+    <item msgid="4726682243833913568">"SMS/MMSの読み取り"</item>
+    <item msgid="6555678522277865572">"SMS/MMSの書き込み"</item>
+    <item msgid="6981734935578130884">"設定の変更"</item>
+    <item msgid="8705854389991425629">"上部に描画"</item>
+    <item msgid="5861356020344153651">"通知へのアクセス"</item>
+    <item msgid="78432174621628659">"カメラ"</item>
+    <item msgid="3986116419882154794">"音声の録音"</item>
+    <item msgid="4516840825756409490">"音声の再生"</item>
+    <item msgid="6811712502798183957">"クリップボードの読み取り"</item>
+    <item msgid="2780369012602289114">"クリップボードの変更"</item>
+    <item msgid="2331359440170850868">"メディアボタン"</item>
+    <item msgid="6133599737122751231">"音声フォーカス"</item>
+    <item msgid="6844485713404805301">"主音量"</item>
+    <item msgid="1600379420669104929">"音声の音量"</item>
+    <item msgid="6296768210470214866">"着信音の音量"</item>
+    <item msgid="510690696071629241">"メディアの音量"</item>
+    <item msgid="406861638631430109">"アラームの音量"</item>
+    <item msgid="4715864795872233884">"通知の音量"</item>
+    <item msgid="2311478519251301183">"Bluetoothの音量"</item>
+    <item msgid="5133991377896747027">"スリープモードにしない"</item>
+    <item msgid="2464189519136248621">"位置情報"</item>
+    <item msgid="2062677934050803037">"場所"</item>
+    <item msgid="1735171933192715957">"使用統計情報を取得"</item>
+    <item msgid="1014093788778383554">"マイクをミュート/ミュート解除"</item>
+    <item msgid="4199297950608622850">"トーストの表示"</item>
+    <item msgid="2527962435313398821">"メディア プロジェクション"</item>
+    <item msgid="5117506254221861929">"VPN の有効化"</item>
+    <item msgid="8291198322681891160">"壁紙の書き込み"</item>
+    <item msgid="7106921284621230961">"ストラクチャのアシスト"</item>
+    <item msgid="4496533640894624799">"スクリーンショットのアシスト"</item>
+    <item msgid="2598847264853993611">"スマートフォンのステータスの読み取り"</item>
+    <item msgid="9215610846802973353">"ボイスメールの追加"</item>
+    <item msgid="9186411956086478261">"SIP の使用"</item>
+    <item msgid="6884763100104539558">"発信の処理"</item>
+    <item msgid="125513972170580692">"指紋"</item>
+    <item msgid="2556071024281275619">"ボディー センサー"</item>
+    <item msgid="617168514928339387">"緊急速報メールの読み取り"</item>
+    <item msgid="7134693570516523585">"仮の現在地情報"</item>
+    <item msgid="7224489175375229399">"ストレージの読み取り"</item>
+    <item msgid="8472735063903258202">"ストレージへの書き込み"</item>
+    <item msgid="4069276819909595110">"画面をオン"</item>
+    <item msgid="1228338896751121025">"アカウントの取得"</item>
+    <item msgid="3181581793459233672">"バックグラウンドで実行"</item>
+    <item msgid="2340936043025374076">"ユーザー補助機能の音量"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"短め"</item>
+    <item msgid="4816511817309094890">"中"</item>
+    <item msgid="8305084671259331134">"長め"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"デフォルト"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif Condensed"</item>
+    <item msgid="6529379119163117545">"Sans Serif固定幅"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif固定幅"</item>
+    <item msgid="4448481989108928248">"カジュアル"</item>
+    <item msgid="4627069151979553527">"草書体"</item>
+    <item msgid="6896773537705206194">"スモールキャピタル"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"デフォルト"</item>
+    <item msgid="6488643537808152001">"なし"</item>
+    <item msgid="552332815156010137">"アウトライン"</item>
+    <item msgid="7187891159463789272">"ドロップシャドウ"</item>
+    <item msgid="8019330250538856521">"浮き彫り"</item>
+    <item msgid="8987385315647049787">"沈み彫り"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"アプリのデフォルトを使用"</item>
+    <item msgid="8611890312638868524">"黒地に白"</item>
+    <item msgid="5891360837786277638">"白地に黒"</item>
+    <item msgid="2798457065945456853">"黒地に黄色"</item>
+    <item msgid="5799049811524553967">"青地に黄色"</item>
+    <item msgid="3673930830658169860">"カスタム"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"事前共有鍵付きのL2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"証明書付きのL2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"事前共有鍵とXauth認証付きのIPSec VPN"</item>
+    <item msgid="3319427315593649917">"証明書とXauth認証付きのIPSec VPN"</item>
+    <item msgid="8258927774145391041">"証明書とハイブリッド認証付きのIPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"なし"</item>
+    <item msgid="1157046369795346308">"マニュアル"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"切断"</item>
+    <item msgid="8754480102834556765">"初期化中..."</item>
+    <item msgid="3351334355574270250">"接続しています..."</item>
+    <item msgid="8303882153995748352">"接続済み"</item>
+    <item msgid="9135049670787351881">"タイムアウト"</item>
+    <item msgid="2124868417182583926">"失敗"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"確認する"</item>
+    <item msgid="7718817231348607934">"許可しない"</item>
+    <item msgid="8184570120217958741">"常に許可する"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"常駐"</item>
+    <item msgid="167418068739176448">"上位のアクティビティ"</item>
+    <item msgid="4760813290195199773">"重要(フォアグラウンド)"</item>
+    <item msgid="2328684826817647595">"重要(バックグラウンド)"</item>
+    <item msgid="7746406490652867365">"バックアップ"</item>
+    <item msgid="5597404364389196754">"大重量"</item>
+    <item msgid="1290888779300174556">"サービス(実行中)"</item>
+    <item msgid="7241098542073939046">"サービス(再起動中)"</item>
+    <item msgid="6610439017684111046">"レシーバー"</item>
+    <item msgid="7367606086319921117">"ホーム"</item>
+    <item msgid="3344660712396741826">"前回のアクティビティ"</item>
+    <item msgid="5006559348883303865">"キャッシュ済み(アクティビティ)"</item>
+    <item msgid="8633480732468137525">"キャッシュ済み(アクティビティクライアント)"</item>
+    <item msgid="6248998242443333892">"キャッシュ済み(空)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ティール"</item>
+    <item msgid="3228505970082457852">"青"</item>
+    <item msgid="6590260735734795647">"インディゴ"</item>
+    <item msgid="3521763377357218577">"パープル"</item>
+    <item msgid="5932337981182999919">"ピンク"</item>
+    <item msgid="5642914536624000094">"赤"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 日以上経過"</item>
+    <item msgid="8699273238891265610">"60 日以上経過"</item>
+    <item msgid="8346279419423837266">"90 日以上経過"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"自動的に検出"</item>
+    <item msgid="773943026484148895">"従量制として処理"</item>
+    <item msgid="1008268820118852416">"定額制として処理"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ランダムな MAC を使用する(デフォルト)"</item>
+    <item msgid="214234417308375326">"デバイスの MAC を使用する"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"いいえ"</item>
+    <item msgid="1930581185557754880">"はい"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ダーク"</item>
+    <item msgid="5079453644557603349">"ライト"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"OFF"</item>
+    <item msgid="4072198137051566919">"デバッグ"</item>
+    <item msgid="2473005316958868509">"詳細"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ホームのみ"</item>
+    <item msgid="1161026694891024702">"自動"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM / WCDMA を優先"</item>
+    <item msgid="7581481130337402578">"GSM のみ"</item>
+    <item msgid="8579197487913425819">"WCDMA のみ"</item>
+    <item msgid="8465243227505412498">"GSM / WCDMA 自動"</item>
+    <item msgid="9107479914166352132">"CDMA / EV-DO 自動"</item>
+    <item msgid="4219607161971472471">"CDMA(EV-DO 非準拠)"</item>
+    <item msgid="7278975240951052041">"EV-DO のみ"</item>
+    <item msgid="2295969832276827854">"CDMA / EV-DO / GSM / WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA+LTE / EV-DO"</item>
+    <item msgid="463168068025354541">"GSM / WCDMA / LTE"</item>
+    <item msgid="1770755308983338311">"グローバル"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA のみ"</item>
+    <item msgid="4346392996298714633">"TDSCDMA / WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE / TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA / GSM"</item>
+    <item msgid="5874623229495009031">"LTE / TDSCDMA / GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA / GSM / WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE / TDSCDMA / WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE / TDSCDMA / GSM / WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA / CDMA / EV-DO / GSM / WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE / TDSCDMA / CDMA / EV-DO / GSM / WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM / SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"グローバル"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ja/strings.xml b/tests/CarDeveloperOptions/res/values-ja/strings.xml
index bb47e1d..7f8bea3 100644
--- a/tests/CarDeveloperOptions/res/values-ja/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ja/strings.xml
@@ -390,7 +390,7 @@
     <string name="security_passwords_title" msgid="6853942836045862315">"プライバシー"</string>
     <string name="disabled_by_administrator_summary" msgid="6099821045360491127">"管理者により無効にされています"</string>
     <string name="security_status_title" msgid="1261960357751754428">"セキュリティ ステータス"</string>
-    <string name="security_dashboard_summary_face" msgid="2536136110153593745">"画面ロック、フェイス アンロック"</string>
+    <string name="security_dashboard_summary_face" msgid="2536136110153593745">"画面ロック、顔認証"</string>
     <string name="security_dashboard_summary" msgid="4048877125766167227">"画面ロック、指紋"</string>
     <string name="security_dashboard_summary_no_fingerprint" msgid="8861903321053490658">"画面ロック"</string>
     <string name="security_settings_face_preference_summary" msgid="4437701024542221434">"顔を追加しました"</string>
@@ -427,7 +427,7 @@
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"顔認証データを削除"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"顔認証でデバイスのロックを解除したり、アプリにアクセスしたりできます。"<annotation id="url">"詳細"</annotation></string>
     <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"顔認証データを削除しますか?"</string>
-    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"フェイスアンロックによって記録されたデータは安全かつ完全に削除されます。削除後に、スマートフォンのロック解除、アプリへのログイン、お支払いの確認を行うには、PIN、パターン、パスワードのいずれかが必要になります。"</string>
+    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"顔認証によって記録されたデータは安全かつ完全に削除されます。削除後に、スマートフォンのロック解除、アプリへのログイン、お支払いの確認を行うには、PIN、パターン、パスワードのいずれかが必要になります。"</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"指紋"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"指紋の管理"</string>
     <string name="fingerprint_usage_category_title" msgid="7298369141954599706">"指紋の用途"</string>
@@ -3087,11 +3087,11 @@
     <string name="keywords_lockscreen" msgid="4936846554280830394">"スライドでロック解除、パスワード、パターン、PIN"</string>
     <string name="keywords_profile_challenge" msgid="8653718001253979611">"ワーク チャレンジ, 仕事用, プロファイル"</string>
     <string name="keywords_unification" msgid="2020759909366983593">"仕事用プロファイル, 管理対象プロファイル, 統合する, 統合, 仕事, プロファイル"</string>
-    <string name="keywords_gesture" msgid="5031323247529869644">"操作"</string>
+    <string name="keywords_gesture" msgid="5031323247529869644">"ジェスチャー"</string>
     <string name="keywords_payment_settings" msgid="4745023716567666052">"支払い, タップ, ペイメント"</string>
     <string name="keywords_backup" msgid="7433356270034921627">"バックアップ, バック アップ"</string>
     <string name="keywords_assist_gesture_launch" msgid="2711433664837843513">"操作"</string>
-    <string name="keywords_face_unlock" msgid="651615819291927262">"顔, フェイス, ロック解除, アンロック, 認証, ログイン"</string>
+    <string name="keywords_face_unlock" msgid="651615819291927262">"顔, フェイス, ロック解除, アンロック, 認証, ログイン, 顔認証"</string>
     <string name="keywords_imei_info" msgid="4325847870422053408">"IMEI, MEID, MIN, PRL バージョン, IMEI SV"</string>
     <string name="keywords_sim_status" msgid="3852088576719874387">"ネットワーク, モバイル ネットワークの状態, サービスの状態, 電波強度, モバイル ネットワークの種類, ローミング, ICCID"</string>
     <string name="keywords_model_and_hardware" msgid="2743197096210895251">"シリアル番号, ハードウェア バージョン"</string>
@@ -4100,7 +4100,7 @@
     <string name="deletion_helper_automatic_title" msgid="4370975149425263205">"自動"</string>
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"手動"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"今すぐ空き容量を増やす"</string>
-    <string name="gesture_preference_title" msgid="583646591518373785">"操作"</string>
+    <string name="gesture_preference_title" msgid="583646591518373785">"ジェスチャー"</string>
     <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"簡単な操作でスマートフォンを管理できます"</string>
     <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"簡単な操作でタブレットを管理できます"</string>
     <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"簡単な操作でデバイスを管理できます"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ka-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ka-nokeys/strings.xml
new file mode 100644
index 0000000..c528701
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ka-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"აპლიკაციების მართვა"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ka/arrays.xml b/tests/CarDeveloperOptions/res/values-ka/arrays.xml
new file mode 100644
index 0000000..a8b99fd
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ka/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"ამერიკა"</item>
+    <item msgid="4791956477275129121">"ევროპა"</item>
+    <item msgid="3812126832016254559">"აფრიკა"</item>
+    <item msgid="2765816300353408280">"აზია"</item>
+    <item msgid="6683489385344409742">"ავსტრალია"</item>
+    <item msgid="5194868215515664953">"წყნარი ოკეანის"</item>
+    <item msgid="7044520255415007865">"ყველა"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 წამი"</item>
+    <item msgid="772029947136115322">"30 წამი"</item>
+    <item msgid="8743663928349474087">"1 წუთი"</item>
+    <item msgid="1506508631223164814">"2 წუთი"</item>
+    <item msgid="8664703938127907662">"5 წუთი"</item>
+    <item msgid="5827960506924849753">"10 წუთი"</item>
+    <item msgid="6677424950124253938">"30 წუთი"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"პატარა"</item>
+    <item msgid="591935967183159581">"ნაგულისხმევი"</item>
+    <item msgid="1714184661981538355">"დიდი"</item>
+    <item msgid="6195563047686707484">"უდიდესი"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"სკანირება…"</item>
+    <item msgid="8058143476674427024">"მიმდინარეობს დაკავშირება <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-თან…"</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>-ში ავტორიზაცია…"</item>
+    <item msgid="5145158315060185414">"IP მისამართის მოპოვება <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-დან…"</item>
+    <item msgid="3283243151651124831">"დაკავშირებულია <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-თან"</item>
+    <item msgid="6600156231416890902">"შეჩერებული"</item>
+    <item msgid="4133290864821295785">"კავშირის გაწყვეტა <xliff:g id="NETWORK_NAME">%1$s</xliff:g>-თან…"</item>
+    <item msgid="3980154971187953257">"არ არის ხაზზე"</item>
+    <item msgid="2847316776634969068">"წარუმატებლად დასრულდა"</item>
+    <item msgid="4390990424746035383">"დაბლოკილი"</item>
+    <item msgid="3618248791367063949">"ცუდი კავშირის დროებით თავიდან აცილება"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"დასაჭერი ღილაკი"</item>
+    <item msgid="7401896200768713930">"ერთრანგიანი მოწყობილობის პინი"</item>
+    <item msgid="4526848028011846710">"ამ მოწყობილობის PIN-კოდი"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"დაკავშირებულია"</item>
+    <item msgid="983792611851499732">"მოწვეულია"</item>
+    <item msgid="5438273405428201793">"წარუმატებლად დასრულდა"</item>
+    <item msgid="4646663015449312554">"ხელმისაწვდომი"</item>
+    <item msgid="3230556734162006146">"დიაპაზონს მიღმა"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 წუთი"</item>
+    <item msgid="2759776603549270587">"5 წუთი"</item>
+    <item msgid="167772676068860015">"1 საათი"</item>
+    <item msgid="5985477119043628504">"დროის ლიმიტის გარეშე"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"ბოლო 30 დღე"</item>
+    <item msgid="3211287705232736964">"გამოყენების ციკლის დაყენება..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"გამოყენების დრო"</item>
+    <item msgid="2784401352592276015">"ბოლოს გამოყენებული"</item>
+    <item msgid="249854287216326349">"აპის სახელი"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"არც ერთი"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"არც ერთი"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"სტატიკური"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"არც ერთი"</item>
+    <item msgid="1464741437353223198">"სახელმძღვანელო"</item>
+    <item msgid="5793600062487886090">"პროქსის ავტოკონფიგურაცია"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"არც ერთი"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ან CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"შიდა მოწყობილობის მეხსიერება"</item>
+    <item msgid="3186681694079967527">"შეცვლადი SD ბარათი"</item>
+    <item msgid="6902033473986647035">"გადაწყვიტოს სისტემამ"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"მდებარეობა"</item>
+    <item msgid="6842381562497597649">"პირადი"</item>
+    <item msgid="3966700236695683444">"შეტყობინებები"</item>
+    <item msgid="8563996233342430477">"მედია"</item>
+    <item msgid="5323851085993963783">"მოწყობილობა"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"მიახლოებითი მდებარეობა"</item>
+    <item msgid="1830619568689922920">"ზუსტი მდებარეობა"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ვიბრაცია"</item>
+    <item msgid="8632513128515114092">"კონტაქტების წაკითხვა"</item>
+    <item msgid="3741042113569620272">"კონტაქტების შეცვლა"</item>
+    <item msgid="4204420969709009931">"ზარების სიის ნახვა"</item>
+    <item msgid="2260380357119423209">"ზარების ჟურნალის ჩასწორება"</item>
+    <item msgid="6550710385014530934">"კალენდრის წაკითხვა"</item>
+    <item msgid="3575906174264853951">"კალენდრის ჩასწორება"</item>
+    <item msgid="4319843242568057174">"Wi-Fi ქსელის ძებნა"</item>
+    <item msgid="2981791890467303819">"შეტყობინება"</item>
+    <item msgid="6617825156152476692">"ფიჭური ქსელების ძებნა"</item>
+    <item msgid="8865260890611559753">"ტელეფონზე დარეკვა"</item>
+    <item msgid="3254999273961542982">"SMS-ის წაკითხვა"</item>
+    <item msgid="7711446453028825171">"SMS-ის შექმნა"</item>
+    <item msgid="6123238544099198034">"SMS-ის მიღება"</item>
+    <item msgid="838342167431596036">"სასწრაფო SMS-ის მიღება"</item>
+    <item msgid="8554432731560956686">"MMS-ის მიღება"</item>
+    <item msgid="7464863464299515059">"WAP push მიღება"</item>
+    <item msgid="310463075729606765">"SMS-ის გაგზავნა"</item>
+    <item msgid="7338021933527689514">"ICC SMS-ის წაკითხვა"</item>
+    <item msgid="6130369335466613036">"ICC SMS-ის შექმნა"</item>
+    <item msgid="6536865581421670942">"პარამეტრების შეცვლა"</item>
+    <item msgid="4547203129183558973">"სხვა ერთეულებს ზემოდან ჩვენება"</item>
+    <item msgid="9080347512916542840">"შეტყობინებებთან წვდომა"</item>
+    <item msgid="5332718516635907742">"კამერა"</item>
+    <item msgid="6098422447246167852">"აუდიოს ჩაწერა"</item>
+    <item msgid="9182794235292595296">"აუდიოს დაკვრა"</item>
+    <item msgid="8760743229597702019">"გაცვლის ბუფერის წაკითხვა"</item>
+    <item msgid="2266923698240538544">"გაცვლის ბუფერის ცვლილება"</item>
+    <item msgid="1801619438618539275">"მედიის ღილაკები"</item>
+    <item msgid="31588119965784465">"აუდიოს ფოკუსი"</item>
+    <item msgid="7565226799008076833">"მასტერ-ხმის სიმძლავრე"</item>
+    <item msgid="5420704980305018295">"ხმის სიმძღლავრე"</item>
+    <item msgid="5797363115508970204">"ზარის სიმძლავრე"</item>
+    <item msgid="8233154098550715999">"მედიის ხმა"</item>
+    <item msgid="5196715605078153950">"მაღვიძარას ხმა"</item>
+    <item msgid="394030698764284577">"შეტყობინების ხმა"</item>
+    <item msgid="8952898972491680178">"Bluetooth-ის ხმა"</item>
+    <item msgid="8506227454543690851">"დარჩეს აქტიური"</item>
+    <item msgid="1108160036049727420">"მდებარეობის მონიტორინგი"</item>
+    <item msgid="1496205959751719491">"მაღალი ძაბვის მდებარეობის მონიტორინგი"</item>
+    <item msgid="3776296279910987380">"გამოყენების სტატისტიკის მიღება"</item>
+    <item msgid="8827100324471975602">"მიკროფონის დადუმება/გააქტიურება"</item>
+    <item msgid="6880736730520126864">"შეტყობინების ჩვენება"</item>
+    <item msgid="4933375960222609935">"მედიის პროეცირება"</item>
+    <item msgid="8357907018938895462">"VPN-ის აქტივაცია"</item>
+    <item msgid="8143812849911310973">"ფონის ჩაწერა"</item>
+    <item msgid="6266277260961066535">"დამხმარე სტრუქტურა"</item>
+    <item msgid="7715498149883482300">"დამხმარე ეკრანის ანაბეჭდი"</item>
+    <item msgid="4046679376726313293">"ტელეფონის მდგომარეობის წაკითხვა"</item>
+    <item msgid="6329507266039719587">"ხმოვანი ფოსტის დამატება"</item>
+    <item msgid="7692440726415391408">"SIP-ის გამოყენება"</item>
+    <item msgid="8572453398128326267">"გამავალი ზარის დამუშავება"</item>
+    <item msgid="7775674394089376306">"თითის ანაბეჭდი"</item>
+    <item msgid="3182815133441738779">"სხეულის სენსორები"</item>
+    <item msgid="2793100005496829513">"Cell Broadcast-ების წაკითხვა"</item>
+    <item msgid="2633626056029384366">"მდებარეობის იმიტირება"</item>
+    <item msgid="8356842191824684631">"მეხსიერების წაკითხვა"</item>
+    <item msgid="5671906070163291500">"მეხსიერებაში ჩაწერა"</item>
+    <item msgid="2791955098549340418">"ეკრანის ჩართვა"</item>
+    <item msgid="5599435119609178367">"ანგარიშების მიღება"</item>
+    <item msgid="1165623660533024666">"ფონურ რეჟიმში გაშვება"</item>
+    <item msgid="6423861043647911030">"მარტივი წვდომის ხმის სიმძლავრე"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"მოკლე"</item>
+    <item msgid="4816511817309094890">"საშუალო"</item>
+    <item msgid="8305084671259331134">"ვრცელი"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ნაგულისხმევი"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif შესქელებული"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"თავისუფალი"</item>
+    <item msgid="4627069151979553527">"კურსივი"</item>
+    <item msgid="6896773537705206194">"პატარა მთავრულები"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ნაგულისხმევი"</item>
+    <item msgid="6488643537808152001">"არც ერთი"</item>
+    <item msgid="552332815156010137">"კონტური"</item>
+    <item msgid="7187891159463789272">"ჩრდილი"</item>
+    <item msgid="8019330250538856521">"ამაღლებული"</item>
+    <item msgid="8987385315647049787">"დაკლებული"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"აპის ნაგულისხმევი"</item>
+    <item msgid="8611890312638868524">"თეთრი შავზე"</item>
+    <item msgid="5891360837786277638">"შავი თეთრზე"</item>
+    <item msgid="2798457065945456853">"ყვითელი შავზე"</item>
+    <item msgid="5799049811524553967">"ყვითელი ლურჯზე"</item>
+    <item msgid="3673930830658169860">"მორგებული"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN წინასწარ გაზიარებული ღილაკებით"</item>
+    <item msgid="6128519070545038358">"VPN მიერთება L2TP/IPSec პროტოკოლის მიხედვით სერტიფიკატების გამოყენებით"</item>
+    <item msgid="312397853907741968">"IPSec VPN წინასწარ გაზიარებული ღილაკებით და Xauth ავტორიზაცია"</item>
+    <item msgid="3319427315593649917">"IPSec VPN სერთიფიკატებითა და Xauth ავთენტიფიკაციით"</item>
+    <item msgid="8258927774145391041">"IPSec VPN მიერთება სერტიფიკატების და კომბინირებული ავთენტიკაციის გამოყენებით"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"არაფერი"</item>
+    <item msgid="1157046369795346308">"სახელმძღვანელო"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"არ არის ხაზზე"</item>
+    <item msgid="8754480102834556765">"მიმდინარეობს ინიციალიზაცია…"</item>
+    <item msgid="3351334355574270250">"მიმდინარეობს დაკავშირება&amp;hellip;"</item>
+    <item msgid="8303882153995748352">"დაკავშირებულია"</item>
+    <item msgid="9135049670787351881">"დროის ლიმიტი"</item>
+    <item msgid="2124868417182583926">"წარუმატებლად დასრულდა"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"შეკითხვა"</item>
+    <item msgid="7718817231348607934">"არასოდეს მიეცეს უფლება"</item>
+    <item msgid="8184570120217958741">"ნებართვის მიცემა - ყოველთვის"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"სისტემატური"</item>
+    <item msgid="167418068739176448">"ტოპ-აქტივობა"</item>
+    <item msgid="4760813290195199773">"მნიშვნელოვანი (წინა პლანზე)"</item>
+    <item msgid="2328684826817647595">"მნიშვნელოვანი (ფონური)"</item>
+    <item msgid="7746406490652867365">"სარეზერვო კოპირება"</item>
+    <item msgid="5597404364389196754">"დიდი დატვირთვა"</item>
+    <item msgid="1290888779300174556">"სერვისი (გაშვებული)"</item>
+    <item msgid="7241098542073939046">"სერვისი (გადატვირთვა)"</item>
+    <item msgid="6610439017684111046">"მიმღები"</item>
+    <item msgid="7367606086319921117">"მთავარი"</item>
+    <item msgid="3344660712396741826">"ბოლო აქტივობა"</item>
+    <item msgid="5006559348883303865">"ქეშირებული (აქტივობა)"</item>
+    <item msgid="8633480732468137525">"ქეშირებულია (აქტივობის კლიენტი)"</item>
+    <item msgid="6248998242443333892">"ქეშირებული (ცარიელი)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ზურმუხტისფერი"</item>
+    <item msgid="3228505970082457852">"ლურჯი"</item>
+    <item msgid="6590260735734795647">"მუქი ლურჯი"</item>
+    <item msgid="3521763377357218577">"მეწამული"</item>
+    <item msgid="5932337981182999919">"ვარდისფერი"</item>
+    <item msgid="5642914536624000094">"წითელი"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 დღეზე ძველი"</item>
+    <item msgid="8699273238891265610">"60 დღეზე ძველი"</item>
+    <item msgid="8346279419423837266">"90 დღეზე ძველი"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ავტომატურად ამოცნობა"</item>
+    <item msgid="773943026484148895">"ლიმიტირებულად ჩათვლა"</item>
+    <item msgid="1008268820118852416">"არალიმიტირებულად ჩათვლა"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"შემთხვევითი MAC-ის გამოყენება (ნაგულ.)"</item>
+    <item msgid="214234417308375326">"მოწყობილობის MAC-მისამართის გამოყენება"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"არა"</item>
+    <item msgid="1930581185557754880">"დიახ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"მუქი"</item>
+    <item msgid="5079453644557603349">"ნათურა"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"გამორთული"</item>
+    <item msgid="4072198137051566919">"შეცდომების გამართვა"</item>
+    <item msgid="2473005316958868509">"დაწვრილებითი"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"მხოლოდ საშინაო"</item>
+    <item msgid="1161026694891024702">"ავტომატური"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"სასურველია GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"მხოლოდ GSM"</item>
+    <item msgid="8579197487913425819">"მხოლოდ WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ავტომატური"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ავტომატური"</item>
+    <item msgid="4219607161971472471">"CDMA, EvDo-ს გარეშე"</item>
+    <item msgid="7278975240951052041">"მხოლოდ EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"გლობალური"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"მხოლოდ TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"გლობალური"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-kk-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-kk-nokeys/strings.xml
new file mode 100644
index 0000000..2ecfbfa
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-kk-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Қолданбаларды басқару"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-kk/arrays.xml b/tests/CarDeveloperOptions/res/values-kk/arrays.xml
new file mode 100644
index 0000000..9903387
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-kk/arrays.xml
@@ -0,0 +1,355 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Aмерика"</item>
+    <item msgid="4791956477275129121">"Европа"</item>
+    <item msgid="3812126832016254559">"Aфрика"</item>
+    <item msgid="2765816300353408280">"Aзия"</item>
+    <item msgid="6683489385344409742">"Aвстралия"</item>
+    <item msgid="5194868215515664953">"Тынық"</item>
+    <item msgid="7044520255415007865">"Барлығы"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Жалғанған"</item>
+    <item msgid="983792611851499732">"Шақырылған"</item>
+    <item msgid="5438273405428201793">"Сәтсіз"</item>
+    <item msgid="4646663015449312554">"Қолжетімді"</item>
+    <item msgid="3230556734162006146">"Аумақтан тыc"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Соңғы 30 күн"</item>
+    <item msgid="3211287705232736964">"Пайдалану циклын орнату…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Қолдану уақыты"</item>
+    <item msgid="2784401352592276015">"Соңғы пайдаланылған уақыты"</item>
+    <item msgid="249854287216326349">"Қолданба атауы"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ешқандай"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ешқандай"</item>
+    <item msgid="7901133332272818442">"PAP (кілтсөз арқылы растау)"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ешқандай"</item>
+    <item msgid="1464741437353223198">"Қолмен"</item>
+    <item msgid="5793600062487886090">"Прокси автоконфигурациясы"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ешқандай"</item>
+    <item msgid="1950796738039490374">"PAP (кілтсөз арқылы растау)"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP (кілтсөз арқылы) немесе CHAP (сұрақ қою арқылы)"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Ішкі құрылғы жады"</item>
+    <item msgid="3186681694079967527">"Алынбалы SD картасы"</item>
+    <item msgid="6902033473986647035">"Жүйені өзі шешсін"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Орналасу"</item>
+    <item msgid="6842381562497597649">"Жеке"</item>
+    <item msgid="3966700236695683444">"Хабар алмасу"</item>
+    <item msgid="8563996233342430477">"Meдиа"</item>
+    <item msgid="5323851085993963783">"Құрылғы"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"өңделмеген аймақ"</item>
+    <item msgid="1830619568689922920">"өңделген аймақ"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"діріл"</item>
+    <item msgid="8632513128515114092">"контактілерді оқу"</item>
+    <item msgid="3741042113569620272">"контактілерді өзгерту"</item>
+    <item msgid="4204420969709009931">"қоңыраулар тіркелімін оқу"</item>
+    <item msgid="2260380357119423209">"қоңыраулар тіркелімін өзгерту"</item>
+    <item msgid="6550710385014530934">"күнтізбені оқу"</item>
+    <item msgid="3575906174264853951">"күнтізбені өзгерту"</item>
+    <item msgid="4319843242568057174">"wi-fi сканнер"</item>
+    <item msgid="2981791890467303819">"хабар"</item>
+    <item msgid="6617825156152476692">"ұялы сканнер"</item>
+    <item msgid="8865260890611559753">"қоңырау шалу"</item>
+    <item msgid="3254999273961542982">"SMS оқу"</item>
+    <item msgid="7711446453028825171">"SMS жазу"</item>
+    <item msgid="6123238544099198034">"SMS алу"</item>
+    <item msgid="838342167431596036">"Төтенше SMS алу"</item>
+    <item msgid="8554432731560956686">"MMS алу"</item>
+    <item msgid="7464863464299515059">"WAP push хабарын алу"</item>
+    <item msgid="310463075729606765">"SMS жіберу"</item>
+    <item msgid="7338021933527689514">"Орнатылған картадан SMS хабарын оқу"</item>
+    <item msgid="6130369335466613036">"ICC SMS жазу"</item>
+    <item msgid="6536865581421670942">"параметрлерді өзгерту"</item>
+    <item msgid="4547203129183558973">"үстінен жазу"</item>
+    <item msgid="9080347512916542840">"хабарларға кіру"</item>
+    <item msgid="5332718516635907742">"Камера"</item>
+    <item msgid="6098422447246167852">"аудио жазу"</item>
+    <item msgid="9182794235292595296">"аудио ойнату"</item>
+    <item msgid="8760743229597702019">"ақпарат алмастыру қорын оқу"</item>
+    <item msgid="2266923698240538544">"ақпарат алмастыру қорын өзгерту"</item>
+    <item msgid="1801619438618539275">"медиа түймелері"</item>
+    <item msgid="31588119965784465">"аудио көздеу"</item>
+    <item msgid="7565226799008076833">"негізгі дыбыс"</item>
+    <item msgid="5420704980305018295">"дыбыс қаттылығы"</item>
+    <item msgid="5797363115508970204">"қоңыраудың дыбыс деңгейі"</item>
+    <item msgid="8233154098550715999">"мультимeдиа дыбыс деңгейі"</item>
+    <item msgid="5196715605078153950">"дабыл дыбысының қаттылығы"</item>
+    <item msgid="394030698764284577">"хабар дыбысының қаттылығы"</item>
+    <item msgid="8952898972491680178">"bluetooth дыбысының қаттылығы"</item>
+    <item msgid="8506227454543690851">"ұйқы бермеу"</item>
+    <item msgid="1108160036049727420">"аймақты бақылау"</item>
+    <item msgid="1496205959751719491">"қуаты жоғары аймақты бақылау"</item>
+    <item msgid="3776296279910987380">"пайдалану статистикасын алу"</item>
+    <item msgid="8827100324471975602">"микрофон дыбысын өшіру/қосу"</item>
+    <item msgid="6880736730520126864">"қалқымалы хабарландыру көрсету"</item>
+    <item msgid="4933375960222609935">"жоба тасушысы"</item>
+    <item msgid="8357907018938895462">"VPN функциясын белсендіру"</item>
+    <item msgid="8143812849911310973">"тұсқағаз жазу"</item>
+    <item msgid="6266277260961066535">"көмекші құрылым"</item>
+    <item msgid="7715498149883482300">"көмекші скриншот"</item>
+    <item msgid="4046679376726313293">"телефон күйін оқу"</item>
+    <item msgid="6329507266039719587">"дауыстық хабар қосу"</item>
+    <item msgid="7692440726415391408">"SIP пайдалану"</item>
+    <item msgid="8572453398128326267">"шығыс қоңырауды өңдеу"</item>
+    <item msgid="7775674394089376306">"саусақ ізі"</item>
+    <item msgid="3182815133441738779">"дене датчиктері"</item>
+    <item msgid="2793100005496829513">"ұялы таратылымдарды оқу"</item>
+    <item msgid="2633626056029384366">"жалған орын"</item>
+    <item msgid="8356842191824684631">"жадты оқу"</item>
+    <item msgid="5671906070163291500">"жадқа жазу"</item>
+    <item msgid="2791955098549340418">"экранды қосу"</item>
+    <item msgid="5599435119609178367">"есептік жазбаларды алу"</item>
+    <item msgid="1165623660533024666">"фонда іске қосу"</item>
+    <item msgid="6423861043647911030">"арнайы мүмкіндіктердің дыбыс деңгейі"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Қысқа"</item>
+    <item msgid="4816511817309094890">"Орташа"</item>
+    <item msgid="8305084671259331134">"Ұзақ"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Әдепкі"</item>
+    <item msgid="4147246073737933622">"Готикалық шрифт"</item>
+    <item msgid="3117680749167407907">"Нығыз орналасқан готикалық шрифт"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Кертілген"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Қалыпты"</item>
+    <item msgid="4627069151979553527">"Көлбеу"</item>
+    <item msgid="6896773537705206194">"Кішкене бас әріптер"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Әдепкі"</item>
+    <item msgid="6488643537808152001">"Ешқандай"</item>
+    <item msgid="552332815156010137">"Контур"</item>
+    <item msgid="7187891159463789272">"Көлеңке түсіру"</item>
+    <item msgid="8019330250538856521">"Көтерілген"</item>
+    <item msgid="8987385315647049787">"Басылған"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec, пернелері ортақ ВЖЖ"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec ВЖЖ, сертификаттары бар"</item>
+    <item msgid="312397853907741968">"IPSec ВЖЖ, пернелері ортақ және Xauth растамасы бар"</item>
+    <item msgid="3319427315593649917">"IPSec ВЖЖ, сертификаттары және Xauth растамасы бар"</item>
+    <item msgid="8258927774145391041">"IPSec ВЖЖ, сертификаттары және гибридті растамасы бар"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ешқандай"</item>
+    <item msgid="1157046369795346308">"Қолмен"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Сұрау"</item>
+    <item msgid="7718817231348607934">"Әрқашан рұқсат емес"</item>
+    <item msgid="8184570120217958741">"Әрқашан рұқсат"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Тұрақты"</item>
+    <item msgid="167418068739176448">"Ең жоғары белсенділік"</item>
+    <item msgid="4760813290195199773">"Маңызды (алдыңғы фон)"</item>
+    <item msgid="2328684826817647595">"Маңызды (артқы фон)"</item>
+    <item msgid="7746406490652867365">"Сақтық көшірме"</item>
+    <item msgid="5597404364389196754">"Ауыр салмақ"</item>
+    <item msgid="1290888779300174556">"Қызмет (іске қосылған)"</item>
+    <item msgid="7241098542073939046">"Қызмет (қайта іске қосылуда)"</item>
+    <item msgid="6610439017684111046">"Алушы"</item>
+    <item msgid="7367606086319921117">"Негізгі"</item>
+    <item msgid="3344660712396741826">"Соңғы белсенділік"</item>
+    <item msgid="5006559348883303865">"Кэштелген (белсенділік)"</item>
+    <item msgid="8633480732468137525">"Кэштелген (белсенділік клиенті)"</item>
+    <item msgid="6248998242443333892">"Кэштелген (бос)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Көгілдір"</item>
+    <item msgid="3228505970082457852">"Көк"</item>
+    <item msgid="6590260735734795647">"Индиго түсі"</item>
+    <item msgid="3521763377357218577">"Қызылкүрең"</item>
+    <item msgid="5932337981182999919">"Қызғылт"</item>
+    <item msgid="5642914536624000094">"Қызыл"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 күннен артық сақталған"</item>
+    <item msgid="8699273238891265610">"60 күннен артық сақталған"</item>
+    <item msgid="8346279419423837266">"90 күннен артық сақталған"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Автоматты түрде анықтау"</item>
+    <item msgid="773943026484148895">"Трафик саналсын"</item>
+    <item msgid="1008268820118852416">"Трафик саналмасын"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Кездейсоқ MAC мекенжайын пайдалану (әдепкі)"</item>
+    <item msgid="214234417308375326">"Құрылғының MAC мекенжайын пайдалану"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Жоқ"</item>
+    <item msgid="1930581185557754880">"Иә"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Қараңғы"</item>
+    <item msgid="5079453644557603349">"Жарық"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Өшірулі"</item>
+    <item msgid="4072198137051566919">"Жөндеу"</item>
+    <item msgid="2473005316958868509">"Толық ақпарат"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Тек үй желісі"</item>
+    <item msgid="1161026694891024702">"Aвтоматты"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA (оңтайлы режим)"</item>
+    <item msgid="7581481130337402578">"Тек GSM"</item>
+    <item msgid="8579197487913425819">"Тек WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA (aвтоматты)"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo (автоматты)"</item>
+    <item msgid="4219607161971472471">"EvDo-сыз CDMA"</item>
+    <item msgid="7278975240951052041">"Тек EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Бүкіл әлем"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Тек TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM картасы"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Бүкіл әлем"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-km-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-km-nokeys/strings.xml
new file mode 100644
index 0000000..ac50830
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-km-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"គ្រប់គ្រង​កម្មវិធី"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-km/arrays.xml b/tests/CarDeveloperOptions/res/values-km/arrays.xml
new file mode 100644
index 0000000..fea5af6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-km/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"អាមេរិក"</item>
+    <item msgid="4791956477275129121">"អឺរ៉ុប"</item>
+    <item msgid="3812126832016254559">"អាហ្រ្វិក"</item>
+    <item msgid="2765816300353408280">"អាស៊ី"</item>
+    <item msgid="6683489385344409742">"អូស្ត្រាលី"</item>
+    <item msgid="5194868215515664953">"ប៉ាស៊ីហ្វិក"</item>
+    <item msgid="7044520255415007865">"ទាំងអស់"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"១៥វិនាទី"</item>
+    <item msgid="772029947136115322">"30 វិនាទី"</item>
+    <item msgid="8743663928349474087">"1 នាទី"</item>
+    <item msgid="1506508631223164814">"2 នាទី"</item>
+    <item msgid="8664703938127907662">"៥ នាទី"</item>
+    <item msgid="5827960506924849753">"១០ នាទី"</item>
+    <item msgid="6677424950124253938">"៣០ នាទី"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"តូច"</item>
+    <item msgid="591935967183159581">"លំនាំដើម"</item>
+    <item msgid="1714184661981538355">"ធំ"</item>
+    <item msgid="6195563047686707484">"ធំបំផុត"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"កំពុង​វិភាគ​រក..."</item>
+    <item msgid="8058143476674427024">"កំពុង​តភ្ជាប់​ទៅ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"កំពុង​ផ្ទៀងផ្ទាត់​ជា​មួយ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"កំពុង​ទទួល​អាសយដ្ឋាន IP ពី <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"បាន​តភ្ជាប់​ទៅ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"បានផ្អាក"</item>
+    <item msgid="4133290864821295785">"កំពុង​ផ្ដាច់​ពីរ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"បាន​ផ្ដាច់"</item>
+    <item msgid="2847316776634969068">"មិន​ជោគជ័យ"</item>
+    <item msgid="4390990424746035383">"បាន​រារាំង"</item>
+    <item msgid="3618248791367063949">"ជៀសវាង​ការ​តភ្ជាប់​​ខ្សោយ​ជា​បណ្ដោះអាសន្ន"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"ប៊ូតុង​ចុច"</item>
+    <item msgid="7401896200768713930">"កូដ PIN ពី​ឧបករណ៍​"</item>
+    <item msgid="4526848028011846710">"កូដ PIN ពី​ឧបករណ៍​នេះ"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"បានភ្ជាប់"</item>
+    <item msgid="983792611851499732">"បាន​​អញ្ជើញ"</item>
+    <item msgid="5438273405428201793">"មិន​ជោគជ័យ"</item>
+    <item msgid="4646663015449312554">"អាចប្រើបាន"</item>
+    <item msgid="3230556734162006146">"ក្រៅ​តំបន់"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 នាទី"</item>
+    <item msgid="2759776603549270587">"៥​នាទី"</item>
+    <item msgid="167772676068860015">"1 ម៉ោង"</item>
+    <item msgid="5985477119043628504">"កុំ​អស់​ពេល"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 ថ្ងៃ​មុន"</item>
+    <item msgid="3211287705232736964">"កំណត់រង្វង់ប្រើប្រាស់..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ពេល​វាល​ប្រើ"</item>
+    <item msgid="2784401352592276015">"បាន​ប្រើ​​​ចុងក្រោយ"</item>
+    <item msgid="249854287216326349">"ឈ្មោះ​កម្មវិធី"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"គ្មាន"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"គ្មាន"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"ថេរ"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"គ្មាន"</item>
+    <item msgid="1464741437353223198">"ឯកសារណែនាំ"</item>
+    <item msgid="5793600062487886090">"រចនាសម្ព័ន្ធប្រូកស៊ីស្វ័យប្រវត្តិ"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"គ្មាន"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ឬ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ឧបករណ៍​ផ្ទុក​ខាង​ក្នុង"</item>
+    <item msgid="3186681694079967527">"កាត​អេសឌី​​ដែល​អាច​ដក​បាន"</item>
+    <item msgid="6902033473986647035">"ឲ្យ​ប្រព័ន្ធ​សម្រេចចិត្ត​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ទី​តាំង​"</item>
+    <item msgid="6842381562497597649">"ផ្ទាល់ខ្លួន"</item>
+    <item msgid="3966700236695683444">"ការ​ផ្ញើ​សារ"</item>
+    <item msgid="8563996233342430477">"មេឌៀ"</item>
+    <item msgid="5323851085993963783">"ឧបករណ៍"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ទីតាំង​មិន​ល្អ"</item>
+    <item msgid="1830619568689922920">"ទីតាំង​ល្អ"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ញ័រ"</item>
+    <item msgid="8632513128515114092">"អាន​ទំនាក់ទំនង"</item>
+    <item msgid="3741042113569620272">"កែ​ទំនាក់ទំនង"</item>
+    <item msgid="4204420969709009931">"អាន​​បញ្ជី​​ហៅ"</item>
+    <item msgid="2260380357119423209">"កែ​កំណត់​ហេតុ​ហៅ"</item>
+    <item msgid="6550710385014530934">"អាន​ប្រតិទិន"</item>
+    <item msgid="3575906174264853951">"កែ​ប្រតិទិន"</item>
+    <item msgid="4319843242568057174">"វិភាគ​រក វ៉ាយហ្វាយ"</item>
+    <item msgid="2981791890467303819">"ការ​ជូនដំណឹង"</item>
+    <item msgid="6617825156152476692">"វិភាគ​រក​ក្រុម"</item>
+    <item msgid="8865260890611559753">"ហៅ​ទូរស័ព្ទ"</item>
+    <item msgid="3254999273961542982">"អាន​សារ SMS"</item>
+    <item msgid="7711446453028825171">"សរសេរ SMS"</item>
+    <item msgid="6123238544099198034">"ទទួល SMS"</item>
+    <item msgid="838342167431596036">"ទទួល​សារ SMS ពេល​អាសន្ន"</item>
+    <item msgid="8554432731560956686">"ទទួល MMS"</item>
+    <item msgid="7464863464299515059">"ទទួល WAP push"</item>
+    <item msgid="310463075729606765">"ផ្ញើ​សារ SMS"</item>
+    <item msgid="7338021933527689514">"អាន​សារ SMS ICC"</item>
+    <item msgid="6130369335466613036">"សរសេរ ICC SMS"</item>
+    <item msgid="6536865581421670942">"កែ​ការ​កំណត់"</item>
+    <item msgid="4547203129183558973">"គូរ​នៅ​ផ្នែក​ខាង​លើ"</item>
+    <item msgid="9080347512916542840">"ចូល​មើល​ការ​ជូន​ដំណឹង"</item>
+    <item msgid="5332718516635907742">"ម៉ាស៊ីន​ថត"</item>
+    <item msgid="6098422447246167852">"ថត​សំឡេង"</item>
+    <item msgid="9182794235292595296">"ចាក់​អូឌីយ៉ូ"</item>
+    <item msgid="8760743229597702019">"អាន​ក្ដារតម្បៀតខ្ទាស់"</item>
+    <item msgid="2266923698240538544">"កែ​ក្ដារតម្បៀតខ្ទាស់"</item>
+    <item msgid="1801619438618539275">"ប៊ូតុង​មេឌៀ"</item>
+    <item msgid="31588119965784465">"ការ​ផ្ដោត​សំឡេង"</item>
+    <item msgid="7565226799008076833">"កម្រិត​សំឡេង​មេ"</item>
+    <item msgid="5420704980305018295">"កម្រិត​សំឡេង​​"</item>
+    <item msgid="5797363115508970204">"កម្រិត​សំឡេង​រោទ៍"</item>
+    <item msgid="8233154098550715999">"កម្រិត​សំឡេង​មេឌៀ"</item>
+    <item msgid="5196715605078153950">"កម្រិត​សំឡេងម៉ោង​រោទ៍"</item>
+    <item msgid="394030698764284577">"កម្រិត​សំឡេង​ការ​ជូន​ដំណឹង"</item>
+    <item msgid="8952898972491680178">"កម្រិត​សំឡេង​ប៊្លូធូស"</item>
+    <item msgid="8506227454543690851">"មិន​ដេក"</item>
+    <item msgid="1108160036049727420">"តាមដាន​ទីតាំង"</item>
+    <item msgid="1496205959751719491">"​ពិនិត្យ​ទីតាំង​ថាមពល​​ខ្ពស់"</item>
+    <item msgid="3776296279910987380">"ទទួល​​ស្ថិតិ​​ប្រើប្រាស់"</item>
+    <item msgid="8827100324471975602">"បិទ/បើក​សំឡេង​មីក្រូហ្វូន"</item>
+    <item msgid="6880736730520126864">"បង្ហាញថូស"</item>
+    <item msgid="4933375960222609935">"មេឌៀ​គម្រោង"</item>
+    <item msgid="8357907018938895462">"ធ្វើឲ្យ VPN សកម្ម"</item>
+    <item msgid="8143812849911310973">"សរសេរផ្ទាំងរូបភាព"</item>
+    <item msgid="6266277260961066535">"រចនាសម្ព័ន្ធជំនួយ"</item>
+    <item msgid="7715498149883482300">"រូបថតអេក្រង់ជំនួយ"</item>
+    <item msgid="4046679376726313293">"អានស្ថានភាពទូរស័ព្ទ"</item>
+    <item msgid="6329507266039719587">"បន្ថែមសារជាសំឡេង"</item>
+    <item msgid="7692440726415391408">"ប្រើ sip"</item>
+    <item msgid="8572453398128326267">"កំពុងដំណើរការហៅចេញ"</item>
+    <item msgid="7775674394089376306">"ស្នាមម្រាមដៃ"</item>
+    <item msgid="3182815133441738779">"ឧបករណ៍ចាប់សញ្ញារាងកាយ"</item>
+    <item msgid="2793100005496829513">"អានការផ្សព្វផ្សាយសារចល័ត"</item>
+    <item msgid="2633626056029384366">"ទីតាំងបញ្ឆោត"</item>
+    <item msgid="8356842191824684631">"អានទំហំផ្ទុក"</item>
+    <item msgid="5671906070163291500">"សរសេរទំហំផ្ទុក"</item>
+    <item msgid="2791955098549340418">"បើកអេក្រង់"</item>
+    <item msgid="5599435119609178367">"ទទួលគណនី"</item>
+    <item msgid="1165623660533024666">"រត់នៅក្នុងផ្ទៃខាងក្រោយ"</item>
+    <item msgid="6423861043647911030">"កម្រិតសំឡេងភាពងាយស្រួល"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"ខ្លី"</item>
+    <item msgid="4816511817309094890">"មធ្យម"</item>
+    <item msgid="8305084671259331134">"វែង"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"លំនាំដើម"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"ធម្មតា"</item>
+    <item msgid="4627069151979553527">"សរសេរ​ជាប់​គ្នា"</item>
+    <item msgid="6896773537705206194">"អក្សរ​ពុម្ព​ធំ​ល្អិត"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"លំនាំដើម"</item>
+    <item msgid="6488643537808152001">"គ្មាន"</item>
+    <item msgid="552332815156010137">"គ្រោង"</item>
+    <item msgid="7187891159463789272">"ទម្លាក់​ស្រមោល"</item>
+    <item msgid="8019330250538856521">"បង្កើន"</item>
+    <item msgid="8987385315647049787">"បន្ថយ"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"២៥%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"៧៥%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"ប្រើ​លំនាំដើម​កម្មវិធី"</item>
+    <item msgid="8611890312638868524">"ពណ៌ស​លើ​ពណ៌​ខ្មៅ"</item>
+    <item msgid="5891360837786277638">"ពណ៌​ខ្មៅ​លើ​ពណ៌​ស"</item>
+    <item msgid="2798457065945456853">"ពណ៌លឿង​​លើ​​ពណ៌​ខ្មៅ"</item>
+    <item msgid="5799049811524553967">"ពណ៌លឿង​លើ​ពណ៌ខៀវ"</item>
+    <item msgid="3673930830658169860">"ផ្ទាល់ខ្លួន"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN ជា​មួយ​សោ​ចែករំលែក​ជាមុន"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN ជា​មួយ​វិញ្ញាបនបត្រ"</item>
+    <item msgid="312397853907741968">"IPSec VPN ជា​មួយ​សោ​ចែករំលែក​ជាមុន និង​ការ​ផ្ទៀងផ្ទាត់ Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN ជា​មួយ​ការ​ផ្ទៀងផ្ទាត់​វិញ្ញាបនបត្រ និង Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN ជា​មួយ​វិញ្ញាបនបត្រ និង​ការ​ផ្ទៀងផ្ទាត់​ឆ្លង"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"គ្មាន"</item>
+    <item msgid="1157046369795346308">"ឯកសារណែនាំ"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"បាន​ផ្ដាច់"</item>
+    <item msgid="8754480102834556765">"កំពុង​​ចាប់ផ្ដើម…"</item>
+    <item msgid="3351334355574270250">"កំពុង​ត​ភ្ជាប់​…"</item>
+    <item msgid="8303882153995748352">"បានភ្ជាប់"</item>
+    <item msgid="9135049670787351881">"អស់​ពេល​"</item>
+    <item msgid="2124868417182583926">"មិន​ជោគជ័យ"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"សួរ"</item>
+    <item msgid="7718817231348607934">"កុំ​អនុញ្ញាត"</item>
+    <item msgid="8184570120217958741">"អនុញ្ញាត​ជា​និច្ច"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ជាប់​លាប់"</item>
+    <item msgid="167418068739176448">"សកម្មភាព​​លើ​គេ"</item>
+    <item msgid="4760813290195199773">"សំខាន់ (ផ្ទៃ​ខាង​មុខ​)"</item>
+    <item msgid="2328684826817647595">"សំខាន់ (ផ្ទៃ​ខាង​ក្រោយ​)"</item>
+    <item msgid="7746406490652867365">"បម្រុង​ទុក"</item>
+    <item msgid="5597404364389196754">"ប្រើ​ច្រើន"</item>
+    <item msgid="1290888779300174556">"សេវាកម្ម (កំពុង​ដំណើរការ)"</item>
+    <item msgid="7241098542073939046">"សេវាកម្ម (ចាប់ផ្ដើម​ឡើង​វិញ)"</item>
+    <item msgid="6610439017684111046">"កម្មវិធី​ទទួល"</item>
+    <item msgid="7367606086319921117">"ដើម"</item>
+    <item msgid="3344660712396741826">"សកម្ម​ភាព​ចុង​ក្រោយ"</item>
+    <item msgid="5006559348883303865">"ទុក​ក្នុង​ឃ្លាំង​សម្ងាត់ (សកម្មភាព​)"</item>
+    <item msgid="8633480732468137525">"ទុក​ក្នុង​ឃ្លាំង​សម្ងាត់ (ម៉ាស៊ីន​​កូន​សកម្មភាព​)"</item>
+    <item msgid="6248998242443333892">"ទុក​ក្នុង​ឃ្លាំង​សម្ងាត់ (ទទេ​)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"បៃតង​​ចាស់"</item>
+    <item msgid="3228505970082457852">"ពណ៌ខៀវ"</item>
+    <item msgid="6590260735734795647">"ពណ៌​ឆ្លុះ"</item>
+    <item msgid="3521763377357218577">"ស្វាយ"</item>
+    <item msgid="5932337981182999919">"ផ្កាឈូក"</item>
+    <item msgid="5642914536624000094">"ពណ៌ក្រហម"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"លើសពី 30 ថ្ងៃ"</item>
+    <item msgid="8699273238891265610">"លើសពី 60 ថ្ងៃ"</item>
+    <item msgid="8346279419423837266">"លើសពី 90 ថ្ងៃ"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ចាប់ដោយ​ស្វ័យ​ប្រវត្តិ"</item>
+    <item msgid="773943026484148895">"ចាត់​ទុកថាមានការកំណត់"</item>
+    <item msgid="1008268820118852416">"​ចាត់​ទុកថាមិនមាន​ការកំណត់ទេ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ប្រើ MAC ចៃដន្យ (លំនាំដើម)"</item>
+    <item msgid="214234417308375326">"ប្រើ MAC ឧបករណ៍"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ទេ"</item>
+    <item msgid="1930581185557754880">"បាទ/ចាស"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ងងឹត"</item>
+    <item msgid="5079453644557603349">"ភ្លឺ"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"បិទ"</item>
+    <item msgid="4072198137051566919">"ជួសជុល"</item>
+    <item msgid="2473005316958868509">"រៀបរាប់"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ផ្ទះ​​ប៉ុណ្ណោះ"</item>
+    <item msgid="1161026694891024702">"ស្វ័យប្រវត្តិ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"ប្រើ GSM/WCDMA ជាអាទិភាព"</item>
+    <item msgid="7581481130337402578">"GSM ប៉ុណ្ណោះ"</item>
+    <item msgid="8579197487913425819">"WCDMA ប៉ុណ្ណោះ"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ស្វ័យ​ប្រវត្តិ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ស្វ័យ​ប្រវត្តិ"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo ប៉ុណ្ណោះ"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"សកល"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA ប៉ុណ្ណោះ"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/ស៊ីម"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"សកល"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-kn-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-kn-nokeys/strings.xml
new file mode 100644
index 0000000..fb7c367
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-kn-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ನಿರ್ವಹಿಸಿ"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-kn/arrays.xml b/tests/CarDeveloperOptions/res/values-kn/arrays.xml
new file mode 100644
index 0000000..b933a32
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-kn/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"ಅಮೆರಿಕ"</item>
+    <item msgid="4791956477275129121">"ಯೂರೋಪ್"</item>
+    <item msgid="3812126832016254559">"ಆಫ್ರಿಕಾ"</item>
+    <item msgid="2765816300353408280">"ಏಷ್ಯಾ"</item>
+    <item msgid="6683489385344409742">"ಆಸ್ಟ್ರೇಲಿಯ"</item>
+    <item msgid="5194868215515664953">"ಪೆಸಿಫಿಕ್"</item>
+    <item msgid="7044520255415007865">"ಎಲ್ಲಾ"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 ಸೆಕೆಂಡುಗಳು"</item>
+    <item msgid="772029947136115322">"30 ಸೆಕೆಂಡುಗಳು"</item>
+    <item msgid="8743663928349474087">"1 ನಿಮಿಷ"</item>
+    <item msgid="1506508631223164814">"2 ನಿಮಿಷಗಳು"</item>
+    <item msgid="8664703938127907662">"5 ನಿಮಿಷಗಳು"</item>
+    <item msgid="5827960506924849753">"10 ನಿಮಿಷಗಳು"</item>
+    <item msgid="6677424950124253938">"30 ನಿಮಿಷಗಳು"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"ಸಂಪರ್ಕಗೊಂಡಿದೆ"</item>
+    <item msgid="983792611851499732">"ಆಹ್ವಾನಿಸಲಾಗಿದೆ"</item>
+    <item msgid="5438273405428201793">"ವಿಫಲವಾಗಿದೆ"</item>
+    <item msgid="4646663015449312554">"ಲಭ್ಯತೆ"</item>
+    <item msgid="3230556734162006146">"ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 ನಿಮಿಷಗಳು"</item>
+    <item msgid="2759776603549270587">"5 ನಿಮಿಷಗಳು"</item>
+    <item msgid="167772676068860015">"1 ಗಂಟೆ"</item>
+    <item msgid="5985477119043628504">"ಎಂದಿಗೂ ಅವಧಿ ಮೀರದಿರಲಿ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"ಕಳೆದ 30 ದಿನಗಳು"</item>
+    <item msgid="3211287705232736964">"ಬಳಕೆಯ ಆವರ್ತನೆಯನ್ನು ಹೊಂದಿಸಿ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ಬಳಕೆ ಸಮಯ"</item>
+    <item msgid="2784401352592276015">"ಕಳೆದ ಬಾರಿಯ ಬಳಕೆ"</item>
+    <item msgid="249854287216326349">"ಅಪ್ಲಿಕೇಶನ್ ಹೆಸರು"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ಯಾವುದೂ ಇಲ್ಲ"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ಯಾವುದೂ ಇಲ್ಲ"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ಯಾವುದೂ ಇಲ್ಲ"</item>
+    <item msgid="1464741437353223198">"ಹಸ್ತಚಾಲಿತ"</item>
+    <item msgid="5793600062487886090">"ಪ್ರಾಕ್ಸಿ ಸ್ವಯಂ-ಕಾನ್ಫಿಗ್"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ಯಾವುದೂ ಇಲ್ಲ"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ಅಥವಾ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ಆಂತರಿಕ ಸಾಧನ ಸಂಗ್ರಹಣೆ"</item>
+    <item msgid="3186681694079967527">"ತೆಗೆದುಹಾಕಬಹುದಾದ SD ಕಾರ್ಡ್"</item>
+    <item msgid="6902033473986647035">"ಸಿಸ್ಟಂ ನಿರ್ಧರಿಸಲಿ"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ಸ್ಥಳ"</item>
+    <item msgid="6842381562497597649">"ವೈಯಕ್ತಿಕ"</item>
+    <item msgid="3966700236695683444">"ಸಂದೇಶ ಕಳುಹಿಸುವಿಕೆ"</item>
+    <item msgid="8563996233342430477">"ಮಾಧ್ಯಮ"</item>
+    <item msgid="5323851085993963783">"ಸಾಧನ"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ಒರಟು ಸ್ಥಳ"</item>
+    <item msgid="1830619568689922920">"ಉತ್ಕೃಷ್ಟ ಸ್ಥಳ"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ಕಂಪನ"</item>
+    <item msgid="8632513128515114092">"ಓದುವ ಸಂಪರ್ಕಗಳು"</item>
+    <item msgid="3741042113569620272">"ಸಂಪರ್ಕಗಳನ್ನು ಮಾರ್ಪಡಿಸಿ"</item>
+    <item msgid="4204420969709009931">"ಕರೆಯ ಲಾಗ್‌ ಓದಿ"</item>
+    <item msgid="2260380357119423209">"ಕರೆಯ ಲಾಗ್‌ ಮಾರ್ಪಡಿಸಿ"</item>
+    <item msgid="6550710385014530934">"ಕ್ಯಾಲೆಂಡರ್‌ ಓದಿ"</item>
+    <item msgid="3575906174264853951">"ಕ್ಯಾಲೆಂಡರ್‌ ಮಾರ್ಪಡಿಸಿ"</item>
+    <item msgid="4319843242568057174">"ವೈ-ಫೈ ಸ್ಕ್ಯಾನ್‌"</item>
+    <item msgid="2981791890467303819">"ಅಧಿಸೂಚನೆ"</item>
+    <item msgid="6617825156152476692">"ಸೆಲ್ ಸ್ಕ್ಯಾನ್"</item>
+    <item msgid="8865260890611559753">"ಫೋನ್‌‌ಗೆ ಕರೆಮಾಡಿ"</item>
+    <item msgid="3254999273961542982">"SMS ಓದಿ"</item>
+    <item msgid="7711446453028825171">"SMS ಬರೆಯಿರಿ"</item>
+    <item msgid="6123238544099198034">"SMS ಸ್ವೀಕರಿಸಿ"</item>
+    <item msgid="838342167431596036">"ತುರ್ತು SMS ಸ್ವೀಕರಿಸಿ"</item>
+    <item msgid="8554432731560956686">"MMS ಸ್ವೀಕರಿಸಿ"</item>
+    <item msgid="7464863464299515059">"WAP ಪುಶ್‌ ಸ್ವೀಕರಿಸಿ"</item>
+    <item msgid="310463075729606765">"SMS ಕಳುಹಿಸು"</item>
+    <item msgid="7338021933527689514">"ICC SMS ಓದಿ"</item>
+    <item msgid="6130369335466613036">"ICC SMS ಬರೆಯಿರಿ"</item>
+    <item msgid="6536865581421670942">"ಸೆಟ್ಟಿಂಗ್‌‌ಗಳನ್ನು ಮಾರ್ಪಡಿಸಿ"</item>
+    <item msgid="4547203129183558973">"ಮೇಲಕ್ಕೆ ಎಳೆಯಿರಿ"</item>
+    <item msgid="9080347512916542840">"ಅಧಿಸೂಚನೆಗಳನ್ನು ಪ್ರವೇಶಿಸಿ"</item>
+    <item msgid="5332718516635907742">"ಕ್ಯಾಮರಾ"</item>
+    <item msgid="6098422447246167852">"ಆಡಿಯೋ ರೆಕಾರ್ಡ್‌ ಮಾಡಲು"</item>
+    <item msgid="9182794235292595296">"ಆಡಿಯೋ ಪ್ಲೇ ಮಾಡಿ"</item>
+    <item msgid="8760743229597702019">"ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ ಓದಿ"</item>
+    <item msgid="2266923698240538544">"ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ ಮಾರ್ಪಡಿಸಿ"</item>
+    <item msgid="1801619438618539275">"ಮಾಧ್ಯಮ ಬಟನ್‌ಗಳು"</item>
+    <item msgid="31588119965784465">"ಆಡಿಯೋ ಫೋಕಸ್"</item>
+    <item msgid="7565226799008076833">"ಮಾಸ್ಟರ್‌ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="5420704980305018295">"ಧ್ವನಿ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="5797363115508970204">"ರಿಂಗ್‌ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="8233154098550715999">"ಮಾಧ್ಯಮ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="5196715605078153950">"ಎಚ್ಚರಿಕೆ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="394030698764284577">"ಅಧಿಸೂಚನೆ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="8952898972491680178">"ಬ್ಲೂಟೂತ್ ವಾಲ್ಯೂಮ್"</item>
+    <item msgid="8506227454543690851">"ಎಚ್ಚರವಹಿಸಿ"</item>
+    <item msgid="1108160036049727420">"ಪರಿವೀಕ್ಷಣೆ ಸ್ಥಳ"</item>
+    <item msgid="1496205959751719491">"ಪರಿವೀಕ್ಷಣೆಯ ಹೆಚ್ಚಿನ ಸಾಮರ್ಥ್ಯದ ಸ್ಥಳ"</item>
+    <item msgid="3776296279910987380">"ಬಳಕೆ ಅಂಕಿಅಂಶಗಳನ್ನು ಪಡೆಯಿರಿ"</item>
+    <item msgid="8827100324471975602">"ಮೈಕ್ರೋಫೋನ್ ಮ್ಯೂಟ್/ಅನ್‌ಮ್ಯೂಟ್ ಮಾಡಿ"</item>
+    <item msgid="6880736730520126864">"ಟೋಸ್ಟ್ ತೋರಿಸಿ"</item>
+    <item msgid="4933375960222609935">"ಪ್ರಾಜೆಕ್ಟ್ ಮೀಡಿಯಾ"</item>
+    <item msgid="8357907018938895462">"VPN ಸಕ್ರಿಯಗೊಳಿಸಿ"</item>
+    <item msgid="8143812849911310973">"ವಾಲ್‌ಪೇಪರ್‌ ರೈಟ್ ಮಾಡಿ"</item>
+    <item msgid="6266277260961066535">"ವಿನ್ಯಾಸಕ್ಕೆ ಸಹಾಯ"</item>
+    <item msgid="7715498149883482300">"ಸ್ಕ್ರೀನ್‌ಶಾಟ್‌‌ಗೆ ಸಹಾಯ"</item>
+    <item msgid="4046679376726313293">"ಫೋನ್ ಸ್ಥಿತಿಯನ್ನು ರೀಡ್‌ ಮಾಡಿ"</item>
+    <item msgid="6329507266039719587">"ಧ್ವನಿಮೇಲ್ ಸೇರಿಸಿ"</item>
+    <item msgid="7692440726415391408">"sip ಬಳಸಿ"</item>
+    <item msgid="8572453398128326267">"ಹೊರಹೋಗುವ ಕರೆಯನ್ನು ಪ್ರಕ್ರಿಯೆಗೊಳಿಸಿ"</item>
+    <item msgid="7775674394089376306">"ಫಿಂಗರ್‌ ಪ್ರಿಂಟ್"</item>
+    <item msgid="3182815133441738779">"ದೇಹ ಸೆನ್ಸರ್‌ಗಳು"</item>
+    <item msgid="2793100005496829513">"ಸೆಲ್ ಪ್ರಸಾರಗಳನ್ನು ರೀಡ್ ಮಾಡಿ"</item>
+    <item msgid="2633626056029384366">"ಸ್ಥಳ ನಕಲಿಸು"</item>
+    <item msgid="8356842191824684631">"ಸಂಗ್ರಹಣೆಯನ್ನು ರೀಡ್ ಮಾಡಿ"</item>
+    <item msgid="5671906070163291500">"ಸಂಗ್ರಹಣೆಯನ್ನು ರೈಟ್ ಮಾಡಿ"</item>
+    <item msgid="2791955098549340418">"ಸ್ಕ್ರೀನ್ ಆನ್ ಮಾಡಿ"</item>
+    <item msgid="5599435119609178367">"ಖಾತೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಿ"</item>
+    <item msgid="1165623660533024666">"ಹಿನ್ನೆಲೆಯಲ್ಲಿ ರನ್ ಮಾಡಿ"</item>
+    <item msgid="6423861043647911030">"ಪ್ರವೇಶಿಸುವಿಕೆ ವಾಲ್ಯೂಮ್‌"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"ಚಿಕ್ಕದು"</item>
+    <item msgid="4816511817309094890">"ಮಧ್ಯಮ"</item>
+    <item msgid="8305084671259331134">"ದೊಡ್ಡದು"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ಡೀಫಾಲ್ಟ್"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"ಪ್ರಾಸಂಗಿಕ"</item>
+    <item msgid="4627069151979553527">"ಹಸ್ತಾಕ್ಷರಲಿಪಿ"</item>
+    <item msgid="6896773537705206194">"ಸ್ಮಾಲ್‌ ಕ್ಯಾಪಿಟಲ್ಸ್‌‌"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ಡೀಫಾಲ್ಟ್"</item>
+    <item msgid="6488643537808152001">"ಯಾವುದೂ ಇಲ್ಲ"</item>
+    <item msgid="552332815156010137">"ಔಟ್‌ಲೈನ್"</item>
+    <item msgid="7187891159463789272">"ಡ್ರಾಪ್ ನೆರಳು"</item>
+    <item msgid="8019330250538856521">"ಹೆಚ್ಚಿಸಲಾಗಿದೆ"</item>
+    <item msgid="8987385315647049787">"ಕುಗ್ಗಿಸಲಾಗಿದೆ"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"ಪೂರ್ವ-ಹಂಚಿಕೆಯಾದ ಕೀಗಳನ್ನು ಹೊಂದಿರುವ L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"ಪ್ರಮಾಣಪತ್ರಗಳನ್ನು ಹೊಂದಿರುವ L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"ಪೂರ್ವ-ಹಂಚಿಕೆಯಾದ ಕೀಗಳು ಮತ್ತು Xauth ಪ್ರಮಾಣೀಕರಣವನ್ನು ಹೊಂದಿರುವ IPSec VPN"</item>
+    <item msgid="3319427315593649917">"ಪ್ರಮಾಣಪತ್ರಗಳು ಮತ್ತು Xauth ಪ್ರಮಾಣೀಕರಣವನ್ನು ಹೊಂದಿರುವ IPSec VPN"</item>
+    <item msgid="8258927774145391041">"ಪ್ರಮಾಣಪತ್ರಗಳು ಮತ್ತು ಹೈಬ್ರಿಡ್ ಪ್ರಮಾಣೀಕರಣವನ್ನು ಹೊಂದಿರುವ IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ಯಾವುದೂ ಅಲ್ಲ"</item>
+    <item msgid="1157046369795346308">"ಹಸ್ತಚಾಲಿತ"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ಕೇಳಿ"</item>
+    <item msgid="7718817231348607934">"ಎಂದಿಗೂ ಅನುಮತಿಸಬೇಡಿ"</item>
+    <item msgid="8184570120217958741">"ಯಾವಾಗಲೂ ಅನುಮತಿಸಿ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ನಿರಂತರ"</item>
+    <item msgid="167418068739176448">"ಉನ್ನತ ಚಟುವಟಿಕೆ"</item>
+    <item msgid="4760813290195199773">"ಪ್ರಮುಖ (ಮುನ್ನೆಲೆ)"</item>
+    <item msgid="2328684826817647595">"ಪ್ರಮುಖ (ಹಿನ್ನೆಲೆ)"</item>
+    <item msgid="7746406490652867365">"ಬ್ಯಾಕಪ್"</item>
+    <item msgid="5597404364389196754">"ಭಾರಿ ತೂಕ"</item>
+    <item msgid="1290888779300174556">"ಸೇವೆ (ಚಾಲನೆಯಲ್ಲಿದೆ)"</item>
+    <item msgid="7241098542073939046">"ಸೇವೆ (ಮರುಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ)"</item>
+    <item msgid="6610439017684111046">"ಸ್ವೀಕರಿಸುವವರು"</item>
+    <item msgid="7367606086319921117">"ಮುಖಪುಟ"</item>
+    <item msgid="3344660712396741826">"ಕೊನೆಯ ಚಟುವಟಿಕೆ"</item>
+    <item msgid="5006559348883303865">"ಕ್ಯಾಶ್ ಮಾಡಲಾಗಿದೆ (ಚಟುವಟಿಕೆ)"</item>
+    <item msgid="8633480732468137525">"ಕ್ಯಾಶ್ ಮಾಡಲಾದ (ಚಟುವಟಿಕೆ ಕ್ಲೈಂಟ್)"</item>
+    <item msgid="6248998242443333892">"ಕ್ಯಾಶ್ ಮಾಡಲಾಗಿದೆ (ಖಾಲಿ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ಗಾಢ ಹಸಿರು-ನೀಲಿ"</item>
+    <item msgid="3228505970082457852">"ನೀಲಿ"</item>
+    <item msgid="6590260735734795647">"ಊದಾ"</item>
+    <item msgid="3521763377357218577">"ನೇರಳೆ"</item>
+    <item msgid="5932337981182999919">"ಗುಲಾಬಿ ಬಣ್ಣ"</item>
+    <item msgid="5642914536624000094">"ಕೆಂಪು"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 ದಿನಗಳಿಗಿಂತಲೂ ಹಳೆಯದು"</item>
+    <item msgid="8699273238891265610">"60 ದಿನಗಳಿಗಿಂತಲೂ ಹಳೆಯದು"</item>
+    <item msgid="8346279419423837266">"90 ದಿನಗಳಿಗಿಂತಲೂ ಹಳೆಯದು"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಪತ್ತೆಹಚ್ಚಿರಿ"</item>
+    <item msgid="773943026484148895">"ಮೀಟರ್ ಮಾಡಿದೆ ಎಂದು ಪರಿಗಣಿಸಿ"</item>
+    <item msgid="1008268820118852416">"ಮೀಟರ್ ಮಾಡಲಾಗಿಲ್ಲ ಎಂದು ಪರಿಗಣಿಸಿ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ಯಾದೃಚ್ಛಿಕವಾದ MAC (ಡೀಫಾಲ್ಟ್) ಅನ್ನು ಬಳಸಿ"</item>
+    <item msgid="214234417308375326">"ಸಾಧನದ MAC ಬಳಸಿ"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ಇಲ್ಲ"</item>
+    <item msgid="1930581185557754880">"ಹೌದು"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ಕತ್ತಲೆ"</item>
+    <item msgid="5079453644557603349">"ಹಗುರ"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ಆಫ್"</item>
+    <item msgid="4072198137051566919">"ಡೀಬಗ್ ಮಾಡಿ"</item>
+    <item msgid="2473005316958868509">"ಅತಿಯಾದ ಮಾತು"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ಹೋಮ್ ಮಾತ್ರ"</item>
+    <item msgid="1161026694891024702">"ಸ್ವಯಂಚಾಲಿತ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA ಗೆ ಪ್ರಾಶಸ್ತ್ಯ ನೀಡಲಾಗಿದೆ"</item>
+    <item msgid="7581481130337402578">"GSM ಮಾತ್ರ"</item>
+    <item msgid="8579197487913425819">"WCDMA ಮಾತ್ರ"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ಸ್ವಯಂ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ಸ್ವಯಂ"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo ಮಾತ್ರ"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ಜಾಗತಿಕ"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA ಮಾತ್ರ"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/ಸಿಮ್‌"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ಜಾಗತಿಕ"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-kn/strings.xml b/tests/CarDeveloperOptions/res/values-kn/strings.xml
index b9b14d4..cbf571f 100644
--- a/tests/CarDeveloperOptions/res/values-kn/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-kn/strings.xml
@@ -505,7 +505,7 @@
     <string name="fingerprint_delete_message" msgid="5895802741486967970">"ನೀವು ಈ ಫಿಂಗರ್‌ ಫ್ರಿಂಟ್ ಅಳಿಸಲು ಬಯಸುವಿರಾ?"</string>
     <string name="fingerprint_last_delete_message" msgid="3346252479778971442">"ನಿಮ್ಮ ಫೋನ್ ಅನ್‌ಲಾಕ್ ಮಾಡಲು, ಖರೀದಿಗಳನ್ನು ದೃಢೀಕರಿಸಲು ಅಥವಾ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಸೈನ್ ಇನ್ ಮಾಡಲು ನಿಮ್ಮ ಫಿಂಗರ್‌ ಪ್ರಿಂಟ್‌ಗಳನ್ನು ಬಳಸಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ."</string>
     <string name="fingerprint_last_delete_message_profile_challenge" msgid="5385095150532247025">"ನಿಮ್ಮ ಕೆಲಸದ ಪ್ರೊಫೈಲ್ ಅನ್‌ಲಾಕ್ ಮಾಡಲು, ಖರೀದಿಗಳನ್ನು ದೃಢೀಕರಿಸಲು ಅಥವಾ ಕೆಲಸದ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಸೈನ್ ಇನ್ ಮಾಡಲು ನಿಮ್ಮ ಫಿಂಗರ್‌ ಪ್ರಿಂಟ್‌ಗಳನ್ನು ಬಳಸಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ."</string>
-    <string name="fingerprint_last_delete_confirm" msgid="7984595457589664004">"ಹೌದು, ತೆಗೆದುಹಾಕು"</string>
+    <string name="fingerprint_last_delete_confirm" msgid="7984595457589664004">"ಹೌದು, ತೆಗೆದುಹಾಕಿ"</string>
     <string name="crypt_keeper_settings_title" msgid="839783588093862748">"ಎನ್‌ಕ್ರಿಪ್ಷನ್"</string>
     <string name="crypt_keeper_encrypt_title" product="tablet" msgid="2292129135369853167">"ಟ್ಯಾಬ್ಲೆಟ್ ಅನ್ನು ಎನ್‌ಕ್ರಿಪ್ಟ್ ಮಾಡು"</string>
     <string name="crypt_keeper_encrypt_title" product="default" msgid="3110852053238357832">"ಫೋನ್ ಎನ್‌ಕ್ರಿಪ್ಟ್"</string>
@@ -629,7 +629,7 @@
     <string name="unlock_disable_frp_warning_content_unknown_fingerprint_profile" msgid="1201259228331105948">"ನಿಮ್ಮ ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಇಲ್ಲದೆ ಪ್ರೊಫೈಲ್ ರಕ್ಷಣೆ ವೈಶಿಷ್ಟ್ಯಗಳು ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ.<xliff:g id="EMPTY_LINE">
 
 </xliff:g>ಈ ಪ್ರೊಫೈಲ್‌ನಿಂದ ನಿಮ್ಮ ಉಳಿಸಲಾದ ಫಿಂಗರ್‌ಪ್ರಿಂಟ್‌ಗಳನ್ನು ಸಹ ತೆಗೆದುಹಾಕಲಾಗುವುದು ಮತ್ತು ನಿಮ್ಮ ಫೋನ್ ಅನ್‌ಲಾಕ್ ಮಾಡಲು, ಖರೀದಿಗಳನ್ನು ದೃಢೀಕರಿಸಲು ಅಥವಾ ಅವುಗಳ ಮೂಲಕ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಸೈನ್ ಇನ್ ಮಾಡಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ."</string>
-    <string name="unlock_disable_frp_warning_ok" msgid="2373890505202766456">"ಹೌದು, ತೆಗೆದುಹಾಕು"</string>
+    <string name="unlock_disable_frp_warning_ok" msgid="2373890505202766456">"ಹೌದು, ತೆಗೆದುಹಾಕಿ"</string>
     <string name="unlock_change_lock_pattern_title" msgid="7622476883851319877">"ಅನ್‌ಲಾಕ್ ನಮೂನೆಯನ್ನು ಬದಲಾಯಿಸಿ"</string>
     <string name="unlock_change_lock_pin_title" msgid="6671224158800812238">"ಅನ್‌ಲಾಕ್ ಪಿನ್‌ ಬದಲಾಯಿಸಿ"</string>
     <string name="unlock_change_lock_password_title" msgid="7886432065775170719">"ಅನ್‌ಲಾಕ್ ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಾಯಿಸಿ"</string>
@@ -1265,14 +1265,14 @@
     <string name="sim_lock_settings_summary_off" msgid="348656447968142307">"ಆಫ್"</string>
     <string name="sim_lock_settings_summary_on" msgid="3440707542514810045">"ಲಾಕ್ ಮಾಡಲಾಗಿದೆ"</string>
     <string name="sim_lock_settings_title" msgid="877336472752342977">"ಸಿಮ್‌ ಕಾರ್ಡ್‌ ಲಾಕ್"</string>
-    <string name="sim_pin_toggle" msgid="2026507420678167488">"ಸಿಮ್‌ ಕಾರ್ಡ್ ಲಾಕ್ ಮಾಡು"</string>
+    <string name="sim_pin_toggle" msgid="2026507420678167488">"ಸಿಮ್‌ ಕಾರ್ಡ್ ಲಾಕ್ ಮಾಡಿ"</string>
     <string name="sim_lock_on" product="tablet" msgid="3917977767884071323">"ಟ್ಯಾಬ್ಲೆಟ್ ಬಳಸಲು ಪಿನ್‌ ಅಗತ್ಯವಿದೆ"</string>
     <string name="sim_lock_on" product="default" msgid="1363159192182487883">"ಫೋನ್ ಬಳಸಲು ಪಿನ್‌ ಅಗತ್ಯವಿದೆ"</string>
     <string name="sim_lock_off" product="tablet" msgid="8428566346685080195">"ಟ್ಯಾಬ್ಲೆಟ್ ಬಳಸಲು ಪಿನ್‌ ಅಗತ್ಯವಿದೆ"</string>
     <string name="sim_lock_off" product="default" msgid="5873747770983496755">"ಫೋನ್ ಬಳಸಲು ಪಿನ್‌ ಅಗತ್ಯವಿದೆ"</string>
     <string name="sim_pin_change" msgid="5615972926944053213">"ಸಿಮ್‌ ಪಿನ್‌ ಬದಲಾಯಿಸು"</string>
     <string name="sim_enter_pin" msgid="149201344579560481">"ಸಿಮ್‌ ಪಿನ್‌"</string>
-    <string name="sim_enable_sim_lock" msgid="4478794975656337476">"ಸಿಮ್‌ ಕಾರ್ಡ್ ಲಾಕ್ ಮಾಡು"</string>
+    <string name="sim_enable_sim_lock" msgid="4478794975656337476">"ಸಿಮ್‌ ಕಾರ್ಡ್ ಲಾಕ್ ಮಾಡಿ"</string>
     <string name="sim_disable_sim_lock" msgid="394864376519820956">"ಸಿಮ್‌ ಕಾರ್ಡ್‌ ಅನ್‌ಲಾಕ್ ಮಾಡು"</string>
     <string name="sim_enter_old" msgid="8984991229691526849">"ಹಳೆಯ ಸಿಮ್‌ ಪಿನ್‌"</string>
     <string name="sim_enter_new" msgid="1720792957661107585">"ಹೊಸ ಸಿಮ್‌ ಪಿನ್‌"</string>
@@ -2272,7 +2272,7 @@
     <string name="battery_tip_smart_battery_summary" msgid="5344821856478265778">"ಬ್ಯಾಟರಿ ನಿರ್ವಾಹಕರನ್ನು ಆನ್‌ ಮಾಡಿ"</string>
     <string name="battery_tip_early_heads_up_title" msgid="707163785378746813">"ಬ್ಯಾಟರಿ ಸೇವರ್‌ ಆನ್‌ ಮಾಡಿ"</string>
     <string name="battery_tip_early_heads_up_summary" msgid="4231489566422395156">"ಬ್ಯಾಟರಿ ಸಾಮಾನ್ಯಕ್ಕಿಂತ ಮೊದಲೇ ರನ್ ಆಗಬಹುದು"</string>
-    <string name="battery_tip_early_heads_up_done_title" msgid="112550885882648429">"ಬ್ಯಾಟರಿ ರಕ್ಷಕ ಆನ್ ಆಗಿದೆ"</string>
+    <string name="battery_tip_early_heads_up_done_title" msgid="112550885882648429">"ಬ್ಯಾಟರಿ ಸೇವರ್ ಆನ್ ಆಗಿದೆ"</string>
     <string name="battery_tip_early_heads_up_done_summary" msgid="8692257022962771181">"ಕೆಲವು ವೈಶಿಷ್ಟ್ಯಗಳು ಸೀಮಿತವಾಗಿರಬಹುದು"</string>
     <string name="battery_tip_high_usage_title" product="default" msgid="4103005178310487352">"ಫೋನ್ ಸಾಮಾನ್ಯಕ್ಕಿಂತ ಹೆಚ್ಚಿನದನ್ನು ಬಳಸಿದೆ"</string>
     <string name="battery_tip_high_usage_title" product="tablet" msgid="1019583260005768965">"ಟ್ಯಾಬ್ಲೆಟ್ ಸಾಮಾನ್ಯಕ್ಕಿಂತ ಹೆಚ್ಚಿನದನ್ನು ಬಳಸಿದೆ"</string>
@@ -3657,7 +3657,7 @@
     <string name="default_apps_title" msgid="3848048391400989931">"ಡಿಫಾಲ್ಟ್"</string>
     <string name="default_for_work" msgid="7290411716804495366">"ಕೆಲಸದ ಡಿಫಾಲ್ಟ್"</string>
     <string name="assist_and_voice_input_title" msgid="324148194703846130">"ಸಹಾಯ &amp; ಧ್ವನಿ ಇನ್‌ಪುಟ್"</string>
-    <string name="default_assist_title" msgid="2060846994203235317">"ಅಪ್ಲಿಕೇಶನ್ ಸಹಾಯ"</string>
+    <string name="default_assist_title" msgid="2060846994203235317">"ಸಹಾಯಕ ಆ್ಯಪ್"</string>
     <string name="assistant_security_warning_title" msgid="8014460924169723059">"<xliff:g id="ASSISTANT_APP_NAME">%s</xliff:g> ಅನ್ನು ನಿಮ್ಮ ಸಹಾಯಕವನ್ನಾಗಿ ಮಾಡುವುದೇ?"</string>
     <string name="assistant_security_warning" msgid="1304057692847069938">"ನಿಮ್ಮ ಪರದೆಯಲ್ಲಿ ಗೋಚರಿಸುವ ಅಥವಾ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಲ್ಲಿಯೇ ಪ್ರವೇಶಿಸಬಹುದಾದಂತಹ ಮಾಹಿತಿ ಸೇರಿದಂತೆ ನಿಮ್ಮ ಸಿಸ್ಟಂನಲ್ಲಿ ಬಳಕೆಯಲ್ಲಿರುವ ಅಪ್ಲಿಕೇಶನ್‌ಗಳ ಕುರಿತು ಮಾಹಿತಿಯನ್ನು ಓದಲು ಸಹಾಯಕಕ್ಕೆ ಸಾಧ್ಯವಾಗಬಹುದು."</string>
     <string name="assistant_security_warning_agree" msgid="5105692801460137289">"ಅನುಮೋದಿಸು"</string>
@@ -3785,7 +3785,7 @@
     <string name="zen_access_revoke_warning_dialog_title" msgid="6850994585577513299">"<xliff:g id="APP">%1$s</xliff:g> ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಅಡಚಣೆ ಮಾಡಬೇಡಿಗೆ ಪ್ರವೇಶವನ್ನು ಹಿಂತೆಗೆದುಕೊಳ್ಳುವುದೇ?"</string>
     <string name="zen_access_revoke_warning_dialog_summary" msgid="3487422193181311403">"ಈ ಅಪ್ಲಿಕೇಶನ್ ರಚಿಸಿರುವಂತಹ ಎಲ್ಲ ಅಡಚಣೆ ಮಾಡಬೇಡಿ ನಿಯಮಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ."</string>
     <string name="ignore_optimizations_on" msgid="4373971641328943551">"ಆಪ್ಟಿಮೈಸ್ ಮಾಡಬೇಡಿ"</string>
-    <string name="ignore_optimizations_off" msgid="4372289432580282870">"ಆಪ್ಟಿಮೈಸ್ ಮಾಡು"</string>
+    <string name="ignore_optimizations_off" msgid="4372289432580282870">"ಆಪ್ಟಿಮೈಸ್ ಮಾಡಿ"</string>
     <string name="ignore_optimizations_on_desc" msgid="2904484569799521559">"ನಿಮ್ಮ ಬ್ಯಾಟರಿಯನ್ನು ತ್ವರಿತವಾಗಿ ಬರಿದಾಗಿಸಬಹುದು. ಹಿನ್ನೆಲೆ ಬ್ಯಾಟರಿ ಬಳಸದಂತೆ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಇನ್ನು ಮುಂದೆ ನಿರ್ಬಂಧಿಸಲಾಗುವುದಿಲ್ಲ."</string>
     <string name="ignore_optimizations_off_desc" msgid="5598702251817814289">"ಉತ್ತಮ ಬ್ಯಾಟರಿ ಬಾಳಿಕೆಗೆ ಶಿಫಾರಸು ಮಾಡಲಾಗಿದೆ"</string>
     <string name="ignore_optimizations_title" msgid="7924345545276166305">"ಬ್ಯಾಟರಿ ಆಪ್ಟಿಮೈಸೇಶನ್‌ಗಳನ್ನು ಕಡೆಗಣಿಸಲು <xliff:g id="APP">%s</xliff:g> ಗೆ ಅನುಮತಿಸುವುದೇ?"</string>
@@ -3886,7 +3886,7 @@
     <string name="condition_zen_title" msgid="2128184708916052585">"ಅಡಚಣೆ ಮಾಡಬೇಡಿ ಆನ್ ಆಗಿದೆ"</string>
     <string name="condition_zen_summary_phone_muted" msgid="4396050395522974654">"ಫೋನ್ ಅನ್ನು ಮ್ಯೂಟ್ ಮಾಡಲಾಗಿದೆ"</string>
     <string name="condition_zen_summary_with_exceptions" msgid="3435216391993785818">"ವಿನಾಯಿತಿಗಳು ಸೇರಿವೆ"</string>
-    <string name="condition_battery_title" msgid="6704870010912986274">"ಬ್ಯಾಟರಿ ರಕ್ಷಕ ಆನ್ ಆಗಿದೆ"</string>
+    <string name="condition_battery_title" msgid="6704870010912986274">"ಬ್ಯಾಟರಿ ಸೇವರ್ ಆನ್ ಆಗಿದೆ"</string>
     <string name="condition_battery_summary" msgid="1236078243905690620">"ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ"</string>
     <string name="condition_cellular_title" msgid="6605277435894307935">"ಮೊಬೈಲ್ ಡೇಟಾ ಆಫ್ ಆಗಿದೆ"</string>
     <string name="condition_cellular_summary" msgid="3607459310548343777">"ಇಂಟರ್ನೆಟ್, ಕೇವಲ ವೈ-ಫೈ ಮೂಲಕ ಲಭ್ಯವಿದೆ"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ko-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ko-nokeys/strings.xml
new file mode 100644
index 0000000..51f2b43
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ko-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"애플리케이션 관리"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ko/arrays.xml b/tests/CarDeveloperOptions/res/values-ko/arrays.xml
new file mode 100644
index 0000000..0a0c171
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ko/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"미국"</item>
+    <item msgid="4791956477275129121">"유럽"</item>
+    <item msgid="3812126832016254559">"아프리카"</item>
+    <item msgid="2765816300353408280">"아시아"</item>
+    <item msgid="6683489385344409742">"호주"</item>
+    <item msgid="5194868215515664953">"태평양"</item>
+    <item msgid="7044520255415007865">"전체"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15초"</item>
+    <item msgid="772029947136115322">"30초"</item>
+    <item msgid="8743663928349474087">"1분"</item>
+    <item msgid="1506508631223164814">"2분"</item>
+    <item msgid="8664703938127907662">"5분"</item>
+    <item msgid="5827960506924849753">"10분"</item>
+    <item msgid="6677424950124253938">"30분"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"작게"</item>
+    <item msgid="591935967183159581">"기본"</item>
+    <item msgid="1714184661981538355">"크게"</item>
+    <item msgid="6195563047686707484">"가장 크게"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"검색 중..."</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>에 연결 중..."</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>에서 인증하는 중..."</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>에서 IP 주소를 가져오는 중..."</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>에 연결됨"</item>
+    <item msgid="6600156231416890902">"일시 정지됨"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>에서 연결을 끊는 중..."</item>
+    <item msgid="3980154971187953257">"연결 끊김"</item>
+    <item msgid="2847316776634969068">"실패"</item>
+    <item msgid="4390990424746035383">"차단됨"</item>
+    <item msgid="3618248791367063949">"연결 상태 불량 일시적으로 방지"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"누름 버튼"</item>
+    <item msgid="7401896200768713930">"피어 기기 PIN"</item>
+    <item msgid="4526848028011846710">"이 기기의 PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"연결됨"</item>
+    <item msgid="983792611851499732">"초대됨"</item>
+    <item msgid="5438273405428201793">"실패"</item>
+    <item msgid="4646663015449312554">"사용 가능"</item>
+    <item msgid="3230556734162006146">"범위를 벗어났습니다."</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2분"</item>
+    <item msgid="2759776603549270587">"5분"</item>
+    <item msgid="167772676068860015">"1시간"</item>
+    <item msgid="5985477119043628504">"제한 시간 없음"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"최근 30일"</item>
+    <item msgid="3211287705232736964">"사용 주기 설정..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"사용 시간"</item>
+    <item msgid="2784401352592276015">"최근 사용"</item>
+    <item msgid="249854287216326349">"앱 이름"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"없음"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"없음"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"고정"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"없음"</item>
+    <item msgid="1464741437353223198">"수동"</item>
+    <item msgid="5793600062487886090">"프록시 자동 구성"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"없음"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP 또는 CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"내부 기기 저장용량"</item>
+    <item msgid="3186681694079967527">"이동식 SD 카드"</item>
+    <item msgid="6902033473986647035">"시스템에서 결정"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"위치"</item>
+    <item msgid="6842381562497597649">"개인"</item>
+    <item msgid="3966700236695683444">"메시지"</item>
+    <item msgid="8563996233342430477">"미디어"</item>
+    <item msgid="5323851085993963783">"기기"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"대략적 위치"</item>
+    <item msgid="1830619568689922920">"세부 위치"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"진동"</item>
+    <item msgid="8632513128515114092">"주소록 읽기"</item>
+    <item msgid="3741042113569620272">"주소록 수정"</item>
+    <item msgid="4204420969709009931">"통화 기록 읽기"</item>
+    <item msgid="2260380357119423209">"통화 기록 수정"</item>
+    <item msgid="6550710385014530934">"캘린더 읽기"</item>
+    <item msgid="3575906174264853951">"캘린더 수정"</item>
+    <item msgid="4319843242568057174">"Wi-Fi 검색"</item>
+    <item msgid="2981791890467303819">"알림"</item>
+    <item msgid="6617825156152476692">"셀 검색"</item>
+    <item msgid="8865260890611559753">"전화 걸기"</item>
+    <item msgid="3254999273961542982">"SMS 읽기"</item>
+    <item msgid="7711446453028825171">"SMS 작성하기"</item>
+    <item msgid="6123238544099198034">"SMS 수신"</item>
+    <item msgid="838342167431596036">"긴급 SMS 수신"</item>
+    <item msgid="8554432731560956686">"MMS 수신"</item>
+    <item msgid="7464863464299515059">"WAP PUSH 수신"</item>
+    <item msgid="310463075729606765">"SMS 보내기"</item>
+    <item msgid="7338021933527689514">"ICC SMS 읽기"</item>
+    <item msgid="6130369335466613036">"ICC SMS 작성하기"</item>
+    <item msgid="6536865581421670942">"설정 수정"</item>
+    <item msgid="4547203129183558973">"위에 그림"</item>
+    <item msgid="9080347512916542840">"액세스 알림"</item>
+    <item msgid="5332718516635907742">"카메라"</item>
+    <item msgid="6098422447246167852">"오디오 녹음"</item>
+    <item msgid="9182794235292595296">"오디오 재생"</item>
+    <item msgid="8760743229597702019">"클립보드 읽기"</item>
+    <item msgid="2266923698240538544">"클립보드 수정"</item>
+    <item msgid="1801619438618539275">"미디어 버튼"</item>
+    <item msgid="31588119965784465">"오디오 포커스"</item>
+    <item msgid="7565226799008076833">"마스터 볼륨"</item>
+    <item msgid="5420704980305018295">"음성 볼륨"</item>
+    <item msgid="5797363115508970204">"벨소리 볼륨"</item>
+    <item msgid="8233154098550715999">"미디어 볼륨"</item>
+    <item msgid="5196715605078153950">"알람 볼륨"</item>
+    <item msgid="394030698764284577">"알림 볼륨"</item>
+    <item msgid="8952898972491680178">"블루투스 볼륨"</item>
+    <item msgid="8506227454543690851">"켜진 상태로 유지"</item>
+    <item msgid="1108160036049727420">"위치 모니터링"</item>
+    <item msgid="1496205959751719491">"고전력 위치 모니터링"</item>
+    <item msgid="3776296279910987380">"사용 통계 가져오기"</item>
+    <item msgid="8827100324471975602">"마이크 음소거/음소거 해제"</item>
+    <item msgid="6880736730520126864">"토스트 표시"</item>
+    <item msgid="4933375960222609935">"프로젝트 미디어"</item>
+    <item msgid="8357907018938895462">"VPN 활성화"</item>
+    <item msgid="8143812849911310973">"배경화면 작성"</item>
+    <item msgid="6266277260961066535">"구조 지원"</item>
+    <item msgid="7715498149883482300">"스크린샷 지원"</item>
+    <item msgid="4046679376726313293">"휴대전화 상태 읽기"</item>
+    <item msgid="6329507266039719587">"음성사서함 추가"</item>
+    <item msgid="7692440726415391408">"SIP 사용"</item>
+    <item msgid="8572453398128326267">"발신 전화 처리"</item>
+    <item msgid="7775674394089376306">"지문"</item>
+    <item msgid="3182815133441738779">"인체 감지 센서"</item>
+    <item msgid="2793100005496829513">"셀 브로드캐스트 읽기"</item>
+    <item msgid="2633626056029384366">"가상 위치"</item>
+    <item msgid="8356842191824684631">"저장용량 읽기"</item>
+    <item msgid="5671906070163291500">"저장용량 작성"</item>
+    <item msgid="2791955098549340418">"화면 켜기"</item>
+    <item msgid="5599435119609178367">"계정 가져오기"</item>
+    <item msgid="1165623660533024666">"백그라운드에서 실행"</item>
+    <item msgid="6423861043647911030">"접근성 볼륨"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"위치"</item>
+    <item msgid="6656077694190491067">"위치"</item>
+    <item msgid="8790228218278477369">"위치"</item>
+    <item msgid="7836406246005211990">"진동"</item>
+    <item msgid="3951439024549922598">"주소록 읽기"</item>
+    <item msgid="8802152411647068">"주소록 수정"</item>
+    <item msgid="229544934599698735">"통화 기록 읽기"</item>
+    <item msgid="7396102294405899613">"통화 기록 수정"</item>
+    <item msgid="3597797992398484655">"캘린더 읽기"</item>
+    <item msgid="2705975774250907343">"캘린더 수정"</item>
+    <item msgid="4668747371441932697">"위치"</item>
+    <item msgid="1487578921720243646">"소식 알림"</item>
+    <item msgid="4636080349724146638">"위치"</item>
+    <item msgid="673510900286463926">"전화 걸기"</item>
+    <item msgid="542083422784609790">"SMS/MMS 읽기"</item>
+    <item msgid="1033780373029588436">"SMS/MMS 쓰기"</item>
+    <item msgid="5647111115517787488">"SMS/MMS 수신"</item>
+    <item msgid="8591105601108455893">"SMS/MMS 수신"</item>
+    <item msgid="7730995008517841903">"SMS/MMS 수신"</item>
+    <item msgid="2613033109026626086">"SMS/MMS 수신"</item>
+    <item msgid="3037159047591081136">"SMS/MMS 전송"</item>
+    <item msgid="4726682243833913568">"SMS/MMS 읽기"</item>
+    <item msgid="6555678522277865572">"SMS/MMS 쓰기"</item>
+    <item msgid="6981734935578130884">"설정 수정"</item>
+    <item msgid="8705854389991425629">"위에 그림"</item>
+    <item msgid="5861356020344153651">"액세스 알림"</item>
+    <item msgid="78432174621628659">"카메라"</item>
+    <item msgid="3986116419882154794">"오디오 녹음"</item>
+    <item msgid="4516840825756409490">"오디오 재생"</item>
+    <item msgid="6811712502798183957">"클립보드 읽기"</item>
+    <item msgid="2780369012602289114">"클립보드 수정"</item>
+    <item msgid="2331359440170850868">"미디어 버튼"</item>
+    <item msgid="6133599737122751231">"오디오 포커스"</item>
+    <item msgid="6844485713404805301">"마스터 볼륨"</item>
+    <item msgid="1600379420669104929">"음성 볼륨"</item>
+    <item msgid="6296768210470214866">"벨소리 볼륨"</item>
+    <item msgid="510690696071629241">"미디어 볼륨"</item>
+    <item msgid="406861638631430109">"알람 볼륨"</item>
+    <item msgid="4715864795872233884">"알림 볼륨"</item>
+    <item msgid="2311478519251301183">"블루투스 볼륨"</item>
+    <item msgid="5133991377896747027">"켜진 상태로 유지"</item>
+    <item msgid="2464189519136248621">"위치"</item>
+    <item msgid="2062677934050803037">"위치"</item>
+    <item msgid="1735171933192715957">"사용 통계 가져오기"</item>
+    <item msgid="1014093788778383554">"마이크 음소거/음소거 해제"</item>
+    <item msgid="4199297950608622850">"토스트 표시"</item>
+    <item msgid="2527962435313398821">"프로젝트 미디어"</item>
+    <item msgid="5117506254221861929">"VPN 활성화"</item>
+    <item msgid="8291198322681891160">"배경화면 작성"</item>
+    <item msgid="7106921284621230961">"구조 지원"</item>
+    <item msgid="4496533640894624799">"스크린샷 지원"</item>
+    <item msgid="2598847264853993611">"휴대전화 상태 읽기"</item>
+    <item msgid="9215610846802973353">"음성사서함 추가"</item>
+    <item msgid="9186411956086478261">"SIP 사용"</item>
+    <item msgid="6884763100104539558">"발신 전화 처리"</item>
+    <item msgid="125513972170580692">"지문"</item>
+    <item msgid="2556071024281275619">"인체 감지 센서"</item>
+    <item msgid="617168514928339387">"셀 브로드캐스트 읽기"</item>
+    <item msgid="7134693570516523585">"가상 위치"</item>
+    <item msgid="7224489175375229399">"저장용량 읽기"</item>
+    <item msgid="8472735063903258202">"저장용량 작성"</item>
+    <item msgid="4069276819909595110">"화면 켜기"</item>
+    <item msgid="1228338896751121025">"계정 가져오기"</item>
+    <item msgid="3181581793459233672">"백그라운드에서 실행"</item>
+    <item msgid="2340936043025374076">"접근성 볼륨"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"짧게"</item>
+    <item msgid="4816511817309094890">"보통"</item>
+    <item msgid="8305084671259331134">"길게"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"기본"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"좁은 Sans-serif"</item>
+    <item msgid="6529379119163117545">"Sans Serif 고정 너비"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif 고정 너비"</item>
+    <item msgid="4448481989108928248">"캐주얼"</item>
+    <item msgid="4627069151979553527">"필기체"</item>
+    <item msgid="6896773537705206194">"작은 대문자"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"기본"</item>
+    <item msgid="6488643537808152001">"없음"</item>
+    <item msgid="552332815156010137">"윤곽선"</item>
+    <item msgid="7187891159463789272">"그림자"</item>
+    <item msgid="8019330250538856521">"높임"</item>
+    <item msgid="8987385315647049787">"낮춤"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"앱 기본값 사용"</item>
+    <item msgid="8611890312638868524">"검은색 바탕에 흰색"</item>
+    <item msgid="5891360837786277638">"흰색 바탕에 검정색"</item>
+    <item msgid="2798457065945456853">"검은색 바탕에 노란색"</item>
+    <item msgid="5799049811524553967">"파란색 바탕에 노란색"</item>
+    <item msgid="3673930830658169860">"사용자설정"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"사전 공유 키를 사용하는 L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"인증서가 있는 L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"사전 공유 키 및 Xauth 인증을 가진 IPSec VPN"</item>
+    <item msgid="3319427315593649917">"인증서 및 Xauth 인증을 가진 IPSec VPN"</item>
+    <item msgid="8258927774145391041">"인증서 및 하이브리드 인증을 가진 IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"선택 안함"</item>
+    <item msgid="1157046369795346308">"수동"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"연결 끊김"</item>
+    <item msgid="8754480102834556765">"초기화 중..."</item>
+    <item msgid="3351334355574270250">"연결 중..."</item>
+    <item msgid="8303882153995748352">"연결됨"</item>
+    <item msgid="9135049670787351881">"시간제한"</item>
+    <item msgid="2124868417182583926">"실패"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"질문"</item>
+    <item msgid="7718817231348607934">"허용 안함"</item>
+    <item msgid="8184570120217958741">"항상 허용"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"영구"</item>
+    <item msgid="167418068739176448">"메모리 사용이 가장 많은 활동"</item>
+    <item msgid="4760813290195199773">"중요(포그라운드)"</item>
+    <item msgid="2328684826817647595">"중요(백그라운드)"</item>
+    <item msgid="7746406490652867365">"백업"</item>
+    <item msgid="5597404364389196754">"무거운 활동"</item>
+    <item msgid="1290888779300174556">"서비스(운영 중)"</item>
+    <item msgid="7241098542073939046">"서비스(다시 시작 중)"</item>
+    <item msgid="6610439017684111046">"수신기"</item>
+    <item msgid="7367606086319921117">"홈"</item>
+    <item msgid="3344660712396741826">"마지막 활동"</item>
+    <item msgid="5006559348883303865">"캐시됨(활동)"</item>
+    <item msgid="8633480732468137525">"캐시됨(활동 클라이언트)"</item>
+    <item msgid="6248998242443333892">"캐시됨(비어 있음)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"청록색"</item>
+    <item msgid="3228505970082457852">"파란색"</item>
+    <item msgid="6590260735734795647">"남색"</item>
+    <item msgid="3521763377357218577">"보라색"</item>
+    <item msgid="5932337981182999919">"분홍색"</item>
+    <item msgid="5642914536624000094">"빨간색"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30일 이전"</item>
+    <item msgid="8699273238891265610">"60일 이전"</item>
+    <item msgid="8346279419423837266">"90일 이전"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"자동 감지"</item>
+    <item msgid="773943026484148895">"종량제 Wi-Fi로 취급"</item>
+    <item msgid="1008268820118852416">"무제한 Wi-Fi로 취급"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"임의의 MAC 사용(기본값)"</item>
+    <item msgid="214234417308375326">"기기 MAC 사용"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"아니요"</item>
+    <item msgid="1930581185557754880">"예"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"어둡게"</item>
+    <item msgid="5079453644557603349">"밝게"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"사용 안함"</item>
+    <item msgid="4072198137051566919">"디버그"</item>
+    <item msgid="2473005316958868509">"상세"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"집 전용"</item>
+    <item msgid="1161026694891024702">"자동"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA로 기본 설정"</item>
+    <item msgid="7581481130337402578">"GSM 전용"</item>
+    <item msgid="8579197487913425819">"WCDMA 전용"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA 자동"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo 자동"</item>
+    <item msgid="4219607161971472471">"CDMA(EvDo 없음)"</item>
+    <item msgid="7278975240951052041">"EvDo 전용"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA+LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"글로벌"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA 전용"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"글로벌"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ko/strings.xml b/tests/CarDeveloperOptions/res/values-ko/strings.xml
index a1b242e..370c2c1 100644
--- a/tests/CarDeveloperOptions/res/values-ko/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ko/strings.xml
@@ -1163,7 +1163,7 @@
     <string name="accessibility_personal_account_title" msgid="7251761883688839354">"개인 계정 - <xliff:g id="MANAGED_BY">%s</xliff:g>"</string>
     <string name="search_settings" msgid="5809250790214921377">"검색"</string>
     <string name="display_settings" msgid="1045535829232307190">"디스플레이"</string>
-    <string name="accelerometer_title" msgid="2427487734964971453">"자동 화면 회전"</string>
+    <string name="accelerometer_title" msgid="2427487734964971453">"화면 자동 회전"</string>
     <string name="color_mode_title" msgid="8164858320869449142">"색상"</string>
     <string name="color_mode_option_natural" msgid="1292837781836645320">"자연스럽게"</string>
     <string name="color_mode_option_boosted" msgid="453557938434778933">"생생하게"</string>
@@ -2233,7 +2233,7 @@
     <string name="background_activity_warning_dialog_title" msgid="2170790412855899678">"백그라운드 활동을 제한하시겠습니까?"</string>
     <string name="background_activity_warning_dialog_text" msgid="8242749826732375096">"앱의 백그라운드 활동을 제한하면 앱이 정상적으로 작동하지 않을 수도 있습니다."</string>
     <string name="background_activity_disabled_dialog_text" msgid="4234598000779459640">"배터리 최적화를 설정하지 않아 이 앱을 제한할 수 없습니다.\n\n앱을 제한하려면 먼저 배터리 최적화를 사용 설정하세요."</string>
-    <string name="device_screen_usage" msgid="4470485475363132750">"충전 완료 후 화면 사용"</string>
+    <string name="device_screen_usage" msgid="4470485475363132750">"충전 완료 후 화면 사용 시간"</string>
     <string name="power_usage_list_summary" msgid="4314438658308211057">"충전 완료 후 배터리 사용"</string>
     <string name="screen_usage_summary" msgid="263396144684078341">"충전 완료 후 화면이 켜진 시간"</string>
     <string name="device_usage_list_summary" msgid="8299017481332816368">"충전 완료 후 기기 사용"</string>
@@ -2420,7 +2420,7 @@
     <string name="battery_used_by" msgid="840331542883421888">"<xliff:g id="APP">%2$s</xliff:g>에서 <xliff:g id="PERCENT">%1$s</xliff:g> 사용"</string>
     <string name="battery_overall_usage" msgid="5874301442415987516">"전체 배터리 사용량의 <xliff:g id="PERCENT">%1$s</xliff:g>"</string>
     <string name="battery_detail_since_full_charge" msgid="3814176986148084378">"마지막 충전 완료 후 사용 내역 분석"</string>
-    <string name="battery_last_full_charge" msgid="5624033030647170717">"마지막 충전 완료"</string>
+    <string name="battery_last_full_charge" msgid="5624033030647170717">"충전 완료 시간"</string>
     <string name="battery_full_charge_last" msgid="4614554109170251301">"충전 완료 후 사용 가능 시간"</string>
     <string name="battery_footer_summary" msgid="4828444679643906943">"배터리 사용 데이터는 대략적인 수치이며, 사용량에 따라 변경될 수 있습니다."</string>
     <string name="battery_detail_foreground" msgid="6616408559186553085">"연속사용 중일 때"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ky-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ky-nokeys/strings.xml
new file mode 100644
index 0000000..8ac55e4
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ky-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Колдонмолорду башкаруу"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ky/arrays.xml b/tests/CarDeveloperOptions/res/values-ky/arrays.xml
new file mode 100644
index 0000000..954037e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ky/arrays.xml
@@ -0,0 +1,355 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америка"</item>
+    <item msgid="4791956477275129121">"Европа"</item>
+    <item msgid="3812126832016254559">"Африка"</item>
+    <item msgid="2765816300353408280">"Азия"</item>
+    <item msgid="6683489385344409742">"Австралия"</item>
+    <item msgid="5194868215515664953">"Тынч океан"</item>
+    <item msgid="7044520255415007865">"Бардыгы"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Туташты"</item>
+    <item msgid="983792611851499732">"Чакырылды"</item>
+    <item msgid="5438273405428201793">"Ийгиликсиз"</item>
+    <item msgid="4646663015449312554">"Жеткиликтүү"</item>
+    <item msgid="3230556734162006146">"Аракет чегинен тышкары"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Акыркы 30 күн"</item>
+    <item msgid="3211287705232736964">"Колдонуу мерчимин коюу…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Колдонулган убакыт"</item>
+    <item msgid="2784401352592276015">"Акыркы жолу колдонулган"</item>
+    <item msgid="249854287216326349">"Колдонмонун аты"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Эчтеке жок"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Эчтеке жок"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Эчтеке жок"</item>
+    <item msgid="1464741437353223198">"Нускама"</item>
+    <item msgid="5793600062487886090">"Прокси авто-конфигурац."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Эчтеке жок"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP же CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Ички түзмөк эстутуму"</item>
+    <item msgid="3186681694079967527">"Ташыма SD карта"</item>
+    <item msgid="6902033473986647035">"Тутум өзү тандасын"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Жайгашкан жер"</item>
+    <item msgid="6842381562497597649">"Жеке"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Медиа"</item>
+    <item msgid="5323851085993963783">"Түзмөк"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"болжолдуу жайгаштыруу"</item>
+    <item msgid="1830619568689922920">"так жайгаштыруу"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"дирилдөө"</item>
+    <item msgid="8632513128515114092">"байланыштарды окуу"</item>
+    <item msgid="3741042113569620272">"байланыштарды өзгөртүү"</item>
+    <item msgid="4204420969709009931">"чалуулар тизмесин окуу"</item>
+    <item msgid="2260380357119423209">"чалуулар тизмесин өзгөртүү"</item>
+    <item msgid="6550710385014530934">"күнбаракты окуу"</item>
+    <item msgid="3575906174264853951">"күнбаракты өзгөртүү"</item>
+    <item msgid="4319843242568057174">"wi-fi издөө"</item>
+    <item msgid="2981791890467303819">"эскертме"</item>
+    <item msgid="6617825156152476692">"түйүн издөө"</item>
+    <item msgid="8865260890611559753">"телефон чалуу"</item>
+    <item msgid="3254999273961542982">"SMS окуу"</item>
+    <item msgid="7711446453028825171">"SMS жазуу"</item>
+    <item msgid="6123238544099198034">"SMS алуу"</item>
+    <item msgid="838342167431596036">"шашылыш SMS алуу"</item>
+    <item msgid="8554432731560956686">"MMS алуу"</item>
+    <item msgid="7464863464299515059">"WAP push алуу"</item>
+    <item msgid="310463075729606765">"SMS жөнөтүү"</item>
+    <item msgid="7338021933527689514">"ICC SMS окуу"</item>
+    <item msgid="6130369335466613036">"ICC SMS жазуу"</item>
+    <item msgid="6536865581421670942">"тууралоолорду өзгөртүү"</item>
+    <item msgid="4547203129183558973">"үстүнө тартуу"</item>
+    <item msgid="9080347512916542840">"жетки эскертүүлөрү"</item>
+    <item msgid="5332718516635907742">"камера"</item>
+    <item msgid="6098422447246167852">"audio жаздыруу"</item>
+    <item msgid="9182794235292595296">"audio ойнотуу"</item>
+    <item msgid="8760743229597702019">"алмашуу буферин окуу"</item>
+    <item msgid="2266923698240538544">"алмашуу буферин өзгөртүү"</item>
+    <item msgid="1801619438618539275">"медиа баскычтар"</item>
+    <item msgid="31588119965784465">"audio фокус"</item>
+    <item msgid="7565226799008076833">"үн башкаргыч"</item>
+    <item msgid="5420704980305018295">"үн деңгээли"</item>
+    <item msgid="5797363115508970204">"шыңгырактын үнү"</item>
+    <item msgid="8233154098550715999">"мультимедианын үнү"</item>
+    <item msgid="5196715605078153950">"ойготкучтун үнү"</item>
+    <item msgid="394030698764284577">"эскерткичтин үнү"</item>
+    <item msgid="8952898972491680178">"bluetooth үнү"</item>
+    <item msgid="8506227454543690851">"ойго кармоо"</item>
+    <item msgid="1108160036049727420">"жайгашууну көзөмөлдөө"</item>
+    <item msgid="1496205959751719491">"жогору кубаттуу жайгашууну көзөмөлдөө"</item>
+    <item msgid="3776296279910987380">"колдонуу статистикасын алуу"</item>
+    <item msgid="8827100324471975602">"микрофондун үнүн басуу/чыгаруу"</item>
+    <item msgid="6880736730520126864">"эскертмени көрсөтүү"</item>
+    <item msgid="4933375960222609935">"долбоор медиясы"</item>
+    <item msgid="8357907018938895462">"VPN\'ди жандыруу"</item>
+    <item msgid="8143812849911310973">"тушкагаз жазуу"</item>
+    <item msgid="6266277260961066535">"көмөкчү түзүм"</item>
+    <item msgid="7715498149883482300">"көмөкчү скриншот"</item>
+    <item msgid="4046679376726313293">"телефон абалын окуу"</item>
+    <item msgid="6329507266039719587">"үн почтасын кошуу"</item>
+    <item msgid="7692440726415391408">"sip пайдалануу"</item>
+    <item msgid="8572453398128326267">"чыгуучу чалууну иштетүү"</item>
+    <item msgid="7775674394089376306">"манжа изи"</item>
+    <item msgid="3182815133441738779">"дене сенсорлору"</item>
+    <item msgid="2793100005496829513">"Калкка кабар берүү тутумунун билдирүүлөрүн окуу"</item>
+    <item msgid="2633626056029384366">"Жайгашкан жер дайындарын бурмалоо"</item>
+    <item msgid="8356842191824684631">"сактагычтагы дайындарды окуу"</item>
+    <item msgid="5671906070163291500">"сактагычка дайындарды жазуу"</item>
+    <item msgid="2791955098549340418">"экранды күйгүзүү"</item>
+    <item msgid="5599435119609178367">"каттоо эсептерин алуу"</item>
+    <item msgid="1165623660533024666">"фондо ойнотуу"</item>
+    <item msgid="6423861043647911030">"атайын мүмкүнчүлүктөрдүн үнүнүн катуулугу"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Кыска"</item>
+    <item msgid="4816511817309094890">"Орто"</item>
+    <item msgid="8305084671259331134">"Узун"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Демейки"</item>
+    <item msgid="4147246073737933622">"Санс-сериф"</item>
+    <item msgid="3117680749167407907">"коюлтулган Санс-сериф"</item>
+    <item msgid="6529379119163117545">"Sans-serif бир орундуу"</item>
+    <item msgid="1487203730637617924">"Сериф"</item>
+    <item msgid="4937790671987480464">"Serif бир орундуу"</item>
+    <item msgid="4448481989108928248">"Эркин"</item>
+    <item msgid="4627069151979553527">"Жантык"</item>
+    <item msgid="6896773537705206194">"Кичине баш тамгалар"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Демейки"</item>
+    <item msgid="6488643537808152001">"Эчтеке жок"</item>
+    <item msgid="552332815156010137">"Контур"</item>
+    <item msgid="7187891159463789272">"Көлөкөлөтүү"</item>
+    <item msgid="8019330250538856521">"Дөмпөйгөн"</item>
+    <item msgid="8987385315647049787">"Ныгырылган"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"Алдын ала бөлүшүлгөн ачкычтары бар L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"Тастыктамасы бар L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"Алдын ала бөлүшүлгөн ачкычтары бар жана аныктыгы Xauth менен текшерилүчүү IPSec VPN"</item>
+    <item msgid="3319427315593649917">"Тастыктамалары бар жана аныктыгы Xauth менен текшерилүчүү IPSec VPN"</item>
+    <item msgid="8258927774145391041">"Тастыктамалары бар жана аныктыгы аралаш ыкма менен текшерилүчүү IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Эч нерсе жок"</item>
+    <item msgid="1157046369795346308">"Нускама"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Суроо"</item>
+    <item msgid="7718817231348607934">"Эч качан уруксат жок"</item>
+    <item msgid="8184570120217958741">"Дайым уруксат"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Туруктуу"</item>
+    <item msgid="167418068739176448">"Көп аткарылган иш"</item>
+    <item msgid="4760813290195199773">"Маанилүү (алдыңкы көрүнүштө)"</item>
+    <item msgid="2328684826817647595">"Маанилүү (арткы көрүнүштө)"</item>
+    <item msgid="7746406490652867365">"Камдык көчүрмөнү сактоо"</item>
+    <item msgid="5597404364389196754">"Оор"</item>
+    <item msgid="1290888779300174556">"Кызмат (иштеп жатат)"</item>
+    <item msgid="7241098542073939046">"Кызмат (өчүрүлүп-күйгүзүлүүдө)"</item>
+    <item msgid="6610439017684111046">"Алуучу"</item>
+    <item msgid="7367606086319921117">"Үй"</item>
+    <item msgid="3344660712396741826">"Акыркы аткарылган иш"</item>
+    <item msgid="5006559348883303865">"Кештелген (иш)"</item>
+    <item msgid="8633480732468137525">"Кештелген (иш-аракет кардары)"</item>
+    <item msgid="6248998242443333892">"Кештелген (бош)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Жашыл көгүш"</item>
+    <item msgid="3228505970082457852">"Көк"</item>
+    <item msgid="6590260735734795647">"Индиго"</item>
+    <item msgid="3521763377357218577">"Кызгылт көгүш"</item>
+    <item msgid="5932337981182999919">"Кызгылтым"</item>
+    <item msgid="5642914536624000094">"Кызыл"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 күндөн мурунку"</item>
+    <item msgid="8699273238891265610">"60 күндөн мурунку"</item>
+    <item msgid="8346279419423837266">"90 күндөн мурунку"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Автоматтык түрдө аныкталат"</item>
+    <item msgid="773943026484148895">"Ченелет"</item>
+    <item msgid="1008268820118852416">"Ченелбейт"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Демейки (туш келди MAC дарегин колдонуу)"</item>
+    <item msgid="214234417308375326">"MAC түзмөгүн колдонуу"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Жок"</item>
+    <item msgid="1930581185557754880">"Ооба"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Караңгы"</item>
+    <item msgid="5079453644557603349">"Жарык"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Өчүк"</item>
+    <item msgid="4072198137051566919">"Мүчүлүштүктөрдү оңдоо"</item>
+    <item msgid="2473005316958868509">"Оозеки кирүү"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Башкы бет гана"</item>
+    <item msgid="1161026694891024702">"Автоматтык"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA артыкчылыктуу"</item>
+    <item msgid="7581481130337402578">"GSM гана"</item>
+    <item msgid="8579197487913425819">"WCDMA гана"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA авто"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo авто"</item>
+    <item msgid="4219607161971472471">"CDMA EvDo\'суз"</item>
+    <item msgid="7278975240951052041">"EvDo гана"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Жалпы"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA гана"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Жалпы"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ky/strings.xml b/tests/CarDeveloperOptions/res/values-ky/strings.xml
index 842eeae..556af73 100644
--- a/tests/CarDeveloperOptions/res/values-ky/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ky/strings.xml
@@ -383,7 +383,7 @@
     <string name="encryption_and_credential_settings_summary" product="tablet" msgid="8170667308598998791">"Түзмөк шифрленген"</string>
     <string name="decryption_settings_summary" product="tablet" msgid="7524119945312453569">"Түзмөк шифрленген эмес"</string>
     <string name="lockscreen_settings_title" msgid="1221505938891948413">"Кулпуланган экран"</string>
-    <string name="lockscreen_settings_what_to_show_category" msgid="3133378945821488654">"Эмнелер көрсөтүлөт"</string>
+    <string name="lockscreen_settings_what_to_show_category" msgid="3133378945821488654">"Эмнелер көрүнөт"</string>
     <string name="security_settings_summary" msgid="5210109100643223686">"Жайгашкан жеримди, экрандын кулпусун ачуу ыкмасын, SIM карта кулпусун, аныктоо эстутумунун кулпусун коюу"</string>
     <string name="cdma_security_settings_summary" msgid="1783066617800041869">"Жайгашкан жеримди, экран кулпусун ачууну, аныктоо эстутумунун кулпусун коюу"</string>
     <string name="security_passwords_title" msgid="6853942836045862315">"Купуялык"</string>
@@ -426,7 +426,7 @@
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"Жүздү өчүрүү"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"Түзмөгүңүздүн кулпусун жүзүңүздү көрсөтүп ачып, колдонмолорго киресиз. "<annotation id="url">"Кеңири маалымат"</annotation></string>
     <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"Жүзүңүздү таануу дайындарын өчүрөсүзбү?"</string>
-    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"Жүзүнөн таануу функциясы аркылуу жаздырылган дайындар биротоло жана коопсуз өчүрүлөт. Өчүрүлгөндөн кийин, телефонуңуздун кулпусун ачып, колдонмолорго кирип жана төлөмдөрдү ырастоо үчүн, PIN кодуңуз, графикалык ачкычыңыз же сырсөзүңүз керек болот."</string>
+    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"Жүзүнөн таануу функциясын колдонууда топтолгон дайын-даректер биротоло өчүрүлөт. Өчүрүлгөндөн кийин, телефонуңуздун кулпусун ачып, колдонмолорго кирип жана төлөмдөрдү ырастоо үчүн, PIN кодуңуз, графикалык ачкычыңыз же сырсөзүңүз суралат."</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"Манжа изи"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"Манжа издерин башкаруу"</string>
     <string name="fingerprint_usage_category_title" msgid="7298369141954599706">"Манжа издерин колдонуу"</string>
@@ -1200,7 +1200,7 @@
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Screen aware"</string>
     <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Күйүк / Экранды карап турганда, ал өчүп калбайт"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Өчүк"</string>
-    <string name="adaptive_sleep_description" msgid="812673735459170009">"Экранды карап турганыңызда, анын өчүп калуусунун алдын алат."</string>
+    <string name="adaptive_sleep_description" msgid="812673735459170009">"Экранды карап турганда, ал өчүп калбайт."</string>
     <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Screen aware экранды кимдир-бирөө карап жатканын текшерүү үчүн маңдайкы камераны колдонот. Ал түзмөктө иштеп, сүрөттөрдү эч качан сактап калбайт жана Google\'га жөнөтпөйт."</string>
     <string name="night_display_title" msgid="1305002424893349814">"Түнкү режим"</string>
     <string name="night_display_text" msgid="5330502493684652527">"Түнкү режимде экран сары түскө боёлот. Ушуну менен күңүрт жерде көзүңүзгө күч келбей, тезирээк уктап каласыз."</string>
@@ -2260,7 +2260,7 @@
     <string name="controls_subtitle" msgid="6920199888882834620">"Кубат сарпталышын тууралоо"</string>
     <string name="packages_subtitle" msgid="6506269487892204413">"Камтылган топтомдор"</string>
     <string name="battery_tip_summary_title" msgid="2750922152518825526">"Колдонмолор туура иштеп жатат"</string>
-    <string name="battery_tip_summary_summary" product="default" msgid="6294900413896440006">"Телефон фондо батареяны адаттагыдай колдонууда"</string>
+    <string name="battery_tip_summary_summary" product="default" msgid="6294900413896440006">"Телефон батареяны адаттагыдай керектөөдө"</string>
     <string name="battery_tip_summary_summary" product="tablet" msgid="5280099016800644130">"Планшет фондо батареяны адаттагыдай колдонууда"</string>
     <string name="battery_tip_summary_summary" product="device" msgid="4459840492610842705">"Түзмөк фондо батареяны адаттагыдай колдонууда"</string>
     <string name="battery_tip_low_battery_title" msgid="6784043681672161175">"Батарея азыр отуруп калат"</string>
@@ -2272,7 +2272,7 @@
     <string name="battery_tip_early_heads_up_title" msgid="707163785378746813">"Батареяны үнөмдөгүч режимин күйгүзүү"</string>
     <string name="battery_tip_early_heads_up_summary" msgid="4231489566422395156">"Батарея адаттагыдан эртерээк отуруп калышы мүмкүн"</string>
     <string name="battery_tip_early_heads_up_done_title" msgid="112550885882648429">"Батареяны үнөмдөгүч режими күйүк"</string>
-    <string name="battery_tip_early_heads_up_done_summary" msgid="8692257022962771181">"Айрым функциялар чектелген болушу мүмкүн"</string>
+    <string name="battery_tip_early_heads_up_done_summary" msgid="8692257022962771181">"Айрым кызматтардын функциялары чектелиши мүмкүн"</string>
     <string name="battery_tip_high_usage_title" product="default" msgid="4103005178310487352">"Телефон адаттагыдан көбүрөөк колдонулду"</string>
     <string name="battery_tip_high_usage_title" product="tablet" msgid="1019583260005768965">"Планшет адаттагыдан көбүрөөк колдонулду"</string>
     <string name="battery_tip_high_usage_title" product="device" msgid="8304138287288309490">"Түзмөк адаттагыдан көбүрөөк колдонулду"</string>
@@ -4123,9 +4123,9 @@
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Убакытты, билдирмелерди жана башка маалыматты көрүү үчүн телефонуңузду колуңузга алыңыз."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Убакытты, билдирмелерди жана башка маалыматты көрүү үчүн планшетиңизди колуңузга алыңыз."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Убакытты, билдирмелерди жана башка маалыматты көрүү үчүн түзмөгүңүздү колуңузга алыңыз."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Телефонду текшерүү үчүн таптап коюңуз"</string>
-    <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Планшетти текшерүү үчүн таптап коюңуз"</string>
-    <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Түзмөктү текшерүү үчүн таптап коюңуз"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Телефонду текшерүү үчүн басып коюу"</string>
+    <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Планшетти текшерүү үчүн басып коюу"</string>
+    <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Түзмөктү текшерүү үчүн басып коюу"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Убакытты, билдирмелерди жана башка маалыматты көрүү үчүн экранды таптап коюңуз."</string>
     <string name="fingerprint_swipe_for_notifications_title" msgid="3676002930672489760">"Билдирмелерди манжа изинин сенсору менен көрүү"</string>
     <string name="fingerprint_gesture_screen_title" msgid="8638932855807473479">"Манжа изинин сканери"</string>
diff --git a/tests/CarDeveloperOptions/res/values-lo-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-lo-nokeys/strings.xml
new file mode 100644
index 0000000..76da305
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-lo-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ຈັດການແອັບພລິເຄຊັນ"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-lo/arrays.xml b/tests/CarDeveloperOptions/res/values-lo/arrays.xml
new file mode 100644
index 0000000..e2cab65
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-lo/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"ອາ​ເມລິ​ກາ"</item>
+    <item msgid="4791956477275129121">"ຢູໂຣບ"</item>
+    <item msgid="3812126832016254559">"ອາ​ຟຣິກ​ກາ"</item>
+    <item msgid="2765816300353408280">"ເອເຊຍ"</item>
+    <item msgid="6683489385344409742">"ອອສເຕຣເລຍ"</item>
+    <item msgid="5194868215515664953">"ແປຊິຟິກ"</item>
+    <item msgid="7044520255415007865">"ທັງໝົດ"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 ວິນາທີ"</item>
+    <item msgid="772029947136115322">"30 ວິນາທີ"</item>
+    <item msgid="8743663928349474087">"1 ນາທີ"</item>
+    <item msgid="1506508631223164814">"2 ນາທີ"</item>
+    <item msgid="8664703938127907662">"5 ນາ​ທີ"</item>
+    <item msgid="5827960506924849753">"10 ນາ​ທີ"</item>
+    <item msgid="6677424950124253938">"30 ນາ​ທີ"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"ຂະໜາດນ້ອຍ"</item>
+    <item msgid="591935967183159581">"ຄ່າເລີ່ມຕົ້ນ"</item>
+    <item msgid="1714184661981538355">"ຂະໜາດໃຫຍ່"</item>
+    <item msgid="6195563047686707484">"ໃຫຍ່ທີ່ສຸດ"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"ກຳລັງສະແກນ..."</item>
+    <item msgid="8058143476674427024">"ກຳລັງເຊື່ອມຕໍ່ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"ກຳລັງກວດສອບສິດທິກັບ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"ກຳລັງຂໍທີ່ຢູ່ IP ຈາກ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"ເຊື່ອມ​ຕໍ່​ກັບ <xliff:g id="NETWORK_NAME">%1$s</xliff:g> ແລ້ວ"</item>
+    <item msgid="6600156231416890902">"ຖືກລະງັບແລ້ວ"</item>
+    <item msgid="4133290864821295785">"ກຳລັງຕັດການເຊື່ອມຕໍ່ຈາກ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"ປິດການເຊື່ອມຕໍ່ແລ້ວ"</item>
+    <item msgid="2847316776634969068">"ບໍ່ສຳເລັດ"</item>
+    <item msgid="4390990424746035383">"ບລັອກ​ແລ້ວ"</item>
+    <item msgid="3618248791367063949">"ຫຼີກເວັ້ນການເຊື່ອມຕໍ່ເຄືອຂ່າຍສັນຍານອ່ອນຊົ່ວຄາວ"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"ປຸ່ມກົດ"</item>
+    <item msgid="7401896200768713930">"PIN ຈາກອຸປະກອນທີ່ເຊື່ອມຕໍ່ກັນ"</item>
+    <item msgid="4526848028011846710">"PIN ຈາກ​ອຸ​ປະ​ກອນ​ນີ້"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"ເຊື່ອມຕໍ່ແລ້ວ"</item>
+    <item msgid="983792611851499732">"ເຊີນແລ້ວ"</item>
+    <item msgid="5438273405428201793">"ບໍ່ສຳເລັດ"</item>
+    <item msgid="4646663015449312554">"ສາມາດໃຊ້ໄດ້"</item>
+    <item msgid="3230556734162006146">"ຢູ່ນອກໄລຍະສັນຍານ"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 ນາທີ"</item>
+    <item msgid="2759776603549270587">"5 ນາທີ"</item>
+    <item msgid="167772676068860015">"1 ຊົ່ວໂມງ"</item>
+    <item msgid="5985477119043628504">"ບໍ່ມີໝົດເວລາ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 ມື້ທີ່ຜ່ານມາ"</item>
+    <item msgid="3211287705232736964">"ຕັ້ງ​ຮອບ​ການ​ນຳ​ໃຊ້..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ເວລາການນຳໃຊ້"</item>
+    <item msgid="2784401352592276015">"ໃຊ້​ເທື່ອ​ສຸດ​ທ້າຍ"</item>
+    <item msgid="249854287216326349">"ຊື່ແອັບຯ"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ບໍ່ມີ"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ບໍ່ມີ"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"ຄົງທີ່"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ບໍ່ມີ"</item>
+    <item msgid="1464741437353223198">"ຄູ່​ມື"</item>
+    <item msgid="5793600062487886090">"ຕັ້ງຄ່າ​ພຣັອກ​ຊີ​ອັດຕະໂນມັດ"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ບໍ່ມີ"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ຫຼື CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ພື້ນທີ່ຈັດເກັບຂໍ້ມູນພາຍໃນອຸປະກອນ"</item>
+    <item msgid="3186681694079967527">"SD card ທີ່ສາມາດຖອດໄດ້"</item>
+    <item msgid="6902033473986647035">"ໃຫ້ລະບົບຕັດສິນໃຈ"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ສະຖານທີ່"</item>
+    <item msgid="6842381562497597649">"​ສ່ວນ​ໂຕ"</item>
+    <item msgid="3966700236695683444">"ຂໍ້ຄວາມ"</item>
+    <item msgid="8563996233342430477">"ສື່"</item>
+    <item msgid="5323851085993963783">"ອຸປະກອນ"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ຕຳແໜ່ງໂດຍປະມານ"</item>
+    <item msgid="1830619568689922920">"fine location"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ສັ່ນເຕືອນ"</item>
+    <item msgid="8632513128515114092">"ອ່ານລາຍຊື່ຜູ່ຕິດຕໍ່"</item>
+    <item msgid="3741042113569620272">"ແກ້ໄຂລາຍຊື່ຜູ່ຕິດຕໍ່"</item>
+    <item msgid="4204420969709009931">"ອ່ານບັນທຶກການໂທ"</item>
+    <item msgid="2260380357119423209">"ແກ້ໄຂບັນທຶກການໂທ"</item>
+    <item msgid="6550710385014530934">"ອ່ານ​ປະ​ຕິ​ທິນ"</item>
+    <item msgid="3575906174264853951">"ແກ້ໄຂປະຕິທິນ"</item>
+    <item msgid="4319843242568057174">"ສະແກນ Wi​-Fi"</item>
+    <item msgid="2981791890467303819">"ການແຈ້ງເຕືອນ"</item>
+    <item msgid="6617825156152476692">"ສະແກນສະຖານີມືຖື"</item>
+    <item msgid="8865260890611559753">"ໂທລະສັບ"</item>
+    <item msgid="3254999273961542982">"ອ່ານ SMS"</item>
+    <item msgid="7711446453028825171">"ຂຽນ SMS"</item>
+    <item msgid="6123238544099198034">"ຮັບ SMS"</item>
+    <item msgid="838342167431596036">"ຮັບ SMS ສຸກເສີນ"</item>
+    <item msgid="8554432731560956686">"ຮັບ SMS"</item>
+    <item msgid="7464863464299515059">"ຮັບ WAP push"</item>
+    <item msgid="310463075729606765">"ສົ່ງ​ SMS"</item>
+    <item msgid="7338021933527689514">"ອ່ານ ICC SMS"</item>
+    <item msgid="6130369335466613036">"ຂຽນ​ ICC SMS"</item>
+    <item msgid="6536865581421670942">"ແກ້ໄຂການຕັ້ງຄ່າ"</item>
+    <item msgid="4547203129183558973">"ແຕ້ມໃສ່ເທິງສຸດ"</item>
+    <item msgid="9080347512916542840">"ເຂົ້າເຖິງການແຈ້ງເຕືອນ"</item>
+    <item msgid="5332718516635907742">"ກ້ອງຖ່າຍຮູບ"</item>
+    <item msgid="6098422447246167852">"ບັນທຶກສຽງ"</item>
+    <item msgid="9182794235292595296">"ຫຼິ້ນສຽງ"</item>
+    <item msgid="8760743229597702019">"ອ່ານຄລິບບອດ"</item>
+    <item msgid="2266923698240538544">"ແກ້ໄຂຄລິບບອດ"</item>
+    <item msgid="1801619438618539275">"ປຸ່ມ​ມີເດຍ"</item>
+    <item msgid="31588119965784465">"audio focus"</item>
+    <item msgid="7565226799008076833">"ລະດັບສຽງຫຼັກ"</item>
+    <item msgid="5420704980305018295">"ລະດັບສຽງເວົ້າ"</item>
+    <item msgid="5797363115508970204">"ລະດັບສຽງເຕືອນ"</item>
+    <item msgid="8233154098550715999">"ລະດັບສຽງມີເດຍ"</item>
+    <item msgid="5196715605078153950">"ລະດັບສຽງໂມງປຸກ"</item>
+    <item msgid="394030698764284577">"ລະດັບສຽງແຈ້ງເຕືອນ"</item>
+    <item msgid="8952898972491680178">"ລະດັບສຽງ Bluetooth"</item>
+    <item msgid="8506227454543690851">"ເຮັດວຽກຕະຫຼອດເວລາ"</item>
+    <item msgid="1108160036049727420">"ຕຳແໜ່ງ​ຕິດ​ຕາມ"</item>
+    <item msgid="1496205959751719491">"ຕິດຕາມສະຖານທີ່ທີ່ມີພະລັງງານສູງ"</item>
+    <item msgid="3776296279910987380">"ໂຫຼດ​ສະ​ຖິ​ຕິ​ການ​ນຳ​ໃຊ້"</item>
+    <item msgid="8827100324471975602">"ປິດ/ເປີດ ​ໄມ​ໂຄຣ​ໂຟນ"</item>
+    <item msgid="6880736730520126864">"ສະແດງຂໍ້ຄວາມປາກົດຂຶ້ນຊົ່ວຄາວ"</item>
+    <item msgid="4933375960222609935">"​ໂປ​ຣ​ເຈັກ​ມີ​ເດຍ"</item>
+    <item msgid="8357907018938895462">"ເປີດນຳໃຊ້ VPN"</item>
+    <item msgid="8143812849911310973">"ຂຽນຮູບພື້ນຫຼັງ"</item>
+    <item msgid="6266277260961066535">"ໂຄງຮ່າງຊ່ວຍ"</item>
+    <item msgid="7715498149883482300">"ຮູບຖ່າຍໜ້າຈໍຊ່ວຍ"</item>
+    <item msgid="4046679376726313293">"ອ່ານສະຖານະໂທລະສັບ"</item>
+    <item msgid="6329507266039719587">"ເພີ່ມຂໍ້ຄວາມສຽງ"</item>
+    <item msgid="7692440726415391408">"ໃຊ້ sip"</item>
+    <item msgid="8572453398128326267">"ດຳເນີນການໂທອອກ"</item>
+    <item msgid="7775674394089376306">"ລາຍນີ້ວມື"</item>
+    <item msgid="3182815133441738779">"ເຊັນເຊີຮ່າງກາຍ"</item>
+    <item msgid="2793100005496829513">"ອ່ານປະກາດຜ່ານເຄືອຂ່າຍ"</item>
+    <item msgid="2633626056029384366">"ສະຖານທີ່ຈຳລອງ"</item>
+    <item msgid="8356842191824684631">"ອ່ານພື້ນທີ່ຈັດເກັບ"</item>
+    <item msgid="5671906070163291500">"ຂຽນພື້ນທີ່ຈັດເກັບ"</item>
+    <item msgid="2791955098549340418">"ເປີດໜ້າຈໍ"</item>
+    <item msgid="5599435119609178367">"ຮັບບັນຊີ"</item>
+    <item msgid="1165623660533024666">"ນຳໃຊ້ໃນພື້ນຫຼັງ"</item>
+    <item msgid="6423861043647911030">"accessibility volume"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"ສັ້ນ"</item>
+    <item msgid="4816511817309094890">"ປານກາງ"</item>
+    <item msgid="8305084671259331134">"ຍາວ"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ຄ່າເລີ່ມຕົ້ນ"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"ສະ​ບາຍໆ"</item>
+    <item msgid="4627069151979553527">"ຂຽນເຄືອ"</item>
+    <item msgid="6896773537705206194">"ໂຕພິມນ້ອຍ"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ຄ່າເລີ່ມຕົ້ນ"</item>
+    <item msgid="6488643537808152001">"ບໍ່ມີ"</item>
+    <item msgid="552332815156010137">"ເສັ້ນຂອບ"</item>
+    <item msgid="7187891159463789272">"ເງົາ"</item>
+    <item msgid="8019330250538856521">"Raised"</item>
+    <item msgid="8987385315647049787">"Depressed"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25​%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75​%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"ໃຊ້​ຄ່າ​ເລີ່ມ​ຕົ້ນ​ຂອງ​ແອັບ"</item>
+    <item msgid="8611890312638868524">"ສີຂາວພື້ນດຳ"</item>
+    <item msgid="5891360837786277638">"ສີດຳພື້ນຂາວ"</item>
+    <item msgid="2798457065945456853">"ສີເຫຼືອງພື້ນດຳ"</item>
+    <item msgid="5799049811524553967">"ສີເຫຼືອງພື້ນຟ້າ"</item>
+    <item msgid="3673930830658169860">"ກຳນົດເອງ"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN ທີ່ມີກະແຈທີ່ແບ່ງປັນລ່ວງໜ້າ"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN ພ້ອມໃບຮັບຮອງ"</item>
+    <item msgid="312397853907741968">"IPSec VPN ທີ່ມີກະແຈທີ່ແບ່ງປັນລ່ວງໜ້າ ແລະການພິສູດຢືນຢັນແບບ Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN ພ້ອມໃບຮັບຮອງ ແລະການກວດສອບສິດ Xauth"</item>
+    <item msgid="8258927774145391041">"L2TP/IPSec VPN ພ້ອມໃບຮັບຮອງ ແລະການພິສູດຢືນຢັນແບບປະສົມ"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ບໍ່ມີ"</item>
+    <item msgid="1157046369795346308">"ຄູ່​ມື"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"ປິດການເຊື່ອມຕໍ່ແລ້ວ"</item>
+    <item msgid="8754480102834556765">"ກຳລັງເລີ່ມຕົ້ນ…"</item>
+    <item msgid="3351334355574270250">"ກຳລັງເຊື່ອມຕໍ່..."</item>
+    <item msgid="8303882153995748352">"ເຊື່ອມຕໍ່ແລ້ວ"</item>
+    <item msgid="9135049670787351881">"ໄລຍະໝົດເວລາ"</item>
+    <item msgid="2124868417182583926">"ບໍ່ສຳເລັດ"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ຖາມ"</item>
+    <item msgid="7718817231348607934">"ບໍ່ອະນຸຍາດ"</item>
+    <item msgid="8184570120217958741">"ອະນຸຍາດສະເໝີ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ໜຽວແໜ້ນ"</item>
+    <item msgid="167418068739176448">"​ການເຄື່ອນ​ໄຫວ​ສູງ​ສຸດ"</item>
+    <item msgid="4760813290195199773">"​ສຳ​ຄັນ (​ເບື້ອງ​ໜ້າ)"</item>
+    <item msgid="2328684826817647595">"​ສຳ​ຄັນ (​ເບື້ອງຫຼັງ)"</item>
+    <item msgid="7746406490652867365">"ສຳຮອງຂໍ້ມູນ"</item>
+    <item msgid="5597404364389196754">"​ນ້ຳ​ໜັກ​ສູງ"</item>
+    <item msgid="1290888779300174556">"​​ການບໍ​ລິ​ການ (​ກຳ​ລັງ​ເຮັດ​ວຽກ)"</item>
+    <item msgid="7241098542073939046">"​​ການບໍ​ລິ​ການ (​ກຳ​ລັງ​ເລີ່ມ​ຕົ້ນ​ໃໝ່)"</item>
+    <item msgid="6610439017684111046">"​ຕົວ​ຮັບ​ຂໍ້​ມູນ"</item>
+    <item msgid="7367606086319921117">"ໜ້າຫຼັກ"</item>
+    <item msgid="3344660712396741826">"​ການ​ເຄື່ອນ​ໄຫວຫຼ້າ​ສຸດ"</item>
+    <item msgid="5006559348883303865">"Cached (​ການ​ເຄື່ອນ​ໄຫວ)"</item>
+    <item msgid="8633480732468137525">"Cached (​ການ​ເຄື່ອນ​ໄຫວ​ລູກ​ຂ່າຍ)"</item>
+    <item msgid="6248998242443333892">"Cached (​ຫວ່າງ​ເປົ່າ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ສີຂຽວອົມຟ້າ"</item>
+    <item msgid="3228505970082457852">"ຟ້າ"</item>
+    <item msgid="6590260735734795647">"​ສີມ່ວງ​ເຂັ້ມ"</item>
+    <item msgid="3521763377357218577">"ສີມ່ວງ"</item>
+    <item msgid="5932337981182999919">"ບົວ"</item>
+    <item msgid="5642914536624000094">"ແດງ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"ເກີນ 30 ມື້ແລ້ວ"</item>
+    <item msgid="8699273238891265610">"ເກີນ 60 ມື້ແລ້ວ"</item>
+    <item msgid="8346279419423837266">"ເກີນ 90 ມື້ແລ້ວ"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ກວດສອບອັດຕະໂນມັດ"</item>
+    <item msgid="773943026484148895">"ໃຊ້ແບບວັດແທກປະລິມານ"</item>
+    <item msgid="1008268820118852416">"ໃຊ້ແບບບໍ່ວັດແທກປະລິມານ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ໃຊ້ MAC ແບບສຸ່ມ (ຄ່າເລີ່ມຕົ້ນ)"</item>
+    <item msgid="214234417308375326">"ໃຊ້ MAC ອຸປະກອນ"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ບໍ່"</item>
+    <item msgid="1930581185557754880">"ແມ່ນແລ້ວ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ມືດ"</item>
+    <item msgid="5079453644557603349">"ແຈ້ງ"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ປິດ"</item>
+    <item msgid="4072198137051566919">"ດີບັກ"</item>
+    <item msgid="2473005316958868509">"ບັນທຶກລະອຽດ"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ເຄືອຂ່າຍພາຍໃນເທົ່ານັ້ນ"</item>
+    <item msgid="1161026694891024702">"ອັດຕະໂນມັດ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"ຕ້ອງການ GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"GSM ເທົ່ານັ້ນ"</item>
+    <item msgid="8579197487913425819">"WCDMA ເທົ່ານັ້ນ"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ອັດຕະໂນມັດ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ອັດຕະໂນມັດ"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"CDMA ເທົ່ານັ້ນ"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ທົ່ວໂລກ"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA ເທົ່ານັ້ນ"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ທົ່ວໂລກ"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-lt-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-lt-nokeys/strings.xml
new file mode 100644
index 0000000..00f2876
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-lt-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Valdyti programas"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-lt/arrays.xml b/tests/CarDeveloperOptions/res/values-lt/arrays.xml
new file mode 100644
index 0000000..86c6741
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-lt/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Azija"</item>
+    <item msgid="6683489385344409742">"Australija"</item>
+    <item msgid="5194868215515664953">"Ramiojo vandenyno"</item>
+    <item msgid="7044520255415007865">"Viskas"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sek."</item>
+    <item msgid="772029947136115322">"30 sek."</item>
+    <item msgid="8743663928349474087">"1 min."</item>
+    <item msgid="1506508631223164814">"2 min."</item>
+    <item msgid="8664703938127907662">"5 min."</item>
+    <item msgid="5827960506924849753">"10 min."</item>
+    <item msgid="6677424950124253938">"30 min."</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Mažas"</item>
+    <item msgid="591935967183159581">"Numatytasis"</item>
+    <item msgid="1714184661981538355">"Didelis"</item>
+    <item msgid="6195563047686707484">"Didžiausias"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Nuskaitoma..."</item>
+    <item msgid="8058143476674427024">"Prijungiama prie <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Autentifikuojama <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Gaunamas IP adresas iš <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Prijungta prie <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Pristabdyta"</item>
+    <item msgid="4133290864821295785">"Atjungiama nuo <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Atsijungęs (-usi)"</item>
+    <item msgid="2847316776634969068">"Nesėkminga"</item>
+    <item msgid="4390990424746035383">"Užblokuotas"</item>
+    <item msgid="3618248791367063949">"Laikinai vengiama prasto ryšio"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Mygtuko paspaudimas"</item>
+    <item msgid="7401896200768713930">"PIN kodas iš susieto įrenginio"</item>
+    <item msgid="4526848028011846710">"Šio įreng. PIN kodas"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Prisijungta"</item>
+    <item msgid="983792611851499732">"Pakviestas"</item>
+    <item msgid="5438273405428201793">"Nesėkminga"</item>
+    <item msgid="4646663015449312554">"Pasiekiama"</item>
+    <item msgid="3230556734162006146">"Nepasiekiama"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 min."</item>
+    <item msgid="2759776603549270587">"5 min."</item>
+    <item msgid="167772676068860015">"1 val."</item>
+    <item msgid="5985477119043628504">"Nėra skirtojo laiko pabaigos"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Pastarosios 30 dienų"</item>
+    <item msgid="3211287705232736964">"Nustatyti naudojimo ciklą..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Naudojimo laikas"</item>
+    <item msgid="2784401352592276015">"Paskutinį kartą naudota"</item>
+    <item msgid="249854287216326349">"Programos pavadinimas"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Nėra"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Nėra"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statinis"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Nėra"</item>
+    <item msgid="1464741437353223198">"Neautomatiškai"</item>
+    <item msgid="5793600062487886090">"Aut. tarp. serv. konfig."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Nėra"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP arba CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4 / IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Vidinė įrenginio saugykla"</item>
+    <item msgid="3186681694079967527">"Keičiama SD kortelė"</item>
+    <item msgid="6902033473986647035">"Leisti nuspręsti sistemai"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Vietovė"</item>
+    <item msgid="6842381562497597649">"Asmeninės parinktys"</item>
+    <item msgid="3966700236695683444">"Susirašinėjimas"</item>
+    <item msgid="8563996233342430477">"Medija"</item>
+    <item msgid="5323851085993963783">"Įrenginys"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"apytikslė vietovė"</item>
+    <item msgid="1830619568689922920">"tiksli vietovė"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibruoti"</item>
+    <item msgid="8632513128515114092">"skaityti kontaktus"</item>
+    <item msgid="3741042113569620272">"keisti kontaktus"</item>
+    <item msgid="4204420969709009931">"skaityti skambučių žurnalą"</item>
+    <item msgid="2260380357119423209">"keisti skambučių žurnalą"</item>
+    <item msgid="6550710385014530934">"skaityti kalendorių"</item>
+    <item msgid="3575906174264853951">"keisti kalendorių"</item>
+    <item msgid="4319843242568057174">"„Wi-Fi“ žvalgymas"</item>
+    <item msgid="2981791890467303819">"pranešimas"</item>
+    <item msgid="6617825156152476692">"mobiliųjų telefonų žvalgymas"</item>
+    <item msgid="8865260890611559753">"skambinti į telefoną"</item>
+    <item msgid="3254999273961542982">"skaityti SMS"</item>
+    <item msgid="7711446453028825171">"rašyti SMS"</item>
+    <item msgid="6123238544099198034">"gauti SMS"</item>
+    <item msgid="838342167431596036">"gauti nepaprastosios padėties SMS"</item>
+    <item msgid="8554432731560956686">"gauti MMS"</item>
+    <item msgid="7464863464299515059">"gauti „WAP Push“ pranešimus"</item>
+    <item msgid="310463075729606765">"siųsti SMS"</item>
+    <item msgid="7338021933527689514">"skaityti ICC SMS"</item>
+    <item msgid="6130369335466613036">"rašyti ICC SMS"</item>
+    <item msgid="6536865581421670942">"keisti nustatymus"</item>
+    <item msgid="4547203129183558973">"piešti viršuje"</item>
+    <item msgid="9080347512916542840">"pasiekti pranešimus"</item>
+    <item msgid="5332718516635907742">"fotoaparatas"</item>
+    <item msgid="6098422447246167852">"įrašyti garso įrašą"</item>
+    <item msgid="9182794235292595296">"leisti garso įrašą"</item>
+    <item msgid="8760743229597702019">"skaityti iškarpinę"</item>
+    <item msgid="2266923698240538544">"keisti iškarpinę"</item>
+    <item msgid="1801619438618539275">"medijos mygtukai"</item>
+    <item msgid="31588119965784465">"garso sutelktis"</item>
+    <item msgid="7565226799008076833">"pagrindinis garsumas"</item>
+    <item msgid="5420704980305018295">"balso garsumas"</item>
+    <item msgid="5797363115508970204">"skambučio garsumas"</item>
+    <item msgid="8233154098550715999">"medijos garsumas"</item>
+    <item msgid="5196715605078153950">"signalo garsumas"</item>
+    <item msgid="394030698764284577">"pranešimų garsumas"</item>
+    <item msgid="8952898972491680178">"„Bluetooth“ garsumas"</item>
+    <item msgid="8506227454543690851">"neužmigdyti"</item>
+    <item msgid="1108160036049727420">"stebėti vietovę"</item>
+    <item msgid="1496205959751719491">"stebėti didelė galia vietovė"</item>
+    <item msgid="3776296279910987380">"gauti naudojimo statistiką"</item>
+    <item msgid="8827100324471975602">"nutildyti / įjungti mikrofono garsą"</item>
+    <item msgid="6880736730520126864">"rodyti pranešimą"</item>
+    <item msgid="4933375960222609935">"projektuoti mediją"</item>
+    <item msgid="8357907018938895462">"suaktyvinti VPN"</item>
+    <item msgid="8143812849911310973">"rašyti ekrano foną"</item>
+    <item msgid="6266277260961066535">"pagalbinė struktūra"</item>
+    <item msgid="7715498149883482300">"pagalbinė ekrano kopija"</item>
+    <item msgid="4046679376726313293">"skaityti telefono būseną"</item>
+    <item msgid="6329507266039719587">"pridėti balso pašto pranešimą"</item>
+    <item msgid="7692440726415391408">"naudoti SIP"</item>
+    <item msgid="8572453398128326267">"apdoroti siunčiamąjį skambutį"</item>
+    <item msgid="7775674394089376306">"piršto antspaudas"</item>
+    <item msgid="3182815133441738779">"kūno jutikliai"</item>
+    <item msgid="2793100005496829513">"skaityti transliacijas mobiliuoju"</item>
+    <item msgid="2633626056029384366">"imituoti vietovę"</item>
+    <item msgid="8356842191824684631">"skaityti saugyklą"</item>
+    <item msgid="5671906070163291500">"rašyti į saugyklą"</item>
+    <item msgid="2791955098549340418">"įjungti ekraną"</item>
+    <item msgid="5599435119609178367">"gauti paskyras"</item>
+    <item msgid="1165623660533024666">"vykdyti fone"</item>
+    <item msgid="6423861043647911030">"pritaikymo neįgaliesiems garsas"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Trumpa"</item>
+    <item msgid="4816511817309094890">"Vidutinis"</item>
+    <item msgid="8305084671259331134">"Ilga"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Numatytasis"</item>
+    <item msgid="4147246073737933622">"Be užraitų"</item>
+    <item msgid="3117680749167407907">"Be užraitų, glaustas"</item>
+    <item msgid="6529379119163117545">"Be užraitų, lygiaplotis"</item>
+    <item msgid="1487203730637617924">"Su užraitais"</item>
+    <item msgid="4937790671987480464">"Su užraitais, lygiaplotis"</item>
+    <item msgid="4448481989108928248">"Paprastas"</item>
+    <item msgid="4627069151979553527">"Rankraštinis"</item>
+    <item msgid="6896773537705206194">"Sumažintos didžiosios raidės"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Numatytasis"</item>
+    <item msgid="6488643537808152001">"Nėra"</item>
+    <item msgid="552332815156010137">"Kontūras"</item>
+    <item msgid="7187891159463789272">"Krintantis šešėlis"</item>
+    <item msgid="8019330250538856521">"Iškilus"</item>
+    <item msgid="8987385315647049787">"Įdubęs"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Naudoti programos numatytuosius nustatymus"</item>
+    <item msgid="8611890312638868524">"Baltas ant juodo"</item>
+    <item msgid="5891360837786277638">"Juodas ant balto"</item>
+    <item msgid="2798457065945456853">"Geltonas ant juodo"</item>
+    <item msgid="5799049811524553967">"Geltonas ant mėlyno"</item>
+    <item msgid="3673930830658169860">"Tinkintas garsas"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP / „IPSec“ VPN su iš anksto bendrinamais raktais"</item>
+    <item msgid="6128519070545038358">"L2TP / „IPSec“ VPN su sertifikatais"</item>
+    <item msgid="312397853907741968">"„IPSec“ VPN su iš anksto bendrinamais raktais ir „Xauth“ autentifikavimu"</item>
+    <item msgid="3319427315593649917">"„IPSec“ VPN su sertifikatais ir „Xauth“ autentifikavimu"</item>
+    <item msgid="8258927774145391041">"„IPSec“ VPN su sertifikatu ir hibridiniu autentifikavimu"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nėra"</item>
+    <item msgid="1157046369795346308">"Neautomatiškai"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Atsijungęs (-usi)"</item>
+    <item msgid="8754480102834556765">"Inicijuojama..."</item>
+    <item msgid="3351334355574270250">"Prisijungiama…"</item>
+    <item msgid="8303882153995748352">"Prisijungta"</item>
+    <item msgid="9135049670787351881">"Baigėsi laikas"</item>
+    <item msgid="2124868417182583926">"Nesėkminga"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Klausti"</item>
+    <item msgid="7718817231348607934">"Niekada neleisti"</item>
+    <item msgid="8184570120217958741">"Visada leisti"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Nuolatinė"</item>
+    <item msgid="167418068739176448">"Populiariausia veikla"</item>
+    <item msgid="4760813290195199773">"Svarbu (priekinis planas)"</item>
+    <item msgid="2328684826817647595">"Svarbu (antrasis planas)"</item>
+    <item msgid="7746406490652867365">"Atsarginė kopija"</item>
+    <item msgid="5597404364389196754">"Sunkus"</item>
+    <item msgid="1290888779300174556">"Paslauga (veikia)"</item>
+    <item msgid="7241098542073939046">"Paslauga (paleidžiama iš naujo)"</item>
+    <item msgid="6610439017684111046">"Imtuvas"</item>
+    <item msgid="7367606086319921117">"Pagrindinis"</item>
+    <item msgid="3344660712396741826">"Pastaroji veikla"</item>
+    <item msgid="5006559348883303865">"Išsaugota talpykloje (veikla)"</item>
+    <item msgid="8633480732468137525">"Išsaugota talpykloje (veiklos kliento programa)"</item>
+    <item msgid="6248998242443333892">"Išsaugota talpykloje (tuščia)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Žalsvai mėlyna"</item>
+    <item msgid="3228505970082457852">"Mėlyna"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Purpurinė"</item>
+    <item msgid="5932337981182999919">"Rožinė"</item>
+    <item msgid="5642914536624000094">"Raudona"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Daugiau nei 30 dienų"</item>
+    <item msgid="8699273238891265610">"Daugiau nei 60 dienų"</item>
+    <item msgid="8346279419423837266">"Daugiau nei 90 dienų"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Aptikti automatiškai"</item>
+    <item msgid="773943026484148895">"Laikyti matuojamu"</item>
+    <item msgid="1008268820118852416">"Laikyti nematuojamu"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Naudoti atsitiktine tvarka parinktą MAC (numatyta)"</item>
+    <item msgid="214234417308375326">"Naudoti įrenginio MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ne"</item>
+    <item msgid="1930581185557754880">"Taip"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tamsi"</item>
+    <item msgid="5079453644557603349">"Šviesi"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Išjungta"</item>
+    <item msgid="4072198137051566919">"Derinti"</item>
+    <item msgid="2473005316958868509">"Daugiažodis"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Tik pagrindinis"</item>
+    <item msgid="1161026694891024702">"Automatinis"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Pageidaujamas GSM / WCDMA"</item>
+    <item msgid="7581481130337402578">"Tik GSM"</item>
+    <item msgid="8579197487913425819">"Tik WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM / WCDMA automatinis"</item>
+    <item msgid="9107479914166352132">"CDMA / „EvDo“ automatinis"</item>
+    <item msgid="4219607161971472471">"CDMA be „EvDo“"</item>
+    <item msgid="7278975240951052041">"Tik „EvDo“"</item>
+    <item msgid="2295969832276827854">"CDMA / „EvDo“ / GSM / WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA ir LTE / „EvDo“"</item>
+    <item msgid="463168068025354541">"GSM / WCDMA / LTE"</item>
+    <item msgid="1770755308983338311">"Visuotinis"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"Tik TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA / WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE / TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA / GSM"</item>
+    <item msgid="5874623229495009031">"LTE / TDSCDMA / GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA / GSM / WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE / TDSCDMA / WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE / TDSCDMA / GSM / WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA / CDMA / EVDO / GSM / WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE / TDSCDMA / CDMA / EVDO / GSM / WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM / SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Visuotinis"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-lt/strings.xml b/tests/CarDeveloperOptions/res/values-lt/strings.xml
index 223ed52..55db92b 100644
--- a/tests/CarDeveloperOptions/res/values-lt/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-lt/strings.xml
@@ -4262,7 +4262,7 @@
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Norėdami sužinoti laiką, peržiūrėti pranešimus ir kitą informaciją, paimkite telefoną."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Norėdami sužinoti laiką, peržiūrėti pranešimus ir kitą informaciją, paimkite planšetinį kompiuterį."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Norėdami sužinoti laiką, peržiūrėti pranešimus ir kitą informaciją, paimkite įrenginį."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Palieskite, kad patikrintumėte telefoną"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Telefono tikrinimas palietus"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Palieskite, kad patikrintumėte planšetinį kompiuterį"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Palieskite, kad patikrintumėte įrenginį"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Norėdami sužinoti laiką, peržiūrėti pranešimus ir kitą informaciją, palieskite ekraną."</string>
diff --git a/tests/CarDeveloperOptions/res/values-lv-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-lv-nokeys/strings.xml
new file mode 100644
index 0000000..8d17a95
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-lv-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Lietojumprogrammu pārvaldība"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-lv/arrays.xml b/tests/CarDeveloperOptions/res/values-lv/arrays.xml
new file mode 100644
index 0000000..85b6090
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-lv/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Eiropa"</item>
+    <item msgid="3812126832016254559">"Āfrika"</item>
+    <item msgid="2765816300353408280">"Āzija"</item>
+    <item msgid="6683489385344409742">"Austrālija"</item>
+    <item msgid="5194868215515664953">"Klusais okeāns"</item>
+    <item msgid="7044520255415007865">"Visas"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekundes"</item>
+    <item msgid="772029947136115322">"30 sekundes"</item>
+    <item msgid="8743663928349474087">"1 minūte"</item>
+    <item msgid="1506508631223164814">"2 minūtes"</item>
+    <item msgid="8664703938127907662">"5 minūtes"</item>
+    <item msgid="5827960506924849753">"10 minūtes"</item>
+    <item msgid="6677424950124253938">"30 minūtes"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Mazs"</item>
+    <item msgid="591935967183159581">"Noklusējums"</item>
+    <item msgid="1714184661981538355">"Liels"</item>
+    <item msgid="6195563047686707484">"Vislielākais"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Notiek meklēšana..."</item>
+    <item msgid="8058143476674427024">"Notiek savienojuma izveide ar <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Notiek autentificēšana tīklā <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Notiek IP adreses iegūšana no tīkla <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Savienots ar <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Atlikts"</item>
+    <item msgid="4133290864821295785">"Notiek atvienošana no <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Atvienots"</item>
+    <item msgid="2847316776634969068">"Neizdevās"</item>
+    <item msgid="4390990424746035383">"Bloķēti"</item>
+    <item msgid="3618248791367063949">"Pagaidām netiek izmantots vājš savienojums."</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Spiedpoga"</item>
+    <item msgid="7401896200768713930">"Vienādranga ierīces PIN kods"</item>
+    <item msgid="4526848028011846710">"Šīs ierīces PIN kods"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Izveidots savienojums"</item>
+    <item msgid="983792611851499732">"Ielūgts"</item>
+    <item msgid="5438273405428201793">"Neizdevās"</item>
+    <item msgid="4646663015449312554">"Pieejama"</item>
+    <item msgid="3230556734162006146">"Ārpus sasniedzamības zonas"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minūtes"</item>
+    <item msgid="2759776603549270587">"5 minūtes"</item>
+    <item msgid="167772676068860015">"1 stunda"</item>
+    <item msgid="5985477119043628504">"Nekad ar noildzi"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Pēdējās 30 dienas"</item>
+    <item msgid="3211287705232736964">"Iestatīt lietojuma ciklu…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Lietojuma laiks"</item>
+    <item msgid="2784401352592276015">"Pēdējo reizi izmantots"</item>
+    <item msgid="249854287216326349">"Lietotnes nosaukums"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Neviens"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Neviens"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statisks"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Neviens"</item>
+    <item msgid="1464741437353223198">"Rokasgrāmata"</item>
+    <item msgid="5793600062487886090">"Starpniekserv. aut. konf."</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Neviens"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP vai CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Iekšējā ierīces krātuve"</item>
+    <item msgid="3186681694079967527">"Izņemama SD karte"</item>
+    <item msgid="6902033473986647035">"Ļaut sistēmai izlemt"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Atrašanās vieta"</item>
+    <item msgid="6842381562497597649">"Personiski"</item>
+    <item msgid="3966700236695683444">"Ziņojumapmaiņa"</item>
+    <item msgid="8563996233342430477">"Multivide"</item>
+    <item msgid="5323851085993963783">"Ierīce"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"aptuvena atrašanās vieta"</item>
+    <item msgid="1830619568689922920">"precīza atrašanās vieta"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrozvans"</item>
+    <item msgid="8632513128515114092">"lasīt kontaktpersonas"</item>
+    <item msgid="3741042113569620272">"mainīt kontaktpersonu informāciju"</item>
+    <item msgid="4204420969709009931">"nolasīt zvanu žurnālu"</item>
+    <item msgid="2260380357119423209">"modificēt zvanu žurnālu"</item>
+    <item msgid="6550710385014530934">"lasīt kalendāru"</item>
+    <item msgid="3575906174264853951">"modificēt kalendāru"</item>
+    <item msgid="4319843242568057174">"Wi-Fi meklēšana"</item>
+    <item msgid="2981791890467303819">"paziņojums"</item>
+    <item msgid="6617825156152476692">"mobilā tālruņa meklēšana"</item>
+    <item msgid="8865260890611559753">"zvanīt uz tālruņa numuru"</item>
+    <item msgid="3254999273961542982">"lasīt īsziņu"</item>
+    <item msgid="7711446453028825171">"rakstīt īsziņu"</item>
+    <item msgid="6123238544099198034">"saņemt īsziņu"</item>
+    <item msgid="838342167431596036">"saņemt ārkārtas īsziņu"</item>
+    <item msgid="8554432731560956686">"saņemt multiziņu"</item>
+    <item msgid="7464863464299515059">"saņemt WAP push ziņojumu"</item>
+    <item msgid="310463075729606765">"sūtīt īsziņu"</item>
+    <item msgid="7338021933527689514">"lasīt ICC īsziņu"</item>
+    <item msgid="6130369335466613036">"rakstīt ICC īsziņu"</item>
+    <item msgid="6536865581421670942">"modificēt iestatījumus"</item>
+    <item msgid="4547203129183558973">"zīmēt augšdaļā"</item>
+    <item msgid="9080347512916542840">"piekļūt paziņojumiem"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"ierakstīt audio"</item>
+    <item msgid="9182794235292595296">"atskaņot audio"</item>
+    <item msgid="8760743229597702019">"lasīt starpliktuvi"</item>
+    <item msgid="2266923698240538544">"modificēt starpliktuvi"</item>
+    <item msgid="1801619438618539275">"multivides pogas"</item>
+    <item msgid="31588119965784465">"audio uzsvars"</item>
+    <item msgid="7565226799008076833">"galvenais skaļums"</item>
+    <item msgid="5420704980305018295">"balss skaļums"</item>
+    <item msgid="5797363115508970204">"zvana skaļums"</item>
+    <item msgid="8233154098550715999">"multivides skaļums"</item>
+    <item msgid="5196715605078153950">"signāla skaļums"</item>
+    <item msgid="394030698764284577">"paziņojumu skaļums"</item>
+    <item msgid="8952898972491680178">"Bluetooth apjoms"</item>
+    <item msgid="8506227454543690851">"neļaut pāriet miega rež."</item>
+    <item msgid="1108160036049727420">"pārraudzīt atrašanās vietu"</item>
+    <item msgid="1496205959751719491">"pārraudzīt lieljaudas atrašanās vietu"</item>
+    <item msgid="3776296279910987380">"iegūt lietojuma statistiku"</item>
+    <item msgid="8827100324471975602">"izslēgt/ieslēgt mikrofonu"</item>
+    <item msgid="6880736730520126864">"rādīt paziņojumu"</item>
+    <item msgid="4933375960222609935">"projicēt saturu"</item>
+    <item msgid="8357907018938895462">"aktivizēt VPN"</item>
+    <item msgid="8143812849911310973">"izveidot fona tapeti"</item>
+    <item msgid="6266277260961066535">"palīdzīga struktūra"</item>
+    <item msgid="7715498149883482300">"palīdzīgs ekrānuzņēmums"</item>
+    <item msgid="4046679376726313293">"lasīt tālruņa stāvokļa datus"</item>
+    <item msgid="6329507266039719587">"pievienot balss pastu"</item>
+    <item msgid="7692440726415391408">"izmantot SIP"</item>
+    <item msgid="8572453398128326267">"apstrādāt izejošo zvanu"</item>
+    <item msgid="7775674394089376306">"pirksta nospiedums"</item>
+    <item msgid="3182815133441738779">"ķermeņa sensori"</item>
+    <item msgid="2793100005496829513">"lasīt šūnu apraides"</item>
+    <item msgid="2633626056029384366">"neīsta atrašanās vieta"</item>
+    <item msgid="8356842191824684631">"lasīt krātuves datus"</item>
+    <item msgid="5671906070163291500">"rakstīt krātuves datus"</item>
+    <item msgid="2791955098549340418">"ieslēgt ekrānu"</item>
+    <item msgid="5599435119609178367">"iegūt kontus"</item>
+    <item msgid="1165623660533024666">"darbināt fonā"</item>
+    <item msgid="6423861043647911030">"pieejamības paziņojumu skaļums"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Īss"</item>
+    <item msgid="4816511817309094890">"Vidēji svarīgs"</item>
+    <item msgid="8305084671259331134">"Ilgs"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Noklusējums"</item>
+    <item msgid="4147246073737933622">"Bezserifa"</item>
+    <item msgid="3117680749167407907">"Saspiests, bezserifa"</item>
+    <item msgid="6529379119163117545">"Vienplatuma Sans Serif"</item>
+    <item msgid="1487203730637617924">"Serifa"</item>
+    <item msgid="4937790671987480464">"Vienplatuma Serif"</item>
+    <item msgid="4448481989108928248">"Parasts"</item>
+    <item msgid="4627069151979553527">"Kursīvs"</item>
+    <item msgid="6896773537705206194">"Kapiteļi"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Noklusējums"</item>
+    <item msgid="6488643537808152001">"Neviens"</item>
+    <item msgid="552332815156010137">"Kontūra"</item>
+    <item msgid="7187891159463789272">"Krītoša ēna"</item>
+    <item msgid="8019330250538856521">"Pacelts"</item>
+    <item msgid="8987385315647049787">"Pazemināta"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Pēc noklusējuma"</item>
+    <item msgid="8611890312638868524">"Balts uz melna"</item>
+    <item msgid="5891360837786277638">"Melns uz balta"</item>
+    <item msgid="2798457065945456853">"Dzeltens uz melna"</item>
+    <item msgid="5799049811524553967">"Dzeltens uz zila"</item>
+    <item msgid="3673930830658169860">"Pielāgotas"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"Otrā slāņa tunelēšanas protokola/protokola IPsec VPN ar iepriekš kopīgotām atslēgām"</item>
+    <item msgid="6128519070545038358">"Otrā slāņa tunelēšanas protokola/protokola IPsec VPN ar sertifikātiem"</item>
+    <item msgid="312397853907741968">"Protokola IPsec VPN ar iepriekš kopīgotām atslēgām un autentifikāciju Xauth"</item>
+    <item msgid="3319427315593649917">"Protokola IPsec VPN ar sertifikātiem un autentifikāciju Xauth"</item>
+    <item msgid="8258927774145391041">"Protokola IPsec VPN ar sertifikātiem un hibrīdautentifikāciju"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nav"</item>
+    <item msgid="1157046369795346308">"Rokasgrāmata"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Atvienots"</item>
+    <item msgid="8754480102834556765">"Notiek inicializēšana..."</item>
+    <item msgid="3351334355574270250">"Notiek savienojuma izveide..."</item>
+    <item msgid="8303882153995748352">"Izveidots savienojums"</item>
+    <item msgid="9135049670787351881">"Noildze"</item>
+    <item msgid="2124868417182583926">"Neizdevās"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Vaicāt"</item>
+    <item msgid="7718817231348607934">"Neatļaut nekad"</item>
+    <item msgid="8184570120217958741">"Vienmēr atļaut"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Pastāvīgs"</item>
+    <item msgid="167418068739176448">"Biežākā darbība"</item>
+    <item msgid="4760813290195199773">"Svarīgi (priekšplānā)"</item>
+    <item msgid="2328684826817647595">"Svarīgi (fonā)"</item>
+    <item msgid="7746406490652867365">"Dublēšana"</item>
+    <item msgid="5597404364389196754">"Smagsvars"</item>
+    <item msgid="1290888779300174556">"Pakalpojums (darbojas)"</item>
+    <item msgid="7241098542073939046">"Pakalpojums (tiek palaists atkārtoti)"</item>
+    <item msgid="6610439017684111046">"Saņēmējs"</item>
+    <item msgid="7367606086319921117">"Sākums"</item>
+    <item msgid="3344660712396741826">"Pēdējā darbība"</item>
+    <item msgid="5006559348883303865">"Saglabāts kešatmiņā (darbība)"</item>
+    <item msgid="8633480732468137525">"Saglabāts kešatmiņā (darbības klients)"</item>
+    <item msgid="6248998242443333892">"Saglabāts kešatmiņā (tukša)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Zilganzaļa"</item>
+    <item msgid="3228505970082457852">"Zila"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Violeta"</item>
+    <item msgid="5932337981182999919">"Rozā"</item>
+    <item msgid="5642914536624000094">"Sarkana"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Vecāki par 30 dienām"</item>
+    <item msgid="8699273238891265610">"Vecāki par 60 dienām"</item>
+    <item msgid="8346279419423837266">"Vecāki par 90 dienām"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1."</item>
+    <item msgid="3118234477029486741">"0."</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Noteikt automātiski"</item>
+    <item msgid="773943026484148895">"Maksas"</item>
+    <item msgid="1008268820118852416">"Bezmaksas"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Izmantot nejaušā secībā atlasītu MAC adresi (noklusējums)"</item>
+    <item msgid="214234417308375326">"Izmantot ierīces MAC adresi"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nē"</item>
+    <item msgid="1930581185557754880">"Jā"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tumšs"</item>
+    <item msgid="5079453644557603349">"Gaišs"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Izslēgts"</item>
+    <item msgid="4072198137051566919">"Atkļūdošana"</item>
+    <item msgid="2473005316958868509">"Izvērsta informācija"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Tikai mājās"</item>
+    <item msgid="1161026694891024702">"Automātiski"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Ieteicamais režīms: GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Tikai GSM"</item>
+    <item msgid="8579197487913425819">"Tikai WCDMA"</item>
+    <item msgid="8465243227505412498">"Automātiskais režīms: GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automātiskais režīms: CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA bez EvDo"</item>
+    <item msgid="7278975240951052041">"Tikai EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA un LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Vispārējie"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Tikai TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Vispārējie"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-af/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-af/strings.xml
new file mode 100644
index 0000000..9fb5120
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-af/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Jy kan nie noodoproepe met Wi-Fi-oproepe maak nie. As jy probeer om \'n noodoproep te maak, sal jou toestel outomaties die mobiele netwerk gebruik. Noodoproepe kan net gemaak word in gebiede met selnetwerkdekking."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-am/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-am/strings.xml
new file mode 100644
index 0000000..b0a6384
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-am/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"በWi-Fi ጥሪ ማድረጊያ በኩል የአደጋ ጥሪዎችን ማድረግ አይችሉም።  የአደጋ ጥሪ ለማድረግ ከሞከሩ የእርስዎ መሣሪያ በራስሰር የሞባይል አውታረመረቡን ይጠቀማል። የአደጋ ጥሪዎች የሞባይል አውታረ መረብ ሽፋን ባለባቸው አካባቢዎች ብቻ ይደረጋሉ።"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ar/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ar/strings.xml
new file mode 100644
index 0000000..19c7915
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ar/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"لا يمكنك إجراء مكالمات الطوارئ من خلال الاتصال عبر Wi-Fi. إذا حاولت إجراء مكالمة طوارئ، سيستخدم جهازك تلقائيًا شبكة الجوّال. يمكن إجراء مكالمات الطوارئ فقط في المناطق التي تشتمل على تغطية لشبكة الجوّال."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-as/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-as/strings.xml
new file mode 100644
index 0000000..d4952a8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-as/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"আপুনি ৱাই-ফাই কলিং ব্যৱহাৰ কৰি জৰুৰীকালীন কল কৰিব নোৱাৰে। যদিহে আপুনি তেনে কল কৰিবলৈ চেষ্টা কৰে, তেন্তে আপোনাৰ ডিভাইচটৱে স্বয়ংক্ৰিয়ভাৱে ম’বাইল নেটৱৰ্ক ব্যৱহাৰ কৰিব। জৰুৰীকালীন কল কেৱল ম’বাইল নেটৱৰ্ক উপলব্ধ থকা ঠাইতহে কৰিব পৰা যায়।"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-az/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-az/strings.xml
new file mode 100644
index 0000000..14d7f61
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-az/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi vasitəsilə təcili zənglər edə bilməzsiniz. Əgər təcili zəng etməyə çalışsanız, cihaz avtomatik olaraq mobil şəbəkədən istifadə edəcək. Təcili zənglər təkcə mobil şəbəkə əhatəsində olan ərazilərdə edilə bilər."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-b+sr+Latn/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-b+sr+Latn/strings.xml
new file mode 100644
index 0000000..d7af2e2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-b+sr+Latn/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Ne možete da upućujete hitne pozive pomoću pozivanja preko Wi-Fi-ja. Ako probate da uputite hitan poziv, uređaj će automatski koristiti mobilnu mrežu. Hitni pozivi mogu da se upućuju samo u oblastima pokrivenim mobilnom mrežom."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-be/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-be/strings.xml
new file mode 100644
index 0000000..4ea0ad9
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-be/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Вы не можаце рабіць экстранныя выклікі з дапамогай Wi-Fi-тэлефаніі. Калі вы паспрабуеце зрабіць экстранны выклік, ваша прылада аўтаматычна выкарыстае мабільную сетку. Экстранныя выклікі можна рабіць толькі ў зонах пакрыцця мабільнай сеткі."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bg/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bg/strings.xml
new file mode 100644
index 0000000..7e37cae
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bg/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Не можете да извършвате спешни обаждания чрез функцията Обаждания през Wi-Fi. Ако опитате да го направите, устройството ви автоматично ще използва мобилната мрежа. Спешните обаждания могат да бъдат осъществявани само в райони с покритие за мобилна мрежа."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bn/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bn/strings.xml
new file mode 100644
index 0000000..b0ea179
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bn/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"ওয়াই-ফাই এর মাধ্যমে জরুরি কল করা যাবে না। জরুরি কল করার চেষ্টা করলে আপনার ডিভাইস নিজে থেকেই মোবাইল নেটওয়ার্ক ব্যবহার করতে শুরু করবে। যেখানে মোবাইল নেটওয়ার্ক কভারেজ আছে, শুধুমাত্র সেখানেই জরুরি কল করা যাবে।"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bs/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bs/strings.xml
new file mode 100644
index 0000000..c804d2d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-bs/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Ne možete upućivati hitne pozive putem WiFi pozivanja. Ukoliko pokušate uputiti hitan poziv, vaš uređaj će automatski koristiti mobilnu mrežu. Hitni pozivi se mogu obavljati isključivo u području pokrivenom mobilnom mrežom."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ca/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ca/strings.xml
new file mode 100644
index 0000000..027e1b3
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ca/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"No pots fer trucades d\'emergència per Wi-Fi. Si proves de fer-ho, el dispositiu utilitzarà automàticament la xarxa mòbil. Les trucades d\'emergència només es poden fer en zones amb cobertura de telefonia mòbil."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-cs/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-cs/strings.xml
new file mode 100644
index 0000000..44e984f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-cs/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Prostřednictvím volání přes Wi-Fi nelze uskutečňovat tísňová volání. Pokud se pokusíte zavolat na tísňovou linku, zařízení automaticky použije mobilní síť. Tísňová volání lze uskutečňovat jen v oblastech pokrytých mobilní sítí."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-da/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-da/strings.xml
new file mode 100644
index 0000000..2829cc9
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-da/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Du kan ikke foretage nødopkald med Opkald via Wi-Fi. Hvis du prøver at foretage et nødopkald, anvender enheden automatisk dit mobilnetværk. Nødopkald kan kun foretages i områder med dækning af dit mobilnetværk."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-de/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-de/strings.xml
new file mode 100644
index 0000000..9f4eca2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-de/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Du kannst von deinem Gerät via \"WLAN-Telefonie\" keine Notrufe tätigen. Wenn du versuchst, den Notruf zu erreichen, nutzt dein Gerät automatisch das Mobilfunknetz. Notrufe sind nur an Orten mit Mobilfunkabdeckung möglich."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-el/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-el/strings.xml
new file mode 100644
index 0000000..51d54e0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-el/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Δεν μπορείτε να πραγματοποιείτε κλήσεις έκτακτης ανάγκης μέσω της Κλήσης Wi-Fi. Εάν προσπαθήσετε να πραγματοποιήσετε μια κλήση έκτακτης ανάγκης, η συσκευή σας θα χρησιμοποιήσει αυτόματα το δίκτυο κινητής τηλεφωνίας. Οι κλήσεις έκτακτης ανάγκης μπορούν να πραγματοποιηθούν μόνο σε περιοχές με κάλυψη δικτύου κινητής τηλεφωνίας."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rAU/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rAU/strings.xml
new file mode 100644
index 0000000..eaee6e8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rAU/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"You can’t make emergency calls through Wi-Fi calling. If you try to make an emergency call, your device will automatically use the mobile network. Emergency calls can only be made in areas with mobile network coverage."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rCA/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rCA/strings.xml
new file mode 100644
index 0000000..eaee6e8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rCA/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"You can’t make emergency calls through Wi-Fi calling. If you try to make an emergency call, your device will automatically use the mobile network. Emergency calls can only be made in areas with mobile network coverage."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rGB/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rGB/strings.xml
new file mode 100644
index 0000000..eaee6e8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rGB/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"You can’t make emergency calls through Wi-Fi calling. If you try to make an emergency call, your device will automatically use the mobile network. Emergency calls can only be made in areas with mobile network coverage."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rIN/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rIN/strings.xml
new file mode 100644
index 0000000..eaee6e8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-en-rIN/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"You can’t make emergency calls through Wi-Fi calling. If you try to make an emergency call, your device will automatically use the mobile network. Emergency calls can only be made in areas with mobile network coverage."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-es-rUS/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-es-rUS/strings.xml
new file mode 100644
index 0000000..e373811
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-es-rUS/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"No puedes usar las llamadas por Wi-Fi para hacer llamadas de emergencia. Si lo intentas, el dispositivo se conectará automáticamente a la red móvil. Solo puedes hacer este tipo de llamadas en zonas con cobertura de red móvil."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-es/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-es/strings.xml
new file mode 100644
index 0000000..352502b
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-es/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"No puedes utilizar las llamadas por Wi-Fi para hacer llamadas de emergencia. Si lo intentas, el dispositivo se conectará automáticamente a la red móvil. Solo puedes hacer este tipo de llamadas en zonas con cobertura de red móvil."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-et/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-et/strings.xml
new file mode 100644
index 0000000..ed1faa7
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-et/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Te ei saa WiFi-kõnede kaudu hädaabikõnesid teha. Kui proovite teha hädaabikõnet, kasutab seade automaatselt mobiilsidevõrku. Hädaabikõnesid saab teha ainult mobiilsidevõrgu katvusega piirkondades."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-eu/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-eu/strings.xml
new file mode 100644
index 0000000..22232c1
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-eu/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Ezin duzu egin larrialdi-deirik Wi-Fi bidez. Larrialdi-dei bat egiten saiatzen bazara, gailua sare mugikorrera aldatuko da automatikoki. Sare mugikorren estaldura-eremuetan bakarrik egin daitezke larrialdi-deiak."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fa/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fa/strings.xml
new file mode 100644
index 0000000..33f67e6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fa/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"نمی‌توانید با تماس ازطریق Wi-Fi، تماس‌های اضطراری برقرار کنید. اگر در تلاشید تماس اضطراری برقرار کنید، دستگاه شما به‌طور خودکار از شبکه دستگاه همراه استفاده می‌کند. فقط در مناطقی که پوشش شبکه دستگاه همراه دارند می‌توان تماس‌های اضطراری برقرار کرد."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fi/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fi/strings.xml
new file mode 100644
index 0000000..022d6b9
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fi/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Hätäpuheluja ei voi soittaa Wi-Fi-verkossa. Laite käyttää hätäpuhelun soittamiseen automaattisesti mobiiliverkkoa. Hätäpuhelun soittaminen on mahdollista vain mobiiliverkon peittoalueella."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fr-rCA/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fr-rCA/strings.xml
new file mode 100644
index 0000000..9dd3c6c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fr-rCA/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Vous ne pouvez pas effectuer d\'appels d\'urgence à l\'aide des appels Wi-Fi. Si vous essayez de faire un appel d\'urgence, votre appareil utilisera automatiquement le réseau cellulaire. Les appels d\'urgence ne sont possibles que dans les zones disposant d\'une couverture réseau cellulaire."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fr/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fr/strings.xml
new file mode 100644
index 0000000..3b3ad5f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-fr/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Vous ne pouvez pas effectuer d\'appels d\'urgence via les appels Wi-Fi. Si vous essayez de passer un appel d\'urgence, votre appareil utilisera automatiquement le réseau mobile. Les appels d\'urgence ne sont possibles que dans les zones disposant d\'une couverture réseau mobile."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-gl/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-gl/strings.xml
new file mode 100644
index 0000000..d5ff04f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-gl/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Non podes facer chamadas de emerxencia mediante as chamadas por wifi. Se tentas realizar unha chamada de emerxencia, o dispositivo utilizará automaticamente a rede móbil. As chamadas de emerxencia só se poden facer en zonas con cobertura de rede de telefonía móbil."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-gu/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-gu/strings.xml
new file mode 100644
index 0000000..54222b5
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-gu/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"તમે વાઇ-ફાઇ કૉલિંગ મારફતે કટોકટીનો કૉલ કરી શકતા નથી. જો તમે કોઈ કટોકટીનો કૉલ કરવાનો પ્રયાસ કરો છો, તો તમારું ઉપકરણ આપમેળે મોબાઇલ નેટવર્કનો ઉપયોગ કરશે. માત્ર મોબાઇલ નેટવર્ક કવરેજવાળા વિસ્તારમાં જ કટોકટીનો કૉલ કરી શકાય છે."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hi/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hi/strings.xml
new file mode 100644
index 0000000..74b1cc6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hi/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"आप वाई-फ़ाई कॉलिंग के ज़रिए आपातकालीन कॉल नहीं कर सकते हैं. अगर आप आपातकालीन कॉल करने की कोशिश कर रहे हैं, तो आपका डिवाइस अपने आप मोबाइल नेटवर्क का उपयोग करेगा. आपातकालीन कॉल केवल मोबाइल नेटवर्क कवरेज वाले क्षेत्रों से किए जा सकते हैं."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hr/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hr/strings.xml
new file mode 100644
index 0000000..244735a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hr/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi pozivi ne mogu se upotrebljavati za hitne pozive. Ako pokušate uputiti hitni poziv, uređaj će automatski prijeći na mobilnu mrežu. Hitni se pozivi mogu upućivati samo u područjima pokrivenim mobilnom mrežom."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hu/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hu/strings.xml
new file mode 100644
index 0000000..4964cd7
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hu/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi-hívással nem tud segélyhívást kezdeményezni. Segélyhívás kezdeményezéséhez eszköze automatikusan mobilhálózatra vált. Segélyhívást csak hálózatilag lefedett helyekről indíthat."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hy/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hy/strings.xml
new file mode 100644
index 0000000..26138c5
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-hy/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Դուք չեք կարող կատարել շտապ կանչեր` զանգելով Wi-Fi կապ միջոցով: Շտապ կանչի զանգ կատարելու փորձի դեպքում ձեր հեռախոսն ավտոմատ կերպով կմիանա բջջային ցանցին: Շտապ կանչերը կարող են կատարվել միայն բջջային ցանցի ծածկույթում:"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-in/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-in/strings.xml
new file mode 100644
index 0000000..d77c572
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-in/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Anda tidak dapat melakukan panggilan darurat melalui panggilan Wi-Fi. Jika mencoba melakukan panggilan darurat, perangkat akan otomatis menggunakan jaringan seluler. Panggilan darurat hanya dapat dilakukan di area dengan cakupan jaringan seluler."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-is/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-is/strings.xml
new file mode 100644
index 0000000..eac33fa
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-is/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Ekki er hægt að hringja neyðarsímtöl með Wi-Fi símtölum. Ef þú hringir neyðarsímtal mun tækið notast sjálfkrafa við farsímakerfið. Eingöngu er hægt að hringja neyðarsímtöl á svæðum með tengingu við farsímakerfi."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-it/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-it/strings.xml
new file mode 100644
index 0000000..543dc70
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-it/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Non puoi fare chiamate di emergenza tramite la funzione Chiamate Wi-Fi. Se provi a fare una chiamata di emergenza, il dispositivo userà automaticamente la rete mobile. È possibile fare chiamate di emergenza soltanto nelle zone coperte dalla rete mobile."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-iw/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-iw/strings.xml
new file mode 100644
index 0000000..8b5998e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-iw/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"לא ניתן לבצע שיחות חירום באמצעות שיחות Wi-Fi. אם תנסה לבצע שיחת חירום, המכשיר ישתמש באופן אוטומטי ברשת הסלולרית. ניתן לבצע שיחות חירום רק באזורים עם כיסוי רשת סלולרית."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ja/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ja/strings.xml
new file mode 100644
index 0000000..52b050f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ja/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi 通話で緊急通報を行うことはできません。緊急通報を試みると、デバイスは自動的にモバイル ネットワークを使用します。緊急通報は、モバイル ネットワーク対応のエリア内でのみ行えます。"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ka/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ka/strings.xml
new file mode 100644
index 0000000..0c7ed8d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ka/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"გადაუდებელი ზარების Wi-Fi-ს მეშვეობით განხორციელება ვერ მოხერხდება. თუ გადაუდებელი ზარის გაშვებას ეცდებით, თქვენი მოწყობილობა ავტომატურად გამოიყენებს მობილურ ქსელს. გადაუდებელი ზარების განხორციელება მხოლოდ იმ ტერიტორიებზეა შესაძლებელი, რომელზეც მობილური ქსელის დაფარვა ვრცელდება."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-kk/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-kk/strings.xml
new file mode 100644
index 0000000..8b11138
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-kk/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Сіз Wi-Fi қоңырауы арқылы жедел қызметке қоңырау шала алмайсыз. Егер жедел қызметке қоңырау шалғыңыз келсе, құрылғыңыз автоматты түрде мобильдік желіні қолданады. Тек мобильдік желі бар аймақтарда ғана жедел қызметке қоңырау шалуға болады."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-km/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-km/strings.xml
new file mode 100644
index 0000000..fd3bcea
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-km/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"អ្នកមិនអាចធ្វើការហៅបន្ទាន់តាមរយៈការហៅទូរសព្ទដោយប្រើ Wi-Fi បានទេ។ ប្រសិនបើអ្នកព្យាយាមធ្វើការហៅបន្ទាន់ ឧបករណ៍របស់អ្នកនឹងប្រើបណ្ដាញ​ទូរសព្ទ​ចល័តដោយស្វ័យប្រវត្តិ។ ការហៅបន្ទាន់អាចធ្វើបានតែក្នុងតំបន់ដែលមានការគ្របដណ្តប់បណ្តាញ​ទូរសព្ទ​ចល័តតែប៉ុណ្ណោះ។"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-kn/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-kn/strings.xml
new file mode 100644
index 0000000..3967a98
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-kn/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"ನೀವು ವೈ-ಫೈ ಕರೆಯ ಮೂಲಕ ತುರ್ತು ಕರೆಗಳನ್ನು ಮಾಡಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ. ನೀವು ತುರ್ತು ಕರೆ ಮಾಡಲು ಪ್ರಯತ್ನಿಸಿದರೆ, ನಿಮ್ಮ ಸಾಧನ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಮೊಬೈಲ್ ನೆಟ್‌ವರ್ಕ್‌ ಬಳಸುತ್ತದೆ. ಮೊಬೈಲ್ ನೆಟ್‌ವರ್ಕ್ ಲಭ್ಯ ಇರುವಲ್ಲಿ ಮಾತ್ರ ತುರ್ತು ಕರೆಗಳನ್ನು ಮಾಡಬಹುದು."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ko/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ko/strings.xml
new file mode 100644
index 0000000..118215a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ko/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi 통화로는 긴급 전화를 걸 수 없습니다. 긴급 전화를 걸 경우 기기에서 자동으로 모바일 네트워크가 사용됩니다. 긴급 전화는 모바일 네트워크가 제공되는 지역에서만 걸 수 있습니다."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ky/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ky/strings.xml
new file mode 100644
index 0000000..825e8ba
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ky/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n" Өзгөчө кырдаалда Wi-Fi аркылуу чала албайсыз. Өзгөчө кырдаалда чалууга аракет кылганыңызда түзмөгүңүз автоматтык түрдө мобилдик тармакты пайдаланат. Өзгөчө кырдаалда мобилдик тармак кармаган аймактарда гана чала аласыз."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lo/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lo/strings.xml
new file mode 100644
index 0000000..ccf0001
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lo/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"ທ່ານບໍ່ສາມາດໂທສຸກເສີນຜ່ານການໂທ Wi-Fi ໄດ້. ຫາກທ່ານລອງໂທສຸກເສີນ, ອຸປະກອນຂອງທ່ານຈະໃຊ້ເຄືອຂ່າຍມືຖືໂດຍອັດຕະໂນມັດ. ການໂທສຸກເສີນຈະເກີດຂຶ້ນຜ່ານເຄືອຂ່າຍມືຖືໄດ້ເທົ່ານັ້ນ."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lt/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lt/strings.xml
new file mode 100644
index 0000000..7cfc0c8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lt/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Negalite atlikti skambučių pagalbos numeriais naudodami „Wi-Fi“ skambinimą. Jei bandysite atlikti skambutį pagalbos numeriu, įrenginys automatiškai naudos mobiliojo ryšio tinklą. Skambučius pagalbos numeriais galite atlikti tik tose srityse, kuriose veikia mobiliojo ryšio tinklas."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lv/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lv/strings.xml
new file mode 100644
index 0000000..9490af3
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-lv/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Jūs nevarat veikt ārkārtas izsaukumus, izmantojot Wi-Fi zvanus. Ja mēģināsiet veikt ārkārtas izsaukumu, jūsu ierīcē tiks automātiski izmantots mobilais tīkls. Ārkārtas izsaukumus var veikt tikai apgabalos ar mobilā tīkla pārklājumu."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mk/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mk/strings.xml
new file mode 100644
index 0000000..d78cebf
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mk/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Не може да воспоставите итни повици преку Wi-Fi. Ако се обидете да воспоставите итен повик, уредот автоматски ќе ја користи мобилната мрежа. Итните повици може да се воспостават само во области покриени со мобилна мрежа."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ml/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ml/strings.xml
new file mode 100644
index 0000000..d9979ad
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ml/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"വൈഫൈ കോളിംഗിലൂടെ നിങ്ങൾക്ക് അടിയന്തിര കോളുകൾ വിളിക്കാനാകില്ല. നിങ്ങൾ ഒരു അടിയന്തിര കോൾ ചെയ്യാൻ ശ്രമിച്ചാൽ, നിങ്ങളുടെ ഉപകരണം സ്വയമേവ മൊബൈല്‍ നെറ്റ്‍വര്‍ക്ക് ഉപയോഗിക്കും. മൊബൈല്‍ നെറ്റ്‍വര്‍ക്കുള്ള സ്ഥലങ്ങളിൽ മാത്രമേ അടിയന്തിര കോളുകൾ ചെയ്യാനാവൂ."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mn/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mn/strings.xml
new file mode 100644
index 0000000..e9a42fd
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mn/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Та Wi-Fi дуудлагаар яаралтай дуудлага хийх боломжгүй. Хэрэв та яаралтай дуудлага хийвэл таны төхөөрөмж мобайл сүлжээг автоматаар ашиглана. Яаралтай дуудлагыг зөвхөн мобайл сүлжээтэй газар хийх боломжтой."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mr/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mr/strings.xml
new file mode 100644
index 0000000..40d0271
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-mr/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"वाय-फाय कॉलिंगने तुम्ही आपत्कालीन कॉल करू शकत नाही. तुम्ही आपत्कालीन कॉल करण्याचा प्रयत्न करत असल्यास, तुमचे डिव्हाइस आपोआप मोबाइल नेटवर्कचा वापर करेल. आपत्कालीन कॉल फक्त मोबाइल नेटवर्क कव्हरेज असलेल्या क्षेत्रात केले जाऊ शकतात."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ms/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ms/strings.xml
new file mode 100644
index 0000000..71462f0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ms/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Anda tidak dapat membuat panggilan kecemasan melalui panggilan Wi-Fi. Jika anda cuba membuat panggilan kecemasan, peranti anda akan menggunakan rangkaian mudah alih secara automatik. Panggilan kecemasan hanya dapat dibuat di kawasan yang terdapat liputan rangkaian mudah alih."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-my/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-my/strings.xml
new file mode 100644
index 0000000..f3c8e8a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-my/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi ခေါ်ဆိုမှုမှတစ်ဆင့် အရေးပေါ်ဖုန်းဆက်၍မရပါ။ အရေးပေါ်ဖုန်းခေါ်ဆိုမှုတစ်ခု ပြုလုပ်ရန်ကြိုးပမ်းပါက သင်၏စက်ပစ္စည်းသည် မိုဘိုင်းကွန်ရက်ကို အလိုအလျောက် အသုံးပြုပါလိမ့်မည်။ မိုဘိုင်းကွန်ရက်လိုင်းဆွဲအားရှိသော နေရာများတွင်သာ အရေးပေါ်ဖုန်းခေါ်ဆိုမှုများကိုပြုလုပ်နိုင်ပါသည်။"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-nb/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-nb/strings.xml
new file mode 100644
index 0000000..7bb6de2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-nb/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Du kan ikke ringe nødnumre via Wi-Fi-anrop. Hvis du prøver å ringe et nødnummer, bruker enheten automatisk mobilnettverket. Du kan bare ringe nødnumre i områder med mobildekning."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ne/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ne/strings.xml
new file mode 100644
index 0000000..51ca01e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ne/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"तपाईं Wi-Fi को कल गर्ने सुविधामार्फत आपतकालीन कलहरू गर्न सक्नुहुन्न। तपाईंले आपतकालीन कल गर्न खोज्नुभयो भने तपाईंको यन्त्रले स्वतः मोबाइल नेटवर्कको प्रयोग गर्ने छ। मोबाइल नेटवर्क उपलब्ध भएका क्षेत्रहरूबाट मात्र आपतकालीन कलहरू गर्न सकिन्छ।"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-nl/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-nl/strings.xml
new file mode 100644
index 0000000..e9fe6c6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-nl/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Je kunt geen noodoproepen plaatsen met \'Bellen via wifi\'. Als je een noodoproep probeert te plaatsen, maakt je apparaat automatisch gebruik van het mobiele netwerk. Noodoproepen kunnen alleen worden geplaatst in gebieden met mobiele netwerkdekking."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-or/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-or/strings.xml
new file mode 100644
index 0000000..70ddd53
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-or/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"ୱାଇ-ଫାଇ କଲିଙ୍ଗ ମାଧ୍ୟମରେ ଜରୁରୀକାଳୀନ କଲ୍‍ କରିହେବ ନାହିଁ। ଯଦି ଜରୁରୀକାଳୀନ କଲ୍‍ କରିବାକୁ ଚେଷ୍ଟା କରନ୍ତି, ତେବେ ଆପଣଙ୍କର ଡିଭାଇସ୍ ସ୍ୱଚାଳିତ ଭାବେ ମୋବାଇଲ୍ ନେଟ୍‌ୱର୍କ ବ୍ୟବହାର କରିବ। ଜରୁରୀକାଳୀନ କଲ୍‌ଗୁଡ଼ିକ କେବଳ ମୋବାଇଲ୍‌ ନେଟ୍‌ୱର୍କ କଭରେଜ୍‌ କ୍ଷେତ୍ରଗୁଡ଼ିକରେ ହିଁ କରିହେବ।"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pa/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pa/strings.xml
new file mode 100644
index 0000000..f7859b0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pa/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"ਤੁਸੀਂ ਵਾਈ-ਫਾਈ ਕਾਲਿੰਗ ਰਾਹੀਂ ਸੰਕਟਕਾਲੀਨ ਕਾਲਾਂ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਜੇਕਰ ਤੁਸੀਂ ਕੋਈ ਸੰਕਟਕਾਲੀਨ ਕਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਡਾ ਡੀਵਾਈਸ ਸਵੈਚਲਿਤ ਤੌਰ \'ਤੇ ਮੋਬਾਈਲ ਨੈੱਟਵਰਕ ਦੀ ਵਰਤੋਂ ਕਰੇਗਾ। ਸੰਕਟਕਾਲੀਨ ਕਾਲਾਂ ਸਿਰਫ਼ ਮੋਬਾਈਲ ਨੈੱਟਵਰਕ ਕਵਰੇਜ ਵਾਲੇ ਖੇਤਰਾਂ ਵਿੱਚ ਕੀਤੀਆਂ ਜਾ ਸਕਦੀਆਂ ਹਨ।"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pl/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pl/strings.xml
new file mode 100644
index 0000000..a8f8cda
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pl/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Nie możesz wykonywać połączeń alarmowych przez Wi-Fi. Przy próbie wykonania takiego połączenia urządzenie automatycznie skorzysta z sieci komórkowej. Połączenia alarmowe są możliwe tylko w zasięgu sieci komórkowej."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pt-rPT/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pt-rPT/strings.xml
new file mode 100644
index 0000000..8589657
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pt-rPT/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Não pode fazer chamadas de emergência através das Chamadas Wi-Fi. Se tentar fazer uma chamada de emergência, o dispositivo utiliza automaticamente a rede móvel. Apenas é possível fazer chamadas de emergência em áreas com cobertura de rede móvel."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pt/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pt/strings.xml
new file mode 100644
index 0000000..86d4f61
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-pt/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Não é possível fazer chamadas de emergência por Wi-Fi. Se você tentar fazer isso, seu dispositivo usará automaticamente a rede móvel. Chamadas de emergência só podem ser feitas em áreas com cobertura de rede móvel."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ro/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ro/strings.xml
new file mode 100644
index 0000000..901022d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ro/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Nu puteți să inițiați apeluri de urgență folosind Apelarea prin Wi-Fi. Dacă încercați să inițiați un apel de urgență, dispozitivul va folosi automat rețeaua mobilă. Apelurile de urgență pot fi inițiate numai în zonele în care funcționează rețeaua mobilă."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ru/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ru/strings.xml
new file mode 100644
index 0000000..f5401f2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ru/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Вы не можете совершать экстренные вызовы по Wi-Fi. Для экстренного вызова устройство будет автоматически использовать мобильную сеть. Экстренные вызовы доступны только в зонах покрытия мобильной сети."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-si/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-si/strings.xml
new file mode 100644
index 0000000..d0586c2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-si/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"ඔබට Wi-Fi ඇමතීම හරහා හදිසි අවස්ථා ඇමතුම් සිදු කළ නොහැකිය. ඔබ හදිසි අවස්ථා ඇමතුමක් සිදු කිරීමට උත්සාහ ක‍ළහොත්, ඔබේ උපාංගය ස්වයංක්‍රියව ජංගම ජාලය භාවිත කරනු ඇත. හදිසි අවස්ථා ඇමතුම් ජංගම ජාල ආවරණය ඇති ප්‍රදේශවල පමණක් සිදු කළ හැකිය."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sk/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sk/strings.xml
new file mode 100644
index 0000000..edb3af6
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sk/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Tiesňové volania môžete uskutočniť prostredníctvom funkcie volania cez Wi‑Fi. Ak sa pokúsite uskutočniť tiesňové volanie, zariadenie automaticky použije mobilnú sieť. Tiesňové volania je možné uskutočniť iba v oblastiach s mobilným pokrytím."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sl/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sl/strings.xml
new file mode 100644
index 0000000..8e270b0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sl/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Klicanje v sili prek Wi-Fi-ja ni mogoče. Če poskusite opraviti klic v sili, bo naprava samodejno uporabila mobilno omrežje. Klice v sili lahko opravite samo na območjih s signalom mobilnega omrežja."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sq/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sq/strings.xml
new file mode 100644
index 0000000..88315f0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sq/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Nuk mund të kryesh telefonata urgjence përmes telefonatave me Wi-Fi. Nëse përpiqesh të kryesh një telefonatë urgjence, pajisja do të përdorë automatikisht rrjetin celular. Telefonatat e urgjencës mund të kryhen vetëm në zona që kanë mbulim me rrjet celular."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sr/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sr/strings.xml
new file mode 100644
index 0000000..e1618bd
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sr/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Не можете да упућујете хитне позиве помоћу позивања преко Wi-Fi-ја. Ако пробате да упутите хитан позив, уређај ће аутоматски користити мобилну мрежу. Хитни позиви могу да се упућују само у областима покривеним мобилном мрежом."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sv/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sv/strings.xml
new file mode 100644
index 0000000..eb88d75
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sv/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Det går inte att ringa nödsamtal via Wi-Fi. Om du ringer ett nödnummer på enheten används mobilnätverket automatiskt. Det går bara att ringa nödsamtal där mobilnätet har täckning."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sw/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sw/strings.xml
new file mode 100644
index 0000000..7d75451
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-sw/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Huwezi kupiga simu za dharura ukitumia huduma ya Kupiga simu kupitia Wi-Fi. Ukijaribu kupiga simu za dharura, moja kwa moja kifaa chako kitatumia mtandao wa simu. Unaweza tu kupiga simu za dharura ukiwa mahali ambapo mtandao wa simu unapatikana."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ta/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ta/strings.xml
new file mode 100644
index 0000000..aa0f561
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ta/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"வைஃபை அழைப்பு மூலம் அவசர அழைப்புகளைச் செய்ய முடியாது. அவசர அழைப்பைச் செய்ய முயன்றால், உங்கள் சாதனம் தானாகவே மொபைல் நெட்வொர்க்கைப் பயன்படுத்தும். மொபைல் நெட்வொர்க் கவரேஜ் உள்ள பகுதிகளில் மட்டுமே அவசர அழைப்புகளைச் செய்ய முடியும்."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-te/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-te/strings.xml
new file mode 100644
index 0000000..4317f90
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-te/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"మీరు Wi-Fi కాలింగ్ ద్వారా అత్యవసర కాల్‌లను చేయలేరు. అత్యవసర కాల్ చేయడానికి ప్రయత్నిస్తే, మీ పరికరం స్వయంచాలకంగా మొబైల్ నెట్‌వర్క్‌ని ఉపయోగిస్తుంది. మొబైల్ నెట్‌వర్క్‌ కవరేజ్ ఉన్న ప్రాంతాల్లో మాత్రమే అత్యవసర కాల్‌లు చేయబడతాయి."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-th/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-th/strings.xml
new file mode 100644
index 0000000..0fdf4ea
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-th/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"คุณไม่สามารถโทรฉุกเฉินด้วยการโทรผ่าน Wi-Fi หากคุณพยายามโทรฉุกเฉิน อุปกรณ์จะใช้เครือข่ายมือถือโดยอัตโนมัติ การโทรฉุกเฉินสามารถใช้งานได้ในบริเวณที่มีสัญญาณเครือข่ายมือถือเท่านั้น"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-tl/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-tl/strings.xml
new file mode 100644
index 0000000..489657e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-tl/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Hindi ka makakapagsagawa ng mga emergency na tawag sa pamamagitan ng pagtawag gamit ang Wi-Fi. Kung susubukan mong magsagawa ng emergency na tawag, awtomatikong gagamitin ng iyong device ang mobile network. Makakapagsagawa lang ng mga emergency na tawag sa mga lugar na nasasaklawan ng mobile network."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-tr/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-tr/strings.xml
new file mode 100644
index 0000000..83dbe01
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-tr/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Kablosuz çağrı ile acil durum aramaları yapamazsınız. Acil durum araması yapmaya çalışırsanız cihazınız otomatik olarak mobil ağa geçecektir. Acil durum aramaları yalnızca mobil ağ kapsamında olan yerlerden yapılabilir."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-uk/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-uk/strings.xml
new file mode 100644
index 0000000..0395b78
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-uk/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Ви не можете здійснювати екстрені виклики через Wi-Fi. Якщо ви спробуєте здійснити екстрений виклик, пристрій автоматично використовуватиме мобільну мережу. Екстрені виклики доступні лише в місцевостях із мобільним покриттям."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ur/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ur/strings.xml
new file mode 100644
index 0000000..214816a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-ur/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"آپ Wi-Fi کالنگ کے ذریعے ایمرجنسی کالز نہیں کر سکتے۔ اگر آپ کوئی ایمرجنسی کال کرنے کی کوشش کرتے ہیں، تو آپ کا آلہ خودکار طور پر موبائل نیٹ ورک کا استعمال کرے گا۔ ایمرجنسی کللز صرف موبائل نیٹ ورک کوریج کے ساتھ ہی کی جا سکتی ہیں۔"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-uz/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-uz/strings.xml
new file mode 100644
index 0000000..85f850a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-uz/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi chaqiruv orqali favqulodda chaqiruvlarni amalga oshirib bo‘lmaydi. Agar favqulodda chaqirishni boshlasangiz, qurilmangiz avtomatik ravishda mobil tarmoqdan foydalanadi. Favqulodda chaqiruvlar faqat mobil tarmoq doirasidagina ishlaydi."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-vi/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-vi/strings.xml
new file mode 100644
index 0000000..e9be889
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-vi/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Bạn không thể thực hiện cuộc gọi khẩn cấp thông qua tính năng Gọi qua Wi-Fi. Nếu bạn cố gắng thực hiện cuộc gọi khẩn cấp, thiết bị của bạn sẽ tự động sử dụng mạng di động. Chỉ có thể thực hiện cuộc gọi khẩn cấp ở những khu vực có phủ sóng mạng di động."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rCN/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rCN/strings.xml
new file mode 100644
index 0000000..a7081cc
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rCN/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"您无法通过 WLAN 通话功能拨打紧急呼救电话。如果您尝试拨打紧急呼救电话,您的设备将自动使用移动网络。您只能在有移动网络的地方拨打紧急呼救电话。"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rHK/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rHK/strings.xml
new file mode 100644
index 0000000..1e96994
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rHK/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"您不可透過 Wi-Fi 通話撥打緊急電話。如果您嘗試撥打緊急電話,裝置會自動使用流動網絡。您只可在有流動網絡覆蓋的地方撥打緊急電話。"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rTW/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rTW/strings.xml
new file mode 100644
index 0000000..bd93898
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zh-rTW/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Wi-Fi 通話功能無法用來撥打緊急電話。如果你嘗試撥打緊急電話,裝置將自動使用行動網路。在行動網路覆蓋的區域中才能撥打緊急電話。"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zu/strings.xml b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zu/strings.xml
new file mode 100644
index 0000000..d557c6f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mcc262-mnc02-zu/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="wifi_calling_off_explanation_2" msgid="4142074253083399456">\n\n"Ungenza amakholi aphuthumayo ngokushaya kwe-Wi-Fi. Uma uzama ukwenza ikholi ephuthumayo, idivayisi yakho izosebenzisa ngokuzenzakalela inethiwekhi yeselula. Amakholi aphuthumayo angenziwa kuphela ezindaweni ezinenethiweki yeselula."</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mk-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-mk-nokeys/strings.xml
new file mode 100644
index 0000000..99e5260
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mk-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Управувај со апликации"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mk/arrays.xml b/tests/CarDeveloperOptions/res/values-mk/arrays.xml
new file mode 100644
index 0000000..1c1b6ec
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mk/arrays.xml
@@ -0,0 +1,355 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америка"</item>
+    <item msgid="4791956477275129121">"Европа"</item>
+    <item msgid="3812126832016254559">"Африка"</item>
+    <item msgid="2765816300353408280">"Азија"</item>
+    <item msgid="6683489385344409742">"Австралија"</item>
+    <item msgid="5194868215515664953">"Пацифик"</item>
+    <item msgid="7044520255415007865">"Сите"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Поврзана"</item>
+    <item msgid="983792611851499732">"Покането"</item>
+    <item msgid="5438273405428201793">"Неуспешно"</item>
+    <item msgid="4646663015449312554">"Достапна"</item>
+    <item msgid="3230556734162006146">"Надвор од опсег"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Последните 30 дена"</item>
+    <item msgid="3211287705232736964">"Пост. цикл. на корист...."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Време на употреба"</item>
+    <item msgid="2784401352592276015">"Користено последен пат"</item>
+    <item msgid="249854287216326349">"Име на апликација"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ниедна"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ниедна"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ниедна"</item>
+    <item msgid="1464741437353223198">"Упатство"</item>
+    <item msgid="5793600062487886090">"Прокси автоконфигурација"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ниедна"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP или CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Внатрешен капацитет"</item>
+    <item msgid="3186681694079967527">"Пренослива СД картичка"</item>
+    <item msgid="6902033473986647035">"Дозволи системот да одлучи"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Локација"</item>
+    <item msgid="6842381562497597649">"Лични"</item>
+    <item msgid="3966700236695683444">"Пораки"</item>
+    <item msgid="8563996233342430477">"Медиуми"</item>
+    <item msgid="5323851085993963783">"Уред"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"приближна локација"</item>
+    <item msgid="1830619568689922920">"точна локација"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"вибрации"</item>
+    <item msgid="8632513128515114092">"прочитај контакти"</item>
+    <item msgid="3741042113569620272">"измени контакти"</item>
+    <item msgid="4204420969709009931">"прочитај евиденција на повици"</item>
+    <item msgid="2260380357119423209">"измени евиденција на повици"</item>
+    <item msgid="6550710385014530934">"прочитај календар"</item>
+    <item msgid="3575906174264853951">"измени календар"</item>
+    <item msgid="4319843242568057174">"Скенирање Wi-Fi"</item>
+    <item msgid="2981791890467303819">"известување"</item>
+    <item msgid="6617825156152476692">"Скенирање мобилен"</item>
+    <item msgid="8865260890611559753">"повикај телефонски број"</item>
+    <item msgid="3254999273961542982">"прочитај SMS порака"</item>
+    <item msgid="7711446453028825171">"напиши SMS порака"</item>
+    <item msgid="6123238544099198034">"прими SMS порака"</item>
+    <item msgid="838342167431596036">"прими SMS пораки за итни случаи"</item>
+    <item msgid="8554432731560956686">"прими MMS порака"</item>
+    <item msgid="7464863464299515059">"прими рекламни пораки на WAP"</item>
+    <item msgid="310463075729606765">"испрати SMS порака"</item>
+    <item msgid="7338021933527689514">"прочитај SMS порака на ICC"</item>
+    <item msgid="6130369335466613036">"напиши SMS порака на ICC"</item>
+    <item msgid="6536865581421670942">"измени поставки"</item>
+    <item msgid="4547203129183558973">"цртај на врвот"</item>
+    <item msgid="9080347512916542840">"пристапи кон известувања"</item>
+    <item msgid="5332718516635907742">"фотоапарат"</item>
+    <item msgid="6098422447246167852">"снимај аудио"</item>
+    <item msgid="9182794235292595296">"репродуцирај аудио"</item>
+    <item msgid="8760743229597702019">"прочитај табла со исечоци"</item>
+    <item msgid="2266923698240538544">"измени табла со исечоци"</item>
+    <item msgid="1801619438618539275">"копчиња на медиуми"</item>
+    <item msgid="31588119965784465">"аудио фокус"</item>
+    <item msgid="7565226799008076833">"основна јачина на звук"</item>
+    <item msgid="5420704980305018295">"јачина на звук на глас"</item>
+    <item msgid="5797363115508970204">"јачина на звук на ѕвонење"</item>
+    <item msgid="8233154098550715999">"јачина на звук на медиуми"</item>
+    <item msgid="5196715605078153950">"јачина на звук на аларм"</item>
+    <item msgid="394030698764284577">"јачина на звук на известување"</item>
+    <item msgid="8952898972491680178">"јачина на звук на Bluetooth"</item>
+    <item msgid="8506227454543690851">"остани активен"</item>
+    <item msgid="1108160036049727420">"следи локација"</item>
+    <item msgid="1496205959751719491">"следи локација од големо значење"</item>
+    <item msgid="3776296279910987380">"добиј статистики за користење"</item>
+    <item msgid="8827100324471975602">"вклучи/исклучи звук на микрофон"</item>
+    <item msgid="6880736730520126864">"прикажи известување"</item>
+    <item msgid="4933375960222609935">"проектирај медиуми"</item>
+    <item msgid="8357907018938895462">"активирај ВПН"</item>
+    <item msgid="8143812849911310973">"напиши тапет"</item>
+    <item msgid="6266277260961066535">"помошна структура"</item>
+    <item msgid="7715498149883482300">"помошна слика од екранот"</item>
+    <item msgid="4046679376726313293">"прочитај ја состојбата на телефонот"</item>
+    <item msgid="6329507266039719587">"додај говорна пошта"</item>
+    <item msgid="7692440726415391408">"користи SIP"</item>
+    <item msgid="8572453398128326267">"обработи појдовен повик"</item>
+    <item msgid="7775674394089376306">"отпечаток"</item>
+    <item msgid="3182815133441738779">"телесни сензори"</item>
+    <item msgid="2793100005496829513">"читај пораки Cell Broadcast"</item>
+    <item msgid="2633626056029384366">"лажна локација"</item>
+    <item msgid="8356842191824684631">"прочитај ја меморијата"</item>
+    <item msgid="5671906070163291500">"напиши во меморијата"</item>
+    <item msgid="2791955098549340418">"вклучи го екранот"</item>
+    <item msgid="5599435119609178367">"земи сметки"</item>
+    <item msgid="1165623660533024666">"извршувај во заднина"</item>
+    <item msgid="6423861043647911030">"јачина на звук на пристапноста"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Кратко"</item>
+    <item msgid="4816511817309094890">"Средно"</item>
+    <item msgid="8305084671259331134">"Долго"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Стандардно"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-Serif збиени"</item>
+    <item msgid="6529379119163117545">"Sans-serif со еднаква ширина"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif со еднаква ширина"</item>
+    <item msgid="4448481989108928248">"Обичен"</item>
+    <item msgid="4627069151979553527">"Курзив"</item>
+    <item msgid="6896773537705206194">"Мали големи букви"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Стандардно"</item>
+    <item msgid="6488643537808152001">"Ниедна"</item>
+    <item msgid="552332815156010137">"Со контури"</item>
+    <item msgid="7187891159463789272">"Со сенка"</item>
+    <item msgid="8019330250538856521">"Поткренати"</item>
+    <item msgid="8987385315647049787">"Вдлабнати"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN со претходно споделени клучеви"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN со сертификати"</item>
+    <item msgid="312397853907741968">"IPSec VPN со претходно споделени клучеви и Xauth автентикација"</item>
+    <item msgid="3319427315593649917">"IPSec VPN со сертификати и Xauth автентикација"</item>
+    <item msgid="8258927774145391041">"IPSec VPN со сертификати и хибридна автентикација"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ништо"</item>
+    <item msgid="1157046369795346308">"Упатство"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Прашај"</item>
+    <item msgid="7718817231348607934">"Никогаш не дозволувај"</item>
+    <item msgid="8184570120217958741">"Секогаш дозволувај"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Постојано"</item>
+    <item msgid="167418068739176448">"Врвна активност"</item>
+    <item msgid="4760813290195199773">"Важно (преден план)"</item>
+    <item msgid="2328684826817647595">"Важно (заднина)"</item>
+    <item msgid="7746406490652867365">"Бекап"</item>
+    <item msgid="5597404364389196754">"Тешка категорија"</item>
+    <item msgid="1290888779300174556">"Услуга (активна)"</item>
+    <item msgid="7241098542073939046">"Услуга (се рестартира)"</item>
+    <item msgid="6610439017684111046">"Приемник"</item>
+    <item msgid="7367606086319921117">"Дома"</item>
+    <item msgid="3344660712396741826">"Последна активност"</item>
+    <item msgid="5006559348883303865">"Кеширана (активност)"</item>
+    <item msgid="8633480732468137525">"Кеширана (клиент за активност)"</item>
+    <item msgid="6248998242443333892">"Кеширана (празна)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Тиркизна"</item>
+    <item msgid="3228505970082457852">"Сина"</item>
+    <item msgid="6590260735734795647">"Индиго"</item>
+    <item msgid="3521763377357218577">"Виолетова"</item>
+    <item msgid="5932337981182999919">"Розова"</item>
+    <item msgid="5642914536624000094">"Црвена"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Постари од 30 дена"</item>
+    <item msgid="8699273238891265610">"Постари од 60 дена"</item>
+    <item msgid="8346279419423837266">"Постари од 90 дена"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Откриј автоматски"</item>
+    <item msgid="773943026484148895">"Сметај како ограничена мрежа"</item>
+    <item msgid="1008268820118852416">"Сметај како неограничена мрежа"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Користи рандомизирана MAC-адреса (стандардно)"</item>
+    <item msgid="214234417308375326">"Користи ја MAC-адресата на уредот"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Не"</item>
+    <item msgid="1930581185557754880">"Да"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Темна"</item>
+    <item msgid="5079453644557603349">"Светла"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Исклучено"</item>
+    <item msgid="4072198137051566919">"Отстранување грешка"</item>
+    <item msgid="2473005316958868509">"Опширно"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Само домашен"</item>
+    <item msgid="1161026694891024702">"Автоматски"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Претпочитан е GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Само GSM"</item>
+    <item msgid="8579197487913425819">"Само WCDMA"</item>
+    <item msgid="8465243227505412498">"Автоматски GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Автоматски CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA без EvDo"</item>
+    <item msgid="7278975240951052041">"Само EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Глобален"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Само TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Глобален"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mk/strings.xml b/tests/CarDeveloperOptions/res/values-mk/strings.xml
index 9b14d1e..dc62405 100644
--- a/tests/CarDeveloperOptions/res/values-mk/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-mk/strings.xml
@@ -128,7 +128,7 @@
     <string name="bluetooth_notif_title" msgid="5090288898529286011">"Барање за спарување"</string>
     <string name="bluetooth_notif_message" msgid="6612367890895077938">"Допрете за да се спари со <xliff:g id="DEVICE_NAME">%1$s</xliff:g>."</string>
     <string name="bluetooth_show_received_files" msgid="5060846395852236652">"Примени датотеки"</string>
-    <string name="bluetooth_show_files_received_via_bluetooth" msgid="1699095577431389560">"Датотеки преку Bluetooth"</string>
+    <string name="bluetooth_show_files_received_via_bluetooth" msgid="1699095577431389560">"Датотеки примени преку Bluetooth"</string>
     <string name="device_picker" msgid="8345264486071697705">"Изберете уред со Bluetooth"</string>
     <string name="bluetooth_ask_enablement" msgid="8716802066127746062">"<xliff:g id="APP_NAME">%1$s</xliff:g> сака да се вклучи Bluetooth"</string>
     <string name="bluetooth_ask_disablement" msgid="7125319551097350783">"<xliff:g id="APP_NAME">%1$s</xliff:g> сака да се исклучи Bluetooth"</string>
@@ -349,8 +349,8 @@
     <string name="time_picker_title" msgid="1596400307061268660">"Време"</string>
     <string name="lock_after_timeout" msgid="7755520959071097304">"Автоматско заклучување"</string>
     <string name="lock_after_timeout_summary" msgid="3160517585613694740">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> по режим на штедење"</string>
-    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Веднаш по спиење, освен кога <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> го чувал отклучен"</string>
-    <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> по мирување, освен кога е активен поради <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g>"</string>
+    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Веднаш по мирувањето, освен кога <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> го држи отклучен"</string>
+    <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> по мирувањето, освен кога <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g> го држи отклучен"</string>
     <string name="show_owner_info_on_lockscreen_label" msgid="4510756693837171575">"Прикажи инфо. за сопственик на екран за заклучув."</string>
     <string name="owner_info_settings_title" msgid="2537966178998339896">"Порака на закл.екран"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"Овозможи виџети"</string>
@@ -1261,7 +1261,7 @@
     <string name="title_font_size" msgid="5021464556860010851">"Големина на фонт"</string>
     <string name="short_summary_font_size" msgid="4141077908728522946">"Намалете го или зголемете го текстот"</string>
     <string name="sim_lock_settings" msgid="1986924650622642189">"Поставки на заклучување на SIM картичка"</string>
-    <string name="sim_lock_settings_category" msgid="1126759898277681516">"Заклучување SIM-картичката"</string>
+    <string name="sim_lock_settings_category" msgid="1126759898277681516">"Заклучување SIM-картичка"</string>
     <string name="sim_lock_settings_summary_off" msgid="348656447968142307">"Исклученo"</string>
     <string name="sim_lock_settings_summary_on" msgid="3440707542514810045">"Заклучено"</string>
     <string name="sim_lock_settings_title" msgid="877336472752342977">"Заклучување на SIM картичката"</string>
@@ -1761,7 +1761,7 @@
     <string name="lockpattern_settings_enable_visible_pattern_title_profile" msgid="5338893138982642228">"Направете ја шемата на профилот видлива"</string>
     <string name="lockpattern_settings_enable_tactile_feedback_title" msgid="3203621862806531947">"Вибрации на допир"</string>
     <string name="lockpattern_settings_enable_power_button_instantly_locks" msgid="5890335732200257777">"Заклучи со копче за вклуч."</string>
-    <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Освен кога е активен поради <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
+    <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Освен кога <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> го држи отклучен"</string>
     <string name="lockpattern_settings_choose_lock_pattern" msgid="9042142745571386381">"Постави шема на отклучување"</string>
     <string name="lockpattern_settings_change_lock_pattern" msgid="1456643060737114885">"Промени шема на отклучување"</string>
     <string name="lockpattern_settings_help_how_to_record" msgid="6037403647312543908">"Како се употребува шемата на отклучување"</string>
@@ -2079,7 +2079,7 @@
     <string name="accessibility_content_timeout_preference_summary" msgid="853829064617918179">"Изберете колку долго да се прикажуваат пораките што треба да ги прочитате, но се видливи само привремено.\n\nНе сите апликации ја поддржуваат оваа поставка."</string>
     <string name="accessibility_control_timeout_preference_summary" msgid="8582212299606932160">"Изберете колку долго да се прикажуваат пораките што бараат да преземете дејство, но се видливи само привремено.\n\nНе сите апликации ја поддржуваат оваа поставка."</string>
     <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"Должина на допир и задржување"</string>
-    <string name="accessibility_display_inversion_preference_title" msgid="3852635518618938998">"Инверзија на боја"</string>
+    <string name="accessibility_display_inversion_preference_title" msgid="3852635518618938998">"Инверзија на бои"</string>
     <string name="accessibility_display_inversion_preference_subtitle" msgid="69291255322175323">"Може да влијае на изведбата"</string>
     <string name="accessibility_autoclick_preference_title" msgid="9164599088410340405">"Тајминг за неактивност"</string>
     <string name="accessibility_autoclick_description" msgid="5492414927846407499">"Ако користите глувче, може да го поставите курсорот да дејствува автоматски кога ќе престане да се движи одредено време."</string>
@@ -2089,8 +2089,8 @@
     <string name="accessibility_ring_vibration_title" msgid="7943341443551359985">"Вибрации при ѕвонење"</string>
     <string name="accessibility_touch_vibration_title" msgid="285890135612038092">"Вибрации при допир"</string>
     <string name="accessibility_service_master_switch_title" msgid="2734791644475782924">"Користи ја услугата"</string>
-    <string name="accessibility_daltonizer_master_switch_title" msgid="4855011639012300777">"Користи корекција на боите"</string>
-    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Користи титли"</string>
+    <string name="accessibility_daltonizer_master_switch_title" msgid="4855011639012300777">"Користи корекција на бои"</string>
+    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Користи титлoви"</string>
     <string name="accessibility_hearingaid_instruction_continue_button" msgid="4650111296711466691">"Продолжи"</string>
     <string name="accessibility_hearingaid_title" msgid="3700978781235124891">"Слушни помагала"</string>
     <string name="accessibility_hearingaid_not_connected_summary" msgid="634573930469952213">"Нема поврзани слушни помагала"</string>
@@ -2459,7 +2459,7 @@
     <string name="battery_saver_turn_on_automatically_never" msgid="2623381258359775227">"Никогаш"</string>
     <string name="battery_saver_turn_on_automatically_pct" msgid="434270432432390307">"при <xliff:g id="PERCENT">%1$s</xliff:g> батерија"</string>
     <string name="battery_percentage" msgid="7782252476471033843">"Процент на батеријата"</string>
-    <string name="battery_percentage_description" msgid="9219875229166700610">"Прикажи го процентот на батеријата во статусната лента"</string>
+    <string name="battery_percentage_description" msgid="9219875229166700610">"Прикажувај процент на батеријата во статусната лента"</string>
     <string name="process_stats_summary_title" msgid="9189588417488537954">"Статистика на процес"</string>
     <string name="process_stats_summary" msgid="8077998499161221885">"Паметна статистика за процеси кои се извршуваат"</string>
     <string name="app_memory_use" msgid="5126237308545653706">"Употреба на меморија"</string>
@@ -3138,7 +3138,7 @@
     <string name="notification_unknown_sound_title" msgid="8043718667804838398">"Звук што го дава апликацијата"</string>
     <string name="notification_sound_default" msgid="2664544380802426260">"Стандарден звук за известување"</string>
     <string name="alarm_ringtone_title" msgid="6411326147408635902">"Стандарден звук за аларм"</string>
-    <string name="vibrate_when_ringing_title" msgid="2757996559847126952">"Вибрации за повици"</string>
+    <string name="vibrate_when_ringing_title" msgid="2757996559847126952">"Вибрирај за повици"</string>
     <string name="other_sound_settings" msgid="5250376066099818676">"Други звуци"</string>
     <string name="dial_pad_tones_title" msgid="8877212139988655769">"Тонови на тастатура за бирање"</string>
     <string name="screen_locking_sounds_title" msgid="4407110895465866809">"Звуци на заклучување екран"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ml-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ml-nokeys/strings.xml
new file mode 100644
index 0000000..e806862
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ml-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"അപ്ലിക്കേഷനുകൾ നിയന്ത്രിക്കുക"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ml/arrays.xml b/tests/CarDeveloperOptions/res/values-ml/arrays.xml
new file mode 100644
index 0000000..db84750
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ml/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"അമേരിക്ക"</item>
+    <item msgid="4791956477275129121">"യൂറോപ്പ്"</item>
+    <item msgid="3812126832016254559">"ആഫ്രിക്ക"</item>
+    <item msgid="2765816300353408280">"ഏഷ്യ"</item>
+    <item msgid="6683489385344409742">"ഓസ്‌ട്രേലിയ"</item>
+    <item msgid="5194868215515664953">"പസഫിക്"</item>
+    <item msgid="7044520255415007865">"എല്ലാം"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 സെക്കൻഡ്"</item>
+    <item msgid="772029947136115322">"30 സെക്കൻഡ്"</item>
+    <item msgid="8743663928349474087">"ഒരു മിനിറ്റ്"</item>
+    <item msgid="1506508631223164814">"2 മിനിറ്റ്"</item>
+    <item msgid="8664703938127907662">"5 മിനിറ്റ്"</item>
+    <item msgid="5827960506924849753">"10 മിനിറ്റ്"</item>
+    <item msgid="6677424950124253938">"30 മിനിറ്റ്"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"കണക്‌റ്റ് ചെയ്‌തു"</item>
+    <item msgid="983792611851499732">"ക്ഷണിച്ചു"</item>
+    <item msgid="5438273405428201793">"പരാജയപ്പെട്ടു"</item>
+    <item msgid="4646663015449312554">"ലഭ്യമാണ്"</item>
+    <item msgid="3230556734162006146">"പരിധിക്കു പുറത്ത്"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 മിനിറ്റ്"</item>
+    <item msgid="2759776603549270587">"5 മിനിറ്റ്"</item>
+    <item msgid="167772676068860015">"ഒരു മണിക്കൂർ"</item>
+    <item msgid="5985477119043628504">"ഒരിക്കലും കാലഹരണപ്പെടരുത്"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"കഴിഞ്ഞ 30 ദിവസം"</item>
+    <item msgid="3211287705232736964">"ഉപയോഗ സൈക്കിൾ സജ്ജമാക്കുക..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ഉപയോഗ സമയം"</item>
+    <item msgid="2784401352592276015">"അവസാനം ഉപയോഗിച്ചത്"</item>
+    <item msgid="249854287216326349">"അപ്ലിക്കേഷൻ പേര്"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ഒന്നുമില്ല"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ഒന്നുമില്ല"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ഒന്നുമില്ല"</item>
+    <item msgid="1464741437353223198">"മാനുവൽ"</item>
+    <item msgid="5793600062487886090">"പ്രോക്‌സി ഓട്ടോകോൺഫിഗറേഷൻ"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ഒന്നുമില്ല"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP അല്ലെങ്കിൽ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ആന്തരിക ഉപകരണ സ്റ്റോറേജ്"</item>
+    <item msgid="3186681694079967527">"നീക്കംചെയ്യാനാകുന്ന SD കാർഡ്"</item>
+    <item msgid="6902033473986647035">"സി‌സ്റ്റത്തിനെ തീരുമാനമെടുക്കാൻ അനുവദിക്കുക"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ലൊക്കേഷൻ"</item>
+    <item msgid="6842381562497597649">"വ്യക്തിഗതം"</item>
+    <item msgid="3966700236695683444">"സന്ദേശം"</item>
+    <item msgid="8563996233342430477">"മീഡിയ"</item>
+    <item msgid="5323851085993963783">"ഉപകരണം"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"മോശം ലൊക്കേഷൻ"</item>
+    <item msgid="1830619568689922920">"നല്ല ലൊക്കേഷൻ"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"വൈബ്രേറ്റുചെയ്യുക"</item>
+    <item msgid="8632513128515114092">"കോൺടാക്റ്റുകൾ റീഡുചെയ്യുക"</item>
+    <item msgid="3741042113569620272">"കോൺടാക്റ്റുകൾ പരിഷ്‌ക്കരിക്കുക"</item>
+    <item msgid="4204420969709009931">"കോൾ ചരിത്രം റീഡ് ചെയ്യുക"</item>
+    <item msgid="2260380357119423209">"കോൾ ചരിത്രം പരിഷ്‌ക്കരിക്കുക"</item>
+    <item msgid="6550710385014530934">"കലണ്ടർ റീഡുചെയ്യുക"</item>
+    <item msgid="3575906174264853951">"കലണ്ടർ പരിഷ്‌ക്കരിക്കുക"</item>
+    <item msgid="4319843242568057174">"wi-fi സ്‌കാൻ"</item>
+    <item msgid="2981791890467303819">"അറിയിപ്പ്"</item>
+    <item msgid="6617825156152476692">"സെൽ സ്‌കാൻ"</item>
+    <item msgid="8865260890611559753">"ഫോണ്‍ വിളിക്കുക"</item>
+    <item msgid="3254999273961542982">"SMS വായിക്കുക"</item>
+    <item msgid="7711446453028825171">"SMS എഴുതുക"</item>
+    <item msgid="6123238544099198034">"SMS നേടുക"</item>
+    <item msgid="838342167431596036">"അടിയന്തര SMS നേടുക"</item>
+    <item msgid="8554432731560956686">"MMS നേടുക"</item>
+    <item msgid="7464863464299515059">"WAP പുഷ് നേടുക"</item>
+    <item msgid="310463075729606765">"SMS അയയ്‌ക്കുക"</item>
+    <item msgid="7338021933527689514">"ICC SMS വായിക്കുക"</item>
+    <item msgid="6130369335466613036">"ICC SMS എഴുതുക"</item>
+    <item msgid="6536865581421670942">"ക്രമീകരണങ്ങൾ പരിഷ്‌ക്കരിക്കുക"</item>
+    <item msgid="4547203129183558973">"മുകളിൽ ഡ്രോ ചെയ്യുക"</item>
+    <item msgid="9080347512916542840">"അറിയിപ്പുകൾ ആക്‌സസ്സുചെയ്യുക"</item>
+    <item msgid="5332718516635907742">"ക്യാമറ"</item>
+    <item msgid="6098422447246167852">"ഓഡിയോ റെക്കോർഡുചെയ്യുക"</item>
+    <item msgid="9182794235292595296">"ഓഡിയോ പ്ലേ ചെയ്യുക"</item>
+    <item msgid="8760743229597702019">"ക്ലിപ്പ്ബോർഡ് റീഡുചെയ്യുക"</item>
+    <item msgid="2266923698240538544">"ക്ലിപ്പ്ബോർഡ് പരിഷ്‌ക്കരിക്കുക"</item>
+    <item msgid="1801619438618539275">"മീഡിയ ബട്ടണുകൾ"</item>
+    <item msgid="31588119965784465">"ഓഡിയോ ഫോക്കസ്"</item>
+    <item msgid="7565226799008076833">"മൊത്തം വോളിയം"</item>
+    <item msgid="5420704980305018295">"വോയ്‌സ് വോളിയം"</item>
+    <item msgid="5797363115508970204">"റിംഗ് വോളിയം"</item>
+    <item msgid="8233154098550715999">"മീഡിയ വോളിയം"</item>
+    <item msgid="5196715605078153950">"അലാറം വോളിയം"</item>
+    <item msgid="394030698764284577">"അറിയിപ്പ് വോളിയം"</item>
+    <item msgid="8952898972491680178">"ബ്ലൂടൂത്ത് വോളിയം"</item>
+    <item msgid="8506227454543690851">"സജീവമായി തുടരുക"</item>
+    <item msgid="1108160036049727420">"ലൊക്കേഷൻ നിരീക്ഷിക്കുക"</item>
+    <item msgid="1496205959751719491">"ഉയർന്ന പവർ ലൊക്കേഷൻ നിരീക്ഷിക്കുക"</item>
+    <item msgid="3776296279910987380">"ഉപയോഗ സ്ഥിതിവിവരക്കണക്കുകൾ നേടുക"</item>
+    <item msgid="8827100324471975602">"മൈക്രോഫോൺ മ്യൂട്ടുചെയ്യുക/അൺമ്യൂട്ടുചെയ്യുക"</item>
+    <item msgid="6880736730520126864">"ടോസ്റ്റ് കാണിക്കുക"</item>
+    <item msgid="4933375960222609935">"പ്രോജക്‌റ്റ് മീഡിയ"</item>
+    <item msgid="8357907018938895462">"VPN സജീവമാക്കുക"</item>
+    <item msgid="8143812849911310973">"വാൾപേപ്പർ എഴുതുക"</item>
+    <item msgid="6266277260961066535">"അസിസ്റ്റ് ഘടന"</item>
+    <item msgid="7715498149883482300">"അസിസ്റ്റ് സ്‌ക്രീൻഷോട്ട്"</item>
+    <item msgid="4046679376726313293">"ഫോൺ നില വായിക്കുക"</item>
+    <item msgid="6329507266039719587">"വോയ്‌സ്‌മെയിൽ ചേർക്കുക"</item>
+    <item msgid="7692440726415391408">"sip ഉപയോഗിക്കുക"</item>
+    <item msgid="8572453398128326267">"ഔട്ട്‌ഗോയിംഗ് കോൾ പ്രോസസ്സുചെയ്യുക"</item>
+    <item msgid="7775674394089376306">"ഫിംഗർപ്രിന്റ്"</item>
+    <item msgid="3182815133441738779">"ബോഡി സെൻസറുകൾ"</item>
+    <item msgid="2793100005496829513">"സെൽ ബ്രോഡ്‌കാസ്റ്റുകൾ വായിക്കുക"</item>
+    <item msgid="2633626056029384366">"മോക്ക് ലൊക്കേഷൻ"</item>
+    <item msgid="8356842191824684631">"സ്റ്റോറേജ് വായിക്കുക"</item>
+    <item msgid="5671906070163291500">"സ്റ്റോറേജ് എഴുതുക"</item>
+    <item msgid="2791955098549340418">"സ്ക്രീൻ ഓണാക്കുക"</item>
+    <item msgid="5599435119609178367">"അക്കൗണ്ടുകൾ സ്വന്തമാക്കുക"</item>
+    <item msgid="1165623660533024666">"പശ്ചാത്തലത്തിൽ റൺ ചെയ്യുക"</item>
+    <item msgid="6423861043647911030">"ഉപയോഗസഹായി വോളിയം"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"ഹ്രസ്വം"</item>
+    <item msgid="4816511817309094890">"ഇടത്തരം"</item>
+    <item msgid="8305084671259331134">"ദൈർഘ്യമുള്ളത്"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ഡിഫോൾട്ട്"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif കട്ടിയുള്ളത്"</item>
+    <item msgid="6529379119163117545">"Sans-serif മോണോസ്പെയ്സ്"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif മോണോസ്പെയ്സ്"</item>
+    <item msgid="4448481989108928248">"സാധാരണം"</item>
+    <item msgid="4627069151979553527">"കൂട്ടെഴുത്ത്"</item>
+    <item msgid="6896773537705206194">"ചെറിയ കാപ്പിറ്റലുകൾ"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ഡിഫോൾട്ട്"</item>
+    <item msgid="6488643537808152001">"ഒന്നുമില്ല"</item>
+    <item msgid="552332815156010137">"ഔട്ട്‍ലൈൻ"</item>
+    <item msgid="7187891159463789272">"ഡ്രോപ്പ് ഷാഡോ"</item>
+    <item msgid="8019330250538856521">"ഉയർന്ന് നിൽക്കുന്നത്"</item>
+    <item msgid="8987385315647049787">"താഴ്ന്നത്"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"മുമ്പ് പങ്കിട്ട കീകൾ ഉപയോഗിക്കുന്ന L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"സർട്ടിഫിക്കറ്റുകൾ ഉപയോഗിക്കുന്ന L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"മുമ്പ് പങ്കിട്ട കീകളും Xauth പ്രമാണീകരണവും ഉപയോഗിക്കുന്ന IPSec VPN"</item>
+    <item msgid="3319427315593649917">"സർട്ടിഫിക്കറ്റുകളും Xauth പ്രമാണീകരണവും ഉപയോഗിക്കുന്ന IPSec VPN"</item>
+    <item msgid="8258927774145391041">"സർട്ടിഫിക്കറ്റുകളും ഹൈബ്രിഡ് പ്രാമാണീകരണവുമുള്ള IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ഒന്നുമില്ല"</item>
+    <item msgid="1157046369795346308">"മാനുവൽ"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ചോദിക്കുക"</item>
+    <item msgid="7718817231348607934">"ഒരിക്കലുമനുവദിക്കരുത്"</item>
+    <item msgid="8184570120217958741">"എല്ലായ്‌പ്പോഴും അനുവദിക്കുക"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"നിരന്തരമായ"</item>
+    <item msgid="167418068739176448">"മികച്ച പ്രവർത്തനം"</item>
+    <item msgid="4760813290195199773">"പ്രധാനം (ഫോർഗ്രൗണ്ട്)"</item>
+    <item msgid="2328684826817647595">"പ്രധാനം (പശ്ചാത്തലം)"</item>
+    <item msgid="7746406490652867365">"ബാക്കപ്പെടുക്കുക"</item>
+    <item msgid="5597404364389196754">"കനത്ത ഭാരം"</item>
+    <item msgid="1290888779300174556">"സേവനം (പ്രവർത്തിക്കുന്നു)"</item>
+    <item msgid="7241098542073939046">"സേവനം (പുനരാരംഭിക്കുന്നു)"</item>
+    <item msgid="6610439017684111046">"റിസീവർ"</item>
+    <item msgid="7367606086319921117">"ഹോം"</item>
+    <item msgid="3344660712396741826">"അവസാന പ്രവർത്തനം"</item>
+    <item msgid="5006559348883303865">"കാഷെചെയ്‌തു (പ്രവർത്തനം)"</item>
+    <item msgid="8633480732468137525">"കാഷെചെയ്‌തു (പ്രവർത്തന ക്ലയന്റ്)"</item>
+    <item msgid="6248998242443333892">"കാഷെചെയ്‌തു (ശൂന്യം)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ടീല്‍"</item>
+    <item msgid="3228505970082457852">"നീല"</item>
+    <item msgid="6590260735734795647">"ഇൻഡിഗോ"</item>
+    <item msgid="3521763377357218577">"പര്‍പ്പിള്‍"</item>
+    <item msgid="5932337981182999919">"പിങ്ക്"</item>
+    <item msgid="5642914536624000094">"ചുവപ്പ്"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 ദിവസത്തിലധികം പഴയത്"</item>
+    <item msgid="8699273238891265610">"60 ദിവസത്തിലധികം പഴയത്"</item>
+    <item msgid="8346279419423837266">"90 ദിവസത്തിലധികം പഴയത്"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"സ്വയമേവ കണ്ടെത്തുക"</item>
+    <item msgid="773943026484148895">"മീറ്റർ-മാപകമായി കണക്കാക്കുക"</item>
+    <item msgid="1008268820118852416">"മീറ്റർ മാപകമല്ലാത്തതായി കണക്കാക്കുക"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ക്രമരഹിതമാക്കിയ MAC ഉപയോഗിക്കുക (ഡിഫോൾട്ട്)"</item>
+    <item msgid="214234417308375326">"MAC ഉപകരണം ഉപയോഗിക്കുക"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ഇല്ല"</item>
+    <item msgid="1930581185557754880">"അതെ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ഇരുണ്ട"</item>
+    <item msgid="5079453644557603349">"ഇളം"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ഓഫ്"</item>
+    <item msgid="4072198137051566919">"ഡീബഗ് ചെയ്യുക"</item>
+    <item msgid="2473005316958868509">"വെർ‌ബോസ്"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ഹോം മാത്രം"</item>
+    <item msgid="1161026694891024702">"സ്വയമേവ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"മുൻഗണന നൽകുന്നത് GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"GSM മാത്രം"</item>
+    <item msgid="8579197487913425819">"WCDMA മാത്രം"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA സ്വമേധയാ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo സ്വമേധയാ"</item>
+    <item msgid="4219607161971472471">"EvDo ഇല്ലാത്ത CDMA"</item>
+    <item msgid="7278975240951052041">"EvDo മാത്രം"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ആഗോളം"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA മാത്രം"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/സിം"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ആഗോളം"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mn-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-mn-nokeys/strings.xml
new file mode 100644
index 0000000..f52e975
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mn-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Аппликейшн удирдах"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mn/arrays.xml b/tests/CarDeveloperOptions/res/values-mn/arrays.xml
new file mode 100644
index 0000000..68d790e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mn/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америк"</item>
+    <item msgid="4791956477275129121">"Европ"</item>
+    <item msgid="3812126832016254559">"Африк"</item>
+    <item msgid="2765816300353408280">"Ази"</item>
+    <item msgid="6683489385344409742">"Австрали"</item>
+    <item msgid="5194868215515664953">"Номхон далай"</item>
+    <item msgid="7044520255415007865">"Бүгд"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 секунд"</item>
+    <item msgid="772029947136115322">"30 секунд"</item>
+    <item msgid="8743663928349474087">"1 минут"</item>
+    <item msgid="1506508631223164814">"2 минут"</item>
+    <item msgid="8664703938127907662">"5 минут"</item>
+    <item msgid="5827960506924849753">"10 минут"</item>
+    <item msgid="6677424950124253938">"30 минут"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Жижиг"</item>
+    <item msgid="591935967183159581">"Өгөгдмөл"</item>
+    <item msgid="1714184661981538355">"Том"</item>
+    <item msgid="6195563047686707484">"Хамгийн том"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Скан хийж байна…"</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> руу холбогдож байна…"</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>-тай гэрчилж байна…"</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>-с IP хаягийг авч байна…"</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> руу холбогдсон"</item>
+    <item msgid="6600156231416890902">"Түр хаасан"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>-с салгагдаж байна…"</item>
+    <item msgid="3980154971187953257">"Салгагдсан"</item>
+    <item msgid="2847316776634969068">"Амжилтгүй"</item>
+    <item msgid="4390990424746035383">"Хориглогдсон"</item>
+    <item msgid="3618248791367063949">"Муу холболтоос түр зайлсхийж байна"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Товчлуур"</item>
+    <item msgid="7401896200768713930">"Түнш төхөөрөмжийн PIN"</item>
+    <item msgid="4526848028011846710">"Энэ төхөөрөмжөөс PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Холбогдсон"</item>
+    <item msgid="983792611851499732">"Уригдсан"</item>
+    <item msgid="5438273405428201793">"Амжилтгүй"</item>
+    <item msgid="4646663015449312554">"Боломжтой"</item>
+    <item msgid="3230556734162006146">"Хүрээнээс гарсан"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 минут"</item>
+    <item msgid="2759776603549270587">"5 минут"</item>
+    <item msgid="167772676068860015">"1 цаг"</item>
+    <item msgid="5985477119043628504">"Хэзээ ч завсарлахгүй"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Сүүлийн 30 өдөр"</item>
+    <item msgid="3211287705232736964">"Ашиглалтын циклийг тохируулах..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Ашиглалтын цаг"</item>
+    <item msgid="2784401352592276015">"Ашигласан сүүлийн цаг"</item>
+    <item msgid="249854287216326349">"Апп нэр"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Байхгүй"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Байхгүй"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Статик"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Байхгүй"</item>
+    <item msgid="1464741437353223198">"Гар ажиллагаатай"</item>
+    <item msgid="5793600062487886090">"Прокси автомат-тохируулга"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Байхгүй"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP буюу CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Дотоод төхөөрөмжийн сан"</item>
+    <item msgid="3186681694079967527">"Авагддаг SD карт"</item>
+    <item msgid="6902033473986647035">"Системээр шийдүүлэх"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Байршил"</item>
+    <item msgid="6842381562497597649">"Хувийн"</item>
+    <item msgid="3966700236695683444">"Зурвас"</item>
+    <item msgid="8563996233342430477">"Медиа"</item>
+    <item msgid="5323851085993963783">"Төхөөрөмж"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"бүдүүн байршил"</item>
+    <item msgid="1830619568689922920">"сайн байршил"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"чичиргээ"</item>
+    <item msgid="8632513128515114092">"харилцагчдыг унших"</item>
+    <item msgid="3741042113569620272">"харилцагчдыг өөрчлөх"</item>
+    <item msgid="4204420969709009931">"дуудлагын жагсаалтыг унших"</item>
+    <item msgid="2260380357119423209">"дуудлагын жагсаалтыг өөрчлөх"</item>
+    <item msgid="6550710385014530934">"хуанли унших"</item>
+    <item msgid="3575906174264853951">"календарийг өөрчлөх"</item>
+    <item msgid="4319843242568057174">"wi-fi скан"</item>
+    <item msgid="2981791890467303819">"мэдэгдэл"</item>
+    <item msgid="6617825156152476692">"үүрэн скан"</item>
+    <item msgid="8865260890611559753">"утас руу залгах"</item>
+    <item msgid="3254999273961542982">"SMS унших"</item>
+    <item msgid="7711446453028825171">"SMS бичих"</item>
+    <item msgid="6123238544099198034">"SMS хүлээн авах"</item>
+    <item msgid="838342167431596036">"яаралтай SMS хүлээж авах"</item>
+    <item msgid="8554432731560956686">"MMS хүлээн авах"</item>
+    <item msgid="7464863464299515059">"WAP хүлээн авах"</item>
+    <item msgid="310463075729606765">"SMS илгээх"</item>
+    <item msgid="7338021933527689514">"ICC SMS унших"</item>
+    <item msgid="6130369335466613036">"ICC SMS бичих"</item>
+    <item msgid="6536865581421670942">"тохиргоог өөрчлөх"</item>
+    <item msgid="4547203129183558973">"дээр нь нээх"</item>
+    <item msgid="9080347512916542840">"мэдэгдэлд хандах"</item>
+    <item msgid="5332718516635907742">"камер"</item>
+    <item msgid="6098422447246167852">"аудио бичих"</item>
+    <item msgid="9182794235292595296">"аудио тоглуулах"</item>
+    <item msgid="8760743229597702019">"түр санах ойг унших"</item>
+    <item msgid="2266923698240538544">"түр санах ойг өөрчлөх"</item>
+    <item msgid="1801619438618539275">"медиа товч"</item>
+    <item msgid="31588119965784465">"аудио фокус"</item>
+    <item msgid="7565226799008076833">"үндсэн дууны хэмжээ"</item>
+    <item msgid="5420704980305018295">"хоолойн дууны хэмжээ"</item>
+    <item msgid="5797363115508970204">"хонхны дууны түвшин"</item>
+    <item msgid="8233154098550715999">"медиа дууны түвшин"</item>
+    <item msgid="5196715605078153950">"сэрүүлгийн дууны түвшин"</item>
+    <item msgid="394030698764284577">"мэдэгдлийн дууны хэмжээ"</item>
+    <item msgid="8952898972491680178">"блютүүтийн хэмжээ"</item>
+    <item msgid="8506227454543690851">"сэрүүн байлгах"</item>
+    <item msgid="1108160036049727420">"байршлыг хянах"</item>
+    <item msgid="1496205959751719491">"өндөр чадалтай байршлуудыг хянах"</item>
+    <item msgid="3776296279910987380">"ашиглалтын статистик авах"</item>
+    <item msgid="8827100324471975602">"Микрофон хаах/нээх"</item>
+    <item msgid="6880736730520126864">"toast харуулах"</item>
+    <item msgid="4933375960222609935">"төслийн медиа"</item>
+    <item msgid="8357907018938895462">"VPN идэвхжүүлэх"</item>
+    <item msgid="8143812849911310973">"ханын зураг бичих"</item>
+    <item msgid="6266277260961066535">"бүтцийг өөрчлөх"</item>
+    <item msgid="7715498149883482300">"дэлгэцийн агшинг өөрчлөх"</item>
+    <item msgid="4046679376726313293">"гар утасны төлөвийг унших"</item>
+    <item msgid="6329507266039719587">"дуут шуудан нэмэх"</item>
+    <item msgid="7692440726415391408">"sip ашиглах"</item>
+    <item msgid="8572453398128326267">"залгах дуудлагыг боловсруулах"</item>
+    <item msgid="7775674394089376306">"хурууны хээ"</item>
+    <item msgid="3182815133441738779">"биеийн мэдрэгч"</item>
+    <item msgid="2793100005496829513">"үүрэн нэвтрүүлгийг унших"</item>
+    <item msgid="2633626056029384366">"хуурамч байршил"</item>
+    <item msgid="8356842191824684631">"санах ойг унших"</item>
+    <item msgid="5671906070163291500">"санах ойг бичих"</item>
+    <item msgid="2791955098549340418">"дэлгэцийг асаах"</item>
+    <item msgid="5599435119609178367">"бүртгэл авах"</item>
+    <item msgid="1165623660533024666">"дэвсгэрт ажиллуулах"</item>
+    <item msgid="6423861043647911030">"хүртээмжийн дууны түвшин"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Богино"</item>
+    <item msgid="4816511817309094890">"Дунд"</item>
+    <item msgid="8305084671259331134">"Урт"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Өгөгдмөл"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Өгөгдмөл"</item>
+    <item msgid="6488643537808152001">"Байхгүй"</item>
+    <item msgid="552332815156010137">"Гадна хүрээ"</item>
+    <item msgid="7187891159463789272">"Сүүдэр тусгах"</item>
+    <item msgid="8019330250538856521">"Товгор"</item>
+    <item msgid="8987385315647049787">"Ухмал"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Апп-н үндсэнийг ашиглах"</item>
+    <item msgid="8611890312638868524">"Хар дээр цагаан"</item>
+    <item msgid="5891360837786277638">"Цагаан дээр хар"</item>
+    <item msgid="2798457065945456853">"Хар дээр шар"</item>
+    <item msgid="5799049811524553967">"Цэнхэр дээр шар"</item>
+    <item msgid="3673930830658169860">"Тусгай"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"Урьдчилан хуваалцсан L2TP/IPSec VPN түлхүүртэй"</item>
+    <item msgid="6128519070545038358">"Сертификаттай L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"Урьдчилан хуваалцсан түлхүүртэй IPSec VPN болон Xauth гэрчлэлт"</item>
+    <item msgid="3319427315593649917">"Сертификат болон Xauth гэрчлэл бүхий IPSec VPN"</item>
+    <item msgid="8258927774145391041">"Сертификат болон холимог гэрчлэл бүхий IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Хоосон"</item>
+    <item msgid="1157046369795346308">"Гар ажиллагаатай"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Салгагдсан"</item>
+    <item msgid="8754480102834556765">"Эхлүүлж байна…"</item>
+    <item msgid="3351334355574270250">"Холбогдож байна..."</item>
+    <item msgid="8303882153995748352">"Холбогдсон"</item>
+    <item msgid="9135049670787351881">"Завсарлага"</item>
+    <item msgid="2124868417182583926">"Амжилтгүй"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Асуух"</item>
+    <item msgid="7718817231348607934">"Хэзээ ч зөвшөөрөхгүй"</item>
+    <item msgid="8184570120217958741">"Байнга зөвшөөрөх"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Тогтвортой"</item>
+    <item msgid="167418068739176448">"Топ үйлдэл"</item>
+    <item msgid="4760813290195199773">"Чухал (ил)"</item>
+    <item msgid="2328684826817647595">"Чухал (далд)"</item>
+    <item msgid="7746406490652867365">"Нөөцлөх"</item>
+    <item msgid="5597404364389196754">"Хүнд жинтэй"</item>
+    <item msgid="1290888779300174556">"Үйлчилгээ (ажиллаж байгаа)"</item>
+    <item msgid="7241098542073939046">"Үйлчилгээ (дахин ачааллалт)"</item>
+    <item msgid="6610439017684111046">"Хүлээн авагч"</item>
+    <item msgid="7367606086319921117">"Нүүр"</item>
+    <item msgid="3344660712396741826">"Сүүлийн үйлдэл"</item>
+    <item msgid="5006559348883303865">"Кеш хийгдсэн (үйлдэл)"</item>
+    <item msgid="8633480732468137525">"Кеш хийгдсэн (үйлдэлийн клиент)"</item>
+    <item msgid="6248998242443333892">"Кеш хийгдсэн (хоосон)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Усан цэнхэр"</item>
+    <item msgid="3228505970082457852">"Цэнхэр"</item>
+    <item msgid="6590260735734795647">"Индиго"</item>
+    <item msgid="3521763377357218577">"Ягаан"</item>
+    <item msgid="5932337981182999919">"Ягаан"</item>
+    <item msgid="5642914536624000094">"Улаан"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 гаруй хоног хадгална"</item>
+    <item msgid="8699273238891265610">"60 гаруй хоног хадгална"</item>
+    <item msgid="8346279419423837266">"90 гаруй хоног хадгална"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Автоматаар илрүүлэх"</item>
+    <item msgid="773943026484148895">"Хязгаартайгаар тохируулах"</item>
+    <item msgid="1008268820118852416">"Хязгааргүйгээр тохируулах"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Санамсаргүй үүссэн MAC-г ашиглах (өгөгдмөл)"</item>
+    <item msgid="214234417308375326">"Төхөөрөмжийн MAC-г ашиглах"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Үгүй"</item>
+    <item msgid="1930581185557754880">"Тийм"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Бараан"</item>
+    <item msgid="5079453644557603349">"Цайвар"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Идэвхгүй"</item>
+    <item msgid="4072198137051566919">"Дебаг хийх"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Зөвхөн гэр"</item>
+    <item msgid="1161026694891024702">"Автомат"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA нь давуу эрхтэй"</item>
+    <item msgid="7581481130337402578">"Зөвхөн GSM"</item>
+    <item msgid="8579197487913425819">"Зөвхөн WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA автомат"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo автомат"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"Зөвхөн EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Глобал"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"Зөвхөн TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Глобал"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mn/strings.xml b/tests/CarDeveloperOptions/res/values-mn/strings.xml
index a766f59..9713732 100644
--- a/tests/CarDeveloperOptions/res/values-mn/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-mn/strings.xml
@@ -426,7 +426,7 @@
     <string name="security_settings_face_settings_require_confirmation_details" msgid="8740564864091803429">"Аппад нотолгоожуулах үед үргэлж баталгаажуулалт шаардах"</string>
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"Царайны өгөгдлийг хасах"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"Та царайгаа төхөөрөмжийн түгжээ тайлах болон аппад нэвтрэхэд ашиглах боломжтой. "<annotation id="url">"Нэмэлт мэдээлэл авах"</annotation></string>
-    <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"Царайн өгөгдлийг устгах уу?"</string>
+    <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"Царайны өгөгдлийг устгах уу?"</string>
     <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"Царайгаар тайлах онцлогоор бичсэн өгөгдлийг бүрмөсөн, аюулгүйгээр устгана. Та үүнийг устгасны дараа утасныхаа түгжээг тайлах, аппуудад нэвтрэх болон төлбөрийг баталгаажуулахын тулд ПИН, хээ эсвэл нууц үгээ оруулах шаардлагатай болно."</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"Хурууны хээ"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"Хурууны хээ удирдах"</string>
@@ -2078,7 +2078,7 @@
     <string name="accessibility_control_timeout_preference_title" msgid="2771808346038759474">"Үйлдэл хийх хугацаа"</string>
     <string name="accessibility_content_timeout_preference_summary" msgid="853829064617918179">"Та унших шаардлагатай хэдий ч зөвхөн түр хугацаанд харагддаг мессежийг хэр удаан харуулахыг сонгоно уу.\n\nЗарим апп энэ тохиргоог дэмждэггүй."</string>
     <string name="accessibility_control_timeout_preference_summary" msgid="8582212299606932160">"Танаас үйлдэл хийхийг шаарддаг хэдий ч зөвхөн түр хугацаанд харагддаг зурвасыг хэр удаан хугацаагаар харуулахыг сонгоно уу.\n\nЗарим апп энэ тохиргоог дэмждэггүй."</string>
-    <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"Хүрэх &amp; барих хүлээлт"</string>
+    <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"Хүрээд &amp; барьж хүлээх"</string>
     <string name="accessibility_display_inversion_preference_title" msgid="3852635518618938998">"Өнгө урвуулалт"</string>
     <string name="accessibility_display_inversion_preference_subtitle" msgid="69291255322175323">"Үзүүлбэрт нөлөөлж болзошгүй"</string>
     <string name="accessibility_autoclick_preference_title" msgid="9164599088410340405">"Тодорхой хугацаа"</string>
diff --git a/tests/CarDeveloperOptions/res/values-mr-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-mr-nokeys/strings.xml
new file mode 100644
index 0000000..ff41980
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mr-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"अॅप्लिकेशन व्‍यवस्‍थापित करा"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-mr/arrays.xml b/tests/CarDeveloperOptions/res/values-mr/arrays.xml
new file mode 100644
index 0000000..fc6d78b
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-mr/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"अमेरिका"</item>
+    <item msgid="4791956477275129121">"युरोप"</item>
+    <item msgid="3812126832016254559">"आफ्रिका"</item>
+    <item msgid="2765816300353408280">"आशिया"</item>
+    <item msgid="6683489385344409742">"ऑस्ट्रेलिया"</item>
+    <item msgid="5194868215515664953">"पॅसिफिक"</item>
+    <item msgid="7044520255415007865">"सर्व"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 सेकंद"</item>
+    <item msgid="772029947136115322">"३० सेकंद"</item>
+    <item msgid="8743663928349474087">"एक मिनिट"</item>
+    <item msgid="1506508631223164814">"दोन मिनिटे"</item>
+    <item msgid="8664703938127907662">"5 मिनिटे"</item>
+    <item msgid="5827960506924849753">"10 मिनिटे"</item>
+    <item msgid="6677424950124253938">"30 मिनिटे"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"कनेक्ट केलेले आहे"</item>
+    <item msgid="983792611851499732">"आमंत्रित केले"</item>
+    <item msgid="5438273405428201793">"अयशस्वी"</item>
+    <item msgid="4646663015449312554">"उपलब्ध आहे"</item>
+    <item msgid="3230556734162006146">"परिक्षेत्राच्या बाहेर"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"दोन मिनिटे"</item>
+    <item msgid="2759776603549270587">"5 मिनिटे"</item>
+    <item msgid="167772676068860015">"एक तास"</item>
+    <item msgid="5985477119043628504">"कधीही टाइमआउट नाही"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"अंतिम 30 दिवस"</item>
+    <item msgid="3211287705232736964">"वापर चक्र सेट करा..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"वापर वेळ"</item>
+    <item msgid="2784401352592276015">"अंतिम वेळी वापरलेले"</item>
+    <item msgid="249854287216326349">"अ‍ॅप नाव"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"काहीही नाही"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"काहीही नाही"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"काहीही नाही"</item>
+    <item msgid="1464741437353223198">"व्यक्तिचलित"</item>
+    <item msgid="5793600062487886090">"प्रॉक्सी ऑटो-कॉन्फिग"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"काहीही नाही"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP किंवा CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"अंतर्गत डिव्हाइस स्टोरेज"</item>
+    <item msgid="3186681694079967527">"काढण्यायोग्य SD कार्ड"</item>
+    <item msgid="6902033473986647035">"सिस्टम ला ठरवू द्या"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"स्थान"</item>
+    <item msgid="6842381562497597649">"वैयक्तिक"</item>
+    <item msgid="3966700236695683444">"मेसेजिंग"</item>
+    <item msgid="8563996233342430477">"मीडिया"</item>
+    <item msgid="5323851085993963783">"डिव्हाइस"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"खडबडीत स्थान"</item>
+    <item msgid="1830619568689922920">"उत्कृष्ट स्थान"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"व्हायब्रेट होणे"</item>
+    <item msgid="8632513128515114092">"संपर्क वाचा"</item>
+    <item msgid="3741042113569620272">"संपर्क सुधारित करा"</item>
+    <item msgid="4204420969709009931">"कॉल लॉग वाचा"</item>
+    <item msgid="2260380357119423209">"कॉल लॉग सुधारित करा"</item>
+    <item msgid="6550710385014530934">"कॅलेंडर वाचा"</item>
+    <item msgid="3575906174264853951">"कॅलेंडर सुधारित करा"</item>
+    <item msgid="4319843242568057174">"वाय-फाय स्कॅन"</item>
+    <item msgid="2981791890467303819">"सूचना"</item>
+    <item msgid="6617825156152476692">"सेल स्कॅन"</item>
+    <item msgid="8865260890611559753">"फोनवर कॉल करा"</item>
+    <item msgid="3254999273961542982">"SMS वाचा"</item>
+    <item msgid="7711446453028825171">"SMS लिहा"</item>
+    <item msgid="6123238544099198034">"SMS प्राप्त करा"</item>
+    <item msgid="838342167431596036">"आणीबाणी SMS प्राप्त करा"</item>
+    <item msgid="8554432731560956686">"MMS प्राप्त करा"</item>
+    <item msgid="7464863464299515059">"WAP पुश प्राप्त करा"</item>
+    <item msgid="310463075729606765">"SMS पाठवा"</item>
+    <item msgid="7338021933527689514">"ICC SMS वाचा"</item>
+    <item msgid="6130369335466613036">"ICC SMS लिहा"</item>
+    <item msgid="6536865581421670942">"सेटिंग्ज सुधारित करा"</item>
+    <item msgid="4547203129183558973">"शीर्षस्थानी रेखांकित करा"</item>
+    <item msgid="9080347512916542840">"सूचना अ‍ॅक्सेस करा"</item>
+    <item msgid="5332718516635907742">"कॅमेरा"</item>
+    <item msgid="6098422447246167852">"ऑडिओ रेकॉर्ड करा"</item>
+    <item msgid="9182794235292595296">"ऑडिओ प्ले करा"</item>
+    <item msgid="8760743229597702019">"क्लिपबोर्ड वाचा"</item>
+    <item msgid="2266923698240538544">"क्लिपबोर्ड सुधारित करा"</item>
+    <item msgid="1801619438618539275">"मीडिया बटण"</item>
+    <item msgid="31588119965784465">"ऑडिओ फोकस"</item>
+    <item msgid="7565226799008076833">"प्रमुख व्हॉल्यूम"</item>
+    <item msgid="5420704980305018295">"व्हॉईस व्हॉल्यूम"</item>
+    <item msgid="5797363115508970204">"रिंग व्हॉल्यूम"</item>
+    <item msgid="8233154098550715999">"मीडिया व्हॉल्यूम"</item>
+    <item msgid="5196715605078153950">"अलार्म व्हॉल्यूम"</item>
+    <item msgid="394030698764284577">"सूचना व्हॉल्यूम"</item>
+    <item msgid="8952898972491680178">"ब्लूटूथ व्हॉल्यूम"</item>
+    <item msgid="8506227454543690851">"सक्रिय ठेवा"</item>
+    <item msgid="1108160036049727420">"स्थानाचे परीक्षण करा"</item>
+    <item msgid="1496205959751719491">"उच्च पॉवर स्थानाचे परीक्षण करा"</item>
+    <item msgid="3776296279910987380">"वापर आकडेवारी मिळवा"</item>
+    <item msgid="8827100324471975602">"मायक्रोफोन निःशब्द/सशब्द करा"</item>
+    <item msgid="6880736730520126864">"टोस्ट दर्शवा"</item>
+    <item msgid="4933375960222609935">"प्रोजेक्‍ट मीडिया"</item>
+    <item msgid="8357907018938895462">"VPN सक्रिय करा"</item>
+    <item msgid="8143812849911310973">"लिहिण्याचा वॉलपेपर"</item>
+    <item msgid="6266277260961066535">"सहाय्य रचना"</item>
+    <item msgid="7715498149883482300">"सहाय्य स्क्रीनशॉट"</item>
+    <item msgid="4046679376726313293">"फोन स्थिती वाचा"</item>
+    <item msgid="6329507266039719587">"व्हॉइसमेल जोडा"</item>
+    <item msgid="7692440726415391408">"सिप वापरा"</item>
+    <item msgid="8572453398128326267">"केल्या जाणार्‍या कॉलवर प्रक्रिया करा"</item>
+    <item msgid="7775674394089376306">"फिंगरप्रिंट"</item>
+    <item msgid="3182815133441738779">"शरीर सेन्सर"</item>
+    <item msgid="2793100005496829513">"सेल ब्रॉडकास्ट वाचा"</item>
+    <item msgid="2633626056029384366">"बनावट स्थान"</item>
+    <item msgid="8356842191824684631">"वाचण्‍याचा स्टोरेज"</item>
+    <item msgid="5671906070163291500">"लिहिण्‍याचा स्टोरेज"</item>
+    <item msgid="2791955098549340418">"स्क्रीन चालू करा"</item>
+    <item msgid="5599435119609178367">"खाती मिळवा"</item>
+    <item msgid="1165623660533024666">"पार्श्वभूमीमध्ये चालवा"</item>
+    <item msgid="6423861043647911030">"प्रवेशयोग्यता आकारमान"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"लघु"</item>
+    <item msgid="4816511817309094890">"मध्‍यम"</item>
+    <item msgid="8305084671259331134">"दीर्घ"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"डीफॉल्ट"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif संक्षिप्त"</item>
+    <item msgid="6529379119163117545">"Sans-serif मोनोस्पेस"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif मोनोस्पेस"</item>
+    <item msgid="4448481989108928248">"अनौपचारिक"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"डीफॉल्ट"</item>
+    <item msgid="6488643537808152001">"काहीही नाही"</item>
+    <item msgid="552332815156010137">"रुपरेषा"</item>
+    <item msgid="7187891159463789272">"ड्रॉप शॅडो"</item>
+    <item msgid="8019330250538856521">"उन्नत"</item>
+    <item msgid="8987385315647049787">"हताश"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"५०%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"१००%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"पूर्व-शेअर की सह L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"प्रमाणपत्रांसह L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"पूर्व-शेअर की आणि Xauth प्रमाणीकरणासह IPSec VPN"</item>
+    <item msgid="3319427315593649917">"प्रमाणपत्रे आणि Xauth प्रमाणीकरणासह IPSec VPN"</item>
+    <item msgid="8258927774145391041">"प्रमाणपत्रे आणि संकरित प्रमाणीकरणासह IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"काहीही नाही"</item>
+    <item msgid="1157046369795346308">"व्यक्तिचलित"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"विचारा"</item>
+    <item msgid="7718817231348607934">"कधीही अनुमती देऊ नका"</item>
+    <item msgid="8184570120217958741">"नेहमी अनुमती द्या"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"कायम"</item>
+    <item msgid="167418068739176448">"आघाडीच्या अॅक्टिव्हिटी"</item>
+    <item msgid="4760813290195199773">"महत्त्वाचे (अग्रभाग)"</item>
+    <item msgid="2328684826817647595">"महत्त्वाचे (पार्श्वभूमी)"</item>
+    <item msgid="7746406490652867365">"बॅकअप"</item>
+    <item msgid="5597404364389196754">"सरासरी वजनापेक्षा जास्त"</item>
+    <item msgid="1290888779300174556">"सेवा (चालत आहे)"</item>
+    <item msgid="7241098542073939046">"सेवा (रीस्टार्ट करत आहे)"</item>
+    <item msgid="6610439017684111046">"प्राप्तकर्ता"</item>
+    <item msgid="7367606086319921117">"होम"</item>
+    <item msgid="3344660712396741826">"शेवटच्या अॅक्टिव्हिटी"</item>
+    <item msgid="5006559348883303865">"कॅशे केलेली (अॅक्टिव्हिटी)"</item>
+    <item msgid="8633480732468137525">"कॅशे केलेला (अॅक्टिव्हिटी क्लायंट)"</item>
+    <item msgid="6248998242443333892">"कॅश   केलेला (रिक्त)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"हिरवट निळा"</item>
+    <item msgid="3228505970082457852">"निळा"</item>
+    <item msgid="6590260735734795647">"नीळ"</item>
+    <item msgid="3521763377357218577">"जांभळा"</item>
+    <item msgid="5932337981182999919">"गुलाबी"</item>
+    <item msgid="5642914536624000094">"लाल"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 दिवसांपेक्षा अधिक जुने"</item>
+    <item msgid="8699273238891265610">"60 दिवसांपेक्षा अधिक जुने"</item>
+    <item msgid="8346279419423837266">"90 दिवसांपेक्षा अधिक जुने"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"आपोआप शोधा"</item>
+    <item msgid="773943026484148895">"मर्यादित डेटा वापराचे नेटवर्क"</item>
+    <item msgid="1008268820118852416">"अमर्याद डेटा वापराचे नेटवर्क"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"रँडमाइझ केलेले MAC वापरा (डीफॉल्ट)"</item>
+    <item msgid="214234417308375326">"डिव्हाइस MAC वापरा"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"नाही"</item>
+    <item msgid="1930581185557754880">"होय"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"गडद"</item>
+    <item msgid="5079453644557603349">"फिकी"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"बंद"</item>
+    <item msgid="4072198137051566919">"डीबग करा"</item>
+    <item msgid="2473005316958868509">"शब्दबंबाळ"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"केवळ होम"</item>
+    <item msgid="1161026694891024702">"स्वयंचलित"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA प्राधान्यकृत"</item>
+    <item msgid="7581481130337402578">"केवळ GSM"</item>
+    <item msgid="8579197487913425819">"केवळ WCDMA"</item>
+    <item msgid="8465243227505412498">"आपोआप GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"आपोआप CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"केवळ EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"जागतिक"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"केवळ TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/सिम"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"जागतिक"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ms-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ms-nokeys/strings.xml
new file mode 100644
index 0000000..7cecc06
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ms-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Urus aplikasi"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ms/arrays.xml b/tests/CarDeveloperOptions/res/values-ms/arrays.xml
new file mode 100644
index 0000000..2a07dcf
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ms/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Eropah"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pasifik"</item>
+    <item msgid="7044520255415007865">"Semua"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 saat"</item>
+    <item msgid="772029947136115322">"30 saat"</item>
+    <item msgid="8743663928349474087">"1 minit"</item>
+    <item msgid="1506508631223164814">"2 minit"</item>
+    <item msgid="8664703938127907662">"5 minit"</item>
+    <item msgid="5827960506924849753">"10 minit"</item>
+    <item msgid="6677424950124253938">"30 minit"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Kecil"</item>
+    <item msgid="591935967183159581">"Lalai"</item>
+    <item msgid="1714184661981538355">"Besar"</item>
+    <item msgid="6195563047686707484">"Terbesar"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Mengimbas..."</item>
+    <item msgid="8058143476674427024">"Menyambung kepada <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Mengesahkan dengan <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Mendapatkan alamat IP daripada <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Disambungkan kepada <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Digantung"</item>
+    <item msgid="4133290864821295785">"Memutuskan sambungan dari <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Diputuskan sambungan"</item>
+    <item msgid="2847316776634969068">"Tidak berjaya"</item>
+    <item msgid="4390990424746035383">"Disekat"</item>
+    <item msgid="3618248791367063949">"Mengelakkan sambungan lemah buat sementara"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Butang tekan"</item>
+    <item msgid="7401896200768713930">"PIN daripada peranti rakan"</item>
+    <item msgid="4526848028011846710">"PIN dari peranti ini"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Disambungkan"</item>
+    <item msgid="983792611851499732">"Dijemput"</item>
+    <item msgid="5438273405428201793">"Tidak berjaya"</item>
+    <item msgid="4646663015449312554">"Tersedia"</item>
+    <item msgid="3230556734162006146">"Di luar liputan"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minit"</item>
+    <item msgid="2759776603549270587">"5 minit"</item>
+    <item msgid="167772676068860015">"1 jam"</item>
+    <item msgid="5985477119043628504">"Jangan sekali-kali tamat masa"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 hari terakhir"</item>
+    <item msgid="3211287705232736964">"Ttpkn kitar penggunaan..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Masa penggunaan"</item>
+    <item msgid="2784401352592276015">"Kali terakhir digunakan"</item>
+    <item msgid="249854287216326349">"Nama aplikasi"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Tiada"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Tiada"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statik"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Tiada"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Auto Konfigurasi Proksi"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Tiada"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP atau CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Storan dalaman peranti"</item>
+    <item msgid="3186681694079967527">"Kad SD boleh tanggal"</item>
+    <item msgid="6902033473986647035">"Biar sistem menentukan"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokasi"</item>
+    <item msgid="6842381562497597649">"Peribadi"</item>
+    <item msgid="3966700236695683444">"Pemesejan"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Peranti"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"lokasi kasar"</item>
+    <item msgid="1830619568689922920">"lokasi terperinci"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"bergetar"</item>
+    <item msgid="8632513128515114092">"baca kenalan"</item>
+    <item msgid="3741042113569620272">"ubah suai kenalan"</item>
+    <item msgid="4204420969709009931">"baca log panggilan"</item>
+    <item msgid="2260380357119423209">"ubah suai log panggilan"</item>
+    <item msgid="6550710385014530934">"baca kalendar"</item>
+    <item msgid="3575906174264853951">"ubah suai kalendar"</item>
+    <item msgid="4319843242568057174">"imbasan wi-fi"</item>
+    <item msgid="2981791890467303819">"pemberitahuan"</item>
+    <item msgid="6617825156152476692">"imbasan sel"</item>
+    <item msgid="8865260890611559753">"Hubungi telefon"</item>
+    <item msgid="3254999273961542982">"baca SMS"</item>
+    <item msgid="7711446453028825171">"tulis SMS"</item>
+    <item msgid="6123238544099198034">"terima SMS"</item>
+    <item msgid="838342167431596036">"terima SMS kecemasan"</item>
+    <item msgid="8554432731560956686">"terima MMS"</item>
+    <item msgid="7464863464299515059">"terima penolakan WAP"</item>
+    <item msgid="310463075729606765">"hantar SMS"</item>
+    <item msgid="7338021933527689514">"baca SMS ICC"</item>
+    <item msgid="6130369335466613036">"tulis SMS ICC"</item>
+    <item msgid="6536865581421670942">"ubah suai tetapan"</item>
+    <item msgid="4547203129183558973">"lukiskan di atas"</item>
+    <item msgid="9080347512916542840">"pemberitahuan akses"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"rakam audio"</item>
+    <item msgid="9182794235292595296">"mainkan audio"</item>
+    <item msgid="8760743229597702019">"baca papan keratan"</item>
+    <item msgid="2266923698240538544">"ubah suai papan keratan"</item>
+    <item msgid="1801619438618539275">"butang media"</item>
+    <item msgid="31588119965784465">"tumpuan audio"</item>
+    <item msgid="7565226799008076833">"kelantangan induk"</item>
+    <item msgid="5420704980305018295">"kelantangan suara"</item>
+    <item msgid="5797363115508970204">"kelantangan deringan"</item>
+    <item msgid="8233154098550715999">"kelantangan media"</item>
+    <item msgid="5196715605078153950">"kelantangan penggera"</item>
+    <item msgid="394030698764284577">"kelantangan pemberitahuan"</item>
+    <item msgid="8952898972491680178">"kelantangan bluetooth"</item>
+    <item msgid="8506227454543690851">"kekal berjaga"</item>
+    <item msgid="1108160036049727420">"pantau lokasi"</item>
+    <item msgid="1496205959751719491">"awasi lokasi kuasa tinggi"</item>
+    <item msgid="3776296279910987380">"dapatkan statistik penggunaan"</item>
+    <item msgid="8827100324471975602">"redam/nyahredam mikrofon"</item>
+    <item msgid="6880736730520126864">"tunjukkan toast"</item>
+    <item msgid="4933375960222609935">"media projek"</item>
+    <item msgid="8357907018938895462">"aktifkan VPN"</item>
+    <item msgid="8143812849911310973">"tulis kertas dinding"</item>
+    <item msgid="6266277260961066535">"bantu struktur"</item>
+    <item msgid="7715498149883482300">"bantu tangkapan skrin"</item>
+    <item msgid="4046679376726313293">"baca keadaan telefon"</item>
+    <item msgid="6329507266039719587">"tambahkan mel suara"</item>
+    <item msgid="7692440726415391408">"gunakan sip"</item>
+    <item msgid="8572453398128326267">"proses panggilan keluar"</item>
+    <item msgid="7775674394089376306">"cap jari"</item>
+    <item msgid="3182815133441738779">"penderia badan"</item>
+    <item msgid="2793100005496829513">"baca siaran sel"</item>
+    <item msgid="2633626056029384366">"lokasi palsu"</item>
+    <item msgid="8356842191824684631">"baca storan"</item>
+    <item msgid="5671906070163291500">"tulis storan"</item>
+    <item msgid="2791955098549340418">"hidupkan skrin"</item>
+    <item msgid="5599435119609178367">"dapatkan akaun"</item>
+    <item msgid="1165623660533024666">"jalankan di latar belakang"</item>
+    <item msgid="6423861043647911030">"kelantangan kebolehaksesan"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Pendek"</item>
+    <item msgid="4816511817309094890">"Sederhana"</item>
+    <item msgid="8305084671259331134">"Panjang"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Lalai"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif diringkaskan"</item>
+    <item msgid="6529379119163117545">"Sans-serif monoruang"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monoruang"</item>
+    <item msgid="4448481989108928248">"Kasual"</item>
+    <item msgid="4627069151979553527">"Tulisan sambung"</item>
+    <item msgid="6896773537705206194">"Huruf besar bersaiz kecil"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Lalai"</item>
+    <item msgid="6488643537808152001">"Tiada"</item>
+    <item msgid="552332815156010137">"Garis bentuk"</item>
+    <item msgid="7187891159463789272">"Huruf bayang"</item>
+    <item msgid="8019330250538856521">"Timbul"</item>
+    <item msgid="8987385315647049787">"Direndahkan"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Gunakan tetapan lalai apl"</item>
+    <item msgid="8611890312638868524">"Putih pada hitam"</item>
+    <item msgid="5891360837786277638">"Hitam pada putih"</item>
+    <item msgid="2798457065945456853">"Kuning pada hitam"</item>
+    <item msgid="5799049811524553967">"Kuning pada biru"</item>
+    <item msgid="3673930830658169860">"Tersuai"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"VPN L2TP/IPSec dengan kunci prakongsi"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec dengan sijil"</item>
+    <item msgid="312397853907741968">"VPN IPSec dengan kunci prakongsi dan pengesahan Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec dengan sijil dan pengesahan Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec dengan sijil dan pengesahan hibrid"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Tiada"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Diputuskan sambungan"</item>
+    <item msgid="8754480102834556765">"Memulakan..."</item>
+    <item msgid="3351334355574270250">"Menyambung..."</item>
+    <item msgid="8303882153995748352">"Disambungkan"</item>
+    <item msgid="9135049670787351881">"Tamat masa"</item>
+    <item msgid="2124868417182583926">"Tidak berjaya"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Tanya"</item>
+    <item msgid="7718817231348607934">"Jangan benarkan"</item>
+    <item msgid="8184570120217958741">"Sentiasa benarkan"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Berterusan"</item>
+    <item msgid="167418068739176448">"Aktiviti popular"</item>
+    <item msgid="4760813290195199773">"Penting (latar depan)"</item>
+    <item msgid="2328684826817647595">"Penting (latar belakang)"</item>
+    <item msgid="7746406490652867365">"Sandaran"</item>
+    <item msgid="5597404364389196754">"Berat"</item>
+    <item msgid="1290888779300174556">"Perkhidmatan (berjalan)"</item>
+    <item msgid="7241098542073939046">"Perkhidmatan (bermula semula)"</item>
+    <item msgid="6610439017684111046">"Penerima"</item>
+    <item msgid="7367606086319921117">"Laman Utama"</item>
+    <item msgid="3344660712396741826">"Aktiviti terakhir"</item>
+    <item msgid="5006559348883303865">"Cache (aktiviti)"</item>
+    <item msgid="8633480732468137525">"Cache (klien aktiviti)"</item>
+    <item msgid="6248998242443333892">"Cache (kosong)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Hijau kebiruan"</item>
+    <item msgid="3228505970082457852">"Biru"</item>
+    <item msgid="6590260735734795647">"Biru nila"</item>
+    <item msgid="3521763377357218577">"Ungu"</item>
+    <item msgid="5932337981182999919">"Merah jambu"</item>
+    <item msgid="5642914536624000094">"Merah"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Lebih 30 hari"</item>
+    <item msgid="8699273238891265610">"Lebih 60 hari"</item>
+    <item msgid="8346279419423837266">"Lebih 90 hari"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Kesan secara automatik"</item>
+    <item msgid="773943026484148895">"Anggap sebagai bermeter"</item>
+    <item msgid="1008268820118852416">"Anggap sebagai tidak bermeter"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Gunakan MAC terawak (lalai)"</item>
+    <item msgid="214234417308375326">"Gunakan MAC peranti"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Tidak"</item>
+    <item msgid="1930581185557754880">"Ya"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Gelap"</item>
+    <item msgid="5079453644557603349">"Cerah"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Mati"</item>
+    <item msgid="4072198137051566919">"Nyahpepijat"</item>
+    <item msgid="2473005316958868509">"Berjela-jela"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Rumah sahaja"</item>
+    <item msgid="1161026694891024702">"Automatik"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA diutamakan"</item>
+    <item msgid="7581481130337402578">"GSM sahaja"</item>
+    <item msgid="8579197487913425819">"WCDMA sahaja"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA auto"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo auto"</item>
+    <item msgid="4219607161971472471">"CDMA tanpa EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo sahaja"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA sahaja"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-my-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-my-nokeys/strings.xml
new file mode 100644
index 0000000..8323908
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-my-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"အပလီကေးရှင်းများကို စီမံကွပ်ကဲရန်"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-my/arrays.xml b/tests/CarDeveloperOptions/res/values-my/arrays.xml
new file mode 100644
index 0000000..349175d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-my/arrays.xml
@@ -0,0 +1,355 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"အမေရိကား"</item>
+    <item msgid="4791956477275129121">"ဥရောပ"</item>
+    <item msgid="3812126832016254559">"အာဖရိက"</item>
+    <item msgid="2765816300353408280">"အာရှ"</item>
+    <item msgid="6683489385344409742">"သြစတေးလျ"</item>
+    <item msgid="5194868215515664953">"ပစိဖိတ်"</item>
+    <item msgid="7044520255415007865">"အားလုံး"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"ချိတ်ဆက်ထားသည်"</item>
+    <item msgid="983792611851499732">"ဖိတ်ခေါ်ထားပြီး"</item>
+    <item msgid="5438273405428201793">"မအောင်မြင်ပါ"</item>
+    <item msgid="4646663015449312554">"အသုံးပြုနိုင်သည်"</item>
+    <item msgid="3230556734162006146">"စက်ကွင်းပြင်ပ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"နောက်ဆုံး ရက် ၃၀"</item>
+    <item msgid="3211287705232736964">"သုံးစွဲမှု စက်ဝန်း သတ်မှတ်ရန်..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"အသုံးပြုအချိန်"</item>
+    <item msgid="2784401352592276015">"နောက်ဆုံး အကြိမ် အသုံးပြုခဲ့"</item>
+    <item msgid="249854287216326349">"အပ်ပလီကေးရှင်းအမည်"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"မရှိ"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"မရှိ"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"မရှိ"</item>
+    <item msgid="1464741437353223198">"ကိုယ်တိုင်ထည့်သွင်းခြင်း"</item>
+    <item msgid="5793600062487886090">"ပရောက်စီ အော်တို-စီစဉ်"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"မရှိ"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP သို့မဟုတ် CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"စက်တွင်းသိုလှောင်ကိရိယာ"</item>
+    <item msgid="3186681694079967527">"ဖယ်ရှား၍ရသောSDကတ်"</item>
+    <item msgid="6902033473986647035">"စနစ်အား ဆုံးဖြတ်ပါစေ"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"တည်နေရာ"</item>
+    <item msgid="6842381562497597649">"ကိုယ်ရေး"</item>
+    <item msgid="3966700236695683444">"စာပို့ခြင်း"</item>
+    <item msgid="8563996233342430477">"မီဒီယာ"</item>
+    <item msgid="5323851085993963783">"စက်ပစ္စည်း"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"တည်နေရာအကြမ်း"</item>
+    <item msgid="1830619568689922920">"တည်နေရာအချော"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"တုန်ခါခြင်း"</item>
+    <item msgid="8632513128515114092">"အဆက်အသွယ်များဖတ်ရန်"</item>
+    <item msgid="3741042113569620272">"အဆက်အသွယ်များအား ပြင်ဆင်ရန်"</item>
+    <item msgid="4204420969709009931">"ခေါ်ဆိုထားသော မှတ်တမ်းကိုဖတ်ရန်"</item>
+    <item msgid="2260380357119423209">"ခေါ်ဆိုထားသော မှတ်တမ်းကို ပြင်ဆင်ရန်"</item>
+    <item msgid="6550710385014530934">"ပြက္ခဒိန်ဖတ်ရန်"</item>
+    <item msgid="3575906174264853951">"ပြက္ခဒိန်ပြင်ဆင်ရန်"</item>
+    <item msgid="4319843242568057174">"Wi-Fi  ရှာဖွေရန်"</item>
+    <item msgid="2981791890467303819">"အကြောင်းကြားချက်"</item>
+    <item msgid="6617825156152476692">"ဆဲလ်ဖြန့်ကြက်စူးစမ်းသည်"</item>
+    <item msgid="8865260890611559753">"ဖုန်းခေါ်ရန်"</item>
+    <item msgid="3254999273961542982">"စာတိုဖတ်ရန်"</item>
+    <item msgid="7711446453028825171">"စာတိုရေးရန်"</item>
+    <item msgid="6123238544099198034">"စာတိုလက်ခံရန်"</item>
+    <item msgid="838342167431596036">"အရေးပေါ်စာတိုလက်ခံရန်"</item>
+    <item msgid="8554432731560956686">"ရုပ်သံစာလက်ခံရန်"</item>
+    <item msgid="7464863464299515059">"WAP push လက်ခံရန်"</item>
+    <item msgid="310463075729606765">"စာတိုပို့ရန်"</item>
+    <item msgid="7338021933527689514">"ကဒ်ထဲမှ စာတိုဖတ်ရန်"</item>
+    <item msgid="6130369335466613036">"ICC စာတိုရေးရန်"</item>
+    <item msgid="6536865581421670942">"ဆက်တင်များ ပြင်ဆင်ရန်"</item>
+    <item msgid="4547203129183558973">"အပေါ်မှ ဆွဲရန်"</item>
+    <item msgid="9080347512916542840">"အကြောင်းကြားချက်များအား အသုံးပြုခွင့်"</item>
+    <item msgid="5332718516635907742">"ကင်မရာ"</item>
+    <item msgid="6098422447246167852">"အသံဖမ်းခြင်း"</item>
+    <item msgid="9182794235292595296">"အသံဖွင့်ခြင်း"</item>
+    <item msgid="8760743229597702019">"နောက်ခံမှတ်တမ်း ဖတ်ရန်"</item>
+    <item msgid="2266923698240538544">"နောက်ခံမှတ်တမ်းပြင်ဆင်ရန်"</item>
+    <item msgid="1801619438618539275">"မီဒီယာခလုတ်များ"</item>
+    <item msgid="31588119965784465">"အသံပြတ်သားအောင်ချိန်ရန်"</item>
+    <item msgid="7565226799008076833">"ပင်မအသံအတိုးအကျယ်"</item>
+    <item msgid="5420704980305018295">"စကားသံအတိုးအကျယ်"</item>
+    <item msgid="5797363115508970204">"ဖုန်းမြည်သံ အတိုးအကျယ်"</item>
+    <item msgid="8233154098550715999">"မီဒီယာအသံအတိုးအကျယ်"</item>
+    <item msgid="5196715605078153950">"နှိုးစက်သံအတိုးအကျယ်"</item>
+    <item msgid="394030698764284577">"အကြောင်းကြားသံအတိုးအကျယ်"</item>
+    <item msgid="8952898972491680178">"ဘလူးတုသ်သံအတိုးအကျယ်"</item>
+    <item msgid="8506227454543690851">"ဖွင့်လျှက်ထားရှိရန်"</item>
+    <item msgid="1108160036049727420">"တည်နေရာအား စောင့်ကြည့်စစ်ဆေးရန်"</item>
+    <item msgid="1496205959751719491">"စွမ်းအားမြင့် ဖန်သားပြင် တည်နေရာ"</item>
+    <item msgid="3776296279910987380">"သုံးစွဲမှု စာရင်းအင်းများကို ရယူရန်"</item>
+    <item msgid="8827100324471975602">"မိုက်ခရိုဖုန်း အသံတိတ်/မတိတ်ရန်"</item>
+    <item msgid="6880736730520126864">"အမည်ကို ပြပါ"</item>
+    <item msgid="4933375960222609935">"ပရိုဂျက် မီဒီယာ"</item>
+    <item msgid="8357907018938895462">"VPN ကို စဖွင့်သုံးပါ"</item>
+    <item msgid="8143812849911310973">"နောက်ခံကို ရေးပါ"</item>
+    <item msgid="6266277260961066535">"ဖွဲ့စည်းပုံကို ကူညီပါ"</item>
+    <item msgid="7715498149883482300">"မျက်နှာပြင်ကို ကူညီပါ"</item>
+    <item msgid="4046679376726313293">"ဖုန်း အခြေအနေကို ဖတ်ပါ"</item>
+    <item msgid="6329507266039719587">"အသံမေးလ်ကို ထည့်ပါ"</item>
+    <item msgid="7692440726415391408">"ငုံခြင်းကို သုံးပါ"</item>
+    <item msgid="8572453398128326267">"အထွက် ခေါ်ဆိုမှုများကို စီမံဆောင်ရွက်ပါ"</item>
+    <item msgid="7775674394089376306">"လက်ဗွေ"</item>
+    <item msgid="3182815133441738779">"ခန္ဓာကိုယ် အာရုံခံကိရိယာများ"</item>
+    <item msgid="2793100005496829513">"ဆဲလ် ထုတ်လွှင့်မှုများကို ဖတ်ပါ"</item>
+    <item msgid="2633626056029384366">"တည်နေရာကို အတုဖန်တီးပါ"</item>
+    <item msgid="8356842191824684631">"သိုလှောင်ခန်းကို ဖတ်ပါ"</item>
+    <item msgid="5671906070163291500">"သိုလှောင်ခန်းကို ရေးပါ"</item>
+    <item msgid="2791955098549340418">"မျက်နှာပြင်ကို ဖွင့်ပါ"</item>
+    <item msgid="5599435119609178367">"အကောင့်များကို ရယူပါ"</item>
+    <item msgid="1165623660533024666">"နောက်ခံမှာ အလုပ်လုပ်ပါ"</item>
+    <item msgid="6423861043647911030">"အများသုံးစွဲနိုင်မှု အသံ"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"အတို"</item>
+    <item msgid="4816511817309094890">"အတော်အသင့်"</item>
+    <item msgid="8305084671259331134">"အရှည်"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"မူရင်း"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casua"</item>
+    <item msgid="4627069151979553527">"Cursiv"</item>
+    <item msgid="6896773537705206194">"စာလုံးကြီး ဆိုဒ်သေးများ"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"မူရင်း"</item>
+    <item msgid="6488643537808152001">"မရှိ"</item>
+    <item msgid="552332815156010137">"အနားသတ်"</item>
+    <item msgid="7187891159463789272">"အရိပ်ချပေး"</item>
+    <item msgid="8019330250538856521">"မြှင့်ရန်"</item>
+    <item msgid="8987385315647049787">"နှိမ့်ချရန်"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"၂၅%"</item>
+    <item msgid="4665048002584838262">"၅၀%"</item>
+    <item msgid="1874668269931014581">"၇၅%"</item>
+    <item msgid="6462911487571123954">"၁၀၀%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"ကြိုတင် ပေးထားတဲ့ ကီးပါရှိသောL2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"အသိအမှတ်ပြုလက်မှတ်ပါရှိသောL2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"ကြိုတင်ပေးထားတဲ့ ကီးနှင့်Xauthစစ်မှန်ကြောင်းပါရှိသောIPSec VPN"</item>
+    <item msgid="3319427315593649917">"အသိအမှတ်ပြုလက်မှတ်နှင့်Xauthစစ်မှန်ကြောင်းပါရှိသောIPSec VPN"</item>
+    <item msgid="8258927774145391041">"အသိအမှတ်ပြုလက်မှတ်များနှင့် ရောနှောထားတဲ့ စစ်မှန်ကြောင်းပါရှိသောIPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"မရှိ"</item>
+    <item msgid="1157046369795346308">"ကိုယ်တိုင်ထည့်သွင်းခြင်း"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"မေးပါ"</item>
+    <item msgid="7718817231348607934">"ဘယ်တော့မှခွင့်မပြုပါ"</item>
+    <item msgid="8184570120217958741">"အမြဲခွင့်ပြုပါ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"တချိန်လုံး"</item>
+    <item msgid="167418068739176448">"အသုံး အများဆုံး"</item>
+    <item msgid="4760813290195199773">"အရေးကြီး (ရှေ့ပိုင်း)"</item>
+    <item msgid="2328684826817647595">"အရေးကြီး (နောက်ခံ)"</item>
+    <item msgid="7746406490652867365">"အရန်သိမ်းရန်"</item>
+    <item msgid="5597404364389196754">"အထူး ကြီးလေး"</item>
+    <item msgid="1290888779300174556">"ဝန်ဆောင်မှု (ဖွင့်ထား)"</item>
+    <item msgid="7241098542073939046">"ဝန်ဆောင်မှု (ပြန်ဖွင့်နေ)"</item>
+    <item msgid="6610439017684111046">"လက်ခံယူသူ"</item>
+    <item msgid="7367606086319921117">"ပင်မ"</item>
+    <item msgid="3344660712396741826">"နောက်ဆုံးအကြိမ် အသုံးပြုမှု"</item>
+    <item msgid="5006559348883303865">"ကက်ရှ လုပ်ထား (အသုံးပြုမှု)"</item>
+    <item msgid="8633480732468137525">"ကက်ရှ လုပ်ထား (အသုံးပြုသူ ဖောက်သည်)"</item>
+    <item msgid="6248998242443333892">"ကက်ရှ် လုပ်ထား (ဗလာ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"စိမ်းပြာ"</item>
+    <item msgid="3228505970082457852">"အပြာ"</item>
+    <item msgid="6590260735734795647">"မဲနယ်"</item>
+    <item msgid="3521763377357218577">"ခရမ်း"</item>
+    <item msgid="5932337981182999919">"ပန်းရောင်"</item>
+    <item msgid="5642914536624000094">"အနီ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"ရက်ပေါင်း ၃၀ ထက်ကျော်သော"</item>
+    <item msgid="8699273238891265610">"ရက်ပေါင်း ၆၀ ထက်ကျော်သော"</item>
+    <item msgid="8346279419423837266">"ရက်ပေါင်း ၉၀ ထက်ကျော်သော"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"၁"</item>
+    <item msgid="3118234477029486741">"၀"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"အလိုအလျောက် ရှာရန်"</item>
+    <item msgid="773943026484148895">"အခမဲ့ မဟုတ်သော အသုံးပြုခြင်းအဖြစ် သတ်မှတ်ရန်"</item>
+    <item msgid="1008268820118852416">"အခမဲ့ အသုံးပြုခြင်းအဖြစ် သတ်မှတ်ရန်"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ကျပန်း MAC ကို အသုံးပြုရန် (မူရင်း)"</item>
+    <item msgid="214234417308375326">"စက်၏ MAC သုံးရန်"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"No"</item>
+    <item msgid="1930581185557754880">"Yes"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"အမှောင်"</item>
+    <item msgid="5079453644557603349">"အလင်း"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ပိတ်ထားသည်"</item>
+    <item msgid="4072198137051566919">"အမှားရှာပြင်ခြင်း"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"အိမ်ကိုသာ"</item>
+    <item msgid="1161026694891024702">"အလိုအလျောက်"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA သုံးလိုပါသည်"</item>
+    <item msgid="7581481130337402578">"GSM သာ"</item>
+    <item msgid="8579197487913425819">"WCDMA သာ"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA အလိုအလျောက်ပြောင်းရန်"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo အလိုအလျောက်ပြောင်းရန်"</item>
+    <item msgid="4219607161971472471">"EvDo မပါသည့် CDMA"</item>
+    <item msgid="7278975240951052041">"EvDo သာ"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ကမ္ဘာအနှံ့"</item>
+    <item msgid="5713723042183940349">"မြန်နှုန်းမြင့်လိုင်း"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA သာ"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ကမ္ဘာအနှံ့"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-my/strings.xml b/tests/CarDeveloperOptions/res/values-my/strings.xml
index 172be49..0b152fe 100644
--- a/tests/CarDeveloperOptions/res/values-my/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-my/strings.xml
@@ -383,7 +383,7 @@
     <string name="decryption_settings_summary" product="default" msgid="7401802133199522441">"ဖုန်းကို အသွင်ဝှက်မထားပါ"</string>
     <string name="encryption_and_credential_settings_summary" product="tablet" msgid="8170667308598998791">"စက်ပစ္စည်းကို အသွင်ဝှက်ထားသည်"</string>
     <string name="decryption_settings_summary" product="tablet" msgid="7524119945312453569">"စက်ပစ္စည်းကို အသွင်ဝှက်မထားပါ"</string>
-    <string name="lockscreen_settings_title" msgid="1221505938891948413">"လော့ခ်ချထားချိန် မျက်နှာပြင်ပြသမှု"</string>
+    <string name="lockscreen_settings_title" msgid="1221505938891948413">"လော့ခ်ချထားချိန် ဖန်သားပြင်ပြသမှု"</string>
     <string name="lockscreen_settings_what_to_show_category" msgid="3133378945821488654">"ပြသမည့်အရာ"</string>
     <string name="security_settings_summary" msgid="5210109100643223686">"ကျွန်ုပ်၏တည်နေရာ စကရင်ကိုသော့ဖွင့်ခြင်း ဆင်းမ်ကဒ်သော့ချခြင်း ယုံကြည်စိတ်ချရသောသိုလှောင်ရာနေရာတို့ကို သတ်မှတ်မည်"</string>
     <string name="cdma_security_settings_summary" msgid="1783066617800041869">"ကျွန်ုပ်၏တည်နေရာ၊ စကရင်ပြန်ဖွင့်ခြင်း၊ ယုံကြည်စိတ်ချရသောသိုလှောင်ရာနေရာတို့အား သတ်မှတ်မည်"</string>
diff --git a/tests/CarDeveloperOptions/res/values-nb-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-nb-nokeys/strings.xml
new file mode 100644
index 0000000..4319eff
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-nb-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Installerte apper, hurtigtaster"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-nb/arrays.xml b/tests/CarDeveloperOptions/res/values-nb/arrays.xml
new file mode 100644
index 0000000..290f0f2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-nb/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Stillehavet"</item>
+    <item msgid="7044520255415007865">"Alle"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekunder"</item>
+    <item msgid="772029947136115322">"30 sekunder"</item>
+    <item msgid="8743663928349474087">"1 minutt"</item>
+    <item msgid="1506508631223164814">"2 minutter"</item>
+    <item msgid="8664703938127907662">"5 minutter"</item>
+    <item msgid="5827960506924849753">"10 minutter"</item>
+    <item msgid="6677424950124253938">"30 minutter"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Liten"</item>
+    <item msgid="591935967183159581">"Standard"</item>
+    <item msgid="1714184661981538355">"Stor"</item>
+    <item msgid="6195563047686707484">"Størst"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skanner …"</item>
+    <item msgid="8058143476674427024">"Kobler til <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="7547609081339573756">"Autentiserer med <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="5145158315060185414">"Henter IP-adresse fra <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="3283243151651124831">"Koblet til <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Satt på vent"</item>
+    <item msgid="4133290864821295785">"Kobler fra <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="3980154971187953257">"Frakoblet"</item>
+    <item msgid="2847316776634969068">"Mislykket"</item>
+    <item msgid="4390990424746035383">"Blokkert"</item>
+    <item msgid="3618248791367063949">"Unngår dårlig tilkobling midlertidig"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Knapp for autokonfig."</item>
+    <item msgid="7401896200768713930">"Personlig kode fra motpart"</item>
+    <item msgid="4526848028011846710">"Kode fra enheten"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Tilkoblet"</item>
+    <item msgid="983792611851499732">"Invitert"</item>
+    <item msgid="5438273405428201793">"Mislykket"</item>
+    <item msgid="4646663015449312554">"Tilgjengelig"</item>
+    <item msgid="3230556734162006146">"Utenfor rekkevidde"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutter"</item>
+    <item msgid="2759776603549270587">"5 minutter"</item>
+    <item msgid="167772676068860015">"1 time"</item>
+    <item msgid="5985477119043628504">"Aldri tidsavbrudd"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"De siste 30 dagene"</item>
+    <item msgid="3211287705232736964">"Angi brukssyklus"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Brukstid"</item>
+    <item msgid="2784401352592276015">"Sist brukt"</item>
+    <item msgid="249854287216326349">"Navn på app"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ingen"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ingen"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statisk"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ingen"</item>
+    <item msgid="1464741437353223198">"Brukerveiledning"</item>
+    <item msgid="5793600062487886090">"Auto-oppsett av proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ingen"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Intern lagringsenhet"</item>
+    <item msgid="3186681694079967527">"Flyttbart minnekort"</item>
+    <item msgid="6902033473986647035">"La systemet bestemme"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Sted"</item>
+    <item msgid="6842381562497597649">"Personlig"</item>
+    <item msgid="3966700236695683444">"Meldinger"</item>
+    <item msgid="8563996233342430477">"Medier"</item>
+    <item msgid="5323851085993963783">"Enhet"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"anslått posisjon"</item>
+    <item msgid="1830619568689922920">"nøyaktig posisjon"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrer"</item>
+    <item msgid="8632513128515114092">"lesing av kontakter"</item>
+    <item msgid="3741042113569620272">"Endre kontaktene"</item>
+    <item msgid="4204420969709009931">"Lese anropsloggen"</item>
+    <item msgid="2260380357119423209">"Endre anropsloggen"</item>
+    <item msgid="6550710385014530934">"lesing av kalender"</item>
+    <item msgid="3575906174264853951">"Endre kalenderen"</item>
+    <item msgid="4319843242568057174">"Wi-Fi-skann"</item>
+    <item msgid="2981791890467303819">"varsel"</item>
+    <item msgid="6617825156152476692">"mobiltelefonskann"</item>
+    <item msgid="8865260890611559753">"ring til telefon"</item>
+    <item msgid="3254999273961542982">"Les SMS"</item>
+    <item msgid="7711446453028825171">"Skriv SMS"</item>
+    <item msgid="6123238544099198034">"Motta SMS"</item>
+    <item msgid="838342167431596036">"Motta nød-SMS"</item>
+    <item msgid="8554432731560956686">"Motta MMS"</item>
+    <item msgid="7464863464299515059">"Motta WAP-push"</item>
+    <item msgid="310463075729606765">"Send SMS"</item>
+    <item msgid="7338021933527689514">"Les ICC SMS"</item>
+    <item msgid="6130369335466613036">"Skriv ICC SMS"</item>
+    <item msgid="6536865581421670942">"Endre innstillingene"</item>
+    <item msgid="4547203129183558973">"tegn øverst"</item>
+    <item msgid="9080347512916542840">"varseltilgang"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"ta opp lyd"</item>
+    <item msgid="9182794235292595296">"spill av lyd"</item>
+    <item msgid="8760743229597702019">"lesing av utklippstavlen"</item>
+    <item msgid="2266923698240538544">"endring av utklippstavlen"</item>
+    <item msgid="1801619438618539275">"medieknapper"</item>
+    <item msgid="31588119965784465">"audiofokus"</item>
+    <item msgid="7565226799008076833">"hovedvolum"</item>
+    <item msgid="5420704980305018295">"stemmevolum"</item>
+    <item msgid="5797363115508970204">"ringevolum"</item>
+    <item msgid="8233154098550715999">"medievolum"</item>
+    <item msgid="5196715605078153950">"alarmvolum"</item>
+    <item msgid="394030698764284577">"varselvolum"</item>
+    <item msgid="8952898972491680178">"bluetooth-volum"</item>
+    <item msgid="8506227454543690851">"hold aktiv"</item>
+    <item msgid="1108160036049727420">"overvåk posisjon"</item>
+    <item msgid="1496205959751719491">"overvåk plassering med høyt strømforbruk"</item>
+    <item msgid="3776296279910987380">"få bruksstatistikk"</item>
+    <item msgid="8827100324471975602">"slå mikrofonen av eller på"</item>
+    <item msgid="6880736730520126864">"vis brukervarsel"</item>
+    <item msgid="4933375960222609935">"projiser media"</item>
+    <item msgid="8357907018938895462">"aktivér VPN"</item>
+    <item msgid="8143812849911310973">"angi bakgrunn"</item>
+    <item msgid="6266277260961066535">"assistansestruktur"</item>
+    <item msgid="7715498149883482300">"assistanseskjermdump"</item>
+    <item msgid="4046679376726313293">"les telefontilstand"</item>
+    <item msgid="6329507266039719587">"legg til talepost"</item>
+    <item msgid="7692440726415391408">"bruk SIP"</item>
+    <item msgid="8572453398128326267">"behandle utgående anrop"</item>
+    <item msgid="7775674394089376306">"fingeravtrykk"</item>
+    <item msgid="3182815133441738779">"kroppssensorer"</item>
+    <item msgid="2793100005496829513">"les kringkastede meldinger"</item>
+    <item msgid="2633626056029384366">"fiktiv plassering"</item>
+    <item msgid="8356842191824684631">"les fra lagring"</item>
+    <item msgid="5671906070163291500">"skriv til lagring"</item>
+    <item msgid="2791955098549340418">"slå på skjermen"</item>
+    <item msgid="5599435119609178367">"hent kontoer"</item>
+    <item msgid="1165623660533024666">"kjør i bakgrunnen"</item>
+    <item msgid="6423861043647911030">"tilgjengelighetsvolum"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Sted"</item>
+    <item msgid="6656077694190491067">"Sted"</item>
+    <item msgid="8790228218278477369">"Sted"</item>
+    <item msgid="7836406246005211990">"Vibrer"</item>
+    <item msgid="3951439024549922598">"Lese kontakter"</item>
+    <item msgid="8802152411647068">"Endre kontaktene"</item>
+    <item msgid="229544934599698735">"Les anropsloggen"</item>
+    <item msgid="7396102294405899613">"Endre anropsloggen"</item>
+    <item msgid="3597797992398484655">"Les kalender"</item>
+    <item msgid="2705975774250907343">"Endre kalenderen"</item>
+    <item msgid="4668747371441932697">"Sted"</item>
+    <item msgid="1487578921720243646">"Send varsel"</item>
+    <item msgid="4636080349724146638">"Sted"</item>
+    <item msgid="673510900286463926">"Ring til telefon"</item>
+    <item msgid="542083422784609790">"Les SMS/SMS"</item>
+    <item msgid="1033780373029588436">"Skriv SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Motta SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Motta SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Motta SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Motta SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Send SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Les SMS/SMS"</item>
+    <item msgid="6555678522277865572">"Skriv SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Endre innstillingene"</item>
+    <item msgid="8705854389991425629">"Tegn øverst"</item>
+    <item msgid="5861356020344153651">"Varseltilgang"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Spill inn lyd"</item>
+    <item msgid="4516840825756409490">"Spill av lyd"</item>
+    <item msgid="6811712502798183957">"Lesing av utklippstavlen"</item>
+    <item msgid="2780369012602289114">"Endring av utklippstavlen"</item>
+    <item msgid="2331359440170850868">"Medieknapper"</item>
+    <item msgid="6133599737122751231">"Audiofokus"</item>
+    <item msgid="6844485713404805301">"Hovedvolum"</item>
+    <item msgid="1600379420669104929">"Stemmevolum"</item>
+    <item msgid="6296768210470214866">"Ringevolum"</item>
+    <item msgid="510690696071629241">"Medievolum"</item>
+    <item msgid="406861638631430109">"Alarmvolum"</item>
+    <item msgid="4715864795872233884">"Varselvolum"</item>
+    <item msgid="2311478519251301183">"Bluetooth-volum"</item>
+    <item msgid="5133991377896747027">"Behold aktiv"</item>
+    <item msgid="2464189519136248621">"Plassering"</item>
+    <item msgid="2062677934050803037">"Posisjon"</item>
+    <item msgid="1735171933192715957">"Få bruksstatistikk"</item>
+    <item msgid="1014093788778383554">"Slå mikrofonen av eller på"</item>
+    <item msgid="4199297950608622850">"Vis brukervarsel"</item>
+    <item msgid="2527962435313398821">"Projiser media"</item>
+    <item msgid="5117506254221861929">"Aktivér VPN"</item>
+    <item msgid="8291198322681891160">"Angi bakgrunn"</item>
+    <item msgid="7106921284621230961">"Assistansestruktur"</item>
+    <item msgid="4496533640894624799">"Assistanseskjermdump"</item>
+    <item msgid="2598847264853993611">"Les telefontilstand"</item>
+    <item msgid="9215610846802973353">"Legg til talepost"</item>
+    <item msgid="9186411956086478261">"Bruk SIP"</item>
+    <item msgid="6884763100104539558">"Behandle utgående anrop"</item>
+    <item msgid="125513972170580692">"Fingeravtrykk"</item>
+    <item msgid="2556071024281275619">"Kroppssensorer"</item>
+    <item msgid="617168514928339387">"Les kringkastede meldinger"</item>
+    <item msgid="7134693570516523585">"Fiktiv plassering"</item>
+    <item msgid="7224489175375229399">"Les fra lagring"</item>
+    <item msgid="8472735063903258202">"Skriv til lagring"</item>
+    <item msgid="4069276819909595110">"Slå på skjermen"</item>
+    <item msgid="1228338896751121025">"Hent kontoer"</item>
+    <item msgid="3181581793459233672">"Kjør i bakgrunnen"</item>
+    <item msgid="2340936043025374076">"Tilgjengelighetsvolum"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kort"</item>
+    <item msgid="4816511817309094890">"Middels"</item>
+    <item msgid="8305084671259331134">"Lang"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Standard"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Kondensert sans-serif"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Uformell"</item>
+    <item msgid="4627069151979553527">"Kursiv"</item>
+    <item msgid="6896773537705206194">"Små forbokstaver"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Standard"</item>
+    <item msgid="6488643537808152001">"Ingen"</item>
+    <item msgid="552332815156010137">"Omriss"</item>
+    <item msgid="7187891159463789272">"Bakgrunnsskygge"</item>
+    <item msgid="8019330250538856521">"Hevet"</item>
+    <item msgid="8987385315647049787">"Preget"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Bruk appens standardvalg"</item>
+    <item msgid="8611890312638868524">"Hvitt på svart"</item>
+    <item msgid="5891360837786277638">"Svart på hvitt"</item>
+    <item msgid="2798457065945456853">"Gult på svart"</item>
+    <item msgid="5799049811524553967">"Gult på blått"</item>
+    <item msgid="3673930830658169860">"Tilpasset"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN med forhåndsdelte nøkler"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN med sertifikater"</item>
+    <item msgid="312397853907741968">"IPSec VPN med forhåndsdelte taster og Xauth-autentisering"</item>
+    <item msgid="3319427315593649917">"IPSec VPN med sertifikater og Xauth-autentisering"</item>
+    <item msgid="8258927774145391041">"IPSec VPN med sertifikater og hybridautentisering"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ingen"</item>
+    <item msgid="1157046369795346308">"Brukerveiledning"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Frakoblet"</item>
+    <item msgid="8754480102834556765">"Initialiserer …"</item>
+    <item msgid="3351334355574270250">"Kobler til …"</item>
+    <item msgid="8303882153995748352">"Tilkoblet"</item>
+    <item msgid="9135049670787351881">"Tidsavbrudd"</item>
+    <item msgid="2124868417182583926">"Mislykket"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Spør"</item>
+    <item msgid="7718817231348607934">"Aldri tillat"</item>
+    <item msgid="8184570120217958741">"Alltid tillat"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Vedvarende"</item>
+    <item msgid="167418068739176448">"Høyeste aktivitet"</item>
+    <item msgid="4760813290195199773">"Viktig (i forgrunnen)"</item>
+    <item msgid="2328684826817647595">"Viktig (i bakgrunnen)"</item>
+    <item msgid="7746406490652867365">"Sikkerhetskopiering"</item>
+    <item msgid="5597404364389196754">"Tungvekt"</item>
+    <item msgid="1290888779300174556">"Tjeneste (kjører)"</item>
+    <item msgid="7241098542073939046">"Tjeneste (starter på nytt)"</item>
+    <item msgid="6610439017684111046">"Mottaker"</item>
+    <item msgid="7367606086319921117">"Hjemme"</item>
+    <item msgid="3344660712396741826">"Siste aktivitet"</item>
+    <item msgid="5006559348883303865">"Bufret (aktivitet)"</item>
+    <item msgid="8633480732468137525">"Bufret (aktivitetsklient)"</item>
+    <item msgid="6248998242443333892">"Bufret (tom)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Blågrønn"</item>
+    <item msgid="3228505970082457852">"Blå"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Lilla"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Rød"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Over 30 dager gamle"</item>
+    <item msgid="8699273238891265610">"Over 60 dager gamle"</item>
+    <item msgid="8346279419423837266">"Over 90 dager gamle"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Oppdag automatisk"</item>
+    <item msgid="773943026484148895">"Behandle som med datamåling"</item>
+    <item msgid="1008268820118852416">"Behandle som uten datamåling"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Bruk tilfeldig valgt MAC-adresse (standard)"</item>
+    <item msgid="214234417308375326">"Bruk enhetens MAC-adresse"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nei"</item>
+    <item msgid="1930581185557754880">"Ja"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Mørk"</item>
+    <item msgid="5079453644557603349">"Lys"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Av"</item>
+    <item msgid="4072198137051566919">"Feilsøk"</item>
+    <item msgid="2473005316958868509">"Omfattende"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Kun hjemmenett"</item>
+    <item msgid="1161026694891024702">"Automatisk"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA er foretrukket"</item>
+    <item msgid="7581481130337402578">"Bare GSM"</item>
+    <item msgid="8579197487913425819">"Bare WCDMA"</item>
+    <item msgid="8465243227505412498">"Automatisk GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automatisk CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA uten EvDo"</item>
+    <item msgid="7278975240951052041">"Bare EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalt"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Bare TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalt"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-nb/strings.xml b/tests/CarDeveloperOptions/res/values-nb/strings.xml
index ad4ecc7..9858ab3 100644
--- a/tests/CarDeveloperOptions/res/values-nb/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-nb/strings.xml
@@ -1335,10 +1335,10 @@
     <string name="status_msid_number" msgid="7808175928664357661">"MSID"</string>
     <string name="status_prl_version" msgid="5634561205739199042">"PRL-versjon"</string>
     <string name="meid_multi_sim" msgid="7449892644113569529">"MEID (SIM-kortspor %1$d)"</string>
-    <string name="scanning_status_text_wifi_on_ble_on" msgid="6370507836346838473">"Både Wi‑Fi- og Bluetooth-skanning er på"</string>
+    <string name="scanning_status_text_wifi_on_ble_on" msgid="6370507836346838473">"Både Wi‑Fi- og Bluetooth-søking er på"</string>
     <string name="scanning_status_text_wifi_on_ble_off" msgid="8205014713732412608">"Wi‑Fi-søking er på, Bluetooth-søking er av"</string>
     <string name="scanning_status_text_wifi_off_ble_on" msgid="7400522456303307057">"Bluetooth-søking er på, Wi-Fi-søking er av"</string>
-    <string name="scanning_status_text_wifi_off_ble_off" msgid="8575026386237481457">"Både Wi‑Fi- og Bluetooth-skanning er av"</string>
+    <string name="scanning_status_text_wifi_off_ble_off" msgid="8575026386237481457">"Både Wi‑Fi- og Bluetooth-søking er av"</string>
     <string name="status_meid_number" msgid="8756271256760479835">"MEID"</string>
     <string name="status_icc_id" msgid="9191847562997702709">"ICCID"</string>
     <string name="status_data_network_type" msgid="2344720457353394909">"Nettverkstype for mobildata"</string>
@@ -1653,7 +1653,7 @@
     <string name="location_no_recent_accesses" msgid="6289916310397279890">"Ingen apper har nylig brukt posisjon"</string>
     <string name="location_high_battery_use" msgid="7177199869979522663">"Høy batteribruk"</string>
     <string name="location_low_battery_use" msgid="5030448574501435888">"Lav batteribruk"</string>
-    <string name="location_scanning_screen_title" msgid="7663329319689413454">"Søking med Wi‑Fi og Bluetooth"</string>
+    <string name="location_scanning_screen_title" msgid="7663329319689413454">"Søking etter Wi‑Fi og Bluetooth"</string>
     <string name="location_scanning_wifi_always_scanning_title" msgid="6750542206763112172">"Wi‑Fi-søking"</string>
     <string name="location_scanning_wifi_always_scanning_description" msgid="4956048135941851712">"La apper og tjenester søke etter Wi-Fi-nettverk når som helst, selv når Wi-Fi er slått av. Dette kan for eksempel brukes til å forbedre posisjonsbaserte funksjoner og tjenester."</string>
     <string name="location_scanning_bluetooth_always_scanning_title" msgid="196241746742607453">"Bluetooth-søking"</string>
@@ -2902,7 +2902,7 @@
     <string name="user_enable_calling_confirm_message" msgid="2490126715153125970">"Anropsloggen deles med denne brukeren."</string>
     <string name="user_enable_calling_and_sms_confirm_title" msgid="4153856398523366976">"Vil du slå på telefonsamtaler og SMS?"</string>
     <string name="user_enable_calling_and_sms_confirm_message" msgid="3278802798876095734">"Anrops- og tekstmeldingsloggen deles med denne brukeren."</string>
-    <string name="emergency_info_title" msgid="1522609271881425375">"Informasjon for nødstilfeller"</string>
+    <string name="emergency_info_title" msgid="1522609271881425375">"Nødinformasjon"</string>
     <string name="emergency_info_summary" msgid="7280464759837387342">"Informasjon og kontakter for <xliff:g id="USER_NAME">%1$s</xliff:g>"</string>
     <string name="application_restrictions" msgid="6871981013736536763">"Tillat apper og innhold"</string>
     <string name="apps_with_restrictions_header" msgid="8656739605673756176">"Apper med begrensninger"</string>
@@ -3731,7 +3731,7 @@
     <string name="usb_use_MIDI_desc" msgid="1770966187150010947">"Bruk denne enheten som MIDI"</string>
     <string name="usb_use" msgid="8940500223316278632">"Bruk USB for"</string>
     <string name="usb_default_label" msgid="7471316635263936101">"Standard USB-konfigurasjon"</string>
-    <string name="usb_default_info" msgid="953775292571786528">"Disse innstillingene gjelder når en annen enhet er koblet til og telefonen din er låst opp. Du bør bare koble til pålitelige enheter."</string>
+    <string name="usb_default_info" msgid="953775292571786528">"Disse innstillingene gjelder når en annen enhet er koblet til og telefonen din er låst opp. Du bør bare koble til godkjente enheter."</string>
     <string name="usb_pref" msgid="6194821550693495068">"USB"</string>
     <string name="usb_preference" msgid="7092987095048592826">"USB-innstillinger"</string>
     <string name="usb_control_title" msgid="2379698856760894768">"USB kontrolleres av"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ne-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ne-nokeys/strings.xml
new file mode 100644
index 0000000..782928a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ne-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"अनुप्रयोगहरू प्रबन्ध गर्नुहोस्"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ne/arrays.xml b/tests/CarDeveloperOptions/res/values-ne/arrays.xml
new file mode 100644
index 0000000..578dd5a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ne/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"अमेरिका"</item>
+    <item msgid="4791956477275129121">"युरोप"</item>
+    <item msgid="3812126832016254559">"अफ्रिका"</item>
+    <item msgid="2765816300353408280">"एसिया"</item>
+    <item msgid="6683489385344409742">"अस्ट्रेलिया"</item>
+    <item msgid="5194868215515664953">"प्रशान्त"</item>
+    <item msgid="7044520255415007865">"सबै"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"१५ सेकेन्ड"</item>
+    <item msgid="772029947136115322">"३० सेकेन्ड"</item>
+    <item msgid="8743663928349474087">"१ मिनेट"</item>
+    <item msgid="1506508631223164814">"२ मिनेट"</item>
+    <item msgid="8664703938127907662">"५ मिनेट"</item>
+    <item msgid="5827960506924849753">"१० मिनेट"</item>
+    <item msgid="6677424950124253938">"३० मिनेट"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"सानो"</item>
+    <item msgid="591935967183159581">"पूर्वनिर्धारित"</item>
+    <item msgid="1714184661981538355">"ठूलो"</item>
+    <item msgid="6195563047686707484">"सबैभन्दा ठूलो"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"स्क्यान गर्दै ..."</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>सँग जडान हुँदै..."</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>का साथ प्रमाणीकरण गर्दै..."</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>बाट IP ठेगाना प्राप्त गर्दै..."</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>सँग जडित"</item>
+    <item msgid="6600156231416890902">"निलम्बित"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>बाट विच्छेदन गर्दै..."</item>
+    <item msgid="3980154971187953257">"जडान विच्छेद भयो"</item>
+    <item msgid="2847316776634969068">"असफल"</item>
+    <item msgid="4390990424746035383">"अवरूद्ध गरियो"</item>
+    <item msgid="3618248791367063949">"अस्थायी रूपमा कमजोर जडान हटाइँदै"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"थिच्ने बटन"</item>
+    <item msgid="7401896200768713930">"PIN जोडी उपकरणबाट"</item>
+    <item msgid="4526848028011846710">"यस उपकरणबाट PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"जडान गरियो"</item>
+    <item msgid="983792611851499732">"आमन्त्रित"</item>
+    <item msgid="5438273405428201793">"असफल"</item>
+    <item msgid="4646663015449312554">"उपलब्ध"</item>
+    <item msgid="3230556734162006146">"दायरा-बाहिर"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"२ मिनेट"</item>
+    <item msgid="2759776603549270587">"५ मिनेट"</item>
+    <item msgid="167772676068860015">"१ घन्टा"</item>
+    <item msgid="5985477119043628504">"कहिल्यै समय सकिँदैन"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"अन्तिम ३० दिन"</item>
+    <item msgid="3211287705232736964">"प्रयोग चक्र सेट..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"उपयोग समय"</item>
+    <item msgid="2784401352592276015">"पछिल्लो समय प्रयोग गरिएको"</item>
+    <item msgid="249854287216326349">"अनुप्रयोगको नाम"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"कुनै पनि होइन"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"कुनै पनि होइन"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"स्थिर"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"कुनै पनि होइन"</item>
+    <item msgid="1464741437353223198">"म्यानुअल"</item>
+    <item msgid="5793600062487886090">"प्रोक्सी स्वतः समायोजन"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"कुनै पनि होइन"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP वा CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"आन्तरिक उपकरण भण्डारण"</item>
+    <item msgid="3186681694079967527">"हटाउन मिल्ने SD कार्ड"</item>
+    <item msgid="6902033473986647035">"प्रणालीलाई निर्णय गर्न दिनुहोस्"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"स्थान"</item>
+    <item msgid="6842381562497597649">"व्यक्तिगत"</item>
+    <item msgid="3966700236695683444">"सन्देश पठाइदै"</item>
+    <item msgid="8563996233342430477">"मिडिया"</item>
+    <item msgid="5323851085993963783">"यन्त्र"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"भद्दा स्थान"</item>
+    <item msgid="1830619568689922920">"राम्रो स्थान"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"कम्पन हुने"</item>
+    <item msgid="8632513128515114092">"सम्पर्कहरू पढ्नुहोस्"</item>
+    <item msgid="3741042113569620272">"सम्पर्कहरू परिमार्जन गर्नुहोस्"</item>
+    <item msgid="4204420969709009931">"कल लग पढ्नुहोस्"</item>
+    <item msgid="2260380357119423209">"कल लग परिमार्जन गर्नुहोस्"</item>
+    <item msgid="6550710385014530934">"पात्रो पढ्नुहोस्"</item>
+    <item msgid="3575906174264853951">"पात्रो परिमार्जन गर्नुहोस्"</item>
+    <item msgid="4319843242568057174">"Wi-Fi स्क्यान"</item>
+    <item msgid="2981791890467303819">"सूचना"</item>
+    <item msgid="6617825156152476692">"सेल स्क्यान"</item>
+    <item msgid="8865260890611559753">"कल फोन"</item>
+    <item msgid="3254999273961542982">"SMS पढ्नुहोस्"</item>
+    <item msgid="7711446453028825171">"SMS लेख्नुहोस्"</item>
+    <item msgid="6123238544099198034">"SMS प्राप्त गर्नुहोस्"</item>
+    <item msgid="838342167431596036">"आपतकालीन SMS प्राप्त गर्नुहोस्"</item>
+    <item msgid="8554432731560956686">"MMS प्राप्त गर्नुहोस्"</item>
+    <item msgid="7464863464299515059">"WAP push प्राप्त गर्नुहोस्"</item>
+    <item msgid="310463075729606765">"SMS पठाउनुहोस्"</item>
+    <item msgid="7338021933527689514">"ICC SMS पढ्नुहोस्"</item>
+    <item msgid="6130369335466613036">"ICC SMS लेख्नुहोस्"</item>
+    <item msgid="6536865581421670942">"सेटिङहरू परिमार्जन गर्नुहोस्"</item>
+    <item msgid="4547203129183558973">"सबभन्दा माथि सार्नुहोस्"</item>
+    <item msgid="9080347512916542840">"सूचनाहरू पहुँच गर्नुहोस्"</item>
+    <item msgid="5332718516635907742">"क्यामेरा"</item>
+    <item msgid="6098422447246167852">"अडियो रेकर्ड गर्नुहोस्"</item>
+    <item msgid="9182794235292595296">"अडियो बजाउनुहोस्"</item>
+    <item msgid="8760743229597702019">"क्लिपबोर्ड पढ्नुहोस्"</item>
+    <item msgid="2266923698240538544">"क्लिपबोर्ड संशोधन गर्नुहोस्"</item>
+    <item msgid="1801619438618539275">"मिडिया बटनहरू"</item>
+    <item msgid="31588119965784465">"श्रब्य फोकस"</item>
+    <item msgid="7565226799008076833">"मास्टर ध्वनि मात्रा"</item>
+    <item msgid="5420704980305018295">"वाणी मात्रा"</item>
+    <item msgid="5797363115508970204">"घन्टी मात्रा"</item>
+    <item msgid="8233154098550715999">"मिडियाको आवाजको मात्रा"</item>
+    <item msgid="5196715605078153950">"अलार्मको आवाजको मात्रा"</item>
+    <item msgid="394030698764284577">"सूचना मात्रा"</item>
+    <item msgid="8952898972491680178">"ब्लुटुथ मात्रा"</item>
+    <item msgid="8506227454543690851">"जागा रहनुहोस्"</item>
+    <item msgid="1108160036049727420">"स्थानको निरीक्षण गर्नुहोस्"</item>
+    <item msgid="1496205959751719491">"उच्च शक्ति स्थान मनिटर"</item>
+    <item msgid="3776296279910987380">"तथ्याङ्क उपयोग प्राप्त गर्नुहोस्"</item>
+    <item msgid="8827100324471975602">"माइक्रोफोनको आवाज बन्द/खुला गर्नुहोस्"</item>
+    <item msgid="6880736730520126864">"टोस्ट देखाउनुहोस्"</item>
+    <item msgid="4933375960222609935">"परियोजना मिडिया"</item>
+    <item msgid="8357907018938895462">"VPN सक्रिय पार्नुहोस्"</item>
+    <item msgid="8143812849911310973">"वालपेपर लेख्नुहोस्"</item>
+    <item msgid="6266277260961066535">"संरचनालाई मद्दत गर्नुहोस्"</item>
+    <item msgid="7715498149883482300">"स्क्रिनसट मद्दत गर्नुहोस्"</item>
+    <item msgid="4046679376726313293">"फोनको अवस्था पढ्नुहोस्"</item>
+    <item msgid="6329507266039719587">"भ्वाइसमेल थप गर्नुहोस्"</item>
+    <item msgid="7692440726415391408">"SIP प्रयोग गर्नुहोस्"</item>
+    <item msgid="8572453398128326267">"बहिर्गमन कललाई प्रशोधन गर्नुहोस्"</item>
+    <item msgid="7775674394089376306">"फिंगरप्रिन्ट"</item>
+    <item msgid="3182815133441738779">"शारीरिक सेन्सरहरू"</item>
+    <item msgid="2793100005496829513">"मोबाइल प्रसारणहरू पढ्नुहोस्"</item>
+    <item msgid="2633626056029384366">"स्थान नक्कल गर्नुहोस्"</item>
+    <item msgid="8356842191824684631">"भण्डारण पढ्नुहोस्"</item>
+    <item msgid="5671906070163291500">"भण्डारण लेख्नुहोस्"</item>
+    <item msgid="2791955098549340418">"स्क्रिन सक्रिय गर्नुहोस्"</item>
+    <item msgid="5599435119609178367">"खाताहरू प्राप्त गर्नुहोस्"</item>
+    <item msgid="1165623660533024666">"पृष्ठभूमिमा सञ्चालन गर्नुहोस्"</item>
+    <item msgid="6423861043647911030">"पहुँचको मात्रा"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"छोटो"</item>
+    <item msgid="4816511817309094890">"सामान्य"</item>
+    <item msgid="8305084671259331134">"लामो"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"पूर्वनिर्धारित"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"सन्स-सेरिफ मोनोस्पेस"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"सेरिफ मोनोस्पेस"</item>
+    <item msgid="4448481989108928248">"आरामदायक"</item>
+    <item msgid="4627069151979553527">"जोडिएको लेखाइ"</item>
+    <item msgid="6896773537705206194">"लघु दीर्घाक्षर"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"पूर्वनिर्धारित"</item>
+    <item msgid="6488643537808152001">"कुनै पनि होइन"</item>
+    <item msgid="552332815156010137">"रूपरेखा"</item>
+    <item msgid="7187891159463789272">"छाँया राख्नुस्"</item>
+    <item msgid="8019330250538856521">"उठायो"</item>
+    <item msgid="8987385315647049787">"दबेको"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"२५%"</item>
+    <item msgid="4665048002584838262">"५०%"</item>
+    <item msgid="1874668269931014581">"७५%"</item>
+    <item msgid="6462911487571123954">"१००%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"एपका पूर्वनिर्धारित सेटिङहरू प्रयोग गर्नुहोस्"</item>
+    <item msgid="8611890312638868524">"कालोमा सेतो"</item>
+    <item msgid="5891360837786277638">"सेतोमा कालो"</item>
+    <item msgid="2798457065945456853">"कालोमा पहेँलो"</item>
+    <item msgid="5799049811524553967">"नीलोमा पहेँलो"</item>
+    <item msgid="3673930830658169860">"आफू अनुकूल"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN पूर्व साझेदारी कुञ्जीकासँग"</item>
+    <item msgid="6128519070545038358">"प्रमाणपत्रहरूसँग L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"IPSec VPN पूर्व साझेदारी कुञ्जी र Xauth प्राधिकरणसँग"</item>
+    <item msgid="3319427315593649917">"प्रमाणपत्रहरू र Xauth प्रमाणीकरणको साथ IPSec VPN"</item>
+    <item msgid="8258927774145391041">"प्रमाणपत्रहरू र हाईब्रिड प्रमाणीकरणसँग IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"कुनै पनि होइन"</item>
+    <item msgid="1157046369795346308">"म्यानुअल"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"जडान विच्छेद भयो"</item>
+    <item msgid="8754480102834556765">"सुरुवात भैरहेको छ..."</item>
+    <item msgid="3351334355574270250">"जडान हुँदै..."</item>
+    <item msgid="8303882153995748352">"जडान गरियो"</item>
+    <item msgid="9135049670787351881">"समय सकियो"</item>
+    <item msgid="2124868417182583926">"असफल"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"सोध्नुहोस्"</item>
+    <item msgid="7718817231348607934">"कहिल्यै पनि अनुमति नदिनुहोस्"</item>
+    <item msgid="8184570120217958741">"सधैँ अनुमति दिनुहोस्"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"लगातार"</item>
+    <item msgid="167418068739176448">"उच्च गतिविधि"</item>
+    <item msgid="4760813290195199773">"महत्वपूर्ण (अग्रभूमि)"</item>
+    <item msgid="2328684826817647595">"महत्वपूर्ण (पृष्ठभूमि)"</item>
+    <item msgid="7746406490652867365">"ब्याकअप"</item>
+    <item msgid="5597404364389196754">"भारी वजन"</item>
+    <item msgid="1290888779300174556">"सेवा (चालु)"</item>
+    <item msgid="7241098542073939046">"सेवा (पुनःसुरु हुँदै)"</item>
+    <item msgid="6610439017684111046">"प्रापक"</item>
+    <item msgid="7367606086319921117">"गृह"</item>
+    <item msgid="3344660712396741826">"पछिल्लो गतिविधि"</item>
+    <item msgid="5006559348883303865">"क्यास (गतिविधि)"</item>
+    <item msgid="8633480732468137525">"क्यास (गतिविधि ग्राहक)"</item>
+    <item msgid="6248998242443333892">"क्यास (खाली)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"टिल"</item>
+    <item msgid="3228505970082457852">"नीलो"</item>
+    <item msgid="6590260735734795647">"इन्डिगो"</item>
+    <item msgid="3521763377357218577">"बैजनी"</item>
+    <item msgid="5932337981182999919">"गुलाबी"</item>
+    <item msgid="5642914536624000094">"रातो"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"३० दिनभन्दा बढी पुरानो"</item>
+    <item msgid="8699273238891265610">"६० दिनभन्दा बढी पुरानो"</item>
+    <item msgid="8346279419423837266">"९० दिनभन्दा बढी पुरानो"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"स्वतः पत्ता लगाउनुहोस्"</item>
+    <item msgid="773943026484148895">"शुल्क लाग्ने वाइफाइका रूपमा लिनुहोस्"</item>
+    <item msgid="1008268820118852416">"मिटर नगरिएको रूपमा व्यवहार गर्नुहोस्"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"क्रमरहित MAC प्रयोग गर्नुहोस् (पूर्वनिर्धारित)"</item>
+    <item msgid="214234417308375326">"MAC यन्त्र प्रयोग गर्नुहोस्"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"होइन"</item>
+    <item msgid="1930581185557754880">"हो"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"अँध्यारो"</item>
+    <item msgid="5079453644557603349">"उज्यालो"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"निष्क्रिय गर्नुहोस्"</item>
+    <item msgid="4072198137051566919">"डिबग"</item>
+    <item msgid="2473005316958868509">"भर्बोज"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"घरमा मात्र"</item>
+    <item msgid="1161026694891024702">"स्वचालित"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA रुचाइयो"</item>
+    <item msgid="7581481130337402578">"GSM मात्र"</item>
+    <item msgid="8579197487913425819">"WCDMA मात्र"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA स्वतः"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo स्वतः"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo मात्र"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"विश्वव्यापी"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA मात्र"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"विश्वव्यापी"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ne/strings.xml b/tests/CarDeveloperOptions/res/values-ne/strings.xml
index 47603c3..5786293 100644
--- a/tests/CarDeveloperOptions/res/values-ne/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ne/strings.xml
@@ -427,7 +427,7 @@
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"अनुहारसम्बन्धी डेटा हटाउनुहोस्"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"तपाईंको यन्त्र अनलक गर्न र अनुप्रयोगहरूमाथि पहुँच राख्न तपाईंको अनुहार प्रयोग गर्न सकिन्छ। "<annotation id="url">"थप जान्नुहोस्"</annotation></string>
     <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"अनुहारसम्बन्धी डेटा मेट्ने हो?"</string>
-    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"फेस अनलक गर्ने सुविधामार्फत रेकर्ड गरिएको डेटा स्थायी रूपमा र सुरक्षित रूपमा मेटिने छ। हटाइसकेपछि, तपाईंलाई आफ्नो फोन अनलक गर्न, अनुप्रयोगहरूमा साइन इन गर्न र भुक्तानी पुष्टि गर्न आफ्नो PIN, ढाँचा वा पासवर्ड आवश्यक हुने छ।"</string>
+    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"फेस अनलक गर्ने सुविधामार्फत रेकर्ड गरिएको डेटा स्थायी रूपमा र सुरक्षित रूपमा मेटिने छ। हटाइसकेपछि, आफ्नो फोन अनलक गर्न, अनुप्रयोगहरूमा साइन इन गर्न र भुक्तानी पुष्टि गर्न तपाईंसँग आफ्नो PIN, ढाँचा वा पासवर्ड हुनु पर्ने छ।"</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"औंठाछाप"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"औंठाछापहरू व्यवस्थापन गर्नुहोस्"</string>
     <string name="fingerprint_usage_category_title" msgid="7298369141954599706">"निम्नको लागि औठाछाप प्रयोग गर्नुहोस्"</string>
@@ -2728,7 +2728,7 @@
     <string name="data_usage_metered_wifi_disabled" msgid="5771083253782103415">"मिटर राखिएका सञ्जालहरू चयन गर्न, Wi-Fi खोल्नुहोस्।"</string>
     <string name="data_usage_metered_auto" msgid="7924116401382629319">"स्वचालित"</string>
     <string name="data_usage_metered_yes" msgid="7333744880035386073">"मिटर चल्ने बनाइएको छ"</string>
-    <string name="data_usage_metered_no" msgid="1961524615778610008">"मिटर गरिएको छैन"</string>
+    <string name="data_usage_metered_no" msgid="1961524615778610008">"शुल्क लाग्ने प्रावधान तय नगरिसकिएको"</string>
     <string name="data_usage_disclaimer" msgid="4683321532922590425">"वाहक डेटा लेखाकृत गर्ने तपाईँको उपकरणबाट फरक हुन सक्छ।"</string>
     <string name="cryptkeeper_emergency_call" msgid="4625420047524693116">"आपतकालीन कल"</string>
     <string name="cryptkeeper_return_to_call" msgid="4433942821196822815">"कलमा फर्किनुहोस्"</string>
@@ -3059,7 +3059,7 @@
     <string name="keywords_display_brightness_level" msgid="7649410848561920512">"मधुरो स्क्रिन, टचस्क्रिन, ब्याट्री, चहकिलो"</string>
     <string name="keywords_display_night_display" msgid="3647370193110044967">"मधुरो स्क्रिन, रात, टिन्ट, रात्रि ड्युटी, उज्यालोपन, स्क्रिनको रङ, रङ"</string>
     <string name="keywords_display_wallpaper" msgid="1202089324795933197">"पृष्ठभूमि, निजीकृत गर्नुहोस्, प्रदर्शन आफू अनुकूल गर्नुहोस्"</string>
-    <string name="keywords_display_font_size" msgid="1496431330244040196">"पाठ आकार"</string>
+    <string name="keywords_display_font_size" msgid="1496431330244040196">"पाठको आकार"</string>
     <string name="keywords_display_cast_screen" msgid="5744566533025100355">"परियोजना, कास्ट, स्क्रिनको प्रतिविम्ब बनाउने, स्क्रिन आदान प्रदान गर्ने, प्रतिविम्ब बनाउने, स्क्रिन आदान प्रदान, स्क्रिन कास्टिङ"</string>
     <string name="keywords_storage" msgid="7704519289838065803">"ठाउँ, डिस्क, हार्ड ड्राइभ, यन्त्र उपयोग"</string>
     <string name="keywords_battery" msgid="3860198379310375112">"शक्ति उपयोग, चार्ज"</string>
@@ -3757,7 +3757,7 @@
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"स्क्रिनको एउटा छवि पहुँच गर्न सहायक अनुप्रयोगलाई अनुमति दिनुहोस्"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"स्क्रिन झिमझिम पार्नुहोस्"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"सहायक अनुप्रयोगले स्क्रिन वा स्क्रिनसटबाट पाठमाथि पहुँच राख्दा स्क्रिनका किनाराहरू झिमझिम पार्नुहोस्"</string>
-    <string name="assist_footer" msgid="7030121180457472165">"तपाईँले हेर्दै गर्नुभएको स्क्रिन जानकारीमा आधारित भएर सहायक अनुप्रयोगहरूले तपाईँलाई मद्दत गर्न सक्छन्।  केही अनुप्रयोगहरूले तपाईँलाई एकीकृत सहायता दिन दुवै लन्चर र आवाज इनपुट सेवाहरूलाई समर्थन गर्दछन्।"</string>
+    <string name="assist_footer" msgid="7030121180457472165">"सहायक अनुप्रयोगहरूले तपाईंले हेर्दै गर्नुभएको स्क्रिनबाट प्राप्त जानकारीमा आधारित भई तपाईंलाई मद्दत गर्न सक्छन्।केही अनुप्रयोगहरूले तपाईंलाई एकीकृत सहायता दिन दुवै लन्चर र आवाज संलग्न इनपुट सेवाहरूलाई समर्थन गर्दछन्।"</string>
     <string name="average_memory_use" msgid="5333366040118953945">"औसत मेमोरी प्रयोग"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"अधिकतम मेमोरी प्रयोग"</string>
     <string name="memory_usage" msgid="7963253555330830906">"मेमोरी प्रयोग"</string>
diff --git a/tests/CarDeveloperOptions/res/values-nl-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-nl-nokeys/strings.xml
new file mode 100644
index 0000000..12f0eda
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-nl-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Toepassingen beheren"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-nl/arrays.xml b/tests/CarDeveloperOptions/res/values-nl/arrays.xml
new file mode 100644
index 0000000..8159d90
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-nl/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Azië"</item>
+    <item msgid="6683489385344409742">"Australië"</item>
+    <item msgid="5194868215515664953">"Stille Oceaan"</item>
+    <item msgid="7044520255415007865">"Alle"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 seconden"</item>
+    <item msgid="772029947136115322">"30 seconden"</item>
+    <item msgid="8743663928349474087">"1 minuut"</item>
+    <item msgid="1506508631223164814">"2 minuten"</item>
+    <item msgid="8664703938127907662">"5 minuten"</item>
+    <item msgid="5827960506924849753">"10 minuten"</item>
+    <item msgid="6677424950124253938">"30 minuten"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Klein"</item>
+    <item msgid="591935967183159581">"Standaard"</item>
+    <item msgid="1714184661981538355">"Groot"</item>
+    <item msgid="6195563047686707484">"Grootst"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Scannen…"</item>
+    <item msgid="8058143476674427024">"Verbinding maken met <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Verifiëren met <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"IP-adres ophalen van <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Verbonden met <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Opgeschort"</item>
+    <item msgid="4133290864821295785">"Verbinding verbreken met <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Verbinding verbroken"</item>
+    <item msgid="2847316776634969068">"Mislukt"</item>
+    <item msgid="4390990424746035383">"Geblokkeerd"</item>
+    <item msgid="3618248791367063949">"Slechte verbinding tijdelijk vermijden"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Knop indrukken"</item>
+    <item msgid="7401896200768713930">"Pincode van peerapparaat"</item>
+    <item msgid="4526848028011846710">"Pin van dit apparaat"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Verbonden"</item>
+    <item msgid="983792611851499732">"Uitgenodigd"</item>
+    <item msgid="5438273405428201793">"Mislukt"</item>
+    <item msgid="4646663015449312554">"Beschikbaar"</item>
+    <item msgid="3230556734162006146">"Geen bereik"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuten"</item>
+    <item msgid="2759776603549270587">"5 minuten"</item>
+    <item msgid="167772676068860015">"1 uur"</item>
+    <item msgid="5985477119043628504">"Geen time-out"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Afgelopen 30 dagen"</item>
+    <item msgid="3211287705232736964">"Gebruikscyclus instellen…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Gebruikstijd"</item>
+    <item msgid="2784401352592276015">"Laatst gebruikt"</item>
+    <item msgid="249854287216326349">"App-naam"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Geen"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Geen"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statisch"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Geen"</item>
+    <item msgid="1464741437353223198">"Handleiding"</item>
+    <item msgid="5793600062487886090">"Proxy auto-configuratie"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Geen"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP of CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interne apparaatopslag"</item>
+    <item msgid="3186681694079967527">"Verwisselbare SD-kaart"</item>
+    <item msgid="6902033473986647035">"Het systeem laten bepalen"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Locatie"</item>
+    <item msgid="6842381562497597649">"Persoonlijk"</item>
+    <item msgid="3966700236695683444">"Berichten"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Apparaat"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"geschatte locatie"</item>
+    <item msgid="1830619568689922920">"nauwkeurige locatie"</item>
+    <item msgid="3317274469481923141">"gps"</item>
+    <item msgid="8931785990160383356">"trillen"</item>
+    <item msgid="8632513128515114092">"contacten lezen"</item>
+    <item msgid="3741042113569620272">"contacten aanpassen"</item>
+    <item msgid="4204420969709009931">"gesprekslijst lezen"</item>
+    <item msgid="2260380357119423209">"gesprekslijst aanpassen"</item>
+    <item msgid="6550710385014530934">"agenda lezen"</item>
+    <item msgid="3575906174264853951">"agenda aanpassen"</item>
+    <item msgid="4319843242568057174">"wifi-scan"</item>
+    <item msgid="2981791890467303819">"melding"</item>
+    <item msgid="6617825156152476692">"mobiele scan"</item>
+    <item msgid="8865260890611559753">"nummer bellen"</item>
+    <item msgid="3254999273961542982">"sms lezen"</item>
+    <item msgid="7711446453028825171">"sms schrijven"</item>
+    <item msgid="6123238544099198034">"sms ontvangen"</item>
+    <item msgid="838342167431596036">"nood-sms ontvangen"</item>
+    <item msgid="8554432731560956686">"mms ontvangen"</item>
+    <item msgid="7464863464299515059">"WAP-push ontvangen"</item>
+    <item msgid="310463075729606765">"sms verzenden"</item>
+    <item msgid="7338021933527689514">"ICC sms lezen"</item>
+    <item msgid="6130369335466613036">"ICC sms schrijven"</item>
+    <item msgid="6536865581421670942">"instellingen aanpassen"</item>
+    <item msgid="4547203129183558973">"bovenop tekenen"</item>
+    <item msgid="9080347512916542840">"toegang tot meldingen"</item>
+    <item msgid="5332718516635907742">"camera"</item>
+    <item msgid="6098422447246167852">"audio opnemen"</item>
+    <item msgid="9182794235292595296">"audio afspelen"</item>
+    <item msgid="8760743229597702019">"klembord lezen"</item>
+    <item msgid="2266923698240538544">"klembord aanpassen"</item>
+    <item msgid="1801619438618539275">"mediaknoppen"</item>
+    <item msgid="31588119965784465">"audiofocus"</item>
+    <item msgid="7565226799008076833">"hoofdvolume"</item>
+    <item msgid="5420704980305018295">"stemvolume"</item>
+    <item msgid="5797363115508970204">"ringtonevolume"</item>
+    <item msgid="8233154098550715999">"mediavolume"</item>
+    <item msgid="5196715605078153950">"wekkervolume"</item>
+    <item msgid="394030698764284577">"meldingsvolume"</item>
+    <item msgid="8952898972491680178">"bluetooth-volume"</item>
+    <item msgid="8506227454543690851">"ingeschakeld houden"</item>
+    <item msgid="1108160036049727420">"monitorlocatie"</item>
+    <item msgid="1496205959751719491">"locatie met hoog energieverbruik controleren"</item>
+    <item msgid="3776296279910987380">"gebruiksstatistieken ophalen"</item>
+    <item msgid="8827100324471975602">"microfoon dempen/dempen opheffen"</item>
+    <item msgid="6880736730520126864">"toast weergeven"</item>
+    <item msgid="4933375960222609935">"media projecteren"</item>
+    <item msgid="8357907018938895462">"VPN activeren"</item>
+    <item msgid="8143812849911310973">"achtergrond schrijven"</item>
+    <item msgid="6266277260961066535">"structuur voor ondersteuning"</item>
+    <item msgid="7715498149883482300">"screenshot voor ondersteuning"</item>
+    <item msgid="4046679376726313293">"telefoonstatus lezen"</item>
+    <item msgid="6329507266039719587">"voicemail toevoegen"</item>
+    <item msgid="7692440726415391408">"SIP gebruiken"</item>
+    <item msgid="8572453398128326267">"uitgaand gesprek verwerken"</item>
+    <item msgid="7775674394089376306">"vingerafdruk"</item>
+    <item msgid="3182815133441738779">"lichaamssensoren"</item>
+    <item msgid="2793100005496829513">"cell broadcasts lezen"</item>
+    <item msgid="2633626056029384366">"neplocatie"</item>
+    <item msgid="8356842191824684631">"opslag lezen"</item>
+    <item msgid="5671906070163291500">"schrijven naar opslag"</item>
+    <item msgid="2791955098549340418">"scherm inschakelen"</item>
+    <item msgid="5599435119609178367">"accounts ophalen"</item>
+    <item msgid="1165623660533024666">"uitvoeren op de achtergrond"</item>
+    <item msgid="6423861043647911030">"toegankelijkheidsvolume"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Locatie"</item>
+    <item msgid="6656077694190491067">"Locatie"</item>
+    <item msgid="8790228218278477369">"Locatie"</item>
+    <item msgid="7836406246005211990">"Trillen"</item>
+    <item msgid="3951439024549922598">"Contacten lezen"</item>
+    <item msgid="8802152411647068">"Contacten aanpassen"</item>
+    <item msgid="229544934599698735">"Gesprekslijst lezen"</item>
+    <item msgid="7396102294405899613">"Gesprekslijst aanpassen"</item>
+    <item msgid="3597797992398484655">"Agenda lezen"</item>
+    <item msgid="2705975774250907343">"Agenda aanpassen"</item>
+    <item msgid="4668747371441932697">"Locatie"</item>
+    <item msgid="1487578921720243646">"Melding verzenden"</item>
+    <item msgid="4636080349724146638">"Locatie"</item>
+    <item msgid="673510900286463926">"Nummer bellen"</item>
+    <item msgid="542083422784609790">"Sms/mms lezen"</item>
+    <item msgid="1033780373029588436">"Sms/mms schrijven"</item>
+    <item msgid="5647111115517787488">"Sms/mms ontvangen"</item>
+    <item msgid="8591105601108455893">"Sms/mms ontvangen"</item>
+    <item msgid="7730995008517841903">"Sms/mms ontvangen"</item>
+    <item msgid="2613033109026626086">"Sms/mms ontvangen"</item>
+    <item msgid="3037159047591081136">"Sms/mms verzenden"</item>
+    <item msgid="4726682243833913568">"Sms/mms lezen"</item>
+    <item msgid="6555678522277865572">"Sms/mms schrijven"</item>
+    <item msgid="6981734935578130884">"Instellingen aanpassen"</item>
+    <item msgid="8705854389991425629">"Bovenop tekenen"</item>
+    <item msgid="5861356020344153651">"Toegang tot meldingen"</item>
+    <item msgid="78432174621628659">"Camera"</item>
+    <item msgid="3986116419882154794">"Audio opnemen"</item>
+    <item msgid="4516840825756409490">"Audio afspelen"</item>
+    <item msgid="6811712502798183957">"Klembord lezen"</item>
+    <item msgid="2780369012602289114">"Klembord aanpassen"</item>
+    <item msgid="2331359440170850868">"Mediaknoppen"</item>
+    <item msgid="6133599737122751231">"Audiofocus"</item>
+    <item msgid="6844485713404805301">"Hoofdvolume"</item>
+    <item msgid="1600379420669104929">"Stemvolume"</item>
+    <item msgid="6296768210470214866">"Ringtonevolume"</item>
+    <item msgid="510690696071629241">"Mediavolume"</item>
+    <item msgid="406861638631430109">"Wekkervolume"</item>
+    <item msgid="4715864795872233884">"Meldingsvolume"</item>
+    <item msgid="2311478519251301183">"Bluetooth-volume"</item>
+    <item msgid="5133991377896747027">"Ingeschakeld houden"</item>
+    <item msgid="2464189519136248621">"Locatie"</item>
+    <item msgid="2062677934050803037">"Locatie"</item>
+    <item msgid="1735171933192715957">"Gebruiksstatistieken ophalen"</item>
+    <item msgid="1014093788778383554">"Microfoon dempen/dempen opheffen"</item>
+    <item msgid="4199297950608622850">"Toast weergeven"</item>
+    <item msgid="2527962435313398821">"Media projecteren"</item>
+    <item msgid="5117506254221861929">"VPN activeren"</item>
+    <item msgid="8291198322681891160">"Achtergrond schrijven"</item>
+    <item msgid="7106921284621230961">"Structuur voor ondersteuning"</item>
+    <item msgid="4496533640894624799">"Screenshot voor ondersteuning"</item>
+    <item msgid="2598847264853993611">"Telefoonstatus lezen"</item>
+    <item msgid="9215610846802973353">"Voicemail toevoegen"</item>
+    <item msgid="9186411956086478261">"SIP gebruiken"</item>
+    <item msgid="6884763100104539558">"Uitgaand gesprek verwerken"</item>
+    <item msgid="125513972170580692">"Vingerafdruk"</item>
+    <item msgid="2556071024281275619">"Lichaamssensoren"</item>
+    <item msgid="617168514928339387">"Cell broadcasts lezen"</item>
+    <item msgid="7134693570516523585">"Neplocatie"</item>
+    <item msgid="7224489175375229399">"Opslag lezen"</item>
+    <item msgid="8472735063903258202">"Schrijven naar opslag"</item>
+    <item msgid="4069276819909595110">"Scherm inschakelen"</item>
+    <item msgid="1228338896751121025">"Accounts ophalen"</item>
+    <item msgid="3181581793459233672">"Uitvoeren op de achtergrond"</item>
+    <item msgid="2340936043025374076">"Toegankelijkheidsvolume"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kort"</item>
+    <item msgid="4816511817309094890">"Gemiddeld"</item>
+    <item msgid="8305084671259331134">"Lang"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Standaard"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif versmald"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursief"</item>
+    <item msgid="6896773537705206194">"Kleine kapitalen"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Standaard"</item>
+    <item msgid="6488643537808152001">"Geen"</item>
+    <item msgid="552332815156010137">"Contour"</item>
+    <item msgid="7187891159463789272">"Slagschaduw"</item>
+    <item msgid="8019330250538856521">"Verhoogd"</item>
+    <item msgid="8987385315647049787">"Verlaagd"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Standaard"</item>
+    <item msgid="8611890312638868524">"Wit op zwart"</item>
+    <item msgid="5891360837786277638">"Zwart op wit"</item>
+    <item msgid="2798457065945456853">"Geel op zwart"</item>
+    <item msgid="5799049811524553967">"Geel op blauw"</item>
+    <item msgid="3673930830658169860">"Aangepast"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP-VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec-VPN met van tevoren gedeelde sleutels"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec-VPN met certificaten"</item>
+    <item msgid="312397853907741968">"IPSec VPN-met van tevoren gedeelde sleutels en Xauth-authenticatie"</item>
+    <item msgid="3319427315593649917">"IPSec-VPN met certificaten en Xauth-authenticatie"</item>
+    <item msgid="8258927774145391041">"IPSec-VPN met certificaten en hybride authenticatie"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Geen"</item>
+    <item msgid="1157046369795346308">"Handleiding"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Verbinding verbroken"</item>
+    <item msgid="8754480102834556765">"Initialiseren..."</item>
+    <item msgid="3351334355574270250">"Verbinding maken..."</item>
+    <item msgid="8303882153995748352">"Verbonden"</item>
+    <item msgid="9135049670787351881">"Time-out"</item>
+    <item msgid="2124868417182583926">"Mislukt"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Vragen"</item>
+    <item msgid="7718817231348607934">"Nooit toestaan"</item>
+    <item msgid="8184570120217958741">"Altijd toestaan"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Permanent"</item>
+    <item msgid="167418068739176448">"Topactiviteit"</item>
+    <item msgid="4760813290195199773">"Belangrijk (voorgrond)"</item>
+    <item msgid="2328684826817647595">"Belangrijk (achtergrond)"</item>
+    <item msgid="7746406490652867365">"Back-up"</item>
+    <item msgid="5597404364389196754">"Zwaar gewicht"</item>
+    <item msgid="1290888779300174556">"Service (actief)"</item>
+    <item msgid="7241098542073939046">"Service (opnieuw starten)"</item>
+    <item msgid="6610439017684111046">"Ontvanger"</item>
+    <item msgid="7367606086319921117">"Thuis"</item>
+    <item msgid="3344660712396741826">"Laatste activiteit"</item>
+    <item msgid="5006559348883303865">"Gecacht (activiteit)"</item>
+    <item msgid="8633480732468137525">"Gecacht (activiteitsclient)"</item>
+    <item msgid="6248998242443333892">"Gecacht (leeg)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Blauwgroen"</item>
+    <item msgid="3228505970082457852">"Blauw"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Paars"</item>
+    <item msgid="5932337981182999919">"Roze"</item>
+    <item msgid="5642914536624000094">"Rood"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Meer dan 30 dagen oud"</item>
+    <item msgid="8699273238891265610">"Meer dan 60 dagen oud"</item>
+    <item msgid="8346279419423837266">"Meer dan 90 dagen oud"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Automatisch detecteren"</item>
+    <item msgid="773943026484148895">"Behandelen als wifi met datalimiet"</item>
+    <item msgid="1008268820118852416">"Behandelen als wifi zonder datalimiet"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Willekeurig MAC-adres gebruiken (standaard)"</item>
+    <item msgid="214234417308375326">"MAC-adres van apparaat gebruiken"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nee"</item>
+    <item msgid="1930581185557754880">"Ja"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Donker"</item>
+    <item msgid="5079453644557603349">"Licht"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Uit"</item>
+    <item msgid="4072198137051566919">"Fouten opsporen"</item>
+    <item msgid="2473005316958868509">"Uitgebreid"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Alleen thuis"</item>
+    <item msgid="1161026694891024702">"Automatisch"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Voorkeur voor GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Alleen GSM"</item>
+    <item msgid="8579197487913425819">"Alleen WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatisch"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatisch"</item>
+    <item msgid="4219607161971472471">"CDMA zonder EvDo"</item>
+    <item msgid="7278975240951052041">"Alleen EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Algemeen"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Alleen TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Algemeen"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-or-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-or-nokeys/strings.xml
new file mode 100644
index 0000000..c35363f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-or-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ଆପ୍ଲିକେଶନ୍‌ଗୁଡ଼ିକର ପରିଚାଳନା କରନ୍ତୁ"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-or/arrays.xml b/tests/CarDeveloperOptions/res/values-or/arrays.xml
new file mode 100644
index 0000000..633a198
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-or/arrays.xml
@@ -0,0 +1,249 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"ଆମେରିକା"</item>
+    <item msgid="4791956477275129121">"ୟୁରୋପ"</item>
+    <item msgid="3812126832016254559">"ଆଫ୍ରିକା"</item>
+    <item msgid="2765816300353408280">"ଏସିଆ"</item>
+    <item msgid="6683489385344409742">"ଅଷ୍ଟ୍ରେଲିଆ"</item>
+    <item msgid="5194868215515664953">"ପେସିଫିକ୍‌"</item>
+    <item msgid="7044520255415007865">"ସମସ୍ତ"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for screen_timeout_entries:5 (5827960506924849753) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"ସଂଯୋଗ ହୋଇଛି"</item>
+    <item msgid="983792611851499732">"ଆମନ୍ତ୍ରିତ"</item>
+    <item msgid="5438273405428201793">"ଅସଫଳ"</item>
+    <item msgid="4646663015449312554">"ଉପଲବ୍ଧ"</item>
+    <item msgid="3230556734162006146">"ପରିସୀମା ବାହାରେ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"ଗତ 30 ଦିନ"</item>
+    <item msgid="3211287705232736964">"ବ୍ୟବହାରର ଚକ୍ର ସେଟ୍‌ କରନ୍ତୁ…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ବ୍ୟବହାର ସମୟ"</item>
+    <item msgid="2784401352592276015">"ଶେଷ ଥର ବ୍ୟବହୃତ"</item>
+    <item msgid="249854287216326349">"ଆପ୍‌ର ନାମ"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"କିଛି ନୁହେଁ"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"କିଛି ନୁହେଁ"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"କିଛି ନୁହେଁ"</item>
+    <item msgid="1464741437353223198">"ମାନୁଆଲ୍‌"</item>
+    <item msgid="5793600062487886090">"ପ୍ରକ୍ସୀ ଅଟୋ-କନ୍‌ପିଗରେସନ୍"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"କିଛି ନୁହେଁ"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP କିମ୍ବା CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:0 (5231094118929435723) -->
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for bearer_entries:9 (7246853278334311652) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ଇଣ୍ଟର୍ନଲ୍‍ ଡିଭାଇସ୍‌ ଷ୍ଟୋରେଜ୍‌"</item>
+    <item msgid="3186681694079967527">"ଅପସାରଣୀୟ SD କାର୍ଡ"</item>
+    <item msgid="6902033473986647035">"ସିଷ୍ଟମକୁ ନିଷ୍ପତ୍ତି ନେବାକୁ ଦିଅନ୍ତୁ"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ଅବସ୍ଥାନ"</item>
+    <item msgid="6842381562497597649">"ବ୍ୟକ୍ତିଗତ"</item>
+    <item msgid="3966700236695683444">"ମେସେଜିଙ୍ଗ"</item>
+    <item msgid="8563996233342430477">"ମିଡିଆ"</item>
+    <item msgid="5323851085993963783">"ଡିଭାଇସ୍"</item>
+  </string-array>
+    <!-- no translation found for app_ops_summaries:46 (4933375960222609935) -->
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+    <!-- no translation found for app_ops_labels:48 (8291198322681891160) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"କମ୍"</item>
+    <item msgid="4816511817309094890">"ମଧ୍ୟମ"</item>
+    <item msgid="8305084671259331134">"ଲମ୍ଵା"</item>
+  </string-array>
+    <!-- no translation found for captioning_typeface_selector_titles:4 (1487203730637617924) -->
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+    <!-- no translation found for captioning_edge_type_selector_titles:4 (8019330250538856521) -->
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"ପୂର୍ବରୁ ସେୟାର୍‌ ହୋଇଥିବା କୀଗୁଡ଼ିକ ସହ L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"ସର୍ଟିଫିକେଟ୍‌ ସହ L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"ସେୟାର୍‌ କରାଯାଇଥିବା କୀ’ଗୁଡ଼ିକ ସହିତ IPSec VPN ଏବଂ Xauth ସତ୍ୟାପନ"</item>
+    <item msgid="3319427315593649917">"ସର୍ଟିଫିକେଟ୍‌ ଏବଂ Xauth ପ୍ରାମାଣିକୀକରଣ ସହ IPSec VPN"</item>
+    <item msgid="8258927774145391041">"ସର୍ଟିଫିକେଟ୍‌ ଓ ହାଇବ୍ରିଡ୍‌ ସତ୍ୟାପନ ସହ IPSec VPN"</item>
+  </string-array>
+    <!-- no translation found for vpn_proxy_settings:0 (2958623927055120839) -->
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ପଚାରନ୍ତୁ"</item>
+    <item msgid="7718817231348607934">"ଆଦୌ ଅନୁମତି ଦିଅନାହିଁ"</item>
+    <item msgid="8184570120217958741">"ସର୍ବଦା ଅନୁମତି ଦିଅନ୍ତୁ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ନିରନ୍ତର"</item>
+    <item msgid="167418068739176448">"ଶ୍ରେଷ୍ଠ ଗତିବିଧି"</item>
+    <item msgid="4760813290195199773">"ଜରୁରୀ (ଫୋର୍‌ଗ୍ରାଉଣ୍ଡ)"</item>
+    <item msgid="2328684826817647595">"ଗୁରୁତ୍ଵପୁର୍ଣ୍ଣ (ପୃଷ୍ଠପଟ)"</item>
+    <item msgid="7746406490652867365">"ବ୍ୟାକଅପ୍‌"</item>
+    <item msgid="5597404364389196754">"ଭାରୀ"</item>
+    <item msgid="1290888779300174556">"ସେବା (ଚାଲୁଛି)"</item>
+    <item msgid="7241098542073939046">"ସେବା (ରିଷ୍ଟାର୍ଟ ହେଉଛି)"</item>
+    <item msgid="6610439017684111046">"ପ୍ରାପକ"</item>
+    <item msgid="7367606086319921117">"ହୋମ୍‌"</item>
+    <item msgid="3344660712396741826">"ଶେଷ ଗତିବିଧି"</item>
+    <item msgid="5006559348883303865">"କ୍ୟାଶ୍ ହୋଇଥିବା (କାର୍ଯ୍ୟକଳାପ)"</item>
+    <item msgid="8633480732468137525">"କ୍ୟାଶ୍ ହୋଇଥିବା (କାର୍ଯ୍ୟକଳାପ କ୍ଲାଏଣ୍ଟ)"</item>
+    <item msgid="6248998242443333892">"କ୍ୟାଶ୍ ହୋଇଥିବା (ଖାଲି)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"ଟିଲ୍"</item>
+    <item msgid="3228505970082457852">"ନୀଳ"</item>
+    <item msgid="6590260735734795647">"ଇଣ୍ଡିଗୋ"</item>
+    <item msgid="3521763377357218577">"ବାଇଗଣୀ"</item>
+    <item msgid="5932337981182999919">"ଗୋଲାପୀ"</item>
+    <item msgid="5642914536624000094">"ନାଲି"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 ଦିନରୁ ଅଧିକ ପୁରୁଣା"</item>
+    <item msgid="8699273238891265610">"60 ଦିନରୁ ଅଧିକ ପୁରୁଣା"</item>
+    <item msgid="8346279419423837266">"90 ଦିନରୁ ବି ଅଧିକ ପୁରୁଣା"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"୧"</item>
+    <item msgid="3118234477029486741">"୦"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ସ୍ଵଚାଳିତ ଭାବେ ଚିହ୍ନଟ କରନ୍ତୁ"</item>
+    <item msgid="773943026484148895">"ମିଟର୍ ହୋଇଥିବା ରୂପେ ବିବେଚନା କରନ୍ତୁ"</item>
+    <item msgid="1008268820118852416">"ମିଟର୍ ହୋଇନଥିବା ରୂପେ ବିବେଚନା କରନ୍ତୁ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ରେଣ୍ଡମାଇଜ୍ ହୋଇଥିବା MAC ବ୍ୟବହାର କରନ୍ତୁ (ଡିଫଲ୍ଟ)"</item>
+    <item msgid="214234417308375326">"ଡିଭାଇସ୍‍ MAC ବ୍ୟବହାର କରନ୍ତୁ"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ନାଁ"</item>
+    <item msgid="1930581185557754880">"ହଁ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ଗାଢ଼"</item>
+    <item msgid="5079453644557603349">"ଫିକା"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ଅଫ୍"</item>
+    <item msgid="4072198137051566919">"ଡିବଗ୍ କରନ୍ତୁ"</item>
+    <item msgid="2473005316958868509">"ଶବ୍ଦବହୁଳ"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"କେବଳ ହୋମ୍ ନେଟ୍‌ୱର୍କ"</item>
+    <item msgid="1161026694891024702">"ସ୍ଵତଃଚାଳିତ"</item>
+  </string-array>
+    <!-- no translation found for preferred_network_mode_choices:11 (5713723042183940349) -->
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ଗ୍ଲୋବାଲ୍"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-or/strings.xml b/tests/CarDeveloperOptions/res/values-or/strings.xml
index bc44cca..df6b193 100644
--- a/tests/CarDeveloperOptions/res/values-or/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-or/strings.xml
@@ -2395,7 +2395,7 @@
     <string name="battery_desc_standby" product="default" msgid="8889482616564520287">"ନିଷ୍କ୍ରିୟ ଫୋନରେ ବ୍ୟବହୃତ ବ୍ୟାଟେରୀ"</string>
     <string name="battery_desc_radio" msgid="5119078473833865414">"ସେଲ୍‌ ରେଡିଓ ଦ୍ୱାରା ବ୍ୟବହୃତ ବ୍ୟାଟେରୀ"</string>
     <string name="battery_sugg_radio" msgid="3616364509738133415">"ସେଲ୍‌ କଭରେଜ୍‌ ନଥିବା ଅଞ୍ଚଳରେ ପାୱାର୍‌ ବଞ୍ଚାଇବାକୁ ବିମାନ ମୋଡ୍‌କୁ ଯାଆନ୍ତୁ"</string>
-    <string name="battery_desc_flashlight" msgid="4574819522143720917">"ଫ୍ଲାଶଲାଇଟ୍‌ ଦ୍ୱାରା ବ୍ୟବହୃତ ବ୍ୟାଟେରୀ"</string>
+    <string name="battery_desc_flashlight" msgid="4574819522143720917">"ଫ୍ଲାସଲାଇଟ୍ ଦ୍ୱାରା ବ୍ୟବହୃତ ବ୍ୟାଟେରୀ"</string>
     <string name="battery_desc_camera" msgid="517966830222999462">"କ୍ୟାମେରା ଦ୍ୱାରା ବ୍ୟବହୃତ ବ୍ୟାଟେରୀ"</string>
     <string name="battery_desc_display" msgid="6701005808894183097">"ଡିସ୍‌ପ୍ଲେ ଓ ବ୍ୟାକ୍‌ଲାଇଟ୍‌ ଦ୍ୱାରା ବ୍ୟବହୃତ ବ୍ୟାଟେରୀ"</string>
     <string name="battery_sugg_display" msgid="6366790848514389990">"ସ୍କ୍ରୀନ୍‌ ଉଜ୍ଜ୍ୱଳତା ଏବଂ/କିମ୍ବା ସ୍କ୍ରୀନ୍‌ ସମୟ ସମାପ୍ତି କମ କରନ୍ତୁ"</string>
diff --git a/tests/CarDeveloperOptions/res/values-pa-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-pa-nokeys/strings.xml
new file mode 100644
index 0000000..c7cacf3
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pa-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ਐਪਲੀਕੇਸ਼ਨਾਂ ਵਿਵਸਥਿਤ ਕਰੋ"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pa/arrays.xml b/tests/CarDeveloperOptions/res/values-pa/arrays.xml
new file mode 100644
index 0000000..c172de4
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pa/arrays.xml
@@ -0,0 +1,345 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"ਅਮਰੀਕਾ"</item>
+    <item msgid="4791956477275129121">"ਯੁਰੋਪ"</item>
+    <item msgid="3812126832016254559">"ਅਫਰੀਕਾ"</item>
+    <item msgid="2765816300353408280">"ਏਸ਼ੀਆ"</item>
+    <item msgid="6683489385344409742">"ਆਸਟਰੇਲੀਆ"</item>
+    <item msgid="5194868215515664953">"ਪ੍ਰਸ਼ਾਂਤ"</item>
+    <item msgid="7044520255415007865">"ਸਭ"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"ਕਨੈਕਟ ਹੈ"</item>
+    <item msgid="983792611851499732">"ਸੱਦੇ ਗਏ"</item>
+    <item msgid="5438273405428201793">"ਅਸਫਲ"</item>
+    <item msgid="4646663015449312554">"ਉਪਲਬਧ"</item>
+    <item msgid="3230556734162006146">"ਰੇਂਜ-ਤੋਂ-ਬਾਹਰ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"ਪਿਛਲੇ 30 ਦਿਨ"</item>
+    <item msgid="3211287705232736964">"ਵਰਤੋਂ ਸਾਈਕਲ ਸੈੱਟ ਕਰੋ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"ਵਰਤੋਂ ਸਮਾਂ"</item>
+    <item msgid="2784401352592276015">"ਆਖਰੀ ਵਾਰ ਵਰਤਿਆ"</item>
+    <item msgid="249854287216326349">"ਐਪ ਦਾ ਨਾਮ"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ਕੋਈ ਨਹੀਂ"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ਕੋਈ ਨਹੀਂ"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ਕੋਈ ਨਹੀਂ"</item>
+    <item msgid="1464741437353223198">"ਮੈਨੁਅਲ"</item>
+    <item msgid="5793600062487886090">"ਪ੍ਰੌਕਸੀ ਆਟੋ-ਕੌਂਫਿਗਰ"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ਕੋਈ ਨਹੀਂ"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ਜਾਂ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ਅੰਦਰੂਨੀ ਡੀਵਾਈਸ ਸਟੋਰੇਜ"</item>
+    <item msgid="3186681694079967527">"ਹਟਾਉਣਯੋਗ SD ਕਾਰਡ"</item>
+    <item msgid="6902033473986647035">"ਸਿਸਟਮ ਨੂੰ ਨਿਰਧਾਰਿਤ ਕਰਨ ਦਿਓ"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ਟਿਕਾਣਾ"</item>
+    <item msgid="6842381562497597649">"ਨਿੱਜੀ"</item>
+    <item msgid="3966700236695683444">"ਮੈਸੇਂਜ਼ਿੰਗ"</item>
+    <item msgid="8563996233342430477">"ਮੀਡੀਆ"</item>
+    <item msgid="5323851085993963783">"ਡੀਵਾਈਸ"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ਕੋਰਸ ਨਿਰਧਾਰਿਤ ਸਥਾਨ"</item>
+    <item msgid="1830619568689922920">"ਸਹੀ ਨਿਰਧਾਰਿਤ ਸਥਾਨ"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"ਥਰਥਰਾਹਟ ਕਰੋ"</item>
+    <item msgid="8632513128515114092">"ਸੰਪਰਕ ਪੜ੍ਹੋ"</item>
+    <item msgid="3741042113569620272">"ਸੰਪਰਕ ਸੰਸ਼ੋਧਿਤ ਕਰੋ"</item>
+    <item msgid="4204420969709009931">"ਕਾਲ ਲੌਗ ਪੜ੍ਹੋ"</item>
+    <item msgid="2260380357119423209">"ਕਾਲ ਲੌਗ ਸੰਸ਼ੋਧਿਤ ਕਰੋ"</item>
+    <item msgid="6550710385014530934">"ਕੈਲੰਡਰ ਪੜ੍ਹੋ"</item>
+    <item msgid="3575906174264853951">"ਕੈਲੰਡਰ ਸੰਸ਼ੋਧਿਤ ਕਰੋੇ"</item>
+    <item msgid="4319843242568057174">"ਵਾਈ-ਫਾਈ ਸਕੈਨ"</item>
+    <item msgid="2981791890467303819">"ਸੂਚਨਾ"</item>
+    <item msgid="6617825156152476692">"ਸੈਲ ਸਕੈਨ"</item>
+    <item msgid="8865260890611559753">"ਫ਼ੋਨ ਤੇ ਕਾਲ ਕਰੋ"</item>
+    <item msgid="3254999273961542982">"SMS ਪੜ੍ਹੋ"</item>
+    <item msgid="7711446453028825171">"SMS ਲਿਖੋ"</item>
+    <item msgid="6123238544099198034">"SMS ਪ੍ਰਾਪਤ ਕਰੋ"</item>
+    <item msgid="838342167431596036">"ਸੰਕਟਕਾਲੀਨ SMS ਪ੍ਰਾਪਤ ਕਰੋ"</item>
+    <item msgid="8554432731560956686">"MMS ਪ੍ਰਾਪਤ ਕਰੋ"</item>
+    <item msgid="7464863464299515059">"WAP ਪੁਸ਼ ਪ੍ਰਾਪਤ ਕਰੋ"</item>
+    <item msgid="310463075729606765">"SMS ਭੇਜੋ"</item>
+    <item msgid="7338021933527689514">"ICC SMS ਪੜ੍ਹੋ"</item>
+    <item msgid="6130369335466613036">"ICC SMS ਲਿਖੋ"</item>
+    <item msgid="6536865581421670942">"ਸੈਟਿੰਗਾਂ ਬਦਲੋ"</item>
+    <item msgid="4547203129183558973">"ਟੌਪ ਤੇ ਡ੍ਰਾ ਕਰੋ"</item>
+    <item msgid="9080347512916542840">"ਪਹੁੰਚ ਸੂਚਨਾਵਾਂ"</item>
+    <item msgid="5332718516635907742">"ਕੈਮਰਾ"</item>
+    <item msgid="6098422447246167852">" ਆਡੀਓ  ਰਿਕਾਰਡ ਕਰੋ"</item>
+    <item msgid="9182794235292595296">" ਆਡੀਓ  ਪਲੇ ਕਰੋ"</item>
+    <item msgid="8760743229597702019">"ਕਲਿਪਬੋਰਡ ਪੜ੍ਹੋ"</item>
+    <item msgid="2266923698240538544">"ਕਲਿਪਬੋਰਡ ਬਦਲੋ"</item>
+    <item msgid="1801619438618539275">"ਮੀਡੀਆ ਬਟਨ"</item>
+    <item msgid="31588119965784465">" ਆਡੀਓ  ਫੋਕਸ"</item>
+    <item msgid="7565226799008076833">"ਮਾਸਟਰ ਵੌਲਿਊਮ"</item>
+    <item msgid="5420704980305018295">"ਅਵਾਜ਼ ਵੋਲਯੂਮ"</item>
+    <item msgid="5797363115508970204">"ਰਿੰਗ ਦੀ ਅਵਾਜ਼"</item>
+    <item msgid="8233154098550715999">"ਮੀਡੀਆ ਦੀ ਅਵਾਜ਼"</item>
+    <item msgid="5196715605078153950">"ਅਲਾਰਮ ਦੀ ਅਵਾਜ਼"</item>
+    <item msgid="394030698764284577">"ਸੂਚਨਾ ਵੌਲਿਊਮ"</item>
+    <item msgid="8952898972491680178">"bluetooth ਵੌਲਿਊਮ"</item>
+    <item msgid="8506227454543690851">"ਸਕਿਰਿਆ ਰੱਖੋ"</item>
+    <item msgid="1108160036049727420">"ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਦਾ ਨਿਰੀਖਣ ਕਰੋ"</item>
+    <item msgid="1496205959751719491">"ਉੱਚ ਪਾਵਰ ਨਿਰਧਾਰਿਤ ਸਥਾਨ ਦਾ ਨਿਰੀਖਣ ਕਰੋ"</item>
+    <item msgid="3776296279910987380">"ਵਰਤੋਂ ਸਟੈਟਸ ਪ੍ਰਾਪਤ ਕਰੋ"</item>
+    <item msgid="8827100324471975602">"ਮਾਈਕ੍ਰੋਫੋਨ ਨੂੰ ਮਿਊਟ/ਅਨਮਿਊਟ ਕਰੋ"</item>
+    <item msgid="6880736730520126864">"ਟੋਸਟ  ਦਿਖਾਓ"</item>
+    <item msgid="4933375960222609935">"ਪ੍ਰੋਜੈਕਟ ਮੀਡੀਆ"</item>
+    <item msgid="8357907018938895462">"VPN ਨੂੰ ਸਰਗਰਮ ਕਰੋ"</item>
+    <item msgid="8143812849911310973">"ਵਾਲਪੇਪਰ ਲਿਖੋ"</item>
+    <item msgid="6266277260961066535">"ਸਹਾਇਕ ਬਣਤਰ"</item>
+    <item msgid="7715498149883482300">"ਸਹਾਇਕ ਸਕਰੀਨਸ਼ਾਟ"</item>
+    <item msgid="4046679376726313293">"ਫ਼ੋਨ ਸਥਿਤੀ ਪੜ੍ਹੋ"</item>
+    <item msgid="6329507266039719587">"ਵੌਇਸਮੇਲ ਸ਼ਾਮਲ ਕਰੋ"</item>
+    <item msgid="7692440726415391408">"SIP ਵਰਤੋ"</item>
+    <item msgid="8572453398128326267">"ਆਊਟਗੋਇੰਗ ਕਾਲ \'ਤੇ ਪ੍ਰਕਿਰਿਆ ਕਰੋ"</item>
+    <item msgid="7775674394089376306">"ਫਿੰਗਰਪ੍ਰਿੰਟ"</item>
+    <item msgid="3182815133441738779">"ਸਰੀਰ ਸੰਵੇਦਕ"</item>
+    <item msgid="2793100005496829513">"ਸੈਲ ਪ੍ਰਸਾਰਨਾਂ ਨੂੰ ਪੜ੍ਹੋ"</item>
+    <item msgid="2633626056029384366">"ਬਣਾਉਟੀ ਟਿਕਾਣਾ"</item>
+    <item msgid="8356842191824684631">"ਸਟੋਰੇਜ ਪੜ੍ਹੋ"</item>
+    <item msgid="5671906070163291500">"ਸਟੋਰੇਜ ਲਿਖੋ"</item>
+    <item msgid="2791955098549340418">"ਸਕਰੀਨ ਚਾਲੂ ਕਰੋ"</item>
+    <item msgid="5599435119609178367">"ਖਾਤੇ ਲਓ"</item>
+    <item msgid="1165623660533024666">"ਬੈਕਗ੍ਰਾਊਂਡ ਵਿੱਚ ਚਲਾਓ"</item>
+    <item msgid="6423861043647911030">"ਪਹੁੰਚਯੋਗਤਾ ਅਵਾਜ਼"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"ਘੱਟ"</item>
+    <item msgid="4816511817309094890">"ਔਸਤ"</item>
+    <item msgid="8305084671259331134">"ਜ਼ਿਆਦਾ"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ਪੂਰਵ-ਨਿਰਧਾਰਤ"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif ਕੰਡੈਂਸਡ"</item>
+    <item msgid="6529379119163117545">"Sans-serif ਮੋਨੋਸਪੇਸ"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"ਅਨਿਯਮਤ"</item>
+    <item msgid="4627069151979553527">"ਪ੍ਰਵਾਹੀ ਲਿਖਤ"</item>
+    <item msgid="6896773537705206194">"ਛੋਟੇ ਕੈਪੀਟਲਸ"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+    <!-- no translation found for captioning_edge_type_selector_titles:4 (8019330250538856521) -->
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"ਪ੍ਰੀ-ਸ਼ੇਅਰ ਕੀਤੀਆਂ ਕੁੰਜੀਆਂ ਨਾਲ L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"ਸਰਟੀਫਿਕੇਟਾਂ ਨਾਲ L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"ਪ੍ਰੀ-ਸ਼ੇਅਰਡ ਕੁੰਜੀਆਂ ਅਤੇ Xauth ਪ੍ਰਮਾਣੀਕਰਨ ਨਾਲ IPSec VPN"</item>
+    <item msgid="3319427315593649917">"ਸਰਟੀਫਿਕੇਟਾਂ ਨਾਲ IPSec VPN ਅਤੇ Xauth ਪ੍ਰਮਾਣੀਕਰਨ"</item>
+    <item msgid="8258927774145391041">"ਸਰਟੀਫਿਕੇਟਾਂ ਅਤੇ ਹਾਈਬ੍ਰਿਡ ਪ੍ਰਮਾਣੀਕਰਨ ਨਾਲ IPSec VPN"</item>
+  </string-array>
+    <!-- no translation found for vpn_proxy_settings:0 (2958623927055120839) -->
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ਪੁੱਛੋ"</item>
+    <item msgid="7718817231348607934">"ਕਦੇ ਵੀ ਆਗਿਆ ਨਾ ਦਿਓ"</item>
+    <item msgid="8184570120217958741">"ਹਮੇਸ਼ਾਂ ਆਗਿਆ ਦਿਓ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ਸਥਿਰ"</item>
+    <item msgid="167418068739176448">"ਟੌਪ ਗਤੀਵਿਧੀ"</item>
+    <item msgid="4760813290195199773">"ਮਹੱਤਵਪੂਰਣ (ਫੋਰਗ੍ਰਾਉਂਡ)"</item>
+    <item msgid="2328684826817647595">"ਮਹੱਤਵਪੂਰਣ (ਪਿਛੋਕੜ)"</item>
+    <item msgid="7746406490652867365">"ਬੈਕਅੱਪ"</item>
+    <item msgid="5597404364389196754">"ਹੈਵੀ ਵੇਟ"</item>
+    <item msgid="1290888779300174556">"ਸੇਵਾ (ਚੱਲ ਰਹੀ ਹੈ)"</item>
+    <item msgid="7241098542073939046">"ਸੇਵਾ (ਰੀਸਟਾਰਟ ਕਰ ਰਿਹਾ ਹੈ)"</item>
+    <item msgid="6610439017684111046">"ਰਿਸੀਵਰ"</item>
+    <item msgid="7367606086319921117">"ਹੋਮ"</item>
+    <item msgid="3344660712396741826">"ਪਿਛਲੀ ਗਤੀਵਿਧੀ"</item>
+    <item msgid="5006559348883303865">"ਕੈਚ ਕੀਤੀ (ਗਤੀਵਿਧੀ)"</item>
+    <item msgid="8633480732468137525">"ਕੈਸ਼ ਕੀਤੀ (ਗਤੀਵਿਧੀ ਕਲਾਇੰਟ)"</item>
+    <item msgid="6248998242443333892">"ਕੈਚ ਕੀਤੀ (ਖਾਲੀ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"ਨੀਲਾ"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"ਜਾਮਨੀ"</item>
+    <item msgid="5932337981182999919">"ਗੁਲਾਬੀ"</item>
+    <item msgid="5642914536624000094">"ਲਾਲ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 ਦਿਨਾਂ ਤੋਂ ਜ਼ਿਆਦਾ ਪੁਰਾਣੀ"</item>
+    <item msgid="8699273238891265610">"60 ਦਿਨਾਂ ਤੋਂ ਜ਼ਿਆਦਾ ਪੁਰਾਣੀ"</item>
+    <item msgid="8346279419423837266">"90 ਦਿਨਾਂ ਤੋਂ ਜ਼ਿਆਦਾ ਪੁਰਾਣੀ"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ਸਵੈਚਲਿਤ ਤੌਰ \'ਤੇ ਪਤਾ ਲਗਾਓ"</item>
+    <item msgid="773943026484148895">"ਮੀਟਰਬੱਧ ਮੰਨੋ"</item>
+    <item msgid="1008268820118852416">"ਗੈਰ-ਮੀਟਰਬੱਧ ਮੰਨੋ"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ਬੇਤਰਤੀਬ MAC (ਪੂਰਵ-ਨਿਰਧਾਰਤ) ਵਰਤੋ"</item>
+    <item msgid="214234417308375326">"ਡੀਵਾਈਸ MAC ਵਰਤੋ"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ਨਹੀਂ"</item>
+    <item msgid="1930581185557754880">"ਹਾਂ"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ਗੂੜ੍ਹਾ"</item>
+    <item msgid="5079453644557603349">"ਬਲਬ"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ਬੰਦ"</item>
+    <item msgid="4072198137051566919">"ਡੀਬੱਗ"</item>
+    <item msgid="2473005316958868509">"ਵਰਬੋਸ"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ਸਿਰਫ਼ ਹੋਮ"</item>
+    <item msgid="1161026694891024702">"ਸਵੈਚਲਿਤ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA ਤਰਜੀਹੀ"</item>
+    <item msgid="7581481130337402578">"ਸਿਰਫ਼ GSM"</item>
+    <item msgid="8579197487913425819">"ਸਿਰਫ਼ WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ਸਵੈਚਲਿਤ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ਸਵੈਚਲਿਤ"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"ਸਿਰਫ਼ EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ਗਲੋਬਲ"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"ਸਿਰਫ਼ TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ਗਲੋਬਲ"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pa/strings.xml b/tests/CarDeveloperOptions/res/values-pa/strings.xml
index a5916c5..a93be52 100644
--- a/tests/CarDeveloperOptions/res/values-pa/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-pa/strings.xml
@@ -3754,7 +3754,7 @@
     <string name="assist_access_context_title" msgid="2274614501747710439">"ਸਕ੍ਰੀਨ ਤੋਂ ਲਿਖਤ ਵਰਤੋ"</string>
     <string name="assist_access_context_summary" msgid="5867997494395842785">"ਸਹਾਇਕ ਐਪ ਨੂੰ ਲਿਖਤ ਵਜੋਂ ਸਕ੍ਰੀਨ ਸਮੱਗਰੀ ਤੱਕ ਪਹੁੰਚ ਦੀ ਆਗਿਆ ਦਿਓ"</string>
     <string name="assist_access_screenshot_title" msgid="1991014038776117688">"ਸਕ੍ਰੀਨਸ਼ਾਟ ਵਰਤੋ"</string>
-    <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"ਸਹਾਇਕ ਐਪ ਨੂੰ ਸਕ੍ਰੀਨ ਦੇ ਇੱਕ ਚਿੱਤਰ ਤੱਕ ਪਹੁੰਚ ਦੀ ਆਗਿਆ ਦਿਓ"</string>
+    <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"ਸਹਾਇਕ ਐਪ ਨੂੰ ਸਕ੍ਰੀਨ ਦੇ ਚਿੱਤਰ ਤੱਕ ਪਹੁੰਚ ਕਰਨ ਦਿਓ"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"ਸਕ੍ਰੀਨ ਨੂੰ ਫਲੈਸ਼ ਕਰੋ"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"ਸਹਾਇਕ ਐਪ ਵੱਲੋਂ ਸਕ੍ਰੀਨ ਜਾਂ ਸਕ੍ਰੀਨਸ਼ਾਟ ਤੋਂ ਲਿਖਤ \'ਤੇ ਪਹੁੰਚ ਕਰਨ \'ਤੇ ਸਕ੍ਰੀਨ ਦੇ ਕਿਨਾਰਿਆਂ ਨੂੰ ਫਲੈਸ਼ ਕਰੋ"</string>
     <string name="assist_footer" msgid="7030121180457472165">"ਸਹਾਇਕ ਐਪਾਂ ਤੁਹਾਡੇ ਵੱਲੋਂ ਦੇਖੀ ਜਾ ਰਹੀ ਸਕ੍ਰੀਨ ਤੋਂ ਪ੍ਰਾਪਤ ਜਾਣਕਾਰੀ ਦੇ ਆਧਾਰ \'ਤੇ ਤੁਹਾਡੀ ਮਦਦ ਕਰ ਸਕਦੀਆਂ ਹਨ। ਕੁਝ ਐਪਾਂ ਤੁਹਾਨੂੰ ਏਕੀਕ੍ਰਿਤ ਸਹਾਇਤਾ ਦੇਣ ਲਈ ਲਾਂਚਰ ਅਤੇ ਅਵਾਜ਼ੀ ਇਨਪੁੱਟ ਸੇਵਾਵਾਂ ਦੋਵਾਂ ਦਾ ਸਮਰਥਨ ਕਰਦੀਆਂ ਹਨ।"</string>
diff --git a/tests/CarDeveloperOptions/res/values-pl-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-pl-nokeys/strings.xml
new file mode 100644
index 0000000..e613817
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pl-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Zarządzaj aplikacjami"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pl/arrays.xml b/tests/CarDeveloperOptions/res/values-pl/arrays.xml
new file mode 100644
index 0000000..f63a0c4
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pl/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Ameryka"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afryka"</item>
+    <item msgid="2765816300353408280">"Azja"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacyfik"</item>
+    <item msgid="7044520255415007865">"Wszystkie"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekund"</item>
+    <item msgid="772029947136115322">"30 sekund"</item>
+    <item msgid="8743663928349474087">"1 minuta"</item>
+    <item msgid="1506508631223164814">"2 minuty"</item>
+    <item msgid="8664703938127907662">"5 min"</item>
+    <item msgid="5827960506924849753">"10 min."</item>
+    <item msgid="6677424950124253938">"30 min"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Mały"</item>
+    <item msgid="591935967183159581">"Wartość domyślna"</item>
+    <item msgid="1714184661981538355">"Duży"</item>
+    <item msgid="6195563047686707484">"Największy"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skanowanie…"</item>
+    <item msgid="8058143476674427024">"Trwa łączenie z siecią <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Uwierzytelnianie w sieci <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Uzyskiwanie adresu IP z sieci <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Połączono z siecią <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Zawieszony"</item>
+    <item msgid="4133290864821295785">"Trwa rozłączanie z siecią <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Rozłączona"</item>
+    <item msgid="2847316776634969068">"Niepowodzenie"</item>
+    <item msgid="4390990424746035383">"Zablokowane"</item>
+    <item msgid="3618248791367063949">"Tymczasowo, by uniknąć połączenia o niskiej jakości"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Naciśnij przycisk"</item>
+    <item msgid="7401896200768713930">"Kod PIN z drugiego urządzenia"</item>
+    <item msgid="4526848028011846710">"Kod PIN z tego urządzenia"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Połączono"</item>
+    <item msgid="983792611851499732">"Zaproszono"</item>
+    <item msgid="5438273405428201793">"Niepowodzenie"</item>
+    <item msgid="4646663015449312554">"Dostępna"</item>
+    <item msgid="3230556734162006146">"Poza zasięgiem"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuty"</item>
+    <item msgid="2759776603549270587">"5 minut"</item>
+    <item msgid="167772676068860015">"1 godzina"</item>
+    <item msgid="5985477119043628504">"Brak limitu czasu"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Ostatnie 30 dni"</item>
+    <item msgid="3211287705232736964">"Ustaw cykl danych..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Czas użycia"</item>
+    <item msgid="2784401352592276015">"Ostatnie użycie"</item>
+    <item msgid="249854287216326349">"Nazwa aplikacji"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Brak"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Brak"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statyczny"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Brak"</item>
+    <item msgid="1464741437353223198">"Instrukcja"</item>
+    <item msgid="5793600062487886090">"Autokonfiguracja proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Brak"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP lub CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Wewnętrzna pamięć urządzenia"</item>
+    <item msgid="3186681694079967527">"Wymienna karta SD"</item>
+    <item msgid="6902033473986647035">"Zastosuj ustawienie systemowe"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokalizacja"</item>
+    <item msgid="6842381562497597649">"Osobiste"</item>
+    <item msgid="3966700236695683444">"Wiadomości"</item>
+    <item msgid="8563996233342430477">"Multimedia"</item>
+    <item msgid="5323851085993963783">"Urządzenie"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"przybliżona lokalizacja"</item>
+    <item msgid="1830619568689922920">"dokładna lokalizacja"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"wibracje"</item>
+    <item msgid="8632513128515114092">"odczytywanie kontaktów"</item>
+    <item msgid="3741042113569620272">"modyfikowanie kontaktów"</item>
+    <item msgid="4204420969709009931">"odczytywanie rejestru połączeń"</item>
+    <item msgid="2260380357119423209">"modyfikowanie rejestru połączeń"</item>
+    <item msgid="6550710385014530934">"odczytywanie kalendarza"</item>
+    <item msgid="3575906174264853951">"modyfikowanie kalendarza"</item>
+    <item msgid="4319843242568057174">"skanowanie wi-fi"</item>
+    <item msgid="2981791890467303819">"powiadomienie"</item>
+    <item msgid="6617825156152476692">"skanowanie bts"</item>
+    <item msgid="8865260890611559753">"połączenia telefoniczne"</item>
+    <item msgid="3254999273961542982">"odczytywanie SMS-ów"</item>
+    <item msgid="7711446453028825171">"zapisywanie SMS-ów"</item>
+    <item msgid="6123238544099198034">"odbieranie SMS-ów"</item>
+    <item msgid="838342167431596036">"odbieranie SMS-ów alarmowych"</item>
+    <item msgid="8554432731560956686">"odbieranie MMS-ów"</item>
+    <item msgid="7464863464299515059">"odbieranie wiadomości WAP push"</item>
+    <item msgid="310463075729606765">"wysyłanie SMS-ów"</item>
+    <item msgid="7338021933527689514">"odczytywanie SMS-ów ICC"</item>
+    <item msgid="6130369335466613036">"zapisywanie SMS-ów ICC"</item>
+    <item msgid="6536865581421670942">"modyfikowanie ustawień"</item>
+    <item msgid="4547203129183558973">"rysuj na górze"</item>
+    <item msgid="9080347512916542840">"dostęp do powiadomień"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"nagraj dźwięk"</item>
+    <item msgid="9182794235292595296">"odtwórz dźwięk"</item>
+    <item msgid="8760743229597702019">"czytaj schowek"</item>
+    <item msgid="2266923698240538544">"modyfikuj schowek"</item>
+    <item msgid="1801619438618539275">"przyciski multimediów"</item>
+    <item msgid="31588119965784465">"aktywność audio"</item>
+    <item msgid="7565226799008076833">"głośność główna"</item>
+    <item msgid="5420704980305018295">"głośność mowy"</item>
+    <item msgid="5797363115508970204">"głośność dzwonka"</item>
+    <item msgid="8233154098550715999">"głośność multimediów"</item>
+    <item msgid="5196715605078153950">"głośność alarmu"</item>
+    <item msgid="394030698764284577">"głośność powiadomień"</item>
+    <item msgid="8952898972491680178">"głośność Bluetooth"</item>
+    <item msgid="8506227454543690851">"utrzymanie aktywności"</item>
+    <item msgid="1108160036049727420">"monitorowanie lokalizacji"</item>
+    <item msgid="1496205959751719491">"monitor wysoki zasilanie lokalizacja"</item>
+    <item msgid="3776296279910987380">"pobierz statystyki użycia"</item>
+    <item msgid="8827100324471975602">"wycisz mikrofon/wyłącz wyciszenie"</item>
+    <item msgid="6880736730520126864">"wyświetlanie powiadomienia"</item>
+    <item msgid="4933375960222609935">"wyświetl multimedia"</item>
+    <item msgid="8357907018938895462">"aktywacja połączenia VPN"</item>
+    <item msgid="8143812849911310973">"zapis tapety"</item>
+    <item msgid="6266277260961066535">"wsparcie struktury"</item>
+    <item msgid="7715498149883482300">"wsparcie robienia zrzutów ekranu"</item>
+    <item msgid="4046679376726313293">"czytanie stanu telefonu"</item>
+    <item msgid="6329507266039719587">"dodawanie poczty głosowej"</item>
+    <item msgid="7692440726415391408">"zastosowanie SIP"</item>
+    <item msgid="8572453398128326267">"przetwarzanie połączeń wychodzących"</item>
+    <item msgid="7775674394089376306">"odcisk palca"</item>
+    <item msgid="3182815133441738779">"czujniki na ciele"</item>
+    <item msgid="2793100005496829513">"odczyt komunikatów z sieci komórkowej"</item>
+    <item msgid="2633626056029384366">"pozorowanie lokalizacji"</item>
+    <item msgid="8356842191824684631">"odczyt pamięci"</item>
+    <item msgid="5671906070163291500">"zapis w pamięci"</item>
+    <item msgid="2791955098549340418">"włączanie ekranu"</item>
+    <item msgid="5599435119609178367">"pobieranie listy kont"</item>
+    <item msgid="1165623660533024666">"uruchamianie w tle"</item>
+    <item msgid="6423861043647911030">"głośność przy ułatwieniach dostępu"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Lokalizacja"</item>
+    <item msgid="6656077694190491067">"Lokalizacja"</item>
+    <item msgid="8790228218278477369">"Lokalizacja"</item>
+    <item msgid="7836406246005211990">"Wibracje"</item>
+    <item msgid="3951439024549922598">"Odczytywanie kontaktów"</item>
+    <item msgid="8802152411647068">"Modyfikowanie kontaktów"</item>
+    <item msgid="229544934599698735">"Odczytywanie rejestru połączeń"</item>
+    <item msgid="7396102294405899613">"Modyfikowanie rejestru połączeń"</item>
+    <item msgid="3597797992398484655">"Odczytywanie kalendarza"</item>
+    <item msgid="2705975774250907343">"Modyfikowanie kalendarza"</item>
+    <item msgid="4668747371441932697">"Lokalizacja"</item>
+    <item msgid="1487578921720243646">"Publikowanie powiadomień"</item>
+    <item msgid="4636080349724146638">"Lokalizacja"</item>
+    <item msgid="673510900286463926">"Połączenia telefoniczne"</item>
+    <item msgid="542083422784609790">"Czytanie SMS-ów/MMS-ów"</item>
+    <item msgid="1033780373029588436">"Pisanie SMS-ów/MMS-ów"</item>
+    <item msgid="5647111115517787488">"Odbieranie SMS-ów/MMS-ów"</item>
+    <item msgid="8591105601108455893">"Odbieranie SMS-ów/MMS-ów"</item>
+    <item msgid="7730995008517841903">"Odbieranie SMS-ów/MMS-ów"</item>
+    <item msgid="2613033109026626086">"Odbieranie SMS-ów/MMS-ów"</item>
+    <item msgid="3037159047591081136">"Wysyłanie SMS-ów/MMS-ów"</item>
+    <item msgid="4726682243833913568">"Czytanie SMS-ów/MMS-ów"</item>
+    <item msgid="6555678522277865572">"Pisanie SMS-ów/MMS-ów"</item>
+    <item msgid="6981734935578130884">"Modyfikowanie ustawień"</item>
+    <item msgid="8705854389991425629">"Rysuj na górze"</item>
+    <item msgid="5861356020344153651">"Dostęp do powiadomień"</item>
+    <item msgid="78432174621628659">"Aparat"</item>
+    <item msgid="3986116419882154794">"Nagraj dźwięk"</item>
+    <item msgid="4516840825756409490">"Odtwórz dźwięk"</item>
+    <item msgid="6811712502798183957">"Czytaj schowek"</item>
+    <item msgid="2780369012602289114">"Modyfikuj schowek"</item>
+    <item msgid="2331359440170850868">"Przyciski multimediów"</item>
+    <item msgid="6133599737122751231">"Aktywność audio"</item>
+    <item msgid="6844485713404805301">"Głośność główna"</item>
+    <item msgid="1600379420669104929">"Głośność mowy"</item>
+    <item msgid="6296768210470214866">"Głośność dzwonka"</item>
+    <item msgid="510690696071629241">"Głośność multimediów"</item>
+    <item msgid="406861638631430109">"Głośność alarmu"</item>
+    <item msgid="4715864795872233884">"Głośność powiadomień"</item>
+    <item msgid="2311478519251301183">"Głośność Bluetooth"</item>
+    <item msgid="5133991377896747027">"Utrzymanie aktywności"</item>
+    <item msgid="2464189519136248621">"Lokalizacja"</item>
+    <item msgid="2062677934050803037">"Lokalizacja"</item>
+    <item msgid="1735171933192715957">"Pobierz statystyki użycia"</item>
+    <item msgid="1014093788778383554">"Wycisz mikrofon/wyłącz wyciszenie"</item>
+    <item msgid="4199297950608622850">"Wyświetlanie komunikatu"</item>
+    <item msgid="2527962435313398821">"Wyświetlanie multimediów"</item>
+    <item msgid="5117506254221861929">"Aktywacja połączenia VPN"</item>
+    <item msgid="8291198322681891160">"Zapis tapety"</item>
+    <item msgid="7106921284621230961">"Wsparcie struktury"</item>
+    <item msgid="4496533640894624799">"Wsparcie robienia zrzutów ekranu"</item>
+    <item msgid="2598847264853993611">"Czytanie stanu telefonu"</item>
+    <item msgid="9215610846802973353">"Dodawanie poczty głosowej"</item>
+    <item msgid="9186411956086478261">"Zastosowanie SIP"</item>
+    <item msgid="6884763100104539558">"Przetwarzanie połączeń wychodzących"</item>
+    <item msgid="125513972170580692">"Odcisk palca"</item>
+    <item msgid="2556071024281275619">"Czujniki na ciele"</item>
+    <item msgid="617168514928339387">"Odczyt komunikatów z sieci komórkowej"</item>
+    <item msgid="7134693570516523585">"Pozorowanie lokalizacji"</item>
+    <item msgid="7224489175375229399">"Odczyt pamięci"</item>
+    <item msgid="8472735063903258202">"Zapis w pamięci"</item>
+    <item msgid="4069276819909595110">"Włączanie ekranu"</item>
+    <item msgid="1228338896751121025">"Pobieranie listy kont"</item>
+    <item msgid="3181581793459233672">"Działanie w tle"</item>
+    <item msgid="2340936043025374076">"Głośność przy ułatwieniach dostępu"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Krótki"</item>
+    <item msgid="4816511817309094890">"Średnia"</item>
+    <item msgid="8305084671259331134">"Długi"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Wartość domyślna"</item>
+    <item msgid="4147246073737933622">"Bezszeryfowa"</item>
+    <item msgid="3117680749167407907">"Bezszeryfowa wąska"</item>
+    <item msgid="6529379119163117545">"Bezszeryfowy o stałej szerokości"</item>
+    <item msgid="1487203730637617924">"Szeryfowa"</item>
+    <item msgid="4937790671987480464">"Szeryfowy o stałej szerokości"</item>
+    <item msgid="4448481989108928248">"Zwykły"</item>
+    <item msgid="4627069151979553527">"Kursywa"</item>
+    <item msgid="6896773537705206194">"Kapitaliki"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Wartość domyślna"</item>
+    <item msgid="6488643537808152001">"Brak"</item>
+    <item msgid="552332815156010137">"Obrys"</item>
+    <item msgid="7187891159463789272">"Z cieniem"</item>
+    <item msgid="8019330250538856521">"Uniesione"</item>
+    <item msgid="8987385315647049787">"Obniżone"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Ustawienia domyślne aplikacji"</item>
+    <item msgid="8611890312638868524">"Biały na czarnym"</item>
+    <item msgid="5891360837786277638">"Czarny na białym"</item>
+    <item msgid="2798457065945456853">"Żółty na czarnym"</item>
+    <item msgid="5799049811524553967">"Żółty na niebieskim"</item>
+    <item msgid="3673930830658169860">"Niestandardowe"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"Sieć VPN wykorzystująca protokół PPTP"</item>
+    <item msgid="1349760781118368659">"Sieć VPN wykorzystująca protokół L2TP/IPSec z kluczami wspólnymi"</item>
+    <item msgid="6128519070545038358">"Sieć VPN wykorzystująca protokół L2TP/IPSec z certyfikatami"</item>
+    <item msgid="312397853907741968">"Sieć VPN wykorzystująca protokół IPSec z kluczami wspólnymi i uwierzytelnianiem Xauth"</item>
+    <item msgid="3319427315593649917">"Sieć VPN wykorzystująca protokół IPSec z certyfikatami i uwierzytelnianiem Xauth"</item>
+    <item msgid="8258927774145391041">"Sieć VPN wykorzystująca protokół IPSec z certyfikatami i uwierzytelnianiem hybrydowym"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Brak"</item>
+    <item msgid="1157046369795346308">"Instrukcja"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Rozłączona"</item>
+    <item msgid="8754480102834556765">"Inicjowanie…"</item>
+    <item msgid="3351334355574270250">"Łączenie…"</item>
+    <item msgid="8303882153995748352">"Połączono"</item>
+    <item msgid="9135049670787351881">"Wygaszanie"</item>
+    <item msgid="2124868417182583926">"Niepowodzenie"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Zapytaj"</item>
+    <item msgid="7718817231348607934">"Nigdy nie zezwalaj"</item>
+    <item msgid="8184570120217958741">"Zawsze zezwalaj"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Niezmienny"</item>
+    <item msgid="167418068739176448">"Najczęstsza aktywność"</item>
+    <item msgid="4760813290195199773">"Ważny (pierwszy plan)"</item>
+    <item msgid="2328684826817647595">"Ważny (w tle)"</item>
+    <item msgid="7746406490652867365">"Kopia zapasowa"</item>
+    <item msgid="5597404364389196754">"Duże obciążenie"</item>
+    <item msgid="1290888779300174556">"Usługa (uruchomiona)"</item>
+    <item msgid="7241098542073939046">"Usługa (ponowne uruchamianie)"</item>
+    <item msgid="6610439017684111046">"Odbiornik"</item>
+    <item msgid="7367606086319921117">"Ekran główny"</item>
+    <item msgid="3344660712396741826">"Ostatnia aktywność"</item>
+    <item msgid="5006559348883303865">"Pamięć podręczna (aktywność)"</item>
+    <item msgid="8633480732468137525">"Pamięć podręczna (klient aktywności)"</item>
+    <item msgid="6248998242443333892">"Pamięć podręczna (pusta)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Morski"</item>
+    <item msgid="3228505970082457852">"Niebieski"</item>
+    <item msgid="6590260735734795647">"Indygo"</item>
+    <item msgid="3521763377357218577">"Fioletowy"</item>
+    <item msgid="5932337981182999919">"Różowy"</item>
+    <item msgid="5642914536624000094">"Czerwony"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Starsze niż 30 dni"</item>
+    <item msgid="8699273238891265610">"Starsze niż 60 dni"</item>
+    <item msgid="8346279419423837266">"Starsze niż 90 dni"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Wykryj automatycznie"</item>
+    <item msgid="773943026484148895">"Traktuj jako sieć z pomiarem użycia danych"</item>
+    <item msgid="1008268820118852416">"Traktuj jako sieć bez pomiaru użycia danych"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Używaj randomizowanego adresu MAC (domyślnie)"</item>
+    <item msgid="214234417308375326">"Użyj adresu MAC urządzenia"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nie"</item>
+    <item msgid="1930581185557754880">"Tak"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Ciemny"</item>
+    <item msgid="5079453644557603349">"Jasny"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Wył."</item>
+    <item msgid="4072198137051566919">"Debuguj"</item>
+    <item msgid="2473005316958868509">"Szczegółowe"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Tylko domowe"</item>
+    <item msgid="1161026694891024702">"Automatycznie"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Preferowany GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Tylko GSM"</item>
+    <item msgid="8579197487913425819">"Tylko WCDMA"</item>
+    <item msgid="8465243227505412498">"Automatyczny GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automatyczny CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA bez EvDo"</item>
+    <item msgid="7278975240951052041">"Tylko EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalna"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Tylko TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalna"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pl/strings.xml b/tests/CarDeveloperOptions/res/values-pl/strings.xml
index 40df7f2..e5d92b5 100644
--- a/tests/CarDeveloperOptions/res/values-pl/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-pl/strings.xml
@@ -2069,14 +2069,14 @@
     <string name="usage_time_label" msgid="5615725415876461039">"Czas użycia"</string>
     <string name="accessibility_settings" msgid="9140621093888234485">"Ułatwienia dostępu"</string>
     <string name="accessibility_settings_title" msgid="1687226556576913576">"Ustawienia ułatwień dostępu"</string>
-    <string name="accessibility_settings_summary" msgid="5742379519336396561">"Czytniki, wyświetlacz, sterowanie interakcjami"</string>
+    <string name="accessibility_settings_summary" msgid="5742379519336396561">"Czytniki, wyświetlacz, zarządzanie interakcjami"</string>
     <string name="vision_settings_title" msgid="7315352351051423944">"Dla niedowidzących"</string>
     <string name="vision_settings_description" msgid="3476589459009287332">"Możesz dostosować urządzenie do swoich potrzeb. Ułatwienia dostępu możesz zawsze zmienić w Ustawieniach."</string>
     <string name="vision_settings_suggestion_title" msgid="7268661419110951128">"Zmień rozmiar czcionki"</string>
     <string name="screen_reader_category_title" msgid="6300714148519645544">"Czytniki ekranu"</string>
     <string name="audio_and_captions_category_title" msgid="6140472938769619212">"Dźwięk i tekst na ekranie"</string>
     <string name="display_category_title" msgid="545168481672250195">"Wyświetlacz"</string>
-    <string name="interaction_control_category_title" msgid="8775039211811947683">"Sterowanie interakcjami"</string>
+    <string name="interaction_control_category_title" msgid="8775039211811947683">"Zarządzanie interakcjami"</string>
     <string name="user_installed_services_category_title" msgid="4288689493753221319">"Pobrane usługi"</string>
     <string name="experimental_category_title" msgid="3797000069740110717">"Eksperymentalne"</string>
     <string name="feature_flags_dashboard_title" msgid="3153034144122754381">"Flagi funkcji"</string>
@@ -4239,9 +4239,9 @@
     <string name="deletion_helper_manual_title" msgid="1011785013431162078">"Instrukcja"</string>
     <string name="deletion_helper_preference_title" msgid="797270307034242206">"Zwolnij miejsce teraz"</string>
     <string name="gesture_preference_title" msgid="583646591518373785">"Gesty"</string>
-    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Sterowanie telefonem za pomocą krótkich gestów"</string>
-    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Sterowanie tabletem za pomocą krótkich gestów"</string>
-    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Sterowanie urządzeniem za pomocą krótkich gestów"</string>
+    <string name="gesture_preference_summary" product="default" msgid="2990736567599191163">"Sterowanie telefonem za pomocą gestów"</string>
+    <string name="gesture_preference_summary" product="tablet" msgid="8303793594714075580">"Sterowanie tabletem za pomocą gestów"</string>
+    <string name="gesture_preference_summary" product="device" msgid="7792199669106960922">"Sterowanie urządzeniem za pomocą gestów"</string>
     <string name="double_tap_power_for_camera_title" msgid="5480829329052517484">"Uruchamianie aparatu"</string>
     <string name="double_tap_power_for_camera_summary" msgid="6591026425496323965">"Aby szybko uruchomić aparat, naciśnij dwukrotnie przycisk zasilania. Możesz to zrobić na dowolnym ekranie."</string>
     <string name="double_tap_power_for_camera_suggestion_title" msgid="509078029429865036">"Szybkie uruchamianie aparatu"</string>
diff --git a/tests/CarDeveloperOptions/res/values-pt-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-pt-nokeys/strings.xml
new file mode 100644
index 0000000..4f43dde
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pt-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gerenciar apps"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pt-rPT-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-pt-rPT-nokeys/strings.xml
new file mode 100644
index 0000000..17ace1f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pt-rPT-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gerir aplicações"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pt-rPT/arrays.xml b/tests/CarDeveloperOptions/res/values-pt-rPT/arrays.xml
new file mode 100644
index 0000000..b338191
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pt-rPT/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"América"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"África"</item>
+    <item msgid="2765816300353408280">"Ásia"</item>
+    <item msgid="6683489385344409742">"Austrália"</item>
+    <item msgid="5194868215515664953">"Pacífico"</item>
+    <item msgid="7044520255415007865">"Todas"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundos"</item>
+    <item msgid="772029947136115322">"30 segundos"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minutos"</item>
+    <item msgid="8664703938127907662">"5 minutos"</item>
+    <item msgid="5827960506924849753">"10 minutos"</item>
+    <item msgid="6677424950124253938">"30 minutos"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Pequeno"</item>
+    <item msgid="591935967183159581">"Predefinição"</item>
+    <item msgid="1714184661981538355">"Grande"</item>
+    <item msgid="6195563047686707484">"O maior"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"A procurar..."</item>
+    <item msgid="8058143476674427024">"A ligar a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"A autenticar com <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"A obter endereço IP de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Ligado a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspenso"</item>
+    <item msgid="4133290864821295785">"A desligar de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Desligado"</item>
+    <item msgid="2847316776634969068">"Sem sucesso"</item>
+    <item msgid="4390990424746035383">"Bloqueado"</item>
+    <item msgid="3618248791367063949">"A evitar temporariamente uma ligação fraca"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Premir botão"</item>
+    <item msgid="7401896200768713930">"PIN do aparelho do elemento"</item>
+    <item msgid="4526848028011846710">"PIN deste aparelho"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Ligada."</item>
+    <item msgid="983792611851499732">"Convidado"</item>
+    <item msgid="5438273405428201793">"Sem sucesso"</item>
+    <item msgid="4646663015449312554">"Disponível"</item>
+    <item msgid="3230556734162006146">"Fora do intervalo"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutos"</item>
+    <item msgid="2759776603549270587">"5 minutos"</item>
+    <item msgid="167772676068860015">"1 hora"</item>
+    <item msgid="5985477119043628504">"Nunca exceder tempo limite"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Últimos 30 dias"</item>
+    <item msgid="3211287705232736964">"Def. ciclo utilização..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Tempo de utilização"</item>
+    <item msgid="2784401352592276015">"Última utilização"</item>
+    <item msgid="249854287216326349">"Nome da aplicação"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Nenhum"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Nenhum"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Estático"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Nenhum"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Config. autom. do proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Nenhum"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ou CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Armazenamento de dispositivo interno"</item>
+    <item msgid="3186681694079967527">"Cartão SD amovível"</item>
+    <item msgid="6902033473986647035">"Permitir que seja o sistema a decidir"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Localização"</item>
+    <item msgid="6842381562497597649">"Pessoal"</item>
+    <item msgid="3966700236695683444">"Mensagens"</item>
+    <item msgid="8563996233342430477">"Multimédia"</item>
+    <item msgid="5323851085993963783">"Dispositivo"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"localização aproximada"</item>
+    <item msgid="1830619568689922920">"localização exata"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrar"</item>
+    <item msgid="8632513128515114092">"ler contactos"</item>
+    <item msgid="3741042113569620272">"modificar os contactos"</item>
+    <item msgid="4204420969709009931">"ler o registo de chamadas"</item>
+    <item msgid="2260380357119423209">"modificar o registo de chamadas"</item>
+    <item msgid="6550710385014530934">"ler calendário"</item>
+    <item msgid="3575906174264853951">"modificar o calendário"</item>
+    <item msgid="4319843242568057174">"procura de Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notificação"</item>
+    <item msgid="6617825156152476692">"procura celular"</item>
+    <item msgid="8865260890611559753">"ligar para telefone"</item>
+    <item msgid="3254999273961542982">"ler SMS"</item>
+    <item msgid="7711446453028825171">"escrever SMS"</item>
+    <item msgid="6123238544099198034">"receber SMS"</item>
+    <item msgid="838342167431596036">"receber SMS de emergência"</item>
+    <item msgid="8554432731560956686">"receber MMS"</item>
+    <item msgid="7464863464299515059">"receber push WAP"</item>
+    <item msgid="310463075729606765">"enviar SMS"</item>
+    <item msgid="7338021933527689514">"ler SMS ICC"</item>
+    <item msgid="6130369335466613036">"escrever SMS ICC"</item>
+    <item msgid="6536865581421670942">"modificar as definições"</item>
+    <item msgid="4547203129183558973">"desenhe na parte superior"</item>
+    <item msgid="9080347512916542840">"aceder às notificações"</item>
+    <item msgid="5332718516635907742">"câmara"</item>
+    <item msgid="6098422447246167852">"gravar áudio"</item>
+    <item msgid="9182794235292595296">"reproduzir áudio"</item>
+    <item msgid="8760743229597702019">"ler área de transferência"</item>
+    <item msgid="2266923698240538544">"modificar área de transferência"</item>
+    <item msgid="1801619438618539275">"botões multimédia"</item>
+    <item msgid="31588119965784465">"orientação do áudio"</item>
+    <item msgid="7565226799008076833">"volume principal"</item>
+    <item msgid="5420704980305018295">"volume de voz"</item>
+    <item msgid="5797363115508970204">"volume do toque"</item>
+    <item msgid="8233154098550715999">"volume de multimédia"</item>
+    <item msgid="5196715605078153950">"volume de alarme"</item>
+    <item msgid="394030698764284577">"volume de notificação"</item>
+    <item msgid="8952898972491680178">"volume de Bluetooth"</item>
+    <item msgid="8506227454543690851">"Manter ativo"</item>
+    <item msgid="1108160036049727420">"monitorizar localização"</item>
+    <item msgid="1496205959751719491">"monitorizar localização de potência elevada"</item>
+    <item msgid="3776296279910987380">"obter estatísticas de utilização"</item>
+    <item msgid="8827100324471975602">"desativar/reativar o som do microfone"</item>
+    <item msgid="6880736730520126864">"mostrar alerta"</item>
+    <item msgid="4933375960222609935">"projetar multimédia"</item>
+    <item msgid="8357907018938895462">"ativar VPN"</item>
+    <item msgid="8143812849911310973">"gravar imagem de fundo"</item>
+    <item msgid="6266277260961066535">"assistir estrutura"</item>
+    <item msgid="7715498149883482300">"assistir captura de ecrã"</item>
+    <item msgid="4046679376726313293">"ler estado do telemóvel"</item>
+    <item msgid="6329507266039719587">"adicionar correio de voz"</item>
+    <item msgid="7692440726415391408">"utilizar SIP"</item>
+    <item msgid="8572453398128326267">"processar chamada efetuada"</item>
+    <item msgid="7775674394089376306">"impressão digital"</item>
+    <item msgid="3182815133441738779">"sensores de corpo"</item>
+    <item msgid="2793100005496829513">"ler difusões celulares"</item>
+    <item msgid="2633626056029384366">"localização de teste"</item>
+    <item msgid="8356842191824684631">"ler armazenamento"</item>
+    <item msgid="5671906070163291500">"gravar no armazenamento"</item>
+    <item msgid="2791955098549340418">"ativar ecrã"</item>
+    <item msgid="5599435119609178367">"obter contas"</item>
+    <item msgid="1165623660533024666">"executar em segundo plano"</item>
+    <item msgid="6423861043647911030">"volume da acessibilidade"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Localização"</item>
+    <item msgid="6656077694190491067">"Localização"</item>
+    <item msgid="8790228218278477369">"Localização"</item>
+    <item msgid="7836406246005211990">"Vibrar"</item>
+    <item msgid="3951439024549922598">"Ler contactos"</item>
+    <item msgid="8802152411647068">"Modificar os contactos"</item>
+    <item msgid="229544934599698735">"Ler registo de chamadas"</item>
+    <item msgid="7396102294405899613">"Modificar o registo de chamadas"</item>
+    <item msgid="3597797992398484655">"Ler calendário"</item>
+    <item msgid="2705975774250907343">"Modificar o calendário"</item>
+    <item msgid="4668747371441932697">"Localização"</item>
+    <item msgid="1487578921720243646">"Publicar notificação"</item>
+    <item msgid="4636080349724146638">"Localização"</item>
+    <item msgid="673510900286463926">"Ligar para telefone"</item>
+    <item msgid="542083422784609790">"Ler SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Escrever SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Receber SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Receber SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Receber SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Receber SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Enviar SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Ler SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Escrever SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Modificar as definições"</item>
+    <item msgid="8705854389991425629">"Desenhe na parte superior"</item>
+    <item msgid="5861356020344153651">"Aceder às notificações"</item>
+    <item msgid="78432174621628659">"Câmara"</item>
+    <item msgid="3986116419882154794">"Gravar áudio"</item>
+    <item msgid="4516840825756409490">"Reproduzir áudio"</item>
+    <item msgid="6811712502798183957">"Ler área de transferência"</item>
+    <item msgid="2780369012602289114">"Modificar área de transferência"</item>
+    <item msgid="2331359440170850868">"Botões multimédia"</item>
+    <item msgid="6133599737122751231">"Orientação do áudio"</item>
+    <item msgid="6844485713404805301">"Volume principal"</item>
+    <item msgid="1600379420669104929">"Volume da voz"</item>
+    <item msgid="6296768210470214866">"Volume do toque"</item>
+    <item msgid="510690696071629241">"Volume de multimédia"</item>
+    <item msgid="406861638631430109">"Volume do alarme"</item>
+    <item msgid="4715864795872233884">"Volume de notificações"</item>
+    <item msgid="2311478519251301183">"Volume de Bluetooth"</item>
+    <item msgid="5133991377896747027">"Manter desperto"</item>
+    <item msgid="2464189519136248621">"Localização"</item>
+    <item msgid="2062677934050803037">"Localização"</item>
+    <item msgid="1735171933192715957">"Obter estatísticas de utilização"</item>
+    <item msgid="1014093788778383554">"Desativar/reativar o som do microfone"</item>
+    <item msgid="4199297950608622850">"Mostrar alerta"</item>
+    <item msgid="2527962435313398821">"Projetar multimédia"</item>
+    <item msgid="5117506254221861929">"Ativar VPN"</item>
+    <item msgid="8291198322681891160">"Gravar imagem de fundo"</item>
+    <item msgid="7106921284621230961">"Assistir estrutura"</item>
+    <item msgid="4496533640894624799">"Assistir captura de ecrã"</item>
+    <item msgid="2598847264853993611">"Ler estado do telemóvel"</item>
+    <item msgid="9215610846802973353">"Adicionar correio de voz"</item>
+    <item msgid="9186411956086478261">"Utilizar SIP"</item>
+    <item msgid="6884763100104539558">"Processar chamada efetuada"</item>
+    <item msgid="125513972170580692">"Impressão digital"</item>
+    <item msgid="2556071024281275619">"Sensores de corpo"</item>
+    <item msgid="617168514928339387">"Ler difusões celulares"</item>
+    <item msgid="7134693570516523585">"Localização de teste"</item>
+    <item msgid="7224489175375229399">"Ler armazenamento"</item>
+    <item msgid="8472735063903258202">"Gravar no armazenamento"</item>
+    <item msgid="4069276819909595110">"Ativar ecrã"</item>
+    <item msgid="1228338896751121025">"Obter contas"</item>
+    <item msgid="3181581793459233672">"Executar em segundo plano"</item>
+    <item msgid="2340936043025374076">"Volume da acessibilidade"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Curto"</item>
+    <item msgid="4816511817309094890">"Média"</item>
+    <item msgid="8305084671259331134">"Longa"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predefinição"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensado"</item>
+    <item msgid="6529379119163117545">"Monoespaço Sans-serif"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Monoespaço Serif"</item>
+    <item msgid="4448481989108928248">"Ocasionais"</item>
+    <item msgid="4627069151979553527">"Cursivo"</item>
+    <item msgid="6896773537705206194">"Maiúsculas pequenas"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predefinição"</item>
+    <item msgid="6488643537808152001">"Nenhum"</item>
+    <item msgid="552332815156010137">"Contorno"</item>
+    <item msgid="7187891159463789272">"Diminuir Sombra"</item>
+    <item msgid="8019330250538856521">"Em relevo"</item>
+    <item msgid="8987385315647049787">"Reduzido"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Utilizar predefinições da aplicação"</item>
+    <item msgid="8611890312638868524">"Branco em preto"</item>
+    <item msgid="5891360837786277638">"Preto em branco"</item>
+    <item msgid="2798457065945456853">"Amarelo em preto"</item>
+    <item msgid="5799049811524553967">"Amarelo em azul"</item>
+    <item msgid="3673930830658169860">"Personalizado"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"VPN L2TP/IPSec com chaves pré-partilhadas"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec com certificados"</item>
+    <item msgid="312397853907741968">"VPN IPSec com chaves pré-partilhadas e autenticação Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec com certificados e autenticação Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec com certificados e autenticação híbrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nenhum"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Desligado"</item>
+    <item msgid="8754480102834556765">"A inicializar..."</item>
+    <item msgid="3351334355574270250">"A ligar..."</item>
+    <item msgid="8303882153995748352">"Ligada."</item>
+    <item msgid="9135049670787351881">"Tempo limite"</item>
+    <item msgid="2124868417182583926">"Sem sucesso"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Perguntar"</item>
+    <item msgid="7718817231348607934">"Nunca permitir"</item>
+    <item msgid="8184570120217958741">"Permitir sempre"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistente"</item>
+    <item msgid="167418068739176448">"Principal atividade"</item>
+    <item msgid="4760813290195199773">"Importante (primeiro plano)"</item>
+    <item msgid="2328684826817647595">"Importante (segundo plano)"</item>
+    <item msgid="7746406490652867365">"Cópia de segurança"</item>
+    <item msgid="5597404364389196754">"Processos complexos"</item>
+    <item msgid="1290888779300174556">"Serviço (em execução)"</item>
+    <item msgid="7241098542073939046">"Serviço (a reiniciar)"</item>
+    <item msgid="6610439017684111046">"Recetor"</item>
+    <item msgid="7367606086319921117">"Início"</item>
+    <item msgid="3344660712396741826">"Última atividade"</item>
+    <item msgid="5006559348883303865">"Em cache (atividade)"</item>
+    <item msgid="8633480732468137525">"Em cache (cliente de atividade)"</item>
+    <item msgid="6248998242443333892">"Em cache (vazio)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Azul esverdeado"</item>
+    <item msgid="3228505970082457852">"Azul"</item>
+    <item msgid="6590260735734795647">"Índigo"</item>
+    <item msgid="3521763377357218577">"Roxo"</item>
+    <item msgid="5932337981182999919">"Cor-de-rosa"</item>
+    <item msgid="5642914536624000094">"Vermelho"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Mais de 30 dias"</item>
+    <item msgid="8699273238891265610">"Mais de 60 dias"</item>
+    <item msgid="8346279419423837266">"Mais de 90 dias"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detetar automaticamente"</item>
+    <item msgid="773943026484148895">"Tratar como acesso limitado"</item>
+    <item msgid="1008268820118852416">"Tratar como acesso ilimitado"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Utilizar MAC aleatório (predefinição)"</item>
+    <item msgid="214234417308375326">"Utilizar MAC do dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Não"</item>
+    <item msgid="1930581185557754880">"Sim"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Escuro"</item>
+    <item msgid="5079453644557603349">"Claro"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desativada"</item>
+    <item msgid="4072198137051566919">"Depuração"</item>
+    <item msgid="2473005316958868509">"Verboso"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Apenas redes domésticas"</item>
+    <item msgid="1161026694891024702">"Automático"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferido"</item>
+    <item msgid="7581481130337402578">"Apenas GSM"</item>
+    <item msgid="8579197487913425819">"Apenas WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automático"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automático"</item>
+    <item msgid="4219607161971472471">"CDMA sem EvDo"</item>
+    <item msgid="7278975240951052041">"Apenas EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Apenas TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pt-rPT/strings.xml b/tests/CarDeveloperOptions/res/values-pt-rPT/strings.xml
index 3e93560..485acf0 100644
--- a/tests/CarDeveloperOptions/res/values-pt-rPT/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-pt-rPT/strings.xml
@@ -1760,7 +1760,7 @@
     <string name="lockpattern_settings_enable_visible_pattern_title" msgid="4935583222709647096">"Ver padrão de desbloqueio"</string>
     <string name="lockpattern_settings_enable_visible_pattern_title_profile" msgid="5338893138982642228">"Tornar o padrão do perfil visível"</string>
     <string name="lockpattern_settings_enable_tactile_feedback_title" msgid="3203621862806531947">"Vibrar ao tocar"</string>
-    <string name="lockpattern_settings_enable_power_button_instantly_locks" msgid="5890335732200257777">"Bloquear com botão lig./desl."</string>
+    <string name="lockpattern_settings_enable_power_button_instantly_locks" msgid="5890335732200257777">"Bloquear com botão ligar/desligar"</string>
     <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Exceto quando mantido bloqueado por <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
     <string name="lockpattern_settings_choose_lock_pattern" msgid="9042142745571386381">"Definir padrão de desbloqueio"</string>
     <string name="lockpattern_settings_change_lock_pattern" msgid="1456643060737114885">"Mudar padrão de desbloqueio"</string>
@@ -2875,7 +2875,7 @@
     <string name="user_cannot_add_accounts_message" msgid="5993561303748749097">"Os perfis restritos não podem adicionar contas"</string>
     <string name="user_remove_user_menu" msgid="3505139157217459864">"Eliminar <xliff:g id="USER_NAME">%1$s</xliff:g> deste dispositivo"</string>
     <string name="user_lockscreen_settings" msgid="3820813814848394568">"Definições do ecrã de bloqueio"</string>
-    <string name="user_add_on_lockscreen_menu" msgid="5211604808199585774">"Adicionar utilizadores do ecrã de bloqueio"</string>
+    <string name="user_add_on_lockscreen_menu" msgid="5211604808199585774">"Adicionar utilizadores a partir do ecrã de bloqueio"</string>
     <string name="user_new_user_name" msgid="3880395219777884838">"Novo utilizador"</string>
     <string name="user_new_profile_name" msgid="3074939718101489937">"Novo perfil"</string>
     <string name="user_confirm_remove_self_title" msgid="6739480453680217543">"Eliminar-se a si próprio?"</string>
@@ -3033,7 +3033,7 @@
     <string name="connected_devices_dashboard_no_nfc_summary" msgid="2610085597733526722">"Bluetooth, modo de condução"</string>
     <string name="connected_devices_dashboard_no_driving_mode_summary" msgid="3524409078596318803">"Bluetooth, NFC"</string>
     <string name="connected_devices_dashboard_no_driving_mode_no_nfc_summary" msgid="7881286613528299400">"Bluetooth"</string>
-    <string name="app_and_notification_dashboard_title" msgid="8448096608058843730">"Apps e notificações"</string>
+    <string name="app_and_notification_dashboard_title" msgid="8448096608058843730">"Aplicações e notificações"</string>
     <string name="app_and_notification_dashboard_summary" msgid="4165181440955038145">"Assistente, aplicações recentes, aplicações predefinidas"</string>
     <string name="notification_settings_work_profile" msgid="7190550347842400029">"O acesso às notificações não está disponível para aplicações no perfil de trabalho."</string>
     <string name="account_dashboard_title" msgid="4734300939532555885">"Contas"</string>
@@ -4045,7 +4045,7 @@
     <string name="display_cutout_emulation_keywords" msgid="6795671536772871439">"ecrã com recorte, entalhe"</string>
     <string name="overlay_option_device_default" msgid="165508753381657697">"Predefinição do dispositivo"</string>
     <string name="overlay_toast_failed_to_apply" msgid="5692251825129250040">"Falha ao aplicar a sobreposição."</string>
-    <string name="special_access" msgid="1453926335914696206">"Acesso especial a app"</string>
+    <string name="special_access" msgid="1453926335914696206">"Acesso especial a aplicações"</string>
     <plurals name="special_access_summary" formatted="false" msgid="5182092345063909346">
       <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> aplicações podem utilizar dados sem restrições</item>
       <item quantity="one">1 aplicação pode utilizar dados sem restrições</item>
diff --git a/tests/CarDeveloperOptions/res/values-pt/arrays.xml b/tests/CarDeveloperOptions/res/values-pt/arrays.xml
new file mode 100644
index 0000000..67ce71d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-pt/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"América"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"África"</item>
+    <item msgid="2765816300353408280">"Ásia"</item>
+    <item msgid="6683489385344409742">"Austrália"</item>
+    <item msgid="5194868215515664953">"Pacífico"</item>
+    <item msgid="7044520255415007865">"Todas as opções"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundos"</item>
+    <item msgid="772029947136115322">"30 segundos"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minutos"</item>
+    <item msgid="8664703938127907662">"5 minutos"</item>
+    <item msgid="5827960506924849753">"10 minutos"</item>
+    <item msgid="6677424950124253938">"30 minutos"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Pequena"</item>
+    <item msgid="591935967183159581">"Padrão"</item>
+    <item msgid="1714184661981538355">"Grande"</item>
+    <item msgid="6195563047686707484">"Maior"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Procurando..."</item>
+    <item msgid="8058143476674427024">"Conectando-se a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Autenticando com <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Obtendo endereço IP de <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Conectado a <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspenso"</item>
+    <item msgid="4133290864821295785">"Desconectando da <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Desconectado"</item>
+    <item msgid="2847316776634969068">"Falha"</item>
+    <item msgid="4390990424746035383">"Bloqueadas"</item>
+    <item msgid="3618248791367063949">"Temporariamente evitando uma conexão ruim"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Pressione o botão"</item>
+    <item msgid="7401896200768713930">"PIN do dispositivo pareado"</item>
+    <item msgid="4526848028011846710">"PIN deste disposit."</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Conectada"</item>
+    <item msgid="983792611851499732">"Convidado"</item>
+    <item msgid="5438273405428201793">"Falha"</item>
+    <item msgid="4646663015449312554">"Disponível"</item>
+    <item msgid="3230556734162006146">"Fora de alcance"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minutos"</item>
+    <item msgid="2759776603549270587">"5 minutos"</item>
+    <item msgid="167772676068860015">"1 hora"</item>
+    <item msgid="5985477119043628504">"Nunca definir tempo limite"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Últimos 30 dias"</item>
+    <item msgid="3211287705232736964">"Definir ciclo de uso..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Tempo de uso"</item>
+    <item msgid="2784401352592276015">"Última utilização"</item>
+    <item msgid="249854287216326349">"Nome do app"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Nenhum"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Nenhum"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Estático"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Nenhum"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Autoconfiguração do proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Nenhum"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ou CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Armazenamento do dispositivo interno"</item>
+    <item msgid="3186681694079967527">"Cartão SD removível"</item>
+    <item msgid="6902033473986647035">"Deixar o sistema decidir"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Localização"</item>
+    <item msgid="6842381562497597649">"Pessoais"</item>
+    <item msgid="3966700236695683444">"Mensagens"</item>
+    <item msgid="8563996233342430477">"Mídia"</item>
+    <item msgid="5323851085993963783">"Dispositivo"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"localização aproximada"</item>
+    <item msgid="1830619568689922920">"localização precisa"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibração"</item>
+    <item msgid="8632513128515114092">"ler contatos"</item>
+    <item msgid="3741042113569620272">"modificar contatos"</item>
+    <item msgid="4204420969709009931">"ler registro de chamadas"</item>
+    <item msgid="2260380357119423209">"modificar registro de chamadas"</item>
+    <item msgid="6550710385014530934">"ler agenda"</item>
+    <item msgid="3575906174264853951">"modificar agenda"</item>
+    <item msgid="4319843242568057174">"busca por Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notificação"</item>
+    <item msgid="6617825156152476692">"verificação de celular"</item>
+    <item msgid="8865260890611559753">"chamar telefone"</item>
+    <item msgid="3254999273961542982">"ler SMS"</item>
+    <item msgid="7711446453028825171">"gravar SMS"</item>
+    <item msgid="6123238544099198034">"receber SMS"</item>
+    <item msgid="838342167431596036">"receber SMS de emergência"</item>
+    <item msgid="8554432731560956686">"receber MMS"</item>
+    <item msgid="7464863464299515059">"receber WAP push"</item>
+    <item msgid="310463075729606765">"enviar SMS"</item>
+    <item msgid="7338021933527689514">"ler SMS ICC"</item>
+    <item msgid="6130369335466613036">"gravar SMS ICC"</item>
+    <item msgid="6536865581421670942">"modificar configurações"</item>
+    <item msgid="4547203129183558973">"sobrepor"</item>
+    <item msgid="9080347512916542840">"acessar notificações"</item>
+    <item msgid="5332718516635907742">"câmera"</item>
+    <item msgid="6098422447246167852">"gravar áudio"</item>
+    <item msgid="9182794235292595296">"reproduzir áudio"</item>
+    <item msgid="8760743229597702019">"ler a área de transferência"</item>
+    <item msgid="2266923698240538544">"modificar a área de transferência"</item>
+    <item msgid="1801619438618539275">"botões de mídia"</item>
+    <item msgid="31588119965784465">"foco de áudio"</item>
+    <item msgid="7565226799008076833">"volume mestre"</item>
+    <item msgid="5420704980305018295">"volume da voz"</item>
+    <item msgid="5797363115508970204">"volume do toque"</item>
+    <item msgid="8233154098550715999">"volume da mídia"</item>
+    <item msgid="5196715605078153950">"volume do alarme"</item>
+    <item msgid="394030698764284577">"volume da notificação"</item>
+    <item msgid="8952898972491680178">"volume do Bluetooth"</item>
+    <item msgid="8506227454543690851">"permanecer ativo"</item>
+    <item msgid="1108160036049727420">"monitorar local"</item>
+    <item msgid="1496205959751719491">"monitorar local de alta potência"</item>
+    <item msgid="3776296279910987380">"obter estatísticas de uso"</item>
+    <item msgid="8827100324471975602">"ativar/desativar o som do microfone"</item>
+    <item msgid="6880736730520126864">"mostrar notificação toast"</item>
+    <item msgid="4933375960222609935">"projeção de mídia"</item>
+    <item msgid="8357907018938895462">"ativar VPN"</item>
+    <item msgid="8143812849911310973">"escrever plano de fundo"</item>
+    <item msgid="6266277260961066535">"estrutura de assistência"</item>
+    <item msgid="7715498149883482300">"captura de tela de assistência"</item>
+    <item msgid="4046679376726313293">"ler estado do telefone"</item>
+    <item msgid="6329507266039719587">"adicionar correio de voz"</item>
+    <item msgid="7692440726415391408">"usar sip"</item>
+    <item msgid="8572453398128326267">"processar chamada realizada"</item>
+    <item msgid="7775674394089376306">"impressão digital"</item>
+    <item msgid="3182815133441738779">"sensores corporais"</item>
+    <item msgid="2793100005496829513">"ler transmissões celulares"</item>
+    <item msgid="2633626056029384366">"locais fictícios"</item>
+    <item msgid="8356842191824684631">"ler armazenamento"</item>
+    <item msgid="5671906070163291500">"gravar armazenamento"</item>
+    <item msgid="2791955098549340418">"ativar tela"</item>
+    <item msgid="5599435119609178367">"adquirir contas"</item>
+    <item msgid="1165623660533024666">"executar em segundo plano"</item>
+    <item msgid="6423861043647911030">"volume da acessibilidade"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Localização"</item>
+    <item msgid="6656077694190491067">"Localização"</item>
+    <item msgid="8790228218278477369">"Localização"</item>
+    <item msgid="7836406246005211990">"Vibração"</item>
+    <item msgid="3951439024549922598">"Ler contatos"</item>
+    <item msgid="8802152411647068">"Modificar contatos"</item>
+    <item msgid="229544934599698735">"Ler registro de chamadas"</item>
+    <item msgid="7396102294405899613">"Modificar registro de chamadas"</item>
+    <item msgid="3597797992398484655">"Ler agenda"</item>
+    <item msgid="2705975774250907343">"Modificar agenda"</item>
+    <item msgid="4668747371441932697">"Localização"</item>
+    <item msgid="1487578921720243646">"Postar notificação"</item>
+    <item msgid="4636080349724146638">"Local"</item>
+    <item msgid="673510900286463926">"Chamar telefone"</item>
+    <item msgid="542083422784609790">"Ler SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Escrever SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Receber SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Receber SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Receber SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Receber SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Enviar SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Ler SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Escrever SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Modificar configurações"</item>
+    <item msgid="8705854389991425629">"Sobrepor"</item>
+    <item msgid="5861356020344153651">"Acessar notificações"</item>
+    <item msgid="78432174621628659">"Câmera"</item>
+    <item msgid="3986116419882154794">"Gravar áudio"</item>
+    <item msgid="4516840825756409490">"Reproduzir áudio"</item>
+    <item msgid="6811712502798183957">"Ler a área de transferência"</item>
+    <item msgid="2780369012602289114">"Modificar a área de transferência"</item>
+    <item msgid="2331359440170850868">"Botões de mídia"</item>
+    <item msgid="6133599737122751231">"Foco de áudio"</item>
+    <item msgid="6844485713404805301">"Volume mestre"</item>
+    <item msgid="1600379420669104929">"Volume da voz"</item>
+    <item msgid="6296768210470214866">"Volume do toque"</item>
+    <item msgid="510690696071629241">"Volume de mídia"</item>
+    <item msgid="406861638631430109">"Volume do alarme"</item>
+    <item msgid="4715864795872233884">"Volume das notificações"</item>
+    <item msgid="2311478519251301183">"Volume do Bluetooth"</item>
+    <item msgid="5133991377896747027">"Permanecer ativo"</item>
+    <item msgid="2464189519136248621">"Local"</item>
+    <item msgid="2062677934050803037">"Local"</item>
+    <item msgid="1735171933192715957">"Obter estatísticas de uso"</item>
+    <item msgid="1014093788778383554">"Ativar/desativar o som do microfone"</item>
+    <item msgid="4199297950608622850">"Mostrar notificação toast"</item>
+    <item msgid="2527962435313398821">"Projeção de mídia"</item>
+    <item msgid="5117506254221861929">"Ativar VPN"</item>
+    <item msgid="8291198322681891160">"Escrever plano de fundo"</item>
+    <item msgid="7106921284621230961">"Estrutura de assistência"</item>
+    <item msgid="4496533640894624799">"Captura de tela de assistência"</item>
+    <item msgid="2598847264853993611">"Ler estado do telefone"</item>
+    <item msgid="9215610846802973353">"Adicionar correio de voz"</item>
+    <item msgid="9186411956086478261">"Usar SIP"</item>
+    <item msgid="6884763100104539558">"Processar chamada realizada"</item>
+    <item msgid="125513972170580692">"Impressão digital"</item>
+    <item msgid="2556071024281275619">"Sensores corporais"</item>
+    <item msgid="617168514928339387">"Ler transmissões celulares"</item>
+    <item msgid="7134693570516523585">"Locais fictícios"</item>
+    <item msgid="7224489175375229399">"Ler armazenamento"</item>
+    <item msgid="8472735063903258202">"Gravar armazenamento"</item>
+    <item msgid="4069276819909595110">"Ativar tela"</item>
+    <item msgid="1228338896751121025">"Adquirir contas"</item>
+    <item msgid="3181581793459233672">"Executar em segundo plano"</item>
+    <item msgid="2340936043025374076">"Volume da acessibilidade"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Curto"</item>
+    <item msgid="4816511817309094890">"Média"</item>
+    <item msgid="8305084671259331134">"Longo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Padrão"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensado"</item>
+    <item msgid="6529379119163117545">"Sans-serif monoespaçada"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monoespaçada"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursiva"</item>
+    <item msgid="6896773537705206194">"Versalete"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Padrão"</item>
+    <item msgid="6488643537808152001">"Nenhum"</item>
+    <item msgid="552332815156010137">"Contorno"</item>
+    <item msgid="7187891159463789272">"Sombra"</item>
+    <item msgid="8019330250538856521">"Aumentada"</item>
+    <item msgid="8987385315647049787">"Baixo relevo"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Usar padrões do app"</item>
+    <item msgid="8611890312638868524">"Branco em preto"</item>
+    <item msgid="5891360837786277638">"Preto em branco"</item>
+    <item msgid="2798457065945456853">"Amarelo em preto"</item>
+    <item msgid="5799049811524553967">"Amarelo em azul"</item>
+    <item msgid="3673930830658169860">"Personalizados"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN com chaves pré-compartilhadas"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec com certificados"</item>
+    <item msgid="312397853907741968">"VPN IPSec com chaves pré-compartilhadas e autenticação Xauth"</item>
+    <item msgid="3319427315593649917">"VPN IPSec com autenticação de certificados e Xauth"</item>
+    <item msgid="8258927774145391041">"VPN IPSec com certificados e autenticação híbrida"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Nenhum"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Desconectado"</item>
+    <item msgid="8754480102834556765">"Inicializando..."</item>
+    <item msgid="3351334355574270250">"Conectando..."</item>
+    <item msgid="8303882153995748352">"Conectada"</item>
+    <item msgid="9135049670787351881">"Tempo limite"</item>
+    <item msgid="2124868417182583926">"Falha"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Perguntar"</item>
+    <item msgid="7718817231348607934">"Nunca permitir"</item>
+    <item msgid="8184570120217958741">"Sempre permitir"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Persistente"</item>
+    <item msgid="167418068739176448">"Principal atividade"</item>
+    <item msgid="4760813290195199773">"Importante (primeiro plano)"</item>
+    <item msgid="2328684826817647595">"Importante (segundo plano)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Uso intenso"</item>
+    <item msgid="1290888779300174556">"Serviço (em execução)"</item>
+    <item msgid="7241098542073939046">"Serviço (reiniciando)"</item>
+    <item msgid="6610439017684111046">"Receptor"</item>
+    <item msgid="7367606086319921117">"Início"</item>
+    <item msgid="3344660712396741826">"Última atividade"</item>
+    <item msgid="5006559348883303865">"Em cache (atividade)"</item>
+    <item msgid="8633480732468137525">"Em cache (cliente de atividade)"</item>
+    <item msgid="6248998242443333892">"Em cache (vazio)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Azul-petróleo"</item>
+    <item msgid="3228505970082457852">"Azul"</item>
+    <item msgid="6590260735734795647">"Índigo"</item>
+    <item msgid="3521763377357218577">"Roxo"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Vermelho"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Com mais de 30 dias"</item>
+    <item msgid="8699273238891265610">"Com mais de 60 dias"</item>
+    <item msgid="8346279419423837266">"Com mais de 90 dias"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detectar automaticamente"</item>
+    <item msgid="773943026484148895">"Tratar como limitada"</item>
+    <item msgid="1008268820118852416">"Tratar como ilimitada"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Usar MAC aleatório (padrão)"</item>
+    <item msgid="214234417308375326">"Usar MAC do dispositivo"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Não"</item>
+    <item msgid="1930581185557754880">"Sim"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Escuro"</item>
+    <item msgid="5079453644557603349">"Claro"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Desativada"</item>
+    <item msgid="4072198137051566919">"Depuração"</item>
+    <item msgid="2473005316958868509">"Detalhado"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Somente doméstica"</item>
+    <item msgid="1161026694891024702">"Automático"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferencial"</item>
+    <item msgid="7581481130337402578">"Somente GSM"</item>
+    <item msgid="8579197487913425819">"Somente WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automático"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automático"</item>
+    <item msgid="4219607161971472471">"CDMA sem EvDo"</item>
+    <item msgid="7278975240951052041">"Somente EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"Somente TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"R-UIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-pt/strings.xml b/tests/CarDeveloperOptions/res/values-pt/strings.xml
index 1822119..015ce50 100644
--- a/tests/CarDeveloperOptions/res/values-pt/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-pt/strings.xml
@@ -1168,7 +1168,7 @@
     <string name="color_mode_option_natural" msgid="1292837781836645320">"Naturais"</string>
     <string name="color_mode_option_boosted" msgid="453557938434778933">"Realçadas"</string>
     <string name="color_mode_option_saturated" msgid="7758384943407859851">"Saturadas"</string>
-    <string name="color_mode_option_automatic" msgid="6572718611315165117">"Adaptativo"</string>
+    <string name="color_mode_option_automatic" msgid="6572718611315165117">"Adaptável"</string>
     <string name="color_mode_summary_natural" msgid="1247153893843263340">"Usar apenas cores precisas"</string>
     <string name="color_mode_summary_automatic" msgid="6066740785261330514">"Ajuste entre cores vívidas e precisas"</string>
     <string name="accelerometer_summary_on" product="tablet" msgid="5750977897791656412">"Alternar orientação automaticamente ao girar o tablet"</string>
@@ -1202,7 +1202,7 @@
     <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Ativado / A tela não será desativada se você estiver olhando para ela"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Desativada"</string>
     <string name="adaptive_sleep_description" msgid="812673735459170009">"Evita que a tela seja desativada se você estiver olhando para ela."</string>
-    <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Usando a câmera frontal, o \"Reconhecimento de tela em uso\" detecta se alguém está olhando para tela. Ele funciona no dispositivo, e as imagens nunca são armazenada nem enviadas ao Google."</string>
+    <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Usando a câmera frontal, o \"Reconhecimento de tela em uso\" detecta se alguém está olhando para a tela. Ele funciona no dispositivo, e as imagens nunca são armazenadas nem enviadas ao Google."</string>
     <string name="night_display_title" msgid="1305002424893349814">"Modo noturno"</string>
     <string name="night_display_text" msgid="5330502493684652527">"O Modo noturno deixa sua tela na cor âmbar. Isso facilita olhar para a tela ou ler com pouca luz, ajudando você a adormecer com mais facilidade."</string>
     <string name="night_display_auto_mode_title" msgid="8493573087102481588">"Programar"</string>
@@ -1239,13 +1239,13 @@
     <string name="wallpaper_suggestion_summary" msgid="4247262938988875842">"Personalizar sua tela"</string>
     <string name="wallpaper_settings_fragment_title" msgid="1503701065297188901">"Selecionar de..."</string>
     <string name="screensaver_settings_title" msgid="7720091234133721021">"Protetor de tela"</string>
-    <string name="screensaver_settings_summary_either_long" msgid="6078038506795498288">"Ao carregar ou quando ancorado"</string>
+    <string name="screensaver_settings_summary_either_long" msgid="6078038506795498288">"Ao carregar ou quando encaixado na base"</string>
     <string name="screensaver_settings_summary_either_short" msgid="2453772128682850053">"Ambos"</string>
     <string name="screensaver_settings_summary_sleep" msgid="6097363596749362692">"Ao carregar"</string>
-    <string name="screensaver_settings_summary_dock" msgid="6297808146601570196">"Quando ancorado"</string>
+    <string name="screensaver_settings_summary_dock" msgid="6297808146601570196">"Na base"</string>
     <string name="screensaver_settings_summary_never" msgid="3995259444981620707">"Nunca"</string>
     <string name="screensaver_settings_summary_off" msgid="6119947316484763131">"Desativado"</string>
-    <string name="screensaver_settings_disabled_prompt" msgid="1897518064782596947">"Para controlar o que acontece quando o smartphone está ancorado e/ou no modo de suspensão, ative o protetor de tela."</string>
+    <string name="screensaver_settings_disabled_prompt" msgid="1897518064782596947">"Para controlar o que acontece quando o smartphone está na base e/ou no modo de suspensão, ative o protetor de tela."</string>
     <string name="screensaver_settings_when_to_dream" msgid="3763052013516826348">"Quando começar"</string>
     <string name="screensaver_settings_current" msgid="4017556173596361672">"Protetor de tela atual"</string>
     <string name="screensaver_settings_dream_start" msgid="3772227299054662550">"Começar agora"</string>
@@ -2260,7 +2260,7 @@
     <string name="details_subtitle" msgid="7279638828004951382">"Detalhes de uso"</string>
     <string name="controls_subtitle" msgid="6920199888882834620">"Ajustar uso de energia"</string>
     <string name="packages_subtitle" msgid="6506269487892204413">"Pacotes incluídos"</string>
-    <string name="battery_tip_summary_title" msgid="2750922152518825526">"Os apps estão sendo executados normalmente"</string>
+    <string name="battery_tip_summary_title" msgid="2750922152518825526">"Os apps estão funcionando normalmente"</string>
     <string name="battery_tip_summary_summary" product="default" msgid="6294900413896440006">"O consumo de bateria em segundo plano do smartphone está normal."</string>
     <string name="battery_tip_summary_summary" product="tablet" msgid="5280099016800644130">"O tablet tem um consumo normal de bateria em segundo plano"</string>
     <string name="battery_tip_summary_summary" product="device" msgid="4459840492610842705">"O dispositivo tem um consumo normal de bateria em segundo plano"</string>
@@ -3757,7 +3757,7 @@
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Permitir que o app assistivo acesse uma imagem da tela"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"Piscar tela"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"Piscar as bordas da tela quando o app assistivo acessar textos da tela ou fizer uma captura de tela"</string>
-    <string name="assist_footer" msgid="7030121180457472165">"Apps assistivos podem ajudar com base nas informações da tela que você vê no momento. Alguns apps são compatíveis com a tela de início e com serviços de entrada de texto por voz para fornecer assistência integrada."</string>
+    <string name="assist_footer" msgid="7030121180457472165">"Apps assistivos podem ajudar com base nas informações que você vê na tela. Alguns apps oferecem tecnologia assistiva integrada, porque são compatíveis com a tela de início e com serviços de entrada de texto por voz."</string>
     <string name="average_memory_use" msgid="5333366040118953945">"Uso médio de memória"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"Uso máximo de memória"</string>
     <string name="memory_usage" msgid="7963253555330830906">"Uso de memória"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ro-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ro-nokeys/strings.xml
new file mode 100644
index 0000000..1ce4516
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ro-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Gestionați aplicațiile"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ro/arrays.xml b/tests/CarDeveloperOptions/res/values-ro/arrays.xml
new file mode 100644
index 0000000..7326d59
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ro/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"Toate"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 secunde"</item>
+    <item msgid="772029947136115322">"30 de secunde"</item>
+    <item msgid="8743663928349474087">"Un minut"</item>
+    <item msgid="1506508631223164814">"2 minute"</item>
+    <item msgid="8664703938127907662">"5 minute"</item>
+    <item msgid="5827960506924849753">"10 minute"</item>
+    <item msgid="6677424950124253938">"30 de minute"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Mică"</item>
+    <item msgid="591935967183159581">"Prestabilit"</item>
+    <item msgid="1714184661981538355">"Mare"</item>
+    <item msgid="6195563047686707484">"Cea mai mare"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Se scanează..."</item>
+    <item msgid="8058143476674427024">"Se conectează la <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Se autentifică cu <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Se obține adresa IP de la <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Conectat la <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspendat"</item>
+    <item msgid="4133290864821295785">"În curs de deconectare de la <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Deconectată"</item>
+    <item msgid="2847316776634969068">"Nereușit"</item>
+    <item msgid="4390990424746035383">"Blocat"</item>
+    <item msgid="3618248791367063949">"Evitarea temporară a conexiunii slabe"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Buton WPS"</item>
+    <item msgid="7401896200768713930">"Codul PIN de la disp. pereche"</item>
+    <item msgid="4526848028011846710">"PIN de la ac. disp."</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Conectată"</item>
+    <item msgid="983792611851499732">"Invitat(ă)"</item>
+    <item msgid="5438273405428201793">"Nereușit"</item>
+    <item msgid="4646663015449312554">"Disponibil"</item>
+    <item msgid="3230556734162006146">"Fără acoperire"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minute"</item>
+    <item msgid="2759776603549270587">"5 minute"</item>
+    <item msgid="167772676068860015">"O oră"</item>
+    <item msgid="5985477119043628504">"Fără timp limită"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Ultimele 30 de zile"</item>
+    <item msgid="3211287705232736964">"Setați ciclu utilizare..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Durată de utilizare"</item>
+    <item msgid="2784401352592276015">"Ultima utilizare"</item>
+    <item msgid="249854287216326349">"Numele aplicației"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Niciuna"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Niciuna"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Static"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Niciuna"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Config. automată proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Niciuna"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP sau CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Stocare internă pe dispozitiv"</item>
+    <item msgid="3186681694079967527">"Card SD detașabil"</item>
+    <item msgid="6902033473986647035">"Permiteți sistemului să decidă"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Locație"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Mesagerie"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Dispozitiv"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"locație imprecisă"</item>
+    <item msgid="1830619568689922920">"locație exactă"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrează"</item>
+    <item msgid="8632513128515114092">"citește agenda"</item>
+    <item msgid="3741042113569620272">"modifică agenda"</item>
+    <item msgid="4204420969709009931">"citește jurnalul de apeluri"</item>
+    <item msgid="2260380357119423209">"modifică jurnalul de apeluri"</item>
+    <item msgid="6550710385014530934">"citește calendarul"</item>
+    <item msgid="3575906174264853951">"modifică calendarul"</item>
+    <item msgid="4319843242568057174">"scanează Wi-Fi"</item>
+    <item msgid="2981791890467303819">"notificare"</item>
+    <item msgid="6617825156152476692">"scanează semnal mobil"</item>
+    <item msgid="8865260890611559753">"apelează un telefon"</item>
+    <item msgid="3254999273961542982">"citește mesaje SMS"</item>
+    <item msgid="7711446453028825171">"scrie mesaje SMS"</item>
+    <item msgid="6123238544099198034">"primește mesaje SMS"</item>
+    <item msgid="838342167431596036">"primește mesaje SMS de urgență"</item>
+    <item msgid="8554432731560956686">"primește mesaje MMS"</item>
+    <item msgid="7464863464299515059">"primește mesaje WAP push"</item>
+    <item msgid="310463075729606765">"trimite mesaje SMS"</item>
+    <item msgid="7338021933527689514">"citește mesaje ICC SMS"</item>
+    <item msgid="6130369335466613036">"scrie mesaje ICC SMS"</item>
+    <item msgid="6536865581421670942">"modifică setările"</item>
+    <item msgid="4547203129183558973">"desenează deasupra"</item>
+    <item msgid="9080347512916542840">"accesează notificări"</item>
+    <item msgid="5332718516635907742">"cameră foto"</item>
+    <item msgid="6098422447246167852">"înregistrează conținut audio"</item>
+    <item msgid="9182794235292595296">"redă conținut audio"</item>
+    <item msgid="8760743229597702019">"citește clipboardul"</item>
+    <item msgid="2266923698240538544">"modifică clipboardul"</item>
+    <item msgid="1801619438618539275">"butoane media"</item>
+    <item msgid="31588119965784465">"focalizare audio"</item>
+    <item msgid="7565226799008076833">"volum principal"</item>
+    <item msgid="5420704980305018295">"volum voce"</item>
+    <item msgid="5797363115508970204">"volumul soneriei"</item>
+    <item msgid="8233154098550715999">"volum media"</item>
+    <item msgid="5196715605078153950">"volumul alarmei"</item>
+    <item msgid="394030698764284577">"volum notificări"</item>
+    <item msgid="8952898972491680178">"volumul Bluetooth"</item>
+    <item msgid="8506227454543690851">"mențineți activ"</item>
+    <item msgid="1108160036049727420">"monitorizarea locației"</item>
+    <item msgid="1496205959751719491">"monitorizarea localizării cu consum ridicat de energie"</item>
+    <item msgid="3776296279910987380">"obțineți statistici de utilizare"</item>
+    <item msgid="8827100324471975602">"activați/dezactivați microfonul"</item>
+    <item msgid="6880736730520126864">"afișează semnalarea"</item>
+    <item msgid="4933375960222609935">"proiectați conținutul media"</item>
+    <item msgid="8357907018938895462">"activează serviciul VPN"</item>
+    <item msgid="8143812849911310973">"scrie imaginea de fundal"</item>
+    <item msgid="6266277260961066535">"structură de asistență"</item>
+    <item msgid="7715498149883482300">"captură de ecran de asistență"</item>
+    <item msgid="4046679376726313293">"citește starea telefonului"</item>
+    <item msgid="6329507266039719587">"adaugă mesaje vocale"</item>
+    <item msgid="7692440726415391408">"folosește SIP"</item>
+    <item msgid="8572453398128326267">"procesează apelul de ieșire"</item>
+    <item msgid="7775674394089376306">"amprentă"</item>
+    <item msgid="3182815133441738779">"senzori corporali"</item>
+    <item msgid="2793100005496829513">"citește transmisiile celulare"</item>
+    <item msgid="2633626056029384366">"locație de testare"</item>
+    <item msgid="8356842191824684631">"citește spațiul de stocare"</item>
+    <item msgid="5671906070163291500">"scrie spațiul de stocare"</item>
+    <item msgid="2791955098549340418">"activează ecranul"</item>
+    <item msgid="5599435119609178367">"preia conturile"</item>
+    <item msgid="1165623660533024666">"rulează în fundal"</item>
+    <item msgid="6423861043647911030">"volum accesibilitate"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Scurtă"</item>
+    <item msgid="4816511817309094890">"Medie"</item>
+    <item msgid="8305084671259331134">"Lungă"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Prestabilit"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif condensat"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Obișnuit"</item>
+    <item msgid="4627069151979553527">"Cursiv"</item>
+    <item msgid="6896773537705206194">"Majuscule mici"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Prestabilit"</item>
+    <item msgid="6488643537808152001">"Niciuna"</item>
+    <item msgid="552332815156010137">"Contur"</item>
+    <item msgid="7187891159463789272">"Umbră"</item>
+    <item msgid="8019330250538856521">"Ridicat"</item>
+    <item msgid="8987385315647049787">"Adâncită"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Setările prestabilite"</item>
+    <item msgid="8611890312638868524">"Alb pe negru"</item>
+    <item msgid="5891360837786277638">"Negru pe alb"</item>
+    <item msgid="2798457065945456853">"Galben pe negru"</item>
+    <item msgid="5799049811524553967">"Galben pe albastru"</item>
+    <item msgid="3673930830658169860">"Personalizat"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN cu chei predistribuite"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN cu certificate"</item>
+    <item msgid="312397853907741968">"IPSec VPN cu chei predistribuite și autentificare Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN cu certificate și autentificare Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN cu certificate și autentificare hibridă"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Niciunul"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Deconectată"</item>
+    <item msgid="8754480102834556765">"Se inițializează..."</item>
+    <item msgid="3351334355574270250">"Se conectează..."</item>
+    <item msgid="8303882153995748352">"Conectată"</item>
+    <item msgid="9135049670787351881">"Timp limită"</item>
+    <item msgid="2124868417182583926">"Nereușit"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Întrebați"</item>
+    <item msgid="7718817231348607934">"Nu permiteți niciodată"</item>
+    <item msgid="8184570120217958741">"Permiteți întotdeauna"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Permanent"</item>
+    <item msgid="167418068739176448">"Activitate principală"</item>
+    <item msgid="4760813290195199773">"Important (în prim-plan)"</item>
+    <item msgid="2328684826817647595">"Important (în fundal)"</item>
+    <item msgid="7746406490652867365">"Backup"</item>
+    <item msgid="5597404364389196754">"Complex"</item>
+    <item msgid="1290888779300174556">"Serviciu (în curs)"</item>
+    <item msgid="7241098542073939046">"Serviciu (repornește)"</item>
+    <item msgid="6610439017684111046">"Receptor"</item>
+    <item msgid="7367606086319921117">"Pornire"</item>
+    <item msgid="3344660712396741826">"Ultima activitate"</item>
+    <item msgid="5006559348883303865">"În cache (activitate)"</item>
+    <item msgid="8633480732468137525">"În cache (client de activitate)"</item>
+    <item msgid="6248998242443333892">"În cache (gol)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Turcoaz"</item>
+    <item msgid="3228505970082457852">"Albastru"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Violet"</item>
+    <item msgid="5932337981182999919">"Roz"</item>
+    <item msgid="5642914536624000094">"Roșu"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Vechi de peste 30 de zile"</item>
+    <item msgid="8699273238891265610">"Vechi de peste 60 de zile"</item>
+    <item msgid="8346279419423837266">"Vechi de peste 90 de zile"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Detectează automat"</item>
+    <item msgid="773943026484148895">"Tratează ca fiind contorizată"</item>
+    <item msgid="1008268820118852416">"Tratează ca fiind necontorizată"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Folosiți o adresă MAC aleatorie (prestabilit)"</item>
+    <item msgid="214234417308375326">"Folosiți adresa MAC a dispozitivului"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nu"</item>
+    <item msgid="1930581185557754880">"Da"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Întunecată"</item>
+    <item msgid="5079453644557603349">"Deschisă"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Dezactivat"</item>
+    <item msgid="4072198137051566919">"Remediați erorile"</item>
+    <item msgid="2473005316958868509">"Detaliat"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Doar domiciliu"</item>
+    <item msgid="1161026694891024702">"Automat"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA preferat"</item>
+    <item msgid="7581481130337402578">"Numai GSM"</item>
+    <item msgid="8579197487913425819">"Numai WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automat"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automat"</item>
+    <item msgid="4219607161971472471">"CDMA fără EvDo"</item>
+    <item msgid="7278975240951052041">"Numai EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Numai TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ro/strings.xml b/tests/CarDeveloperOptions/res/values-ro/strings.xml
index 69a00cc..c94f124 100644
--- a/tests/CarDeveloperOptions/res/values-ro/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ro/strings.xml
@@ -1672,7 +1672,7 @@
     <string name="location_no_recent_accesses" msgid="6289916310397279890">"Nicio aplicație nu a accesat recent locația"</string>
     <string name="location_high_battery_use" msgid="7177199869979522663">"Utilizare intensă a bateriei"</string>
     <string name="location_low_battery_use" msgid="5030448574501435888">"Utilizare redusă a bateriei"</string>
-    <string name="location_scanning_screen_title" msgid="7663329319689413454">"Scanare prin Wi‑Fi și Bluetooth"</string>
+    <string name="location_scanning_screen_title" msgid="7663329319689413454">"Căutare Wi‑Fi și Bluetooth"</string>
     <string name="location_scanning_wifi_always_scanning_title" msgid="6750542206763112172">"Căutare de rețele Wi-Fi"</string>
     <string name="location_scanning_wifi_always_scanning_description" msgid="4956048135941851712">"Permiteți aplicațiilor și serviciilor să caute permanent rețele Wi-Fi, chiar și atunci când setarea Wi-Fi este dezactivată. Această permisiune poate fi folosită, de exemplu, pentru a îmbunătăți funcțiile și serviciile bazate pe locație."</string>
     <string name="location_scanning_bluetooth_always_scanning_title" msgid="196241746742607453">"Căutare Bluetooth"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ru-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ru-nokeys/strings.xml
new file mode 100644
index 0000000..84915e8
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ru-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Управление приложениями"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ru/arrays.xml b/tests/CarDeveloperOptions/res/values-ru/arrays.xml
new file mode 100644
index 0000000..01d224c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ru/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америка"</item>
+    <item msgid="4791956477275129121">"Европа"</item>
+    <item msgid="3812126832016254559">"Африка"</item>
+    <item msgid="2765816300353408280">"Азия"</item>
+    <item msgid="6683489385344409742">"Австралия"</item>
+    <item msgid="5194868215515664953">"Тихий океан"</item>
+    <item msgid="7044520255415007865">"Все"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 сек."</item>
+    <item msgid="772029947136115322">"30 секунд"</item>
+    <item msgid="8743663928349474087">"1 минута"</item>
+    <item msgid="1506508631223164814">"2 минуты"</item>
+    <item msgid="8664703938127907662">"5 мин."</item>
+    <item msgid="5827960506924849753">"10 мин."</item>
+    <item msgid="6677424950124253938">"30 мин."</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Мелкий"</item>
+    <item msgid="591935967183159581">"По умолчанию"</item>
+    <item msgid="1714184661981538355">"Крупный"</item>
+    <item msgid="6195563047686707484">"Максимальный"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Поиск..."</item>
+    <item msgid="8058143476674427024">"Соединение с сетью <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Аутентификация в сети <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Получение IP-адреса в сети <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Подключено к <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Приостановлено"</item>
+    <item msgid="4133290864821295785">"Отключение от <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Нет подключения"</item>
+    <item msgid="2847316776634969068">"Сбой"</item>
+    <item msgid="4390990424746035383">"Заблокировано"</item>
+    <item msgid="3618248791367063949">"Временно избегать плохого соединения"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Push-кнопка"</item>
+    <item msgid="7401896200768713930">"PIN-код с обнаруженного устройства"</item>
+    <item msgid="4526848028011846710">"PIN-код этого устройства"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Подключено"</item>
+    <item msgid="983792611851499732">"Приглашено"</item>
+    <item msgid="5438273405428201793">"Сбой"</item>
+    <item msgid="4646663015449312554">"Доступна"</item>
+    <item msgid="3230556734162006146">"Вне диапазона"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 минуты"</item>
+    <item msgid="2759776603549270587">"5 мин."</item>
+    <item msgid="167772676068860015">"1 час"</item>
+    <item msgid="5985477119043628504">"Без тайм-аута"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"За последние 30 дней"</item>
+    <item msgid="3211287705232736964">"Цикл использования данных"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Время использования"</item>
+    <item msgid="2784401352592276015">"Последнее использование"</item>
+    <item msgid="249854287216326349">"Название приложения"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Нет сетей"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Нет сетей"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Пользовательские"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Нет сетей"</item>
+    <item msgid="1464741437353223198">"Руководство"</item>
+    <item msgid="5793600062487886090">"Автоконфигурация прокси"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Нет сетей"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP или CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Внутренний накопитель устройства"</item>
+    <item msgid="3186681694079967527">"Съемная SD-карта"</item>
+    <item msgid="6902033473986647035">"На усмотрение системы"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Определение местоположения"</item>
+    <item msgid="6842381562497597649">"Личные данные"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Мультимедиа"</item>
+    <item msgid="5323851085993963783">"На устройстве"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"приблизительное местоположение"</item>
+    <item msgid="1830619568689922920">"точное местоположение"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"вибросигнал"</item>
+    <item msgid="8632513128515114092">"считывать данные контактов"</item>
+    <item msgid="3741042113569620272">"изменение контактов"</item>
+    <item msgid="4204420969709009931">"просмотр списка вызовов"</item>
+    <item msgid="2260380357119423209">"изменение списка вызовов"</item>
+    <item msgid="6550710385014530934">"считывать данные календаря"</item>
+    <item msgid="3575906174264853951">"изменение календаря"</item>
+    <item msgid="4319843242568057174">"поиск Wi-Fi"</item>
+    <item msgid="2981791890467303819">"уведомление"</item>
+    <item msgid="6617825156152476692">"поиск мобильных сетей"</item>
+    <item msgid="8865260890611559753">"позвонить"</item>
+    <item msgid="3254999273961542982">"чтение SMS"</item>
+    <item msgid="7711446453028825171">"создание SMS"</item>
+    <item msgid="6123238544099198034">"Получение SMS"</item>
+    <item msgid="838342167431596036">"получение экстренных SMS"</item>
+    <item msgid="8554432731560956686">"получение MMS"</item>
+    <item msgid="7464863464299515059">"получение сообщений WAP PUSH"</item>
+    <item msgid="310463075729606765">"отправка SMS"</item>
+    <item msgid="7338021933527689514">"чтение SMS со смарт-карты"</item>
+    <item msgid="6130369335466613036">"запись SMS на смарт-карту"</item>
+    <item msgid="6536865581421670942">"изменение настроек"</item>
+    <item msgid="4547203129183558973">"отображать поверх других элементов"</item>
+    <item msgid="9080347512916542840">"Доступ к уведомлениям"</item>
+    <item msgid="5332718516635907742">"камера"</item>
+    <item msgid="6098422447246167852">"записать аудио"</item>
+    <item msgid="9182794235292595296">"воспроизвести аудио"</item>
+    <item msgid="8760743229597702019">"считать из буфера обмена"</item>
+    <item msgid="2266923698240538544">"изменить буфер обмена"</item>
+    <item msgid="1801619438618539275">"кнопки мультимедиа"</item>
+    <item msgid="31588119965784465">"аудиофокус"</item>
+    <item msgid="7565226799008076833">"общая громкость"</item>
+    <item msgid="5420704980305018295">"громкость голоса"</item>
+    <item msgid="5797363115508970204">"громкость звонка"</item>
+    <item msgid="8233154098550715999">"громкость мультимедиа"</item>
+    <item msgid="5196715605078153950">"громкость будильника"</item>
+    <item msgid="394030698764284577">"громкость уведомлений"</item>
+    <item msgid="8952898972491680178">"громкость Bluetooth-устройств"</item>
+    <item msgid="8506227454543690851">"не отключать"</item>
+    <item msgid="1108160036049727420">"Отслеживать местоположение"</item>
+    <item msgid="1496205959751719491">"контролировать использование энергии при определении местоположения"</item>
+    <item msgid="3776296279910987380">"посмотреть статистику использования"</item>
+    <item msgid="8827100324471975602">"включить/отключить микрофон"</item>
+    <item msgid="6880736730520126864">"показ оповещения"</item>
+    <item msgid="4933375960222609935">"трансляция контента"</item>
+    <item msgid="8357907018938895462">"активация VPN"</item>
+    <item msgid="8143812849911310973">"сохранение обоев"</item>
+    <item msgid="6266277260961066535">"вспомогательная структура"</item>
+    <item msgid="7715498149883482300">"вспомогательный скриншот"</item>
+    <item msgid="4046679376726313293">"чтение состояния телефона"</item>
+    <item msgid="6329507266039719587">"добавление голосовой почты"</item>
+    <item msgid="7692440726415391408">"использование SIP"</item>
+    <item msgid="8572453398128326267">"обработка исходящих вызовов"</item>
+    <item msgid="7775674394089376306">"отпечаток пальца"</item>
+    <item msgid="3182815133441738779">"нательные датчики"</item>
+    <item msgid="2793100005496829513">"чтение сообщений системы оповещения населения"</item>
+    <item msgid="2633626056029384366">"подмена геоданных"</item>
+    <item msgid="8356842191824684631">"чтение из хранилища"</item>
+    <item msgid="5671906070163291500">"запись в хранилище"</item>
+    <item msgid="2791955098549340418">"включение экрана"</item>
+    <item msgid="5599435119609178367">"получение данных об аккаунтах"</item>
+    <item msgid="1165623660533024666">"запуск в фоновом режиме"</item>
+    <item msgid="6423861043647911030">"громкость подсказок"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Определение местоположения"</item>
+    <item msgid="6656077694190491067">"Определение местоположения"</item>
+    <item msgid="8790228218278477369">"Определение местоположения"</item>
+    <item msgid="7836406246005211990">"Вибросигнал"</item>
+    <item msgid="3951439024549922598">"Считывать данные контактов"</item>
+    <item msgid="8802152411647068">"Изменение контактов"</item>
+    <item msgid="229544934599698735">"Просмотр списка вызовов"</item>
+    <item msgid="7396102294405899613">"Изменение списка вызовов"</item>
+    <item msgid="3597797992398484655">"Считывать данные календаря"</item>
+    <item msgid="2705975774250907343">"Изменение календаря"</item>
+    <item msgid="4668747371441932697">"Определение местоположения"</item>
+    <item msgid="1487578921720243646">"Разместить уведомление"</item>
+    <item msgid="4636080349724146638">"Местоположение"</item>
+    <item msgid="673510900286463926">"Позвонить"</item>
+    <item msgid="542083422784609790">"Чтение SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Запись SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Получение SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Получение SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Получение SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Получение SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Отправка SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Чтение SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Запись SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Изменение настроек"</item>
+    <item msgid="8705854389991425629">"Отображать поверх других элементов"</item>
+    <item msgid="5861356020344153651">"Доступ к уведомлениям"</item>
+    <item msgid="78432174621628659">"Камера"</item>
+    <item msgid="3986116419882154794">"Записать аудио"</item>
+    <item msgid="4516840825756409490">"Воспроизвести аудио"</item>
+    <item msgid="6811712502798183957">"Считать из буфера обмена"</item>
+    <item msgid="2780369012602289114">"Изменить буфер обмена"</item>
+    <item msgid="2331359440170850868">"Кнопки мультимедиа"</item>
+    <item msgid="6133599737122751231">"Аудиофокус"</item>
+    <item msgid="6844485713404805301">"Общая громкость"</item>
+    <item msgid="1600379420669104929">"Громкость голоса"</item>
+    <item msgid="6296768210470214866">"Рингтон"</item>
+    <item msgid="510690696071629241">"Музыка, видео, игры"</item>
+    <item msgid="406861638631430109">"Будильник"</item>
+    <item msgid="4715864795872233884">"Громкость уведомлений"</item>
+    <item msgid="2311478519251301183">"Громкость Bluetooth-устройств"</item>
+    <item msgid="5133991377896747027">"Акт. режим"</item>
+    <item msgid="2464189519136248621">"Местоположение"</item>
+    <item msgid="2062677934050803037">"Местоположение"</item>
+    <item msgid="1735171933192715957">"Посмотреть статистику использования"</item>
+    <item msgid="1014093788778383554">"Включить/отключить микрофон"</item>
+    <item msgid="4199297950608622850">"Показ оповещения"</item>
+    <item msgid="2527962435313398821">"Трансляция контента"</item>
+    <item msgid="5117506254221861929">"Активация VPN"</item>
+    <item msgid="8291198322681891160">"Сохранение обоев"</item>
+    <item msgid="7106921284621230961">"Вспомогательная структура"</item>
+    <item msgid="4496533640894624799">"Вспомогательный скриншот"</item>
+    <item msgid="2598847264853993611">"Чтение состояния телефона"</item>
+    <item msgid="9215610846802973353">"Добавление голосовой почты"</item>
+    <item msgid="9186411956086478261">"Использование SIP"</item>
+    <item msgid="6884763100104539558">"Обработка исходящих вызовов"</item>
+    <item msgid="125513972170580692">"Отпечатки пальцев"</item>
+    <item msgid="2556071024281275619">"Нательные датчики"</item>
+    <item msgid="617168514928339387">"Чтение сообщений системы оповещения населения"</item>
+    <item msgid="7134693570516523585">"Подмена геоданных"</item>
+    <item msgid="7224489175375229399">"Чтение из хранилища"</item>
+    <item msgid="8472735063903258202">"Запись в хранилище"</item>
+    <item msgid="4069276819909595110">"Включение экрана"</item>
+    <item msgid="1228338896751121025">"Получение данных об аккаунтах"</item>
+    <item msgid="3181581793459233672">"Запуск в фоновом режиме"</item>
+    <item msgid="2340936043025374076">"Громкость подсказок"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Небольшая"</item>
+    <item msgid="4816511817309094890">"Средняя"</item>
+    <item msgid="8305084671259331134">"Большая"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"По умолчанию"</item>
+    <item msgid="4147246073737933622">"Без засечек"</item>
+    <item msgid="3117680749167407907">"Без засечек, сжатый"</item>
+    <item msgid="6529379119163117545">"Без засечек, моноширинный"</item>
+    <item msgid="1487203730637617924">"С засечками"</item>
+    <item msgid="4937790671987480464">"C засечками, моноширинный"</item>
+    <item msgid="4448481989108928248">"Обычный"</item>
+    <item msgid="4627069151979553527">"Курсив"</item>
+    <item msgid="6896773537705206194">"Капитель"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"По умолчанию"</item>
+    <item msgid="6488643537808152001">"Нет сетей"</item>
+    <item msgid="552332815156010137">"Контур"</item>
+    <item msgid="7187891159463789272">"С тенью"</item>
+    <item msgid="8019330250538856521">"Приподнятый"</item>
+    <item msgid="8987385315647049787">"Утопленный"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"По умолчанию"</item>
+    <item msgid="8611890312638868524">"Белый на черном"</item>
+    <item msgid="5891360837786277638">"Черный на белом"</item>
+    <item msgid="2798457065945456853">"Желтый на черном"</item>
+    <item msgid="5799049811524553967">"Желтый на синем"</item>
+    <item msgid="3673930830658169860">"Пользовательские"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN-подключение по протоколу PPTP"</item>
+    <item msgid="1349760781118368659">"VPN-соединение по протоколу L2TP/IPSec с общими ключами"</item>
+    <item msgid="6128519070545038358">"VPN-подключение по протоколу L2TP/IPSec с использованием сертификатов"</item>
+    <item msgid="312397853907741968">"VPN-подключение IPSec с общими ключами и аутентификацией Xauth"</item>
+    <item msgid="3319427315593649917">"VPN-подключение IPSec с использованием сертификатов и аутентификации Xauth"</item>
+    <item msgid="8258927774145391041">"VPN-подключение IPSec с использованием сертификатов и комбинированной аутентификации"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Отменить выбор"</item>
+    <item msgid="1157046369795346308">"Руководство"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Нет подключения"</item>
+    <item msgid="8754480102834556765">"Инициализация..."</item>
+    <item msgid="3351334355574270250">"Подключение..."</item>
+    <item msgid="8303882153995748352">"Подключено"</item>
+    <item msgid="9135049670787351881">"Тайм-аут"</item>
+    <item msgid="2124868417182583926">"Сбой"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Спрашивать"</item>
+    <item msgid="7718817231348607934">"Не разрешать"</item>
+    <item msgid="8184570120217958741">"Разрешать всегда"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Стабильное"</item>
+    <item msgid="167418068739176448">"Наиболее частое действие"</item>
+    <item msgid="4760813290195199773">"Важное (активный режим)"</item>
+    <item msgid="2328684826817647595">"Важное (фоновый режим)"</item>
+    <item msgid="7746406490652867365">"Резервное копирование"</item>
+    <item msgid="5597404364389196754">"Большой объем данных"</item>
+    <item msgid="1290888779300174556">"Служба (работает)"</item>
+    <item msgid="7241098542073939046">"Служба (перезапуск)"</item>
+    <item msgid="6610439017684111046">"Получатель"</item>
+    <item msgid="7367606086319921117">"Главная"</item>
+    <item msgid="3344660712396741826">"Последнее действие"</item>
+    <item msgid="5006559348883303865">"Кешировано (действие)"</item>
+    <item msgid="8633480732468137525">"Кешировано (клиент)"</item>
+    <item msgid="6248998242443333892">"Кешировано (пусто)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Сине-зеленый"</item>
+    <item msgid="3228505970082457852">"Синий"</item>
+    <item msgid="6590260735734795647">"Индиго"</item>
+    <item msgid="3521763377357218577">"Фиолетовый"</item>
+    <item msgid="5932337981182999919">"Розовый"</item>
+    <item msgid="5642914536624000094">"Красный"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Добавленные более 30 дней назад"</item>
+    <item msgid="8699273238891265610">"Добавленные более 60 дней назад"</item>
+    <item msgid="8346279419423837266">"Добавленные более 90 дней назад"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Определять автоматически"</item>
+    <item msgid="773943026484148895">"С тарификацией"</item>
+    <item msgid="1008268820118852416">"Без тарификации"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Случайный MAC-адрес (по умолчанию)"</item>
+    <item msgid="214234417308375326">"Использовать MAC-адрес устройства"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Нет"</item>
+    <item msgid="1930581185557754880">"Да"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Темная"</item>
+    <item msgid="5079453644557603349">"Светлая"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Отключено"</item>
+    <item msgid="4072198137051566919">"Сведения об отладке"</item>
+    <item msgid="2473005316958868509">"Подробная информация"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Только домашние сети"</item>
+    <item msgid="1161026694891024702">"Автоматически"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA (предпочтительный режим)"</item>
+    <item msgid="7581481130337402578">"Только GSM"</item>
+    <item msgid="8579197487913425819">"Только WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA (авторежим)"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo (авторежим)"</item>
+    <item msgid="4219607161971472471">"CDMA без EvDo"</item>
+    <item msgid="7278975240951052041">"Только EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA и LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Весь мир"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Только TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Весь мир"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ru/strings.xml b/tests/CarDeveloperOptions/res/values-ru/strings.xml
index 7f3df1e..6fc8dcf 100644
--- a/tests/CarDeveloperOptions/res/values-ru/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ru/strings.xml
@@ -353,13 +353,13 @@
     <string name="time_picker_title" msgid="1596400307061268660">"Время"</string>
     <string name="lock_after_timeout" msgid="7755520959071097304">"Автоблокировка"</string>
     <string name="lock_after_timeout_summary" msgid="3160517585613694740">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> после перехода в спящий режим"</string>
-    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Сразу после перехода в спящий режим, если экран не поддерживается в разблокированном состоянии службой <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
+    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"Сразу после перехода в спящий режим, если экран не поддерживается в разблокированном состоянии функцией <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
     <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> после перехода в спящий режим, если экран не поддерживается в разблокированном состоянии службой <xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g>"</string>
     <string name="show_owner_info_on_lockscreen_label" msgid="4510756693837171575">"Показывать данные о владельце на экране блокировки"</string>
     <string name="owner_info_settings_title" msgid="2537966178998339896">"Текст на экране"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"Включить виджеты"</string>
     <string name="security_enable_widgets_disabled_summary" msgid="4408176087132339331">"Отключено администратором"</string>
-    <string name="lockdown_settings_title" msgid="4534779922580115990">"Добавить функцию блокировки входа"</string>
+    <string name="lockdown_settings_title" msgid="4534779922580115990">"Добавить кнопку блокировки"</string>
     <string name="lockdown_settings_summary" msgid="7270756909878256174">"Добавить в меню кнопки питания функцию, которая позволяет отключить Smart Lock, разблокировку по отпечатку пальца и уведомления на заблокированном экране"</string>
     <string name="trust_agents_extend_unlock_title" msgid="3582017561316089951">"Агенты доверия откладывают блокировку"</string>
     <string name="trust_agents_extend_unlock_summary" msgid="3543997596586078084">"Если параметр включен, агенты доверия могут увеличивать время, в течение которого устройство остается разблокированным, но не могут разблокировать его"</string>
@@ -1799,7 +1799,7 @@
     <string name="lockpattern_settings_enable_visible_pattern_title_profile" msgid="5338893138982642228">"Показывать графический ключ"</string>
     <string name="lockpattern_settings_enable_tactile_feedback_title" msgid="3203621862806531947">"Виброотклик"</string>
     <string name="lockpattern_settings_enable_power_button_instantly_locks" msgid="5890335732200257777">"Блокир. кнопкой питания"</string>
-    <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Если экран не поддерживается в разблокированном состоянии службой <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
+    <string name="lockpattern_settings_power_button_instantly_locks_summary" msgid="1279989004145567840">"Если экран не поддерживается в разблокированном состоянии функцией <xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>"</string>
     <string name="lockpattern_settings_choose_lock_pattern" msgid="9042142745571386381">"Установить ключ"</string>
     <string name="lockpattern_settings_change_lock_pattern" msgid="1456643060737114885">"Изменить ключ"</string>
     <string name="lockpattern_settings_help_how_to_record" msgid="6037403647312543908">"Как начертить графический ключ разблокировки"</string>
diff --git a/tests/CarDeveloperOptions/res/values-si-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-si-nokeys/strings.xml
new file mode 100644
index 0000000..24c66cb
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-si-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"යෙදුම් කළමනාකරණය කරන්න"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-si/arrays.xml b/tests/CarDeveloperOptions/res/values-si/arrays.xml
new file mode 100644
index 0000000..9792dc0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-si/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"ඇමරිකාව"</item>
+    <item msgid="4791956477275129121">"යුරෝපය"</item>
+    <item msgid="3812126832016254559">"අප්‍රිකාව"</item>
+    <item msgid="2765816300353408280">"ආසියාව"</item>
+    <item msgid="6683489385344409742">"ඕස්ට්‍රේලියාව"</item>
+    <item msgid="5194868215515664953">"පැසිෆික්"</item>
+    <item msgid="7044520255415007865">"සියලු"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"තත්පර 15"</item>
+    <item msgid="772029947136115322">"තත්පර 30"</item>
+    <item msgid="8743663928349474087">"මිනිත්තු 1"</item>
+    <item msgid="1506508631223164814">"මිනිත්තු 2"</item>
+    <item msgid="8664703938127907662">"මිනිත්තු 5"</item>
+    <item msgid="5827960506924849753">"මිනිත්තු 10"</item>
+    <item msgid="6677424950124253938">"මිනිත්තු 30"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"කුඩා"</item>
+    <item msgid="591935967183159581">"පෙරනිමි"</item>
+    <item msgid="1714184661981538355">"විශාල"</item>
+    <item msgid="6195563047686707484">"විශාලතම"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"පරිලෝකනය කරමින්…"</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> වෙත සම්බන්ධ වෙමින්…"</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> සමග සත්‍යාපනය කරමින්…"</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> වෙතින් IP ලිපිනය ලබා ගනිමින්..."</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> වෙත සම්බන්ධ වුණි"</item>
+    <item msgid="6600156231416890902">"තහනම් කරන ලදී"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> වෙතින් විසන්ධි වෙමින්…"</item>
+    <item msgid="3980154971187953257">"විසන්ධි වුණි"</item>
+    <item msgid="2847316776634969068">"අසාර්ථකයි"</item>
+    <item msgid="4390990424746035383">"අවහිර කරන ලදි"</item>
+    <item msgid="3618248791367063949">"දුර්වල සම්බන්ධතාවය තාවකාලිකව මඟහරිමින්"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"ඔබන බොත්තම"</item>
+    <item msgid="7401896200768713930">"සමයන්ගේ උපාංග වෙතින් PIN"</item>
+    <item msgid="4526848028011846710">"මෙම උපකරණයේ සිට PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"සම්බන්ධයි"</item>
+    <item msgid="983792611851499732">"ආරාධිත"</item>
+    <item msgid="5438273405428201793">"අසාර්ථකයි"</item>
+    <item msgid="4646663015449312554">"ලද හැක"</item>
+    <item msgid="3230556734162006146">"සීමාවෙන් පිටත"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"මිනිත්තු 2"</item>
+    <item msgid="2759776603549270587">"මිනිත්තු 5"</item>
+    <item msgid="167772676068860015">"1 පැයක්"</item>
+    <item msgid="5985477119043628504">"කිසිවිටෙක කල් ඉකුත් නොවන්න"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"අවසන් දින 30"</item>
+    <item msgid="3211287705232736964">"භාවිත කිරීමේ කවය සකසන්න..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"භාවිත කාලය"</item>
+    <item msgid="2784401352592276015">"අවසන් වරට භාවිත කළේ"</item>
+    <item msgid="249854287216326349">"යෙදුමේ නම"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"කිසිවක් නැත"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"කිසිවක් නැත"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"ස්ථිතික"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"කිසිවක් නැත"</item>
+    <item msgid="1464741437353223198">"අත්පොත"</item>
+    <item msgid="5793600062487886090">"ප්‍රොක්සිය ස්වයංක්‍රීය-වින්‍යාසය"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"කිසිවක් නැත"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP හෝ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"අභ්‍යන්තර උපාංග ආචයනය"</item>
+    <item msgid="3186681694079967527">"ඉවත් කළ හැකි SD කාඩ් පත"</item>
+    <item msgid="6902033473986647035">"තීරණය කිරීමට පද්ධතියට ඉඩ දෙන්න"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ස්ථානය"</item>
+    <item msgid="6842381562497597649">"පෞද්ගලික"</item>
+    <item msgid="3966700236695683444">"පණිවිඩ යැවීම"</item>
+    <item msgid="8563996233342430477">"මාධ්‍ය"</item>
+    <item msgid="5323851085993963783">"උපාංගය"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"දළ ස්ථානය"</item>
+    <item msgid="1830619568689922920">"බොහෝ නිවැරදි ස්ථානය"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"කම්පනය"</item>
+    <item msgid="8632513128515114092">"සම්බන්ධතා කියවන්න"</item>
+    <item msgid="3741042113569620272">"සම්බන්ධතා වෙනස් කරන්න"</item>
+    <item msgid="4204420969709009931">"ඇමතුම් ලොගය කියවන්න"</item>
+    <item msgid="2260380357119423209">"ඇමතුම් ලොගය වෙනස් කරන්න"</item>
+    <item msgid="6550710385014530934">"දින දසුන කියවන්න"</item>
+    <item msgid="3575906174264853951">"දින දර්ශනය වෙනස් කරන්න"</item>
+    <item msgid="4319843242568057174">"wi-fi පරිලෝකනය"</item>
+    <item msgid="2981791890467303819">"දැනුම්දීම"</item>
+    <item msgid="6617825156152476692">"කොටු පරිලෝකනය"</item>
+    <item msgid="8865260890611559753">"දුරකතනය අමතන්න"</item>
+    <item msgid="3254999273961542982">"SMS කියවන්න"</item>
+    <item msgid="7711446453028825171">"SMS ලියන්න"</item>
+    <item msgid="6123238544099198034">"SMS ලබන්න"</item>
+    <item msgid="838342167431596036">"හදිසි SMS ලබාගන්න"</item>
+    <item msgid="8554432731560956686">"MMS ලබන්න"</item>
+    <item msgid="7464863464299515059">"WAP තල්ලු කිරීම ලැබීම"</item>
+    <item msgid="310463075729606765">"SMS යවන්න"</item>
+    <item msgid="7338021933527689514">"ICC SMS කියවන්න"</item>
+    <item msgid="6130369335466613036">"ICC SMS ලියන්න"</item>
+    <item msgid="6536865581421670942">"සැකසුම් වෙනස් කරන්න"</item>
+    <item msgid="4547203129183558973">"ඉහළින් අඳින්න"</item>
+    <item msgid="9080347512916542840">"ප්‍රවේශ දැනුම්දීම්"</item>
+    <item msgid="5332718516635907742">"කැමරාව"</item>
+    <item msgid="6098422447246167852">"ශබ්ද පටිගත කරන්න"</item>
+    <item msgid="9182794235292595296">"ශ්‍රව්‍ය ධාවනය කරන්න"</item>
+    <item msgid="8760743229597702019">"පසුරු පුවරුව කියවන්න"</item>
+    <item msgid="2266923698240538544">"පසුරු පුවරුව වෙනස් කරන්න"</item>
+    <item msgid="1801619438618539275">"මාධ්‍ය බොත්තම"</item>
+    <item msgid="31588119965784465">"ශ්‍රව්‍ය අවධානය"</item>
+    <item msgid="7565226799008076833">"උසස් ශබ්දය"</item>
+    <item msgid="5420704980305018295">"හඬ ශබ්දය"</item>
+    <item msgid="5797363115508970204">"නාද ශබ්දය"</item>
+    <item msgid="8233154098550715999">"මාධ්‍ය ශබ්දය"</item>
+    <item msgid="5196715605078153950">"සීනුවේ ශබ්දය"</item>
+    <item msgid="394030698764284577">"දැනුම්දීමේ ශබ්දය"</item>
+    <item msgid="8952898972491680178">"බ්ලූටූත් ශබ්දය"</item>
+    <item msgid="8506227454543690851">"අවදිව සිටින්න"</item>
+    <item msgid="1108160036049727420">"නිරීක්ෂණ ස්ථානය"</item>
+    <item msgid="1496205959751719491">"වැඩි බල ස්ථානය නිරීක්ෂණය"</item>
+    <item msgid="3776296279910987380">"භාවිත කිරීමේ තත්ත්ව ලබාගන්න"</item>
+    <item msgid="8827100324471975602">"මයික්‍රෝෆෝනය නිශ්ශබ්ද/නිශ්ශබ්ද නැති කරන්න"</item>
+    <item msgid="6880736730520126864">"ටෝස්ට් පෙන්වීම"</item>
+    <item msgid="4933375960222609935">"මාධ්‍ය ව්‍යාපෘතිය"</item>
+    <item msgid="8357907018938895462">"VPN සක්‍රිය කරන්න"</item>
+    <item msgid="8143812849911310973">"වෝල්පේපරය ලියන්න"</item>
+    <item msgid="6266277260961066535">"ව්‍යුහයට සහාය"</item>
+    <item msgid="7715498149883482300">"තිර රුවට සහාය"</item>
+    <item msgid="4046679376726313293">"දුරකථන තත්ත්වය කියවීම"</item>
+    <item msgid="6329507266039719587">"හඬ තැපෑල එක් කිරීම"</item>
+    <item msgid="7692440726415391408">"SIP භාවිතය"</item>
+    <item msgid="8572453398128326267">"පිටතට යන ඇමතුම් ක්‍රියාවලිය"</item>
+    <item msgid="7775674394089376306">"ඇඟිලි සලකුණ"</item>
+    <item msgid="3182815133441738779">"ශරීර සංවේදක"</item>
+    <item msgid="2793100005496829513">"සෙල් විකාශන කියවීම"</item>
+    <item msgid="2633626056029384366">"ව්‍යාජ ස්ථාන"</item>
+    <item msgid="8356842191824684631">"ගබඩාව කියවීම"</item>
+    <item msgid="5671906070163291500">"ගබඩාව ලිවීම"</item>
+    <item msgid="2791955098549340418">"තිරය ක්‍රියාත්මක කිරීම"</item>
+    <item msgid="5599435119609178367">"ගිණුම් ලබා ගැනීම"</item>
+    <item msgid="1165623660533024666">"පසුබිමෙහි ධාවනය"</item>
+    <item msgid="6423861043647911030">"ප්‍රවේශ්‍යතා හඬ පරිමාව"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"කොට"</item>
+    <item msgid="4816511817309094890">"මධ්‍යම"</item>
+    <item msgid="8305084671259331134">"දීර්ඝ"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"පෙරනිමි"</item>
+    <item msgid="4147246073737933622">"සෑන්ස්-සේරිෆ්"</item>
+    <item msgid="3117680749167407907">"සෑන්ස්-සේරිෆ් කන්ඩෙන්ස්ඩ්"</item>
+    <item msgid="6529379119163117545">"සැන්ස්-සේරිෆ් මොනෝස්පේස්"</item>
+    <item msgid="1487203730637617924">"සේරිෆ්"</item>
+    <item msgid="4937790671987480464">"සේරිෆ් මොනෝස්පේස්"</item>
+    <item msgid="4448481989108928248">"සාමාන්‍ය"</item>
+    <item msgid="4627069151979553527">"බැඳි අකුරුමය"</item>
+    <item msgid="6896773537705206194">"කුඩා ලොකු අකුරු"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"පෙරනිමි"</item>
+    <item msgid="6488643537808152001">"කිසිවක් නැත"</item>
+    <item msgid="552332815156010137">"පිට මායිම"</item>
+    <item msgid="7187891159463789272">"පතිත ඡායාව"</item>
+    <item msgid="8019330250538856521">"නංවන ලද"</item>
+    <item msgid="8987385315647049787">"අවපාත කරන ලද"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"යෙදුම් වල සුපුරුද්ද භාවිතා කරන්න"</item>
+    <item msgid="8611890312638868524">"කළු මත සුදු"</item>
+    <item msgid="5891360837786277638">"සුදු මත කළු"</item>
+    <item msgid="2798457065945456853">"කළු මත කහ"</item>
+    <item msgid="5799049811524553967">"නිල් මත කහ"</item>
+    <item msgid="3673930830658169860">"අභිරුචි"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"පෙර බෙදාගත් යතුරු සමඟ L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN සමඟ සහතික"</item>
+    <item msgid="312397853907741968">"Xauth සත්‍යාපනය සහ පෙර බෙදාගත් යතුරු සමඟ IPSec VPN"</item>
+    <item msgid="3319427315593649917">"සහතික සහ Xauth සත්‍යාපනය සමග IPSec VPN"</item>
+    <item msgid="8258927774145391041">"IPSec VPN සමඟ සහතික සහ දෙමුහුන් සත්‍යාපනය"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"කිසිවක් නැත"</item>
+    <item msgid="1157046369795346308">"අත්පොත"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"විසන්ධි වුණි"</item>
+    <item msgid="8754480102834556765">"මුල පුරමින්…"</item>
+    <item msgid="3351334355574270250">"සම්බන්ධ වෙමින්…"</item>
+    <item msgid="8303882153995748352">"සම්බන්ධයි"</item>
+    <item msgid="9135049670787351881">"කල් ඉකුත්වීම"</item>
+    <item msgid="2124868417182583926">"අසාර්ථකයි"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"විමසන්න"</item>
+    <item msgid="7718817231348607934">"කිසිවිටෙකත් අවසර නොදෙන්න"</item>
+    <item msgid="8184570120217958741">"සැමවිටම ඉඩ දෙන්න"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ස්ථාවර"</item>
+    <item msgid="167418068739176448">"උඩම ක්‍රියාකාරකම"</item>
+    <item msgid="4760813290195199773">"වැදගත් (පෙරබිම)"</item>
+    <item msgid="2328684826817647595">"වැදගත් (පසුබිම)"</item>
+    <item msgid="7746406490652867365">"උපස්ථය"</item>
+    <item msgid="5597404364389196754">"වැඩි බර"</item>
+    <item msgid="1290888779300174556">"සේවාව (ධාවනය වන)"</item>
+    <item msgid="7241098542073939046">"සේවාව (නැවත පටන් ගැනෙන)"</item>
+    <item msgid="6610439017684111046">"ග්‍රාහකය"</item>
+    <item msgid="7367606086319921117">"මුල් පිටුව"</item>
+    <item msgid="3344660712396741826">"අවසන් ක්‍රියාකාරකම"</item>
+    <item msgid="5006559348883303865">"හැඹිලි ගත කළ (ක්‍රියාකාරකම)"</item>
+    <item msgid="8633480732468137525">"හැඹිලි ගත කළ (ක්‍රියාකාරකම් සේවාලාභියා)"</item>
+    <item msgid="6248998242443333892">"හැඹිලි ගත කළ (හිස්)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"සේරා"</item>
+    <item msgid="3228505970082457852">"නිල්"</item>
+    <item msgid="6590260735734795647">"ඉන්ඩිගෝ"</item>
+    <item msgid="3521763377357218577">"දම්"</item>
+    <item msgid="5932337981182999919">"රෝස"</item>
+    <item msgid="5642914536624000094">"රතු"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"දින 30කට වඩා පැරණි"</item>
+    <item msgid="8699273238891265610">"දින 60කට වඩා පැරණි"</item>
+    <item msgid="8346279419423837266">"දින 90කට වඩා පැරණි"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ස්වයංක්‍රීයව හඳුනා ගන්න"</item>
+    <item msgid="773943026484148895">"මනින ලද ලෙස සලකන්න"</item>
+    <item msgid="1008268820118852416">"නොමනින ලද ලෙස සලකන්න"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"අහඹු කළ MAC භාවිත කරන්න (පෙරනිමි)"</item>
+    <item msgid="214234417308375326">"උපාංග MAC භාවිත කරන්න"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"නැත"</item>
+    <item msgid="1930581185557754880">"ඔව්"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"අඳුරු"</item>
+    <item msgid="5079453644557603349">"ආලෝකය"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ක්‍රියාවිරහිතයි"</item>
+    <item msgid="4072198137051566919">"නිදොස්කරණය"</item>
+    <item msgid="2473005316958868509">"කථික"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"නිවසේ පමණි"</item>
+    <item msgid="1161026694891024702">"ස්වයංක්‍රිය"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA කැමතියි"</item>
+    <item msgid="7581481130337402578">"GSM පමණි"</item>
+    <item msgid="8579197487913425819">"WCDMA පමණි"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA ස්වයංක්‍රිය"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ස්වයංක්‍රිය"</item>
+    <item msgid="4219607161971472471">"EvDo රහිත CDMA"</item>
+    <item msgid="7278975240951052041">"EvDo පමණි"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ගෝලීය"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA පමණි"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ගෝලීය"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sk-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-sk-nokeys/strings.xml
new file mode 100644
index 0000000..24e5b39
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sk-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Správa aplikácií"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sk/arrays.xml b/tests/CarDeveloperOptions/res/values-sk/arrays.xml
new file mode 100644
index 0000000..905d53d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sk/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Európa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Ázia"</item>
+    <item msgid="6683489385344409742">"Austrália"</item>
+    <item msgid="5194868215515664953">"Tichomorie"</item>
+    <item msgid="7044520255415007865">"Všetko"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekúnd"</item>
+    <item msgid="772029947136115322">"30 sekúnd"</item>
+    <item msgid="8743663928349474087">"1 minúta"</item>
+    <item msgid="1506508631223164814">"2 minúty"</item>
+    <item msgid="8664703938127907662">"5 minút"</item>
+    <item msgid="5827960506924849753">"10 min."</item>
+    <item msgid="6677424950124253938">"30 minút"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Malé"</item>
+    <item msgid="591935967183159581">"Predvolené"</item>
+    <item msgid="1714184661981538355">"Veľké"</item>
+    <item msgid="6195563047686707484">"Najväčšie"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Vyhľadávanie..."</item>
+    <item msgid="8058143476674427024">"Prebieha pripájanie k sieti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Prebieha overovanie v sieti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Prebieha získavanie adresy IP zo siete <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Pripojené k sieti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Pozastavená"</item>
+    <item msgid="4133290864821295785">"Prebieha odpájanie od siete <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3980154971187953257">"Odpojený"</item>
+    <item msgid="2847316776634969068">"Neúspešné"</item>
+    <item msgid="4390990424746035383">"Blokované"</item>
+    <item msgid="3618248791367063949">"Dočasne bolo zabránené slabému pripojeniu"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Stlačenie tlačidla"</item>
+    <item msgid="7401896200768713930">"PIN zo zdieľaného zariadenia"</item>
+    <item msgid="4526848028011846710">"PIN zo zariadenia"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Pripojené"</item>
+    <item msgid="983792611851499732">"Pozvané"</item>
+    <item msgid="5438273405428201793">"Neúspešné"</item>
+    <item msgid="4646663015449312554">"K dispozícii"</item>
+    <item msgid="3230556734162006146">"Mimo dosah"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minúty"</item>
+    <item msgid="2759776603549270587">"5 minút"</item>
+    <item msgid="167772676068860015">"1 hodina"</item>
+    <item msgid="5985477119043628504">"Bez časového limitu"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Posledných 30 dní"</item>
+    <item msgid="3211287705232736964">"Nastaviť cyklus spotreby"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Doba použitia"</item>
+    <item msgid="2784401352592276015">"Naposledy použité"</item>
+    <item msgid="249854287216326349">"Názov aplikácie"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Žiadne"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Žiadne"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statická"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Žiadne"</item>
+    <item msgid="1464741437353223198">"Príručka"</item>
+    <item msgid="5793600062487886090">"Autom. konfigurácia proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Žiadne"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP alebo CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4 alebo IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Interné úložisko zariadenia"</item>
+    <item msgid="3186681694079967527">"Odnímateľná SD karta"</item>
+    <item msgid="6902033473986647035">"Automaticky vyberie systém"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Poloha"</item>
+    <item msgid="6842381562497597649">"Osobné"</item>
+    <item msgid="3966700236695683444">"SMS a MMS"</item>
+    <item msgid="8563996233342430477">"Médiá"</item>
+    <item msgid="5323851085993963783">"Zariadenie"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"približná poloha"</item>
+    <item msgid="1830619568689922920">"presná poloha"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibrovanie"</item>
+    <item msgid="8632513128515114092">"čítanie kontaktov"</item>
+    <item msgid="3741042113569620272">"úprava kontaktov"</item>
+    <item msgid="4204420969709009931">"čítanie denníka hovorov"</item>
+    <item msgid="2260380357119423209">"úprava denníka hovorov"</item>
+    <item msgid="6550710385014530934">"čítanie kalendára"</item>
+    <item msgid="3575906174264853951">"úprava kalendára"</item>
+    <item msgid="4319843242568057174">"prehľadanie sietí Wi‑Fi"</item>
+    <item msgid="2981791890467303819">"upozornenie"</item>
+    <item msgid="6617825156152476692">"prehľadanie mobilných sietí"</item>
+    <item msgid="8865260890611559753">"volanie na telefón"</item>
+    <item msgid="3254999273961542982">"čítanie správ SMS"</item>
+    <item msgid="7711446453028825171">"písanie správ SMS"</item>
+    <item msgid="6123238544099198034">"príjem správ SMS"</item>
+    <item msgid="838342167431596036">"príjem tiesňových SMS"</item>
+    <item msgid="8554432731560956686">"príjem správ MMS"</item>
+    <item msgid="7464863464299515059">"príjem správ WAP push"</item>
+    <item msgid="310463075729606765">"odosielanie správ SMS"</item>
+    <item msgid="7338021933527689514">"čítanie správ ICC SMS"</item>
+    <item msgid="6130369335466613036">"písanie správ ICC SMS"</item>
+    <item msgid="6536865581421670942">"úprava nastavení"</item>
+    <item msgid="4547203129183558973">"vykreslenie navrch"</item>
+    <item msgid="9080347512916542840">"prístup k upozorneniam"</item>
+    <item msgid="5332718516635907742">"fotoaparát:"</item>
+    <item msgid="6098422447246167852">"nahrávať zvuk"</item>
+    <item msgid="9182794235292595296">"prehrávanie zvuku"</item>
+    <item msgid="8760743229597702019">"načítať schránku"</item>
+    <item msgid="2266923698240538544">"upraviť schránku"</item>
+    <item msgid="1801619438618539275">"mediálne tlačidlá"</item>
+    <item msgid="31588119965784465">"zvukové zameranie"</item>
+    <item msgid="7565226799008076833">"hlavná hlasitosť"</item>
+    <item msgid="5420704980305018295">"hlasitosť hlasu"</item>
+    <item msgid="5797363115508970204">"hlasitosť zvonenia"</item>
+    <item msgid="8233154098550715999">"hlasitosť médií"</item>
+    <item msgid="5196715605078153950">"hlasitosť budíkov"</item>
+    <item msgid="394030698764284577">"hlasitosť upozornení"</item>
+    <item msgid="8952898972491680178">"hlasitosť bluetooth"</item>
+    <item msgid="8506227454543690851">"zakázať režim spánku"</item>
+    <item msgid="1108160036049727420">"sledovať polohu"</item>
+    <item msgid="1496205959751719491">"sledovanie polohy s vysokým výkonnom"</item>
+    <item msgid="3776296279910987380">"získanie štatistiky používania"</item>
+    <item msgid="8827100324471975602">"stlmenie alebo zrušenie stlmenia mikrofónu"</item>
+    <item msgid="6880736730520126864">"zobrazenie oznamu"</item>
+    <item msgid="4933375960222609935">"projekcia médií"</item>
+    <item msgid="8357907018938895462">"aktivácia VPN"</item>
+    <item msgid="8143812849911310973">"zápis tapety"</item>
+    <item msgid="6266277260961066535">"asistujúca štruktúra"</item>
+    <item msgid="7715498149883482300">"asistujúca snímka obrazovky"</item>
+    <item msgid="4046679376726313293">"čítanie stavu telefónu"</item>
+    <item msgid="6329507266039719587">"pridanie hlasovej schránky"</item>
+    <item msgid="7692440726415391408">"používanie volania SIP"</item>
+    <item msgid="8572453398128326267">"spracovanie odchádzajúcich hovorov"</item>
+    <item msgid="7775674394089376306">"odtlačok prsta"</item>
+    <item msgid="3182815133441738779">"telesné senzory"</item>
+    <item msgid="2793100005496829513">"čítať správy informačných služieb"</item>
+    <item msgid="2633626056029384366">"napodobnenie miesta"</item>
+    <item msgid="8356842191824684631">"čítanie úložiska"</item>
+    <item msgid="5671906070163291500">"zápis do úložiska"</item>
+    <item msgid="2791955098549340418">"zapnutie obrazovky"</item>
+    <item msgid="5599435119609178367">"získanie účtov"</item>
+    <item msgid="1165623660533024666">"spustenie na pozadí"</item>
+    <item msgid="6423861043647911030">"objem aplikácií dostupnosti"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Krátke"</item>
+    <item msgid="4816511817309094890">"Stredná"</item>
+    <item msgid="8305084671259331134">"Dlhé"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Predvolené"</item>
+    <item msgid="4147246073737933622">"Bezpätkové"</item>
+    <item msgid="3117680749167407907">"Bezpätkové zhustené"</item>
+    <item msgid="6529379119163117545">"Bezpätkové neproporcionálne"</item>
+    <item msgid="1487203730637617924">"Pätkové"</item>
+    <item msgid="4937790671987480464">"Pätkové neproporcionálne"</item>
+    <item msgid="4448481989108928248">"Štandardné"</item>
+    <item msgid="4627069151979553527">"Kurzíva"</item>
+    <item msgid="6896773537705206194">"Kapitálky"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Predvolené"</item>
+    <item msgid="6488643537808152001">"Žiadne"</item>
+    <item msgid="552332815156010137">"Obrys"</item>
+    <item msgid="7187891159463789272">"Tieň"</item>
+    <item msgid="8019330250538856521">"Zvýšený"</item>
+    <item msgid="8987385315647049787">"Rytina"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Predvolené nastavenie aplikácie"</item>
+    <item msgid="8611890312638868524">"Biele na čiernom"</item>
+    <item msgid="5891360837786277638">"Čierne na bielom"</item>
+    <item msgid="2798457065945456853">"Žlté na čiernom"</item>
+    <item msgid="5799049811524553967">"Žlté na modrom"</item>
+    <item msgid="3673930830658169860">"Vlastné"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN s protokolom PPTP"</item>
+    <item msgid="1349760781118368659">"Sieť VPN založená na protokole L2TP/IPSec s predzdieľanými kľúčmi"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN s certifikátmi"</item>
+    <item msgid="312397853907741968">"IPSec VPN s predzdieľanými kľúčmi a overením Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN s certifikátmi a overením Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN s certifikátmi a hybridným overením"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Žiadny"</item>
+    <item msgid="1157046369795346308">"Príručka"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Odpojený"</item>
+    <item msgid="8754480102834556765">"Prebieha inicializácia..."</item>
+    <item msgid="3351334355574270250">"Pripája sa..."</item>
+    <item msgid="8303882153995748352">"Pripojené"</item>
+    <item msgid="9135049670787351881">"Časový limit"</item>
+    <item msgid="2124868417182583926">"Neúspešné"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Opýtať sa"</item>
+    <item msgid="7718817231348607934">"Nikdy nepovoliť"</item>
+    <item msgid="8184570120217958741">"Vždy povoliť"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Pretrvávajúci"</item>
+    <item msgid="167418068739176448">"Najčastejšia aktivita"</item>
+    <item msgid="4760813290195199773">"Dôležitý (v popredí)"</item>
+    <item msgid="2328684826817647595">"Dôležitý (v pozadí)"</item>
+    <item msgid="7746406490652867365">"Zálohovanie"</item>
+    <item msgid="5597404364389196754">"Vysoké vyťaženie"</item>
+    <item msgid="1290888779300174556">"Služba (spustená)"</item>
+    <item msgid="7241098542073939046">"Služba (reštartuje sa)"</item>
+    <item msgid="6610439017684111046">"Prijímač"</item>
+    <item msgid="7367606086319921117">"Plocha"</item>
+    <item msgid="3344660712396741826">"Posledná aktivita"</item>
+    <item msgid="5006559348883303865">"Vo vyrovnávacej pamäti (aktivita)"</item>
+    <item msgid="8633480732468137525">"Vo vyrovnávacej pamäti (klient aktivity)"</item>
+    <item msgid="6248998242443333892">"Vo vyrovnávacej pamäti (prázdne)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Modrozelená"</item>
+    <item msgid="3228505970082457852">"Modrá"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Purpurová"</item>
+    <item msgid="5932337981182999919">"Ružová"</item>
+    <item msgid="5642914536624000094">"Červená"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Staršie ako 30 dní"</item>
+    <item msgid="8699273238891265610">"Staršie ako 60 dní"</item>
+    <item msgid="8346279419423837266">"Staršie ako 90 dní"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Zistiť automaticky"</item>
+    <item msgid="773943026484148895">"Považovať za meranú sieť"</item>
+    <item msgid="1008268820118852416">"Považovať za nemeranú sieť"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Používať randomizovanú adresu MAC (predvolené)"</item>
+    <item msgid="214234417308375326">"Použiť adresu MAC zariadenia"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nie"</item>
+    <item msgid="1930581185557754880">"Áno"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tmavý"</item>
+    <item msgid="5079453644557603349">"Svetlý"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Vypnutý"</item>
+    <item msgid="4072198137051566919">"Ladenie"</item>
+    <item msgid="2473005316958868509">"Podrobné informácie"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Iba plocha"</item>
+    <item msgid="1161026694891024702">"Automaticky"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA – preferované"</item>
+    <item msgid="7581481130337402578">"Iba GSM"</item>
+    <item msgid="8579197487913425819">"Iba WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA – automaticky"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo – automaticky"</item>
+    <item msgid="4219607161971472471">"CDMA bez EvDo"</item>
+    <item msgid="7278975240951052041">"Iba EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globálne"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Iba TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globálne"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sk/strings.xml b/tests/CarDeveloperOptions/res/values-sk/strings.xml
index eaa17fe..ef9523d 100644
--- a/tests/CarDeveloperOptions/res/values-sk/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-sk/strings.xml
@@ -1233,7 +1233,7 @@
     <string name="auto_brightness_description" msgid="8209140379089535411">"Jas obrazovky sa automaticky prispôsobí prostrediu a aktivitám. Ručným posúvaním posúvača učíte adaptáciu jasu svoje preferované nastavenia."</string>
     <string name="display_white_balance_title" msgid="5747260735311935143">"Zobrazenie vyváženia bielej"</string>
     <string name="adaptive_sleep_title" msgid="3237620948260957018">"Screen aware"</string>
-    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Zapnuté – Obrazovka sa nevypne, ak sa na ňu budete pozerať"</string>
+    <string name="adaptive_sleep_summary_on" msgid="6670369739228487082">"Zapnuté, obrazovka sa nevypne, keď sa na ňu budete pozerať"</string>
     <string name="adaptive_sleep_summary_off" msgid="2891586225954973431">"Vypnuté"</string>
     <string name="adaptive_sleep_description" msgid="812673735459170009">"Zabráni vypnutiu obrazovky, keď sa na ňu budete pozerať."</string>
     <string name="adaptive_sleep_privacy" msgid="5706802215479902623">"Screen aware pomocou predného fotoaparátu zisťuje, či sa používateľ pozerá na obrazovku. Pracuje v zariadení a snímky sa nikdy neodosielajú do Googlu."</string>
@@ -3375,7 +3375,7 @@
     <string name="other_sound_category_preference_title" msgid="2045757472469840859">"Ďalšie zvuky a vibrácie"</string>
     <string name="configure_notification_settings" msgid="291914315140851270">"Upozornenia"</string>
     <string name="recent_notifications" msgid="8125865995065032049">"Nedávno odoslané"</string>
-    <string name="recent_notifications_see_all_title" msgid="4089007770442871469">"Zobraziť všetky aplikácie za posledných 7 dní"</string>
+    <string name="recent_notifications_see_all_title" msgid="4089007770442871469">"Zobraziť všetko za posledných 7 dní"</string>
     <string name="advanced_section_header" msgid="984680389373090015">"Rozšírené"</string>
     <string name="profile_section_header" msgid="5471479005472037417">"Pracovné upozornenia"</string>
     <string name="asst_capability_prioritizer_title" msgid="3488284760645922160">"Automatické priority upozornení"</string>
diff --git a/tests/CarDeveloperOptions/res/values-sl-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-sl-nokeys/strings.xml
new file mode 100644
index 0000000..db3d9f0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sl-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Upravljanje aplikacij"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sl/arrays.xml b/tests/CarDeveloperOptions/res/values-sl/arrays.xml
new file mode 100644
index 0000000..c607bba
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sl/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Evropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Azija"</item>
+    <item msgid="6683489385344409742">"Avstralija"</item>
+    <item msgid="5194868215515664953">"Pacifiški čas"</item>
+    <item msgid="7044520255415007865">"Vse"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 s"</item>
+    <item msgid="772029947136115322">"30 sekund"</item>
+    <item msgid="8743663928349474087">"1 minuta"</item>
+    <item msgid="1506508631223164814">"2 minuti"</item>
+    <item msgid="8664703938127907662">"5 minut"</item>
+    <item msgid="5827960506924849753">"10 min"</item>
+    <item msgid="6677424950124253938">"30 minut"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Majhna"</item>
+    <item msgid="591935967183159581">"Privzeto"</item>
+    <item msgid="1714184661981538355">"Velika"</item>
+    <item msgid="6195563047686707484">"Največje"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Iskanje ..."</item>
+    <item msgid="8058143476674427024">"Vzpostavljanje povezave z omrežjem <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="7547609081339573756">"Preverjanje pristnosti v omrežju <xliff:g id="NETWORK_NAME">%1$s</xliff:g> ..."</item>
+    <item msgid="5145158315060185414">"Pridobivanje naslova IP iz omrežja <xliff:g id="NETWORK_NAME">%1$s</xliff:g> ..."</item>
+    <item msgid="3283243151651124831">"Povezava z omrežjem <xliff:g id="NETWORK_NAME">%1$s</xliff:g> je vzpostavljena"</item>
+    <item msgid="6600156231416890902">"Začasno ustavljeno"</item>
+    <item msgid="4133290864821295785">"Prekinjanje povezave z omrežjem <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="3980154971187953257">"Prekinjena povezava"</item>
+    <item msgid="2847316776634969068">"Ni uspelo"</item>
+    <item msgid="4390990424746035383">"Blokirano"</item>
+    <item msgid="3618248791367063949">"Začasno izogibanje slabi povezavi"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Pritisnite gumb"</item>
+    <item msgid="7401896200768713930">"PIN iz enakovredne naprave"</item>
+    <item msgid="4526848028011846710">"PIN iz te naprave"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Povezano"</item>
+    <item msgid="983792611851499732">"Povabljen"</item>
+    <item msgid="5438273405428201793">"Ni uspelo"</item>
+    <item msgid="4646663015449312554">"Na voljo"</item>
+    <item msgid="3230556734162006146">"Zunaj dosega"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuti"</item>
+    <item msgid="2759776603549270587">"5 min"</item>
+    <item msgid="167772676068860015">"1 ura"</item>
+    <item msgid="5985477119043628504">"Brez časovne omejitve"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Zadnjih 30 dni"</item>
+    <item msgid="3211287705232736964">"Nastav. cikla porabe ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Čas uporabe"</item>
+    <item msgid="2784401352592276015">"Zadnjič uporabljeno"</item>
+    <item msgid="249854287216326349">"Ime aplikacije"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Brez"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Brez"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statično"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Brez"</item>
+    <item msgid="1464741437353223198">"Ročno"</item>
+    <item msgid="5793600062487886090">"Samodejni proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Brez"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ali CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Notranji pomnilnik naprave"</item>
+    <item msgid="3186681694079967527">"Izmenljiva kartica SD"</item>
+    <item msgid="6902033473986647035">"Naj odloči sistem"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokacija"</item>
+    <item msgid="6842381562497597649">"Osebno"</item>
+    <item msgid="3966700236695683444">"Sporočila"</item>
+    <item msgid="8563996233342430477">"Predstavnost"</item>
+    <item msgid="5323851085993963783">"Naprava"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"groba lokacija"</item>
+    <item msgid="1830619568689922920">"natančna lokacija"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibriranje"</item>
+    <item msgid="8632513128515114092">"branje stikov"</item>
+    <item msgid="3741042113569620272">"spreminjanje stikov"</item>
+    <item msgid="4204420969709009931">"branje dnevnika klicev"</item>
+    <item msgid="2260380357119423209">"spreminjanje dnevnika klicev"</item>
+    <item msgid="6550710385014530934">"branje koledarja"</item>
+    <item msgid="3575906174264853951">"spreminjanje koledarja"</item>
+    <item msgid="4319843242568057174">"iskanje omrežij Wi-Fi"</item>
+    <item msgid="2981791890467303819">"obvestilo"</item>
+    <item msgid="6617825156152476692">"iskanje celic mobilnega omrežja"</item>
+    <item msgid="8865260890611559753">"klicanje telefonske številke"</item>
+    <item msgid="3254999273961542982">"branje sporočil SMS"</item>
+    <item msgid="7711446453028825171">"pisanje sporočil SMS"</item>
+    <item msgid="6123238544099198034">"prejemanje sporočil SMS"</item>
+    <item msgid="838342167431596036">"prejemanje sporočil SMS v sili"</item>
+    <item msgid="8554432731560956686">"prejemanje sporočil MMS"</item>
+    <item msgid="7464863464299515059">"prejemanje potisnih sporočil WAP"</item>
+    <item msgid="310463075729606765">"pošiljanje sporočil SMS"</item>
+    <item msgid="7338021933527689514">"branje sporočil SMS na kartici SIM"</item>
+    <item msgid="6130369335466613036">"pisanje sporočil SMS na kartici SIM"</item>
+    <item msgid="6536865581421670942">"spreminjanje nastavitev"</item>
+    <item msgid="4547203129183558973">"vlečenje na vrh"</item>
+    <item msgid="9080347512916542840">"dostop do obvestil"</item>
+    <item msgid="5332718516635907742">"fotoaparat"</item>
+    <item msgid="6098422447246167852">"snemanje zvoka"</item>
+    <item msgid="9182794235292595296">"predvajanje zvoka"</item>
+    <item msgid="8760743229597702019">"preberi odložišče"</item>
+    <item msgid="2266923698240538544">"spremeni odložišče"</item>
+    <item msgid="1801619438618539275">"gumbi za predstavnosti"</item>
+    <item msgid="31588119965784465">"fokus zvoka"</item>
+    <item msgid="7565226799008076833">"glavna glasnost"</item>
+    <item msgid="5420704980305018295">"glasnost glasu"</item>
+    <item msgid="5797363115508970204">"glasnost zvonjenja"</item>
+    <item msgid="8233154098550715999">"glasnost predstavnosti"</item>
+    <item msgid="5196715605078153950">"glasnost alarma"</item>
+    <item msgid="394030698764284577">"glasnost obvestila"</item>
+    <item msgid="8952898972491680178">"glasnost za Bluetooth"</item>
+    <item msgid="8506227454543690851">"ohrani odklenjen zaslon"</item>
+    <item msgid="1108160036049727420">"spremljanje lokacije"</item>
+    <item msgid="1496205959751719491">"nadzor natančno določene lokacije"</item>
+    <item msgid="3776296279910987380">"pridobivanje statističnih podatkov o uporabi"</item>
+    <item msgid="8827100324471975602">"izklop/vklop mikrofona"</item>
+    <item msgid="6880736730520126864">"prikaz obvestila"</item>
+    <item msgid="4933375960222609935">"predstavnost projektov"</item>
+    <item msgid="8357907018938895462">"aktiviranje omrežja VPN"</item>
+    <item msgid="8143812849911310973">"ozadje pisanja"</item>
+    <item msgid="6266277260961066535">"struktura pomoči"</item>
+    <item msgid="7715498149883482300">"posnetek zaslona pomoči"</item>
+    <item msgid="4046679376726313293">"branje stanja telefona"</item>
+    <item msgid="6329507266039719587">"dodajanje odzivnika"</item>
+    <item msgid="7692440726415391408">"uporaba protokola SIP"</item>
+    <item msgid="8572453398128326267">"obdelava odhodnega klica"</item>
+    <item msgid="7775674394089376306">"prstni odtis"</item>
+    <item msgid="3182815133441738779">"tipala telesnih funkcij"</item>
+    <item msgid="2793100005496829513">"branje oddaj v celici"</item>
+    <item msgid="2633626056029384366">"lažna lokacija"</item>
+    <item msgid="8356842191824684631">"branje shrambe"</item>
+    <item msgid="5671906070163291500">"pisanje v shrambo"</item>
+    <item msgid="2791955098549340418">"vklop zaslona"</item>
+    <item msgid="5599435119609178367">"pridobivanje računov"</item>
+    <item msgid="1165623660533024666">"izvajanje v ozadju"</item>
+    <item msgid="6423861043647911030">"glasnost za funkcije za ljudi s posebnimi potrebami"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kratko"</item>
+    <item msgid="4816511817309094890">"Srednja pomembnost"</item>
+    <item msgid="8305084671259331134">"Dolgo"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Privzeto"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif, zgoščena"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Vsakdanje"</item>
+    <item msgid="4627069151979553527">"Ležeče"</item>
+    <item msgid="6896773537705206194">"Pomanjšane velike črke"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Privzeto"</item>
+    <item msgid="6488643537808152001">"Brez"</item>
+    <item msgid="552332815156010137">"Oris"</item>
+    <item msgid="7187891159463789272">"Senca"</item>
+    <item msgid="8019330250538856521">"Dvignjeno"</item>
+    <item msgid="8987385315647049787">"Znižano"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Uporabi privzeto nastavitev aplik."</item>
+    <item msgid="8611890312638868524">"Belo na črnem"</item>
+    <item msgid="5891360837786277638">"Črno na belem"</item>
+    <item msgid="2798457065945456853">"Rumeno na črnem"</item>
+    <item msgid="5799049811524553967">"Rumeno na modrem"</item>
+    <item msgid="3673930830658169860">"Po meri"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN s ključi v predhodni skupni rabi"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN s potrdili"</item>
+    <item msgid="312397853907741968">"IPSec VPN s ključi v predhodni skupni rabi in preverjanjem pristnosti Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN s potrdili in preverjanjem pristnosti Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN s potrdili in hibridnim preverjanjem pristnosti"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Brez"</item>
+    <item msgid="1157046369795346308">"Ročno"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Prekinjena povezava"</item>
+    <item msgid="8754480102834556765">"Inicializacija ..."</item>
+    <item msgid="3351334355574270250">"Povezovanje ..."</item>
+    <item msgid="8303882153995748352">"Povezano"</item>
+    <item msgid="9135049670787351881">"Časovna omejitev"</item>
+    <item msgid="2124868417182583926">"Ni uspelo"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Vprašaj"</item>
+    <item msgid="7718817231348607934">"Nikoli ne dovoli"</item>
+    <item msgid="8184570120217958741">"Vedno dovoli"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Trajno"</item>
+    <item msgid="167418068739176448">"Najpogostejša dejavnost"</item>
+    <item msgid="4760813290195199773">"Pomembno (v ospredju)"</item>
+    <item msgid="2328684826817647595">"Pomembno (v ozadju)"</item>
+    <item msgid="7746406490652867365">"Varnostno kopiranje"</item>
+    <item msgid="5597404364389196754">"Zahtevno"</item>
+    <item msgid="1290888779300174556">"Storitev (izvajanje)"</item>
+    <item msgid="7241098542073939046">"Storitev (vnovičen zagon)"</item>
+    <item msgid="6610439017684111046">"Sprejemnik"</item>
+    <item msgid="7367606086319921117">"Začetni zaslon"</item>
+    <item msgid="3344660712396741826">"Zadnja dejavnost"</item>
+    <item msgid="5006559348883303865">"Predpomnjeno (dejavnost)"</item>
+    <item msgid="8633480732468137525">"Predpomnjeno (odjemalec dejavnosti)"</item>
+    <item msgid="6248998242443333892">"Predpomnjeno (prazno)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Zelenomodra"</item>
+    <item msgid="3228505970082457852">"Modra"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Vijolična"</item>
+    <item msgid="5932337981182999919">"Rožnata"</item>
+    <item msgid="5642914536624000094">"Rdeča"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Starejše od 30 dni"</item>
+    <item msgid="8699273238891265610">"Starejše od 60 dni"</item>
+    <item msgid="8346279419423837266">"Starejše od 90 dni"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Zaznaj samodejno"</item>
+    <item msgid="773943026484148895">"Obravnavaj kot omrežje z omejenim prenosom podatkov"</item>
+    <item msgid="1008268820118852416">"Obravnavaj kot omrežje z neomejenim prenosom podatkov"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Uporaba naključno izbranega naslova MAC (privzeto)"</item>
+    <item msgid="214234417308375326">"Uporaba naslova MAC naprave"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ne"</item>
+    <item msgid="1930581185557754880">"Da"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Temna"</item>
+    <item msgid="5079453644557603349">"Svetla"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Izklopljeno"</item>
+    <item msgid="4072198137051566919">"Odpravljanje napak"</item>
+    <item msgid="2473005316958868509">"Podrobno"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Samo domače"</item>
+    <item msgid="1161026694891024702">"Samodejno"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Prednostno GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Samo GSM"</item>
+    <item msgid="8579197487913425819">"Samo WCDMA"</item>
+    <item msgid="8465243227505412498">"Samodejno GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Samodejno CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA brez EvDo"</item>
+    <item msgid="7278975240951052041">"Samo EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalno"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Samo TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalno"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sl/strings.xml b/tests/CarDeveloperOptions/res/values-sl/strings.xml
index 60983ad..f3afda2 100644
--- a/tests/CarDeveloperOptions/res/values-sl/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-sl/strings.xml
@@ -1853,7 +1853,7 @@
     <string name="data_size_label" msgid="7790201846922671662">"Uporabniški podatki"</string>
     <string name="external_data_size_label" product="nosdcard" msgid="8004991551882573479">"Podatki na pogonu USB"</string>
     <string name="external_data_size_label" product="default" msgid="1097584278225902734">"Kartica SD"</string>
-    <string name="uninstall_text" msgid="4859715815689705801">"Odstrani"</string>
+    <string name="uninstall_text" msgid="4859715815689705801">"Odmesti"</string>
     <string name="uninstall_all_users_text" msgid="2620518509352561416">"Odstrani za vse uporabnike"</string>
     <string name="install_text" msgid="2798092278891807849">"Namesti"</string>
     <string name="disable_text" msgid="5065834603951474397">"Onemogoči"</string>
@@ -2130,7 +2130,7 @@
     <string name="accessibility_touch_vibration_title" msgid="285890135612038092">"Vibriranje ob dotiku"</string>
     <string name="accessibility_service_master_switch_title" msgid="2734791644475782924">"Uporaba storitve"</string>
     <string name="accessibility_daltonizer_master_switch_title" msgid="4855011639012300777">"Uporaba popravljanja barv"</string>
-    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Uporaba napisov"</string>
+    <string name="accessibility_caption_master_switch_title" msgid="6373335123229234053">"Uporaba podnapisov"</string>
     <string name="accessibility_hearingaid_instruction_continue_button" msgid="4650111296711466691">"Naprej"</string>
     <string name="accessibility_hearingaid_title" msgid="3700978781235124891">"Slušni pripomočki"</string>
     <string name="accessibility_hearingaid_not_connected_summary" msgid="634573930469952213">"Noben slušni pripomoček ni povezan"</string>
@@ -2196,7 +2196,7 @@
     <string name="captioning_standard_options_title" msgid="4124898413348084226">"Standardne možnosti"</string>
     <string name="captioning_locale" msgid="4734464353806207943">"Jezik"</string>
     <string name="captioning_text_size" msgid="1707122517246408084">"Velikost besedila"</string>
-    <string name="captioning_preset" msgid="7429888317480872337">"Slog napisov"</string>
+    <string name="captioning_preset" msgid="7429888317480872337">"Slog podnapisov"</string>
     <string name="captioning_custom_options_title" msgid="4530479671071326732">"Možnosti po meri"</string>
     <string name="captioning_background_color" msgid="2434458880326292180">"Barva ozadja"</string>
     <string name="captioning_background_opacity" msgid="8178926599201811936">"Neprosojnost ozadja"</string>
@@ -3873,7 +3873,7 @@
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Aplikaciji za pomoč dovoli dostop do posnetka zaslona"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"Utripanje zaslona"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"Utripanje robov zaslona, ko aplikacija za pomoč dostopa do besedila z zaslona ali posnetka zaslona"</string>
-    <string name="assist_footer" msgid="7030121180457472165">"Aplikacije za pomoč vam pomagajo na podlagi podatkov na zaslonu, ki si ga ogledujete. Nekatere aplikacije podpirajo storitve zaganjalnika in glasovnega vnosa pri zagotavljanju integrirane pomoči."</string>
+    <string name="assist_footer" msgid="7030121180457472165">"Aplikacije za pomoč vam lahko pomagajo na podlagi podatkov na zaslonu, ki si ga ogledujete. Nekatere aplikacije podpirajo storitve zaganjalnika in glasovnega vnosa in vam tako zagotavljajo celovito pomoč."</string>
     <string name="average_memory_use" msgid="5333366040118953945">"Povprečna uporaba pomnilnika"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"Največja uporaba pomnilnika"</string>
     <string name="memory_usage" msgid="7963253555330830906">"Uporaba pomnilnika"</string>
diff --git a/tests/CarDeveloperOptions/res/values-sq-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-sq-nokeys/strings.xml
new file mode 100644
index 0000000..c31b070
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sq-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Menaxho aplikacionet"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sq/arrays.xml b/tests/CarDeveloperOptions/res/values-sq/arrays.xml
new file mode 100644
index 0000000..f86250d
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sq/arrays.xml
@@ -0,0 +1,345 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Evropa"</item>
+    <item msgid="3812126832016254559">"Afrikë"</item>
+    <item msgid="2765816300353408280">"Azi"</item>
+    <item msgid="6683489385344409742">"Australi"</item>
+    <item msgid="5194868215515664953">"Oqeani Paqësor"</item>
+    <item msgid="7044520255415007865">"Të gjitha"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Lidhur"</item>
+    <item msgid="983792611851499732">"I ftuar"</item>
+    <item msgid="5438273405428201793">"Pa sukses"</item>
+    <item msgid="4646663015449312554">"Në shitje"</item>
+    <item msgid="3230556734162006146">"Jashtë rrezes"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 ditët e fundit"</item>
+    <item msgid="3211287705232736964">"Cakto ciklin e përdorimit..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Koha e përdorimit"</item>
+    <item msgid="2784401352592276015">"Përdorur për herë të fundit"</item>
+    <item msgid="249854287216326349">"Emri i aplikacionit"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Asnjë"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Asnjë"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Asnjë"</item>
+    <item msgid="1464741437353223198">"Manuale"</item>
+    <item msgid="5793600062487886090">"Auto-konfig. i përfaqësuesit"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Asnjë"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP ose CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Hapësira e brendshme ruajtëse e pajisjes"</item>
+    <item msgid="3186681694079967527">"Kartë SD e lëvizshme"</item>
+    <item msgid="6902033473986647035">"Lejo sistemin të marrë vendim"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Vendndodhja"</item>
+    <item msgid="6842381562497597649">"Personale"</item>
+    <item msgid="3966700236695683444">"Mesazhet"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Pajisja"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"vendndodhja e përafërt"</item>
+    <item msgid="1830619568689922920">"vendndodhja e saktë"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"dridhje"</item>
+    <item msgid="8632513128515114092">"lexo kontaktet"</item>
+    <item msgid="3741042113569620272">"modifiko kontaktet"</item>
+    <item msgid="4204420969709009931">"lexo ditarin e telefonatave"</item>
+    <item msgid="2260380357119423209">"modifiko ditarin e telefonatave"</item>
+    <item msgid="6550710385014530934">"lexo kalendarin"</item>
+    <item msgid="3575906174264853951">"modifiko kalendarin"</item>
+    <item msgid="4319843242568057174">"skanimi për Wi-Fi"</item>
+    <item msgid="2981791890467303819">"njoftimi"</item>
+    <item msgid="6617825156152476692">"skanimi i rrjetit celular"</item>
+    <item msgid="8865260890611559753">"telefono telefonin"</item>
+    <item msgid="3254999273961542982">"lexo SMS-të"</item>
+    <item msgid="7711446453028825171">"shkruaj SMS"</item>
+    <item msgid="6123238544099198034">"prano SMS"</item>
+    <item msgid="838342167431596036">"merr SMS emergjence"</item>
+    <item msgid="8554432731560956686">"merr MMS"</item>
+    <item msgid="7464863464299515059">"prano \"WAP push\""</item>
+    <item msgid="310463075729606765">"dërgo SMS"</item>
+    <item msgid="7338021933527689514">"lexo ICC SMS-të"</item>
+    <item msgid="6130369335466613036">"shkruaj ICC SMS"</item>
+    <item msgid="6536865581421670942">"modifiko cilësimet"</item>
+    <item msgid="4547203129183558973">"vizato sipër"</item>
+    <item msgid="9080347512916542840">"qasju njoftimeve"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"regjistro audio"</item>
+    <item msgid="9182794235292595296">"luaj audio"</item>
+    <item msgid="8760743229597702019">"lexo memorien e fragmenteve"</item>
+    <item msgid="2266923698240538544">"modifiko memorien e fragmenteve"</item>
+    <item msgid="1801619438618539275">"butonat e medias"</item>
+    <item msgid="31588119965784465">"përqendrimi i audios"</item>
+    <item msgid="7565226799008076833">"kontrollo volumin"</item>
+    <item msgid="5420704980305018295">"volumi i zërit"</item>
+    <item msgid="5797363115508970204">"volumi i ziles"</item>
+    <item msgid="8233154098550715999">"volumi i medias"</item>
+    <item msgid="5196715605078153950">"volumi i alarmit"</item>
+    <item msgid="394030698764284577">"volumi i njoftimit"</item>
+    <item msgid="8952898972491680178">"Volumi i \"Bluetooth-it\""</item>
+    <item msgid="8506227454543690851">"mbaje të zgjuar"</item>
+    <item msgid="1108160036049727420">"monitoro vendndodhjen"</item>
+    <item msgid="1496205959751719491">"monitoro vendndodhjen e energjisë së lartë"</item>
+    <item msgid="3776296279910987380">"merr statistikat e përdorimit"</item>
+    <item msgid="8827100324471975602">"çaktivizo/aktivizo mikrofonin"</item>
+    <item msgid="6880736730520126864">"shfaq kodin toast"</item>
+    <item msgid="4933375960222609935">"projekto media"</item>
+    <item msgid="8357907018938895462">"aktivizo rrjetin VPN"</item>
+    <item msgid="8143812849911310973">"shkruaj në imazhin e sfondit"</item>
+    <item msgid="6266277260961066535">"ndihmo strukturën"</item>
+    <item msgid="7715498149883482300">"ndihmo pamjen e ekranit"</item>
+    <item msgid="4046679376726313293">"lexo gjendjen e telefonit"</item>
+    <item msgid="6329507266039719587">"shto postë zanore"</item>
+    <item msgid="7692440726415391408">"përdor kodin sip"</item>
+    <item msgid="8572453398128326267">"përpuno thirrjen dalëse"</item>
+    <item msgid="7775674394089376306">"gjurmë gishti"</item>
+    <item msgid="3182815133441738779">"sensorët e trupit"</item>
+    <item msgid="2793100005496829513">"lexo transmetimet celulare"</item>
+    <item msgid="2633626056029384366">"vendndodhja e simuluar"</item>
+    <item msgid="8356842191824684631">"lexo hapësirën ruajtëse"</item>
+    <item msgid="5671906070163291500">"shkruaj hapësirën ruajtëse"</item>
+    <item msgid="2791955098549340418">"ndiz ekranin"</item>
+    <item msgid="5599435119609178367">"merr llogaritë"</item>
+    <item msgid="1165623660533024666">"ekzekuto në sfond"</item>
+    <item msgid="6423861043647911030">"volumi i qasshmërisë"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"E shkurtër"</item>
+    <item msgid="4816511817309094890">"Mesatare"</item>
+    <item msgid="8305084671259331134">"E gjatë"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"E parazgjedhur"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif i kondensuar"</item>
+    <item msgid="6529379119163117545">"Sans-serif me hapësirë fikse"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif me hapësirë fikse"</item>
+    <item msgid="4448481989108928248">"Rastësor"</item>
+    <item msgid="4627069151979553527">"I pjerrët"</item>
+    <item msgid="6896773537705206194">"Shkronja të mëdha të minimizuara"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+    <!-- no translation found for captioning_edge_type_selector_titles:4 (8019330250538856521) -->
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"VPN PPTP"</item>
+    <item msgid="1349760781118368659">"Rrjeti VPN L2TP/IPSec me çelësat e ndarë paraprakisht"</item>
+    <item msgid="6128519070545038358">"VPN L2TP/IPSec me certifikata"</item>
+    <item msgid="312397853907741968">"VPN IPSec me çelësa të ndarë paraprakisht dhe verifikimin Xauth"</item>
+    <item msgid="3319427315593649917">"Rrjeti VPN IPSec me certifikata dhe me verifikimin Xauth"</item>
+    <item msgid="8258927774145391041">"Rrjeti VPN IPSec me certifikata dhe me vërtetim hibrid"</item>
+  </string-array>
+    <!-- no translation found for vpn_proxy_settings:0 (2958623927055120839) -->
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Pyet"</item>
+    <item msgid="7718817231348607934">"Mos lejo asnjëherë"</item>
+    <item msgid="8184570120217958741">"Lejo gjithmonë"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Pa ndalim"</item>
+    <item msgid="167418068739176448">"Aktiviteti kryesor"</item>
+    <item msgid="4760813290195199773">"E rëndësishme (në plan të parë)"</item>
+    <item msgid="2328684826817647595">"E rëndësishme (sfondi)"</item>
+    <item msgid="7746406490652867365">"Rezervimi"</item>
+    <item msgid="5597404364389196754">"Peshë e rëndë"</item>
+    <item msgid="1290888779300174556">"Shërbimi (në ekzekutim)"</item>
+    <item msgid="7241098542073939046">"Shërbimi (në rinisje)"</item>
+    <item msgid="6610439017684111046">"Marrësi"</item>
+    <item msgid="7367606086319921117">"Ekrani bazë"</item>
+    <item msgid="3344660712396741826">"Aktiviteti i fundit"</item>
+    <item msgid="5006559348883303865">"I ruajtur në memorie specifike (aktivitet)"</item>
+    <item msgid="8633480732468137525">"I ruajtur në memorie specifike (aktiviteti i klientit)"</item>
+    <item msgid="6248998242443333892">"I ruajtur në memorie specifike (bosh)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Gurkali"</item>
+    <item msgid="3228505970082457852">"E kaltër"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Vjollcë"</item>
+    <item msgid="5932337981182999919">"Rozë"</item>
+    <item msgid="5642914536624000094">"E kuqe"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Mbi 30 ditë të vjetra"</item>
+    <item msgid="8699273238891265610">"Mbi 60 ditë të vjetra"</item>
+    <item msgid="8346279419423837266">"Mbi 90 ditë të vjetra"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Zbulo automatikisht"</item>
+    <item msgid="773943026484148895">"Trajto si me matje"</item>
+    <item msgid="1008268820118852416">"Trajto si pa matje"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Përdor adresë MAC të rastësishme (parazgjedhje)"</item>
+    <item msgid="214234417308375326">"Përdor adresën MAC të pajisjes"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Jo"</item>
+    <item msgid="1930581185557754880">"Po"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"E errët"</item>
+    <item msgid="5079453644557603349">"E ndriçuar"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Joaktiv"</item>
+    <item msgid="4072198137051566919">"Korrigjo"</item>
+    <item msgid="2473005316958868509">"Me shumë fjalë"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Vetëm rrjeti vendor"</item>
+    <item msgid="1161026694891024702">"Automatike"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA i preferuar"</item>
+    <item msgid="7581481130337402578">"Vetëm GSM"</item>
+    <item msgid="8579197487913425819">"Vetëm WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA automatik"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo automatik"</item>
+    <item msgid="4219607161971472471">"CDMA pa EvDo"</item>
+    <item msgid="7278975240951052041">"Vetëm EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globale"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"Vetëm TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globale"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sr-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-sr-nokeys/strings.xml
new file mode 100644
index 0000000..5d0cdd7
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sr-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Управљање апликацијама"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sr/arrays.xml b/tests/CarDeveloperOptions/res/values-sr/arrays.xml
new file mode 100644
index 0000000..7dad5dc
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sr/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америка"</item>
+    <item msgid="4791956477275129121">"Европа"</item>
+    <item msgid="3812126832016254559">"Африка"</item>
+    <item msgid="2765816300353408280">"Азија"</item>
+    <item msgid="6683489385344409742">"Аустралија"</item>
+    <item msgid="5194868215515664953">"Пацифик"</item>
+    <item msgid="7044520255415007865">"Све"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 секунди"</item>
+    <item msgid="772029947136115322">"30 секунди"</item>
+    <item msgid="8743663928349474087">"1 минут"</item>
+    <item msgid="1506508631223164814">"2 минута"</item>
+    <item msgid="8664703938127907662">"5 минута"</item>
+    <item msgid="5827960506924849753">"10 минута"</item>
+    <item msgid="6677424950124253938">"30 минута"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Мала"</item>
+    <item msgid="591935967183159581">"Подразумевано"</item>
+    <item msgid="1714184661981538355">"Велика"</item>
+    <item msgid="6195563047686707484">"Највећа"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Скенирање..."</item>
+    <item msgid="8058143476674427024">"Повезивање са мрежом <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Потврђивање аутентичности на мрежи <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Добијање IP адресе од мреже <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Повезано са мрежом <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Обустављено"</item>
+    <item msgid="4133290864821295785">"Прекидање везе са мрежом <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Веза је прекинута"</item>
+    <item msgid="2847316776634969068">"Неуспешно"</item>
+    <item msgid="4390990424746035383">"Блокирано"</item>
+    <item msgid="3618248791367063949">"Привремено избегавање лоше везе"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Притисните дугме"</item>
+    <item msgid="7401896200768713930">"PIN са равноправног уређаја"</item>
+    <item msgid="4526848028011846710">"PIN са овог уређаја"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Повезано"</item>
+    <item msgid="983792611851499732">"Позван"</item>
+    <item msgid="5438273405428201793">"Неуспешно"</item>
+    <item msgid="4646663015449312554">"Доступна"</item>
+    <item msgid="3230556734162006146">"Изван опсега"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 минута"</item>
+    <item msgid="2759776603549270587">"5 минута"</item>
+    <item msgid="167772676068860015">"1 сат"</item>
+    <item msgid="5985477119043628504">"Без чекања"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Последњих 30 дана"</item>
+    <item msgid="3211287705232736964">"Подеси циклус потрошње..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Време коришћења"</item>
+    <item msgid="2784401352592276015">"Последњи пут коришћено"</item>
+    <item msgid="249854287216326349">"Назив апликације"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Ниједна"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Ниједна"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Статички"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Ниједна"</item>
+    <item msgid="1464741437353223198">"Упутство"</item>
+    <item msgid="5793600062487886090">"Аутом. конфиг. проксија"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Ниједна"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP или CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Складиште унутрашњег уређаја"</item>
+    <item msgid="3186681694079967527">"Уклоњива SD картица"</item>
+    <item msgid="6902033473986647035">"Нека систем одлучи"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Локација"</item>
+    <item msgid="6842381562497597649">"Лични"</item>
+    <item msgid="3966700236695683444">"Размена порука"</item>
+    <item msgid="8563996233342430477">"Медији"</item>
+    <item msgid="5323851085993963783">"Уређај"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"оквирна локација"</item>
+    <item msgid="1830619568689922920">"прецизна локација"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"вибрација"</item>
+    <item msgid="8632513128515114092">"читање контаката"</item>
+    <item msgid="3741042113569620272">"мењање контаката"</item>
+    <item msgid="4204420969709009931">"читање евиденције позива"</item>
+    <item msgid="2260380357119423209">"мењање евиденције позива"</item>
+    <item msgid="6550710385014530934">"читање календара"</item>
+    <item msgid="3575906174264853951">"мењање календара"</item>
+    <item msgid="4319843242568057174">"Wi-Fi скенирање"</item>
+    <item msgid="2981791890467303819">"обавештење"</item>
+    <item msgid="6617825156152476692">"скенирање телефона"</item>
+    <item msgid="8865260890611559753">"позивање телефона"</item>
+    <item msgid="3254999273961542982">"читање SMS порука"</item>
+    <item msgid="7711446453028825171">"писање SMS порука"</item>
+    <item msgid="6123238544099198034">"пријем SMS порука"</item>
+    <item msgid="838342167431596036">"пријем хитних SMS порука"</item>
+    <item msgid="8554432731560956686">"пријем MMS порука"</item>
+    <item msgid="7464863464299515059">"пријем push порука преко WAP-а"</item>
+    <item msgid="310463075729606765">"слање SMS порука"</item>
+    <item msgid="7338021933527689514">"читање ICC SMS порука"</item>
+    <item msgid="6130369335466613036">"писање ICC SMS порука"</item>
+    <item msgid="6536865581421670942">"мењање подешавања"</item>
+    <item msgid="4547203129183558973">"повлачење на врх"</item>
+    <item msgid="9080347512916542840">"приступ обавештењима"</item>
+    <item msgid="5332718516635907742">"камера"</item>
+    <item msgid="6098422447246167852">"снимање аудио записа"</item>
+    <item msgid="9182794235292595296">"пуштање аудио записа"</item>
+    <item msgid="8760743229597702019">"читање меморије"</item>
+    <item msgid="2266923698240538544">"мењање меморије"</item>
+    <item msgid="1801619438618539275">"дугмад за медије"</item>
+    <item msgid="31588119965784465">"аудио фокус"</item>
+    <item msgid="7565226799008076833">"главна јачина звука"</item>
+    <item msgid="5420704980305018295">"јачина звука гласа"</item>
+    <item msgid="5797363115508970204">"јачина звука звона"</item>
+    <item msgid="8233154098550715999">"јачина звука медија"</item>
+    <item msgid="5196715605078153950">"јачина звука аларма"</item>
+    <item msgid="394030698764284577">"јачина звука обавештења"</item>
+    <item msgid="8952898972491680178">"јачина звука Bluetooth-а"</item>
+    <item msgid="8506227454543690851">"задржавање ван стања спавања"</item>
+    <item msgid="1108160036049727420">"праћење локације"</item>
+    <item msgid="1496205959751719491">"надгледање локације са високим напоном"</item>
+    <item msgid="3776296279910987380">"преузми статистику о коришћењу"</item>
+    <item msgid="8827100324471975602">"искључи/укључи звук микрофона"</item>
+    <item msgid="6880736730520126864">"приказивање искачућих порука"</item>
+    <item msgid="4933375960222609935">"медији за пројекат"</item>
+    <item msgid="8357907018938895462">"активирање VPN-а"</item>
+    <item msgid="8143812849911310973">"упис на позадину"</item>
+    <item msgid="6266277260961066535">"структура помоћи"</item>
+    <item msgid="7715498149883482300">"снимак екрана помоћи"</item>
+    <item msgid="4046679376726313293">"читање стања телефона"</item>
+    <item msgid="6329507266039719587">"додавање говорне поште"</item>
+    <item msgid="7692440726415391408">"коришћење SIP-а"</item>
+    <item msgid="8572453398128326267">"обрада одлазног позива"</item>
+    <item msgid="7775674394089376306">"дигитални отисак"</item>
+    <item msgid="3182815133441738779">"сензори за тело"</item>
+    <item msgid="2793100005496829513">"читање порука за мобилне уређаје на локалитету"</item>
+    <item msgid="2633626056029384366">"лажна локација"</item>
+    <item msgid="8356842191824684631">"читање меморијског простора"</item>
+    <item msgid="5671906070163291500">"упис података у меморијски простор"</item>
+    <item msgid="2791955098549340418">"укључивање екрана"</item>
+    <item msgid="5599435119609178367">"приступ налозима"</item>
+    <item msgid="1165623660533024666">"рад у позадини"</item>
+    <item msgid="6423861043647911030">"јачина звука за приступачност"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Кратко"</item>
+    <item msgid="4816511817309094890">"Средњи"</item>
+    <item msgid="8305084671259331134">"Дугачко"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Подразумевано"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Скупљени sans-serif"</item>
+    <item msgid="6529379119163117545">"Sans-serif фиксне ширине"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif фиксне ширине"</item>
+    <item msgid="4448481989108928248">"Опуштено"</item>
+    <item msgid="4627069151979553527">"Курзив"</item>
+    <item msgid="6896773537705206194">"Мала почетна слова"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Подразумевано"</item>
+    <item msgid="6488643537808152001">"Ниједна"</item>
+    <item msgid="552332815156010137">"Контура"</item>
+    <item msgid="7187891159463789272">"Падајућа сенка"</item>
+    <item msgid="8019330250538856521">"Издигнуто"</item>
+    <item msgid="8987385315647049787">"Удубљена"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Подразумевано за апликацију"</item>
+    <item msgid="8611890312638868524">"Бело на црно"</item>
+    <item msgid="5891360837786277638">"Црно на бело"</item>
+    <item msgid="2798457065945456853">"Жуто на црно"</item>
+    <item msgid="5799049811524553967">"Жуто на плаво"</item>
+    <item msgid="3673930830658169860">"Прилагођено"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN са унапред дељеним кључевима"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN са сертификатима"</item>
+    <item msgid="312397853907741968">"IPSec VPN са унапред дељеним кључевима и Xauth потврдом идентитета"</item>
+    <item msgid="3319427315593649917">"IPSec VPN са сертификатима и Xauth потврдом идентитета"</item>
+    <item msgid="8258927774145391041">"IPSec VPN са сертификатима и хибридном потврдом идентитета"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Нема"</item>
+    <item msgid="1157046369795346308">"Упутство"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Веза је прекинута"</item>
+    <item msgid="8754480102834556765">"Покретање..."</item>
+    <item msgid="3351334355574270250">"Повезивање…"</item>
+    <item msgid="8303882153995748352">"Повезано"</item>
+    <item msgid="9135049670787351881">"Време чекања"</item>
+    <item msgid="2124868417182583926">"Неуспешно"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Питај"</item>
+    <item msgid="7718817231348607934">"Никада не дозволи"</item>
+    <item msgid="8184570120217958741">"Увек дозволи"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Непрекидна"</item>
+    <item msgid="167418068739176448">"Највећа активност"</item>
+    <item msgid="4760813290195199773">"Важна (први план)"</item>
+    <item msgid="2328684826817647595">"Важна (други план)"</item>
+    <item msgid="7746406490652867365">"Резервне копије"</item>
+    <item msgid="5597404364389196754">"Тешка"</item>
+    <item msgid="1290888779300174556">"Услуга (активна)"</item>
+    <item msgid="7241098542073939046">"Услуга (поново се покреће)"</item>
+    <item msgid="6610439017684111046">"Пријемник"</item>
+    <item msgid="7367606086319921117">"Почетна"</item>
+    <item msgid="3344660712396741826">"Последња активност"</item>
+    <item msgid="5006559348883303865">"Кеширана (активност)"</item>
+    <item msgid="8633480732468137525">"Кеширана (клијент активности)"</item>
+    <item msgid="6248998242443333892">"Кеширана (празно)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Плавозелена"</item>
+    <item msgid="3228505970082457852">"Плава"</item>
+    <item msgid="6590260735734795647">"Тамноплава"</item>
+    <item msgid="3521763377357218577">"Љубичаста"</item>
+    <item msgid="5932337981182999919">"Розе"</item>
+    <item msgid="5642914536624000094">"Црвена"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Старије од 30 дана"</item>
+    <item msgid="8699273238891265610">"Старије од 60 дана"</item>
+    <item msgid="8346279419423837266">"Старије од 90 дана"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Аутоматски откриј"</item>
+    <item msgid="773943026484148895">"Третирај као мрежу са ограничењем"</item>
+    <item msgid="1008268820118852416">"Третирај као мрежу без ограничења"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Користи насумично изабрану MAC адресу (подразумевано)"</item>
+    <item msgid="214234417308375326">"Користи MAC адресу уређаја"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Не"</item>
+    <item msgid="1930581185557754880">"Да"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Тамна"</item>
+    <item msgid="5079453644557603349">"Светла"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Искључено"</item>
+    <item msgid="4072198137051566919">"Отклони грешке"</item>
+    <item msgid="2473005316958868509">"Детаљно"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Само кућна"</item>
+    <item msgid="1161026694891024702">"Аутоматски"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA има предност"</item>
+    <item msgid="7581481130337402578">"Само GSM"</item>
+    <item msgid="8579197487913425819">"Само WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA аутоматски"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo аутоматски"</item>
+    <item msgid="4219607161971472471">"CDMA без EvDo-а"</item>
+    <item msgid="7278975240951052041">"Само EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Глобална"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Само TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Глобална"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sr/strings.xml b/tests/CarDeveloperOptions/res/values-sr/strings.xml
index effa3b4..1fea34f 100644
--- a/tests/CarDeveloperOptions/res/values-sr/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-sr/strings.xml
@@ -2880,9 +2880,9 @@
       <item quantity="other">Провери сертификате</item>
     </plurals>
     <string name="user_settings_title" msgid="7917598650933179545">"Више корисника"</string>
-    <string name="user_settings_footer_text" product="device" msgid="4573858247439190545">"Делите уређај тако што ћете додати нове кориснике. Сваки корисник има лични простор на уређају за прилагођене почетне екране, налоге, апликације, подешавања и још много тога."</string>
-    <string name="user_settings_footer_text" product="tablet" msgid="780018221428132918">"Делите таблет тако што ћете додати нове кориснике. Сваки корисник има лични простор на таблету за прилагођене почетне екране, налоге, апликације, подешавања и још много тога."</string>
-    <string name="user_settings_footer_text" product="default" msgid="1470859614968237491">"Делите телефон тако што ћете додати нове кориснике. Сваки корисник има лични простор на телефону за прилагођене почетне екране, налоге, апликације, подешавања и још много тога."</string>
+    <string name="user_settings_footer_text" product="device" msgid="4573858247439190545">"Делите уређај тако што ћете додати нове кориснике. Сваки корисник има лични простор на уређају за прилагођене почетне екране, налоге, апликације, подешавања и друго."</string>
+    <string name="user_settings_footer_text" product="tablet" msgid="780018221428132918">"Делите таблет тако што ћете додати нове кориснике. Сваки корисник има лични простор на таблету за прилагођене почетне екране, налоге, апликације, подешавања и друго."</string>
+    <string name="user_settings_footer_text" product="default" msgid="1470859614968237491">"Делите телефон тако што ћете додати нове кориснике. Сваки корисник има лични простор на телефону за прилагођене почетне екране, налоге, апликације, подешавања и друго."</string>
     <string name="user_list_title" msgid="6670258645246192324">"Корисници и профили"</string>
     <string name="user_add_user_or_profile_menu" msgid="4220679989900149336">"Додај корисника или профил"</string>
     <string name="user_add_user_menu" msgid="9006572936456324794">"Додај корисника"</string>
diff --git a/tests/CarDeveloperOptions/res/values-sv-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-sv-nokeys/strings.xml
new file mode 100644
index 0000000..75f34a2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sv-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Hantera appar"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sv/arrays.xml b/tests/CarDeveloperOptions/res/values-sv/arrays.xml
new file mode 100644
index 0000000..18d667c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sv/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Europa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asien"</item>
+    <item msgid="6683489385344409742">"Australien"</item>
+    <item msgid="5194868215515664953">"Stilla havet"</item>
+    <item msgid="7044520255415007865">"Alla"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 sekunder"</item>
+    <item msgid="772029947136115322">"30 sekunder"</item>
+    <item msgid="8743663928349474087">"1 minut"</item>
+    <item msgid="1506508631223164814">"2 minuter"</item>
+    <item msgid="8664703938127907662">"5 minuter"</item>
+    <item msgid="5827960506924849753">"10 minuter"</item>
+    <item msgid="6677424950124253938">"30 minuter"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Liten"</item>
+    <item msgid="591935967183159581">"Standard"</item>
+    <item msgid="1714184661981538355">"Stor"</item>
+    <item msgid="6195563047686707484">"Störst"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Skannar …"</item>
+    <item msgid="8058143476674427024">"Ansluter till <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Autentiserar med <xliff:g id="NETWORK_NAME">%1$s</xliff:g> …"</item>
+    <item msgid="5145158315060185414">"IP-adress hämtas från <xliff:g id="NETWORK_NAME">%1$s</xliff:g> ..."</item>
+    <item msgid="3283243151651124831">"Ansluten till: <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Pausad"</item>
+    <item msgid="4133290864821295785">"Kopplar ifrån <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Frånkopplad"</item>
+    <item msgid="2847316776634969068">"Misslyckades"</item>
+    <item msgid="4390990424746035383">"Blockerad"</item>
+    <item msgid="3618248791367063949">"Undviker just nu dålig anslutning"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Tryckknapp"</item>
+    <item msgid="7401896200768713930">"PIN-kod från den andra enheten"</item>
+    <item msgid="4526848028011846710">"PIN-kod från enheten"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Ansluten"</item>
+    <item msgid="983792611851499732">"Inbjuden"</item>
+    <item msgid="5438273405428201793">"Misslyckades"</item>
+    <item msgid="4646663015449312554">"Tillgängligt"</item>
+    <item msgid="3230556734162006146">"Utanför intervallet"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuter"</item>
+    <item msgid="2759776603549270587">"5 minuter"</item>
+    <item msgid="167772676068860015">"1 timme"</item>
+    <item msgid="5985477119043628504">"Ange aldrig tidsgräns"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Senaste 30 dagarna"</item>
+    <item msgid="3211287705232736964">"Ange användningscykel ..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Användningstid"</item>
+    <item msgid="2784401352592276015">"Användes senast"</item>
+    <item msgid="249854287216326349">"Appnamn"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Inget"</item>
+    <item msgid="8655686691660180616">"MSCHAPv2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Inget"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPv2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statisk"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Inget"</item>
+    <item msgid="1464741437353223198">"Handbok"</item>
+    <item msgid="5793600062487886090">"Autokonfig. av proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Inget"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP eller CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Lagring på intern enhet"</item>
+    <item msgid="3186681694079967527">"Flyttbart SD-kort"</item>
+    <item msgid="6902033473986647035">"Låt systemet bestämma"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Plats"</item>
+    <item msgid="6842381562497597649">"Personligt"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Enhet"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ungefärlig plats"</item>
+    <item msgid="1830619568689922920">"exakt plats"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"vibration"</item>
+    <item msgid="8632513128515114092">"läsa kontakter"</item>
+    <item msgid="3741042113569620272">"ändra kontakter"</item>
+    <item msgid="4204420969709009931">"läsa samtalslogg"</item>
+    <item msgid="2260380357119423209">"ändra samtalslogg"</item>
+    <item msgid="6550710385014530934">"läsa kalender"</item>
+    <item msgid="3575906174264853951">"ändra kalender"</item>
+    <item msgid="4319843242568057174">"Wi-Fi-skanning"</item>
+    <item msgid="2981791890467303819">"meddelande"</item>
+    <item msgid="6617825156152476692">"mobilskanning"</item>
+    <item msgid="8865260890611559753">"ringa samtal"</item>
+    <item msgid="3254999273961542982">"läsa SMS"</item>
+    <item msgid="7711446453028825171">"skriva SMS"</item>
+    <item msgid="6123238544099198034">"ta emot SMS"</item>
+    <item msgid="838342167431596036">"ta emot nöd-SMS"</item>
+    <item msgid="8554432731560956686">"ta emot MMS"</item>
+    <item msgid="7464863464299515059">"ta emot WAP-push"</item>
+    <item msgid="310463075729606765">"skicka SMS"</item>
+    <item msgid="7338021933527689514">"läsa ICC-SMS"</item>
+    <item msgid="6130369335466613036">"skriva ICC-SMS"</item>
+    <item msgid="6536865581421670942">"ändra inställningar"</item>
+    <item msgid="4547203129183558973">"Rita högst upp"</item>
+    <item msgid="9080347512916542840">"få åtkomst till meddelanden"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"spela in ljud"</item>
+    <item msgid="9182794235292595296">"spela upp ljud"</item>
+    <item msgid="8760743229597702019">"läs Urklipp"</item>
+    <item msgid="2266923698240538544">"ändra Urklipp"</item>
+    <item msgid="1801619438618539275">"medieknappar"</item>
+    <item msgid="31588119965784465">"ljudinställning"</item>
+    <item msgid="7565226799008076833">"mastervolym"</item>
+    <item msgid="5420704980305018295">"röstvolym"</item>
+    <item msgid="5797363115508970204">"ringvolym"</item>
+    <item msgid="8233154098550715999">"medievolym"</item>
+    <item msgid="5196715605078153950">"alarmvolym"</item>
+    <item msgid="394030698764284577">"meddelandevolym"</item>
+    <item msgid="8952898972491680178">"bluetooth-volym"</item>
+    <item msgid="8506227454543690851">"behåll aktiv"</item>
+    <item msgid="1108160036049727420">"övervaka plats"</item>
+    <item msgid="1496205959751719491">"övervaka batterikrävande plats"</item>
+    <item msgid="3776296279910987380">"få användningsstatistik"</item>
+    <item msgid="8827100324471975602">"stäng av/slå på mikrofonen"</item>
+    <item msgid="6880736730520126864">"visa popup"</item>
+    <item msgid="4933375960222609935">"projicera media"</item>
+    <item msgid="8357907018938895462">"aktivera VPN"</item>
+    <item msgid="8143812849911310973">"skriva bakgrund"</item>
+    <item msgid="6266277260961066535">"assistentstruktur"</item>
+    <item msgid="7715498149883482300">"assistentskärmdump"</item>
+    <item msgid="4046679376726313293">"läsa telefonstatus"</item>
+    <item msgid="6329507266039719587">"lägga till röstbrevlåda"</item>
+    <item msgid="7692440726415391408">"använda SIP"</item>
+    <item msgid="8572453398128326267">"behandla utgående samtal"</item>
+    <item msgid="7775674394089376306">"fingeravtryck"</item>
+    <item msgid="3182815133441738779">"kroppssensorer"</item>
+    <item msgid="2793100005496829513">"läsa cellsändningar"</item>
+    <item msgid="2633626056029384366">"skenplatser"</item>
+    <item msgid="8356842191824684631">"läsa lagringsutrymme"</item>
+    <item msgid="5671906070163291500">"skriva lagringsutrymme"</item>
+    <item msgid="2791955098549340418">"aktivera skärmen"</item>
+    <item msgid="5599435119609178367">"hämta konton"</item>
+    <item msgid="1165623660533024666">"köra i bakgrunden"</item>
+    <item msgid="6423861043647911030">"volym på tillgänglighetsfunktionerna"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Plats"</item>
+    <item msgid="6656077694190491067">"Plats"</item>
+    <item msgid="8790228218278477369">"Plats"</item>
+    <item msgid="7836406246005211990">"Vibration"</item>
+    <item msgid="3951439024549922598">"Läsa kontakter"</item>
+    <item msgid="8802152411647068">"Ändra kontakter"</item>
+    <item msgid="229544934599698735">"Läsa samtalslogg"</item>
+    <item msgid="7396102294405899613">"Ändra samtalslogg"</item>
+    <item msgid="3597797992398484655">"Läsa kalender"</item>
+    <item msgid="2705975774250907343">"Ändra kalender"</item>
+    <item msgid="4668747371441932697">"Plats"</item>
+    <item msgid="1487578921720243646">"Lägga upp meddelande"</item>
+    <item msgid="4636080349724146638">"Plats"</item>
+    <item msgid="673510900286463926">"Ringa samtal"</item>
+    <item msgid="542083422784609790">"Läs sms/mms"</item>
+    <item msgid="1033780373029588436">"Skriv sms/mms"</item>
+    <item msgid="5647111115517787488">"Ta emot SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Ta emot SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Ta emot SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Ta emot SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Skicka SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Läs sms/mms"</item>
+    <item msgid="6555678522277865572">"Skriv sms/mms"</item>
+    <item msgid="6981734935578130884">"Ändra inställningar"</item>
+    <item msgid="8705854389991425629">"Rita högst upp"</item>
+    <item msgid="5861356020344153651">"Få åtkomst till meddelanden"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Spela in ljud"</item>
+    <item msgid="4516840825756409490">"Spela upp ljud"</item>
+    <item msgid="6811712502798183957">"Läs Urklipp"</item>
+    <item msgid="2780369012602289114">"Ändra Urklipp"</item>
+    <item msgid="2331359440170850868">"Medieknappar"</item>
+    <item msgid="6133599737122751231">"Ljudinställning"</item>
+    <item msgid="6844485713404805301">"Huvudvolym"</item>
+    <item msgid="1600379420669104929">"Röstvolym"</item>
+    <item msgid="6296768210470214866">"Ringvolym"</item>
+    <item msgid="510690696071629241">"Medievolym"</item>
+    <item msgid="406861638631430109">"Alarmvolym"</item>
+    <item msgid="4715864795872233884">"Aviseringsvolym"</item>
+    <item msgid="2311478519251301183">"Bluetooth-volym"</item>
+    <item msgid="5133991377896747027">"Behåll aktiv"</item>
+    <item msgid="2464189519136248621">"Plats"</item>
+    <item msgid="2062677934050803037">"Plats"</item>
+    <item msgid="1735171933192715957">"Få användningsstatistik"</item>
+    <item msgid="1014093788778383554">"Stäng av/slå på mikrofonen"</item>
+    <item msgid="4199297950608622850">"Visa popup"</item>
+    <item msgid="2527962435313398821">"Projicera media"</item>
+    <item msgid="5117506254221861929">"Aktivera VPN"</item>
+    <item msgid="8291198322681891160">"Skriv bakgrund"</item>
+    <item msgid="7106921284621230961">"Assistentstruktur"</item>
+    <item msgid="4496533640894624799">"Assistentskärmdump"</item>
+    <item msgid="2598847264853993611">"Läsa telefonstatus"</item>
+    <item msgid="9215610846802973353">"Lägga till röstbrevlåda"</item>
+    <item msgid="9186411956086478261">"Använda SIP"</item>
+    <item msgid="6884763100104539558">"Behandla utgående samtal"</item>
+    <item msgid="125513972170580692">"Fingeravtryck"</item>
+    <item msgid="2556071024281275619">"Kroppssensorer"</item>
+    <item msgid="617168514928339387">"Läsa cellsändningar"</item>
+    <item msgid="7134693570516523585">"Skenplatser"</item>
+    <item msgid="7224489175375229399">"Läsa lagringsutrymme"</item>
+    <item msgid="8472735063903258202">"Skriva lagringsutrymme"</item>
+    <item msgid="4069276819909595110">"Aktivera skärmen"</item>
+    <item msgid="1228338896751121025">"Hämta konton"</item>
+    <item msgid="3181581793459233672">"Kör i bakgrunden"</item>
+    <item msgid="2340936043025374076">"Volym på tillgänglighetsfunktionerna"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kort"</item>
+    <item msgid="4816511817309094890">"Medelhög"</item>
+    <item msgid="8305084671259331134">"Lång"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Standard"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif Condensed"</item>
+    <item msgid="6529379119163117545">"Jämnbreda typsnitt – sanserif"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Jämnbreda typsnitt – seriff"</item>
+    <item msgid="4448481989108928248">"Informell"</item>
+    <item msgid="4627069151979553527">"Kursiv"</item>
+    <item msgid="6896773537705206194">"Kapitäler"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Standard"</item>
+    <item msgid="6488643537808152001">"Inget"</item>
+    <item msgid="552332815156010137">"Disposition"</item>
+    <item msgid="7187891159463789272">"Bakgrundsskugga"</item>
+    <item msgid="8019330250538856521">"Upphöjd"</item>
+    <item msgid="8987385315647049787">"Nedsänkt"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25 %"</item>
+    <item msgid="4665048002584838262">"50 %"</item>
+    <item msgid="1874668269931014581">"75 %"</item>
+    <item msgid="6462911487571123954">"100 %"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Använd appstandarder"</item>
+    <item msgid="8611890312638868524">"Vitt på svart"</item>
+    <item msgid="5891360837786277638">"Svart på vitt"</item>
+    <item msgid="2798457065945456853">"Gult på svart"</item>
+    <item msgid="5799049811524553967">"Gult på blått"</item>
+    <item msgid="3673930830658169860">"Anpassa"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP-VPN"</item>
+    <item msgid="1349760781118368659">"L2TP-/IPSec-VPN med nycklar som delats i förväg"</item>
+    <item msgid="6128519070545038358">"L2TP-/IPSec-VPN med certifikat"</item>
+    <item msgid="312397853907741968">"IPSec-VPN med nycklar som delats i förväg och Xauth-autentisering"</item>
+    <item msgid="3319427315593649917">"IPSec-VPN med certifikat och Xauth-autentisering"</item>
+    <item msgid="8258927774145391041">"IPSec-VPN med certifikat och dubbel autentisering"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Ingen"</item>
+    <item msgid="1157046369795346308">"Handbok"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Frånkopplad"</item>
+    <item msgid="8754480102834556765">"Initierar..."</item>
+    <item msgid="3351334355574270250">"Ansluter ..."</item>
+    <item msgid="8303882153995748352">"Ansluten"</item>
+    <item msgid="9135049670787351881">"Tidsgräns"</item>
+    <item msgid="2124868417182583926">"Misslyckades"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Fråga"</item>
+    <item msgid="7718817231348607934">"Tillåt aldrig"</item>
+    <item msgid="8184570120217958741">"Tillåt alltid"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Ihållande"</item>
+    <item msgid="167418068739176448">"Toppaktivitet"</item>
+    <item msgid="4760813290195199773">"Viktig (förgrund)"</item>
+    <item msgid="2328684826817647595">"Viktig (bakgrund)"</item>
+    <item msgid="7746406490652867365">"Säkerhetskopiering"</item>
+    <item msgid="5597404364389196754">"Tungvikt"</item>
+    <item msgid="1290888779300174556">"Service (pågående)"</item>
+    <item msgid="7241098542073939046">"Service (startar om)"</item>
+    <item msgid="6610439017684111046">"Mottagare"</item>
+    <item msgid="7367606086319921117">"Hem"</item>
+    <item msgid="3344660712396741826">"Senaste aktivitet"</item>
+    <item msgid="5006559348883303865">"Cachelagrad (aktivitet)"</item>
+    <item msgid="8633480732468137525">"Cachelagrad (aktivitetsklient)"</item>
+    <item msgid="6248998242443333892">"Cachelagrad (tom)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Blågrön"</item>
+    <item msgid="3228505970082457852">"Blå"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Lila"</item>
+    <item msgid="5932337981182999919">"Rosa"</item>
+    <item msgid="5642914536624000094">"Röd"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Äldre än 30 dagar"</item>
+    <item msgid="8699273238891265610">"Äldre än 60 dagar"</item>
+    <item msgid="8346279419423837266">"Äldre än 90 dagar"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Identifiera automatiskt"</item>
+    <item msgid="773943026484148895">"Behandla som nätverk med datapriser"</item>
+    <item msgid="1008268820118852416">"Behandla som nätverk utan datapriser"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Använd slumpgenererad MAC-adress (standard)"</item>
+    <item msgid="214234417308375326">"Använd enhetens MAC-adress"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Nej"</item>
+    <item msgid="1930581185557754880">"Ja"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Mörkt"</item>
+    <item msgid="5079453644557603349">"Ljust"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Inaktiverat"</item>
+    <item msgid="4072198137051566919">"Felsökning"</item>
+    <item msgid="2473005316958868509">"Utförlig"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Endast hemma"</item>
+    <item msgid="1161026694891024702">"Automatisk"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Föredrar GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Endast GSM"</item>
+    <item msgid="8579197487913425819">"Endast WCDMA"</item>
+    <item msgid="8465243227505412498">"Automatiskt GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Automatiskt CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA utan EvDo"</item>
+    <item msgid="7278975240951052041">"Endast EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Globalt"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Endast TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Globalt"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sv/strings.xml b/tests/CarDeveloperOptions/res/values-sv/strings.xml
index b3aac76..6e14e94 100644
--- a/tests/CarDeveloperOptions/res/values-sv/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-sv/strings.xml
@@ -2902,7 +2902,7 @@
     <string name="user_enable_calling_confirm_message" msgid="2490126715153125970">"Samtalshistoriken delas med den här användaren."</string>
     <string name="user_enable_calling_and_sms_confirm_title" msgid="4153856398523366976">"Vill du aktivera telefonsamtal och sms?"</string>
     <string name="user_enable_calling_and_sms_confirm_message" msgid="3278802798876095734">"Samtals- och sms-historiken delas med den här användaren."</string>
-    <string name="emergency_info_title" msgid="1522609271881425375">"Krisinformation"</string>
+    <string name="emergency_info_title" msgid="1522609271881425375">"Nödinformation"</string>
     <string name="emergency_info_summary" msgid="7280464759837387342">"Information och kontakter för <xliff:g id="USER_NAME">%1$s</xliff:g>"</string>
     <string name="application_restrictions" msgid="6871981013736536763">"Tillåt appar och innehåll"</string>
     <string name="apps_with_restrictions_header" msgid="8656739605673756176">"Appar med begränsningar"</string>
@@ -3754,7 +3754,7 @@
     <string name="assist_access_context_title" msgid="2274614501747710439">"Använda text från skärmen"</string>
     <string name="assist_access_context_summary" msgid="5867997494395842785">"Tillåt att assistentappen får åtkomst till innehåll på skärmen, till exempel text"</string>
     <string name="assist_access_screenshot_title" msgid="1991014038776117688">"Använda skärmdump"</string>
-    <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Tillåt att assistenappen får åtkomst till en bild på skärmen"</string>
+    <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"Tillåt att assistentappen får åtkomst till en bild på skärmen"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"Lys upp skärmen"</string>
     <string name="assist_flash_summary" msgid="6697095786317559129">"Lys upp skärmens kanter när assistentappen har tillgång till text på skärmen eller på en skärmdump"</string>
     <string name="assist_footer" msgid="7030121180457472165">"Med assistentappar kan du få hjälp som baseras på den information som visas på den aktuella skärmen. Vissa appar har stöd för både översikts- och röstinmatningstjänster som hjälper dig."</string>
diff --git a/tests/CarDeveloperOptions/res/values-sw-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-sw-nokeys/strings.xml
new file mode 100644
index 0000000..0b314c9
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sw-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Simamia programu za kompyuta"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sw/arrays.xml b/tests/CarDeveloperOptions/res/values-sw/arrays.xml
new file mode 100644
index 0000000..c5b885e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-sw/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Marekani"</item>
+    <item msgid="4791956477275129121">"Ulaya"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pasifiki"</item>
+    <item msgid="7044520255415007865">"Zote"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"Sekunde 15"</item>
+    <item msgid="772029947136115322">"Sekunde 30"</item>
+    <item msgid="8743663928349474087">"Dakika 1"</item>
+    <item msgid="1506508631223164814">"Dakika 2"</item>
+    <item msgid="8664703938127907662">"Dakika 5"</item>
+    <item msgid="5827960506924849753">"Dakika 10"</item>
+    <item msgid="6677424950124253938">"Dakika 30"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Ndogo"</item>
+    <item msgid="591935967183159581">"Chaguomsingi"</item>
+    <item msgid="1714184661981538355">"Kubwa"</item>
+    <item msgid="6195563047686707484">"Kubwa zaidi"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Inachuja..."</item>
+    <item msgid="8058143476674427024">"Inaunganisha kwa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Uhalalishaji kwa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Kupata anwani ya IP kutoka <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">" Umeunganishwa kwa<xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Imetanguliwa"</item>
+    <item msgid="4133290864821295785">"inakatisha muunganisho kutoka <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Haijaunganishwa"</item>
+    <item msgid="2847316776634969068">"Haijafanikiwa"</item>
+    <item msgid="4390990424746035383">"Imezuiwa"</item>
+    <item msgid="3618248791367063949">"Inaepuka kwa muda muunganisho mbovu"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Kichupo cha kusukuma"</item>
+    <item msgid="7401896200768713930">"PIN kutoka kwa kifaa cha rika"</item>
+    <item msgid="4526848028011846710">"Pin kutoka kwa kifaa hiki"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Imeunganisha"</item>
+    <item msgid="983792611851499732">"Umealikwa"</item>
+    <item msgid="5438273405428201793">"Haijafanikiwa"</item>
+    <item msgid="4646663015449312554">"Inapatikana"</item>
+    <item msgid="3230556734162006146">"Nje-ya-eneo"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"Dakika 2"</item>
+    <item msgid="2759776603549270587">"Dakika 5"</item>
+    <item msgid="167772676068860015">"Saa 1"</item>
+    <item msgid="5985477119043628504">"Kamwe muda usiishe"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Siku 30 zilizopita"</item>
+    <item msgid="3211287705232736964">"Weka mzunguko wa matumizi..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Muda wa utumiaji"</item>
+    <item msgid="2784401352592276015">"Mara ya mwisho ilipotumika"</item>
+    <item msgid="249854287216326349">"Jina la Programu"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Hakuna"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Hakuna"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Takwimu"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Hakuna"</item>
+    <item msgid="1464741437353223198">"Mwongozo"</item>
+    <item msgid="5793600062487886090">"Uwekaji Seva Mbadala Kiotomatiki"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Hakuna"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP au CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Kifaa cha hifadhi ya ndani"</item>
+    <item msgid="3186681694079967527">"Kadi ya SD inayoondolewa"</item>
+    <item msgid="6902033473986647035">"Wacha mfumo uamue"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Eneo"</item>
+    <item msgid="6842381562497597649">"Ya Kibinafsi"</item>
+    <item msgid="3966700236695683444">"Kutuma ujumbe"</item>
+    <item msgid="8563996233342430477">"media"</item>
+    <item msgid="5323851085993963783">"Kifaa"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"eneo lisilo laini"</item>
+    <item msgid="1830619568689922920">"Eneo bora"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"tetema"</item>
+    <item msgid="8632513128515114092">"soma anwani"</item>
+    <item msgid="3741042113569620272">"rekebisha anwani"</item>
+    <item msgid="4204420969709009931">"soma rajisi ya simu"</item>
+    <item msgid="2260380357119423209">"rekebisha rajisi ya simu"</item>
+    <item msgid="6550710385014530934">"soma kalenda"</item>
+    <item msgid="3575906174264853951">"rekebisha kalenda"</item>
+    <item msgid="4319843242568057174">"uchanganuzi wa wi-fi"</item>
+    <item msgid="2981791890467303819">"arifa"</item>
+    <item msgid="6617825156152476692">"uchanganuzi wa seli"</item>
+    <item msgid="8865260890611559753">"piga simu"</item>
+    <item msgid="3254999273961542982">"soma SMS"</item>
+    <item msgid="7711446453028825171">"andika SMS"</item>
+    <item msgid="6123238544099198034">"pokea SMS"</item>
+    <item msgid="838342167431596036">"pokea SMS za dharura"</item>
+    <item msgid="8554432731560956686">"pokea MMS"</item>
+    <item msgid="7464863464299515059">"pokea msukumo wa WAP"</item>
+    <item msgid="310463075729606765">"tuma SMS"</item>
+    <item msgid="7338021933527689514">"soma SMS za ICC"</item>
+    <item msgid="6130369335466613036">"andika SMS za ICC"</item>
+    <item msgid="6536865581421670942">"rekebisha mipangilio"</item>
+    <item msgid="4547203129183558973">"chora juu"</item>
+    <item msgid="9080347512916542840">"fikia arifa"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"rekodi sauti"</item>
+    <item msgid="9182794235292595296">"cheza sauti"</item>
+    <item msgid="8760743229597702019">"soma ubao wa kunakili"</item>
+    <item msgid="2266923698240538544">"badilisha ubao wa kunakili"</item>
+    <item msgid="1801619438618539275">"vitufe vya vyombo vya habari"</item>
+    <item msgid="31588119965784465">"mkazo wa sauti"</item>
+    <item msgid="7565226799008076833">"sauti kuu"</item>
+    <item msgid="5420704980305018295">"kiwango cha sauti"</item>
+    <item msgid="5797363115508970204">"sauti ya mlio"</item>
+    <item msgid="8233154098550715999">"sauti ya maudhui"</item>
+    <item msgid="5196715605078153950">"sauti ya kengele"</item>
+    <item msgid="394030698764284577">"sauti ya arifa"</item>
+    <item msgid="8952898972491680178">"sauti ya bluetooth"</item>
+    <item msgid="8506227454543690851">"kaa chonjo"</item>
+    <item msgid="1108160036049727420">"fuatilia eneo"</item>
+    <item msgid="1496205959751719491">"fuatilia eneo kuu"</item>
+    <item msgid="3776296279910987380">"pata takwimu za matumizi"</item>
+    <item msgid="8827100324471975602">"zima au uwashe maikrofoni"</item>
+    <item msgid="6880736730520126864">"onyesha utangulizi"</item>
+    <item msgid="4933375960222609935">"maudhui ya mradi"</item>
+    <item msgid="8357907018938895462">"anzisha VPN"</item>
+    <item msgid="8143812849911310973">"mandhari ya kuandikwa"</item>
+    <item msgid="6266277260961066535">"muundo wa mapendekezo"</item>
+    <item msgid="7715498149883482300">"picha ya skrini ya mapendekezo"</item>
+    <item msgid="4046679376726313293">"soma hali ya simu"</item>
+    <item msgid="6329507266039719587">"ongeza ujumbe wa sauti"</item>
+    <item msgid="7692440726415391408">"tumia sip"</item>
+    <item msgid="8572453398128326267">"chakata simu uliyopiga"</item>
+    <item msgid="7775674394089376306">"alama ya kidole"</item>
+    <item msgid="3182815133441738779">"vihisi vya mwili"</item>
+    <item msgid="2793100005496829513">"soma matangazo ya simu"</item>
+    <item msgid="2633626056029384366">"eneo la jaribio"</item>
+    <item msgid="8356842191824684631">"soma hifadhi"</item>
+    <item msgid="5671906070163291500">"andika hifadhi"</item>
+    <item msgid="2791955098549340418">"washa skrini"</item>
+    <item msgid="5599435119609178367">"pata akaunti"</item>
+    <item msgid="1165623660533024666">"tekeleza chini chini"</item>
+    <item msgid="6423861043647911030">"sauti za zana za walio na matatizo ya kuona na kusikia"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Eneo"</item>
+    <item msgid="6656077694190491067">"Eneo"</item>
+    <item msgid="8790228218278477369">"Eneo"</item>
+    <item msgid="7836406246005211990">"Tetema"</item>
+    <item msgid="3951439024549922598">"Soma anwani"</item>
+    <item msgid="8802152411647068">"Rekebisha anwani"</item>
+    <item msgid="229544934599698735">"soma rajisi ya simu"</item>
+    <item msgid="7396102294405899613">"Rekebisha rajisi ya simu"</item>
+    <item msgid="3597797992398484655">"Soma kalenda"</item>
+    <item msgid="2705975774250907343">"Rekebisha kalenda"</item>
+    <item msgid="4668747371441932697">"Eneo"</item>
+    <item msgid="1487578921720243646">"Chapisha arifa"</item>
+    <item msgid="4636080349724146638">"Eneo"</item>
+    <item msgid="673510900286463926">"Piga simu"</item>
+    <item msgid="542083422784609790">"Soma SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Andika SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Pokea SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Pokea SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Pokea SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Pokea SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Tuma SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Soma SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Andika SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Rekebisha mipangilio"</item>
+    <item msgid="8705854389991425629">"Chora juu"</item>
+    <item msgid="5861356020344153651">"Fikia arifa"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Rekodi sauti"</item>
+    <item msgid="4516840825756409490">"Cheza sauti"</item>
+    <item msgid="6811712502798183957">"Soma ubao wa kunakili"</item>
+    <item msgid="2780369012602289114">"Rekebisha ubao wa kunakili"</item>
+    <item msgid="2331359440170850868">"Vitufe vya media"</item>
+    <item msgid="6133599737122751231">"Kotovu cha sauti"</item>
+    <item msgid="6844485713404805301">"Sauti kuu"</item>
+    <item msgid="1600379420669104929">"Kiwango cha sauti"</item>
+    <item msgid="6296768210470214866">"Sauti ya mlio"</item>
+    <item msgid="510690696071629241">"Sauti ya maudhui"</item>
+    <item msgid="406861638631430109">"Sauti ya kengele"</item>
+    <item msgid="4715864795872233884">"Sauti ya arifa"</item>
+    <item msgid="2311478519251301183">"Sauti ya Bluetooth"</item>
+    <item msgid="5133991377896747027">"Weka chonjo"</item>
+    <item msgid="2464189519136248621">"Mahali"</item>
+    <item msgid="2062677934050803037">"Eneo"</item>
+    <item msgid="1735171933192715957">"Pata takwimu za matumizi"</item>
+    <item msgid="1014093788778383554">"Zima ama uwashe maikrofoni"</item>
+    <item msgid="4199297950608622850">"Onyesha utangulizi"</item>
+    <item msgid="2527962435313398821">"Maudhui ya mradi"</item>
+    <item msgid="5117506254221861929">"Anzisha VPN"</item>
+    <item msgid="8291198322681891160">"Mandhari ya kuandikwa"</item>
+    <item msgid="7106921284621230961">"Muundo wa mapendekezo"</item>
+    <item msgid="4496533640894624799">"Picha ya skrini ya mapendekezo"</item>
+    <item msgid="2598847264853993611">"Soma hali ya simu"</item>
+    <item msgid="9215610846802973353">"Ongeza ujumbe wa sauti"</item>
+    <item msgid="9186411956086478261">"Tumia sip"</item>
+    <item msgid="6884763100104539558">"Chakata simu uliyopiga"</item>
+    <item msgid="125513972170580692">"Alama ya kidole"</item>
+    <item msgid="2556071024281275619">"Vihisi vya mwili"</item>
+    <item msgid="617168514928339387">"Soma matangazo ya simu"</item>
+    <item msgid="7134693570516523585">"Eneo la jaribio"</item>
+    <item msgid="7224489175375229399">"Soma hifadhi"</item>
+    <item msgid="8472735063903258202">"Andika hifadhi"</item>
+    <item msgid="4069276819909595110">"Washa skrini"</item>
+    <item msgid="1228338896751121025">"Pata akaunti"</item>
+    <item msgid="3181581793459233672">"Tekeleza chini chini"</item>
+    <item msgid="2340936043025374076">"Sauti ya zana za walio na matatizo ya kuona na kusikia"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Muda mfupi"</item>
+    <item msgid="4816511817309094890">"Wastani"</item>
+    <item msgid="8305084671259331134">"Muda mrefu"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Chaguomsingi"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif iliyofupishwa"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Ya kawaida"</item>
+    <item msgid="4627069151979553527">"Mwandiko ulioviringwa na kuunganishwa"</item>
+    <item msgid="6896773537705206194">"Herufi kubwa zenye umbo ndogo"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Chaguomsingi"</item>
+    <item msgid="6488643537808152001">"Hakuna"</item>
+    <item msgid="552332815156010137">"Mistari"</item>
+    <item msgid="7187891159463789272">"Angusha kivuli"</item>
+    <item msgid="8019330250538856521">"Iliyoinuliwa"</item>
+    <item msgid="8987385315647049787">"Imepunguzwa"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Tumia programu chaguomsingi"</item>
+    <item msgid="8611890312638868524">"Nyeupe kwenye nyeusi"</item>
+    <item msgid="5891360837786277638">"Nyeusi kwenye nyeupe"</item>
+    <item msgid="2798457065945456853">"Manjano kwenye nyeusi"</item>
+    <item msgid="5799049811524553967">"Manjano kwenye samawati"</item>
+    <item msgid="3673930830658169860">"Maalum"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN na vitufe vilivyoshirikishwa kabla"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN na vyeti"</item>
+    <item msgid="312397853907741968">"IPSec VPN  na vitue vilivyoshirikishwa kabla na uthibitishaji wa Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN  na vieti na uthibitishaji wa Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN  na vieti na uthibitishaji wa hybridi"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Hamna"</item>
+    <item msgid="1157046369795346308">"Mwongozo"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Haijaunganishwa"</item>
+    <item msgid="8754480102834556765">"Inaanza…"</item>
+    <item msgid="3351334355574270250">"Inaunganisha…"</item>
+    <item msgid="8303882153995748352">"Imeunganisha"</item>
+    <item msgid="9135049670787351881">"Muda wa umeisha"</item>
+    <item msgid="2124868417182583926">"Haijafanikiwa"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Uliza"</item>
+    <item msgid="7718817231348607934">"Usiruhusu kamwe"</item>
+    <item msgid="8184570120217958741">"Ruhusu kila wakati"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Endelevu"</item>
+    <item msgid="167418068739176448">"Shughuli maarufu"</item>
+    <item msgid="4760813290195199773">"Muhimu (inatumika sasa)"</item>
+    <item msgid="2328684826817647595">"Muhimu (chinichini)"</item>
+    <item msgid="7746406490652867365">"Hifadhi nakala"</item>
+    <item msgid="5597404364389196754">"Uzito mkubwa"</item>
+    <item msgid="1290888779300174556">"Huduma (inaendesha)"</item>
+    <item msgid="7241098542073939046">"Huduma (inaanzisha tena)"</item>
+    <item msgid="6610439017684111046">"Kipokezi"</item>
+    <item msgid="7367606086319921117">"Mwanzo"</item>
+    <item msgid="3344660712396741826">"Shughuli ya mwisho"</item>
+    <item msgid="5006559348883303865">"Imewekwa akiba (shughuli)"</item>
+    <item msgid="8633480732468137525">"Imewekwa akiba (kiteja cha shughuli)"</item>
+    <item msgid="6248998242443333892">"Imewekwa akiba (tupu)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Kijani"</item>
+    <item msgid="3228505970082457852">"Samawati"</item>
+    <item msgid="6590260735734795647">"Bluu"</item>
+    <item msgid="3521763377357218577">"Zambarau"</item>
+    <item msgid="5932337981182999919">"Waridi"</item>
+    <item msgid="5642914536624000094">"Nyekundu"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Zilizokaa zaidi ya siku 30"</item>
+    <item msgid="8699273238891265610">"Zilizokaa zaidi ya siku 60"</item>
+    <item msgid="8346279419423837266">"Zilizokaa zaidi ya siku 90"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Tambua kiotomatiki"</item>
+    <item msgid="773943026484148895">"Tumia kama mtandao unaopima data"</item>
+    <item msgid="1008268820118852416">"Tumia kama mtandao usiopima data"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Anwani ya MAC bila utaratibu wowote (chaguomsingi)"</item>
+    <item msgid="214234417308375326">"Tumia anwani ya MAC ya kifaa"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Hapana"</item>
+    <item msgid="1930581185557754880">"Ndiyo"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Meusi"</item>
+    <item msgid="5079453644557603349">"Meupe"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Kimezimwa"</item>
+    <item msgid="4072198137051566919">"Tatua"</item>
+    <item msgid="2473005316958868509">"Maneno mengi"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Nyumbani tu"</item>
+    <item msgid="1161026694891024702">"Otomatiki"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"inapendelea GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"GSM pekee"</item>
+    <item msgid="8579197487913425819">"WCDMA pekee"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA otomatiki"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo otomatiki"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo pekee"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Jumla"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA pekee"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Jumla"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-sw/strings.xml b/tests/CarDeveloperOptions/res/values-sw/strings.xml
index b9ac01b..4a1d403 100644
--- a/tests/CarDeveloperOptions/res/values-sw/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-sw/strings.xml
@@ -1403,9 +1403,9 @@
     <string name="storage_menu_rename" msgid="3731682449294417745">"Badilisha jina"</string>
     <string name="storage_menu_mount" msgid="6395893560780365473">"Pachika"</string>
     <string name="storage_menu_unmount" msgid="5041360076873514189">"Ondoa"</string>
-    <string name="storage_menu_format" msgid="4285487419855632896">"Umbiza"</string>
-    <string name="storage_menu_format_public" msgid="5361388353980722971">"Umbiza kama hifadhi inayohamishika"</string>
-    <string name="storage_menu_format_private" msgid="5288599205435858720">"Umbiza kama hifadhi ya ndani"</string>
+    <string name="storage_menu_format" msgid="4285487419855632896">"Rekebisha muundo"</string>
+    <string name="storage_menu_format_public" msgid="5361388353980722971">"Weka muundo uwe inahamishika"</string>
+    <string name="storage_menu_format_private" msgid="5288599205435858720">"Weka muundo wa hifadhi ya ndani"</string>
     <string name="storage_menu_migrate" msgid="1885806122515759703">"Hamisha data"</string>
     <string name="storage_menu_forget" msgid="4345021250834642640">"Sahau"</string>
     <string name="storage_menu_set_up" msgid="2849170579745958513">"Weka mipangilio"</string>
@@ -1498,7 +1498,7 @@
     <string name="storage_wizard_init_v2_later" msgid="2605006907172213466">"Weka mipangilio baadaye"</string>
     <string name="storage_wizard_format_confirm_v2_title" msgid="1884699177320256159">"Ungependa kuumbiza <xliff:g id="NAME">^1</xliff:g>?"</string>
     <string name="storage_wizard_format_confirm_v2_body" msgid="977657376082074305">"Unatakiwa uratibu <xliff:g id="NAME_0">^1</xliff:g> ili ihifadhi programu, faili na maudhui. \n\nHatua ya kuratibu itafuta maudhui yote yaliyo katika <xliff:g id="NAME_1">^2</xliff:g>. Ili usipoteze maudhui, hifadhi nakala kwenye <xliff:g id="NAME_2">^3</xliff:g> au kifaa kingine."</string>
-    <string name="storage_wizard_format_confirm_v2_action" msgid="5576917958786300415">"Umbiza <xliff:g id="NAME">^1</xliff:g>"</string>
+    <string name="storage_wizard_format_confirm_v2_action" msgid="5576917958786300415">"Rekebisha muundo: <xliff:g id="NAME">^1</xliff:g>"</string>
     <string name="storage_wizard_migrate_v2_title" msgid="6728034411587320249">"Utahamishia maudhu kwenye <xliff:g id="NAME">^1</xliff:g>?"</string>
     <string name="storage_wizard_migrate_v2_body" product="tablet" msgid="6943007011251294950">"Unaweza kuhamishia faili, maudhui na baadhi ya programu kwenye <xliff:g id="NAME">^1</xliff:g>. \n\nHatua hii itafuta vipengee ili upate nafasi ya <xliff:g id="SIZE">^2</xliff:g> kwenye hifadhi ya kompyuta yako kibao na inaweza kuchukua takribani <xliff:g id="DURATION">^3</xliff:g>."</string>
     <string name="storage_wizard_migrate_v2_body" product="default" msgid="3211214309775524554">"Unaweza kuhamishia faili, maudhui na baadhi ya programu kwenye <xliff:g id="NAME">^1</xliff:g>. \n\nHatua hii itafuta vipengee ili upate nafasi ya <xliff:g id="SIZE">^2</xliff:g> kwenye hifadhi ya simu yako na inaweza kuchukua takribani <xliff:g id="DURATION">^3</xliff:g>."</string>
@@ -2628,14 +2628,14 @@
     <string name="remove_account_failed" msgid="491458185327106966">"Mabadiliko haya hayaruhusiwi na msimamizi wako"</string>
     <string name="cant_sync_dialog_title" msgid="5483419398223189881">"Huwezi kusawazisha mwenyewe"</string>
     <string name="cant_sync_dialog_message" msgid="3467126947262857534">"Kwa sasa usawazishaji wa kipengee hiki umezimwa. Kubadilisha mpangilio huu, washa kwa muda data ya usuli na usawazishaji kiotomatiki."</string>
-    <string name="enter_password" msgid="2963496904625715235">"Ili uanzishe Android, weka nenosiri lako"</string>
-    <string name="enter_pin" msgid="7140938268709546890">"Ili uanzishe Android, weka PIN yako"</string>
-    <string name="enter_pattern" msgid="1653841963422825336">"Ili uanzishe Android, chora mchoro wako"</string>
+    <string name="enter_password" msgid="2963496904625715235">"Ili uwashe Android, weka nenosiri lako"</string>
+    <string name="enter_pin" msgid="7140938268709546890">"Ili uwashe Android, weka PIN yako"</string>
+    <string name="enter_pattern" msgid="1653841963422825336">"Ili uwashe Android, chora mchoro wako"</string>
     <string name="cryptkeeper_wrong_pattern" msgid="4580105105385125467">"Mchoro huo si sahihi"</string>
     <string name="cryptkeeper_wrong_password" msgid="1709534330303983166">"Nenosiri Lisilo sahihi"</string>
     <string name="cryptkeeper_wrong_pin" msgid="857757190077859245">"Nambari ya PIN si sahihi"</string>
     <string name="checking_decryption" msgid="5927759912073053101">"Inakagua..."</string>
-    <string name="starting_android" msgid="4774187626261253089">"Inaanzisha Android..."</string>
+    <string name="starting_android" msgid="4774187626261253089">"Inawasha Android..."</string>
     <string name="delete" msgid="2325292565700865366">"Futa"</string>
     <string name="misc_files" msgid="1012397035001764693">"Faili Nyinginezo"</string>
     <string name="misc_files_selected_count" msgid="1434146080729502726">"Imechaguliwa <xliff:g id="NUMBER">%1$d</xliff:g> juu ya <xliff:g id="TOTAL">%2$d</xliff:g>"</string>
@@ -4315,7 +4315,7 @@
     <string name="battery_suggestion_title" product="device" msgid="765005476863631528">"Boresha muda wa matumizi ya betri ya kifaa"</string>
     <string name="battery_suggestion_title" product="default" msgid="3295786171830183688">"Boresha muda wa matumizi ya betri ya simu yako"</string>
     <string name="battery_suggestion_summary" msgid="2669070349482656490"></string>
-    <string name="gesture_prevent_ringing_screen_title" msgid="4173494225145223638">"Zuia mlio wa simu"</string>
+    <string name="gesture_prevent_ringing_screen_title" msgid="4173494225145223638">"Zuia simu isilie"</string>
     <string name="gesture_prevent_ringing_title" msgid="8827963588425673557">"Bonyeza vitufe vya Kuwasha na Kuongeza Sauti kwa pamoja ili"</string>
     <string name="gesture_prevent_ringing_sound_title" msgid="8642330448721033641">"Njia ya mkato ya kuzuia mlio"</string>
     <string name="prevent_ringing_option_vibrate" msgid="6456505293904544108">"Tetema"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ta-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ta-nokeys/strings.xml
new file mode 100644
index 0000000..4324c05
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ta-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ஆப்ஸை நிர்வகித்தல்"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ta/arrays.xml b/tests/CarDeveloperOptions/res/values-ta/arrays.xml
new file mode 100644
index 0000000..70c284f
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ta/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"அமெரிக்கா"</item>
+    <item msgid="4791956477275129121">"ஐரோப்பா"</item>
+    <item msgid="3812126832016254559">"ஆஃப்ரிக்கா"</item>
+    <item msgid="2765816300353408280">"ஆசியா"</item>
+    <item msgid="6683489385344409742">"ஆஸ்திரேலியா"</item>
+    <item msgid="5194868215515664953">"பசிபிக்"</item>
+    <item msgid="7044520255415007865">"எல்லாம்"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 வினாடிகள்"</item>
+    <item msgid="772029947136115322">"30 விநாடிகள்"</item>
+    <item msgid="8743663928349474087">"1 நிமிடம்"</item>
+    <item msgid="1506508631223164814">"2 நிமிடங்கள்"</item>
+    <item msgid="8664703938127907662">"5 நிமிடங்கள்"</item>
+    <item msgid="5827960506924849753">"10 நிமிடங்கள்"</item>
+    <item msgid="6677424950124253938">"30 நிமிடங்கள்"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"இணைக்கப்பட்டது"</item>
+    <item msgid="983792611851499732">"அழைக்கப்பட்டது"</item>
+    <item msgid="5438273405428201793">"தோல்வி"</item>
+    <item msgid="4646663015449312554">"பயன்படுத்துவதற்குத் தயாராக உள்ளது"</item>
+    <item msgid="3230556734162006146">"எல்லைக்கு வெளியே உள்ளது"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 நிமிடங்கள்"</item>
+    <item msgid="2759776603549270587">"5 நிமிடங்கள்"</item>
+    <item msgid="167772676068860015">"1 மணிநேரம்"</item>
+    <item msgid="5985477119043628504">"காலநேரம் முடிய வேண்டாம்"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"கடந்த 30 நாட்கள்"</item>
+    <item msgid="3211287705232736964">"பயன்பாட்டு சுழற்சியை அமை..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"பயன்படுத்திய நேரம்"</item>
+    <item msgid="2784401352592276015">"கடைசியாகப் பயன்படுத்தியது"</item>
+    <item msgid="249854287216326349">"ஆப்ஸின் பெயர்"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ஏதுமில்லை"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ஏதுமில்லை"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ஏதுமில்லை"</item>
+    <item msgid="1464741437353223198">"கைமுறை"</item>
+    <item msgid="5793600062487886090">"ப்ராக்ஸி தானியங்கு-உள்ளமைவு"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ஏதுமில்லை"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP அல்லது CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"சாதன அகச் சேமிப்பு"</item>
+    <item msgid="3186681694079967527">"அகற்றப்படக்கூடிய SD கார்டு"</item>
+    <item msgid="6902033473986647035">"அமைப்பு தீர்மானிக்கட்டும்"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"இருப்பிடம்"</item>
+    <item msgid="6842381562497597649">"தனிப்பட்டவை"</item>
+    <item msgid="3966700236695683444">"மெசேஜ்"</item>
+    <item msgid="8563996233342430477">"மீடியா"</item>
+    <item msgid="5323851085993963783">"சாதனம்"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"சீரற்ற இருப்பிடம்"</item>
+    <item msgid="1830619568689922920">"சிறந்த இருப்பிடம்"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"அதிர்வு"</item>
+    <item msgid="8632513128515114092">"தொடர்புகளைப் படி"</item>
+    <item msgid="3741042113569620272">"தொடர்புகளை மாற்று"</item>
+    <item msgid="4204420969709009931">"அழைப்புப் பதிவைப் படி"</item>
+    <item msgid="2260380357119423209">"அழைப்புப் பதிவை மாற்று"</item>
+    <item msgid="6550710385014530934">"கேலெண்டரைப் படி"</item>
+    <item msgid="3575906174264853951">"கேலெண்டரை மாற்று"</item>
+    <item msgid="4319843242568057174">"வைஃபை ஸ்கேன்"</item>
+    <item msgid="2981791890467303819">"அறிவிப்பு"</item>
+    <item msgid="6617825156152476692">"கைபேசியை ஸ்கேன் செய்"</item>
+    <item msgid="8865260890611559753">"தொலைபேசியை அழை"</item>
+    <item msgid="3254999273961542982">"SMS படி"</item>
+    <item msgid="7711446453028825171">"SMS எழுது"</item>
+    <item msgid="6123238544099198034">"SMS பெறு"</item>
+    <item msgid="838342167431596036">"அவசரநிலை SMS ஐப் பெறு"</item>
+    <item msgid="8554432731560956686">"MMS பெறு"</item>
+    <item msgid="7464863464299515059">"WAP அறிவிப்பைப் பெறு"</item>
+    <item msgid="310463075729606765">"SMS அனுப்பு"</item>
+    <item msgid="7338021933527689514">"ICC SMS ஐப் படி"</item>
+    <item msgid="6130369335466613036">"ICC SMS எழுது"</item>
+    <item msgid="6536865581421670942">"அமைப்புகளை மாற்று"</item>
+    <item msgid="4547203129183558973">"மேலே வரை"</item>
+    <item msgid="9080347512916542840">"அறிவிப்புகளை அணுகு"</item>
+    <item msgid="5332718516635907742">"கேமரா"</item>
+    <item msgid="6098422447246167852">"ஆடியோவைப் பதிவுசெய்"</item>
+    <item msgid="9182794235292595296">"ஆடியோவை இயக்கு"</item>
+    <item msgid="8760743229597702019">"கிளிப்போர்டைப் படி"</item>
+    <item msgid="2266923698240538544">"கிளிப்போர்ட்டை மாற்று"</item>
+    <item msgid="1801619438618539275">"மீடியா பொத்தான்கள்"</item>
+    <item msgid="31588119965784465">"ஆடியோவை மையப்படுத்து"</item>
+    <item msgid="7565226799008076833">"முதன்மை ஒலியளவு"</item>
+    <item msgid="5420704980305018295">"குரல் ஒலியளவு"</item>
+    <item msgid="5797363115508970204">"அழைப்பு - ஒலியளவு"</item>
+    <item msgid="8233154098550715999">"மீடியாவின் ஒலியளவு"</item>
+    <item msgid="5196715605078153950">"அலாரத்தின் ஒலியளவு"</item>
+    <item msgid="394030698764284577">"அறிவிப்பின் ஒலியளவு"</item>
+    <item msgid="8952898972491680178">"புளூடூத் ஒலியளவு"</item>
+    <item msgid="8506227454543690851">"செயலில்"</item>
+    <item msgid="1108160036049727420">"இருப்பிடத்தைக் கண்காணி"</item>
+    <item msgid="1496205959751719491">"அதிக ஆற்றல் இடத்தைக் கண்காணி"</item>
+    <item msgid="3776296279910987380">"பயன்பாட்டு புள்ளிவிவரத்தைப் பெறுக"</item>
+    <item msgid="8827100324471975602">"மைக்ரோஃபோனை முடக்கு/இயக்கு"</item>
+    <item msgid="6880736730520126864">"டோஸ்ட்டைக் காட்டு"</item>
+    <item msgid="4933375960222609935">"புராஜக்ட் மீடியா"</item>
+    <item msgid="8357907018938895462">"VPNஐ இயக்கு"</item>
+    <item msgid="8143812849911310973">"வால்பேப்பரை எழுது"</item>
+    <item msgid="6266277260961066535">"கட்டமைப்புக்கு உதவு"</item>
+    <item msgid="7715498149883482300">"ஸ்கிரீன்ஷாட்டுக்கு உதவு"</item>
+    <item msgid="4046679376726313293">"ஃபோன் நிலையைப் படி"</item>
+    <item msgid="6329507266039719587">"குரலஞ்சலைச் சேர்"</item>
+    <item msgid="7692440726415391408">"sipஐப் பயன்படுத்து"</item>
+    <item msgid="8572453398128326267">"வெளிச்செல்லும் அழைப்பைச் செயலாக்கு"</item>
+    <item msgid="7775674394089376306">"கைரேகை"</item>
+    <item msgid="3182815133441738779">"உடல் சென்சார்கள்"</item>
+    <item msgid="2793100005496829513">"செல் பிராட்காஸ்ட்களைப் படி"</item>
+    <item msgid="2633626056029384366">"போலியான இருப்பிடம்"</item>
+    <item msgid="8356842191824684631">"சேமிப்பகத்தைப் படி"</item>
+    <item msgid="5671906070163291500">"சேமிப்பகத்தில் எழுது"</item>
+    <item msgid="2791955098549340418">"திரையை இயக்கு"</item>
+    <item msgid="5599435119609178367">"கணக்குகளைப் பெறு"</item>
+    <item msgid="1165623660533024666">"பின்புலத்தில் இயங்கு"</item>
+    <item msgid="6423861043647911030">"அணுகல்தன்மைக்கான ஒலியளவு"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"குறுகியது"</item>
+    <item msgid="4816511817309094890">"நடுத்தர முக்கியத்துவம்"</item>
+    <item msgid="8305084671259331134">"நீளமானது"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"இயல்பு"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif குறுகியது"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"கேஷ்வல்"</item>
+    <item msgid="4627069151979553527">"இணைவெழுத்து முறை"</item>
+    <item msgid="6896773537705206194">"சிறிய எழுத்துகள்"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"இயல்பு"</item>
+    <item msgid="6488643537808152001">"ஏதுமில்லை"</item>
+    <item msgid="552332815156010137">"வெளிக்கோடு"</item>
+    <item msgid="7187891159463789272">"நிழலிடு"</item>
+    <item msgid="8019330250538856521">"மேலெழும்பியது"</item>
+    <item msgid="8987385315647049787">"அழுத்தப்பட்டது"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"பாதுகாப்பு விசைகளுடன் கூடிய L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"சான்றிதழ்களுடன் கூடிய L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"பாதுகாப்பு விசைகள் மற்றும் Xauth அங்கீகாரத்துடனான IPSec VPN"</item>
+    <item msgid="3319427315593649917">"சான்றிதழ்கள் மற்றும் Xauth அங்கீகாரத்துடனான IPSec VPN"</item>
+    <item msgid="8258927774145391041">"சான்றிதழ்கள் மற்றும் கலப்பு அங்கீகாரத்துடனான IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ஏதுமில்லை"</item>
+    <item msgid="1157046369795346308">"கைமுறை"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"கேள்"</item>
+    <item msgid="7718817231348607934">"ஒருபோதும் அனுமதிக்காதே"</item>
+    <item msgid="8184570120217958741">"எப்போதும் அனுமதி"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"தொடர்நிலை"</item>
+    <item msgid="167418068739176448">"அதிக செயல்பாடு"</item>
+    <item msgid="4760813290195199773">"முக்கியம் (முன்புலம்)"</item>
+    <item msgid="2328684826817647595">"முக்கியம் (பின்புலம்)"</item>
+    <item msgid="7746406490652867365">"காப்புப்பிரதி"</item>
+    <item msgid="5597404364389196754">"அதீத பயன்பாடு"</item>
+    <item msgid="1290888779300174556">"சேவை (இயக்கத்தில்)"</item>
+    <item msgid="7241098542073939046">"சேவை (மறுதொடக்கத்தில்)"</item>
+    <item msgid="6610439017684111046">"ரிசீவர்"</item>
+    <item msgid="7367606086319921117">"முகப்பு"</item>
+    <item msgid="3344660712396741826">"குறைந்த செயல்பாடு"</item>
+    <item msgid="5006559348883303865">"தற்காலிகச் சேமிப்பு (செயல்பாடு)"</item>
+    <item msgid="8633480732468137525">"தற்காலிகச் சேமிப்பு (செயல்பாட்டு கிளையண்ட்)"</item>
+    <item msgid="6248998242443333892">"தற்காலிகச் சேமிப்பு (காலி)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"பசும் நீலம்"</item>
+    <item msgid="3228505970082457852">"நீலம்"</item>
+    <item msgid="6590260735734795647">"அடர் நீலம்"</item>
+    <item msgid="3521763377357218577">"ஊதா"</item>
+    <item msgid="5932337981182999919">"பிங்க்"</item>
+    <item msgid="5642914536624000094">"சிவப்பு"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 நாட்களுக்கு மேல்"</item>
+    <item msgid="8699273238891265610">"60 நாட்களுக்கு மேல்"</item>
+    <item msgid="8346279419423837266">"90 நாட்களுக்கு மேல்"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"தானாகக் கண்டறி"</item>
+    <item msgid="773943026484148895">"டேட்டா அளவிடப்பட்டது"</item>
+    <item msgid="1008268820118852416">"டேட்டா அளவிடப்படாதது"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ரேண்டம் MACகைப் பயன்படுத்து (இயல்புநிலை)"</item>
+    <item msgid="214234417308375326">"சாதன MACகைப் பயன்படுத்து"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"வேண்டாம்"</item>
+    <item msgid="1930581185557754880">"ஆம்"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"டார்க்"</item>
+    <item msgid="5079453644557603349">"லைட்"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ஆஃப்"</item>
+    <item msgid="4072198137051566919">"பிழைத்திருத்து"</item>
+    <item msgid="2473005316958868509">"அதிகச் சொற்கள்"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"வீட்டிற்கு மட்டும்"</item>
+    <item msgid="1161026694891024702">"தானியங்கு"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMAக்கு முன்னுரிமை"</item>
+    <item msgid="7581481130337402578">"GSM மட்டும்"</item>
+    <item msgid="8579197487913425819">"WCDMA மட்டும்"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA தானியங்கு"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo தானியங்கு"</item>
+    <item msgid="4219607161971472471">"EvDo இல்லாமல் CDMA"</item>
+    <item msgid="7278975240951052041">"EvDo மட்டும்"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"குளோபல்"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA மட்டும்"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"குளோபல்"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ta/strings.xml b/tests/CarDeveloperOptions/res/values-ta/strings.xml
index 28fbe26..8214042 100644
--- a/tests/CarDeveloperOptions/res/values-ta/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ta/strings.xml
@@ -208,7 +208,7 @@
     <string name="proxy_error_empty_port" msgid="8034561724923076215">"நீங்கள் போர்ட் புலத்தை நிரப்ப வேண்டும்."</string>
     <string name="proxy_error_empty_host_set_port" msgid="8471455809508588255">"ஹோஸ்ட் புலம் வெறுமையாக இருந்தால் போர்ட்டின் புலம் வெறுமையாக இருக்க வேண்டும்."</string>
     <string name="proxy_error_invalid_port" msgid="4046559920586100637">"நீங்கள் உள்ளிட்ட போர்ட் தவறானது."</string>
-    <string name="proxy_warning_limited_support" msgid="9026539134219095768">"HTTP ப்ராக்ஸியை உலாவி பயன்படுத்தும் ஆனால் பிற பயன்பாடுகள் பயன்படுத்தாமல் போகலாம்."</string>
+    <string name="proxy_warning_limited_support" msgid="9026539134219095768">"HTTP ப்ராக்ஸியை உலாவி பயன்படுத்தும் ஆனால் பிற ஆப்ஸ் பயன்படுத்தாமல் போகலாம்."</string>
     <string name="proxy_url_title" msgid="882042361706435904">"PAC URL: "</string>
     <string name="radio_info_dl_kbps" msgid="2903778264453410272">"DL இணைய வேகம் (kbps):"</string>
     <string name="radio_info_ul_kbps" msgid="3802245899811732716">"UL இணைய வேகம் (kbps):"</string>
@@ -510,8 +510,8 @@
     <string name="crypt_keeper_encrypt_title" product="tablet" msgid="2292129135369853167">"டேப்லெட்டை என்க்ரிப்ட் செய்"</string>
     <string name="crypt_keeper_encrypt_title" product="default" msgid="3110852053238357832">"மொபைலை என்க்ரிப்ட் செய்"</string>
     <string name="crypt_keeper_encrypted_summary" msgid="2438498691741626642">"என்க்ரிப்ட் செய்யப்பட்டது"</string>
-    <string name="crypt_keeper_desc" product="tablet" msgid="9142792050252407734">"உங்கள் கணக்குகள், அமைப்புகள், பதிவிறக்கிய பயன்பாடுகள் மற்றும் அவற்றின் தரவு, மீடியா மற்றும் பிற கோப்புகள் என அனைத்தையும் என்க்ரிப்ட் செய்யலாம். உங்கள் டேப்லெட்டை என்க்ரிப்ட் செய்த பிறகு, திரைப்பூட்டை (அதாவது வடிவம் அல்லது பின் அல்லது கடவுச்சொல்) அமைத்திருந்தால், ஒவ்வொரு முறையும் டேப்லெட்டை இயக்கும்போது குறிநீக்குவதற்கு திரையைத் திறக்க வேண்டும். உங்களின் எல்லா தரவையும் அழித்து, ஆரம்ப நிலைக்கு மீட்டமைப்பதே குறிநீக்குவதற்கான மற்றொரு வழியாகும்.\n\nஎன்க்ரிப்ட் செய்வதற்கு ஒரு மணிநேரம் அல்லது அதற்கு மேல் ஆகலாம். சார்ஜ் செய்த பேட்டரியுடன் தொடங்கி, செயல் முடியும் வரை சார்ஜ் ஆகும் நிலையிலேயே வைக்கவும். செயலில் குறுக்கிட்டால், உங்கள் தரவில் சிலவற்றை அல்லது மொத்தத்தையும் இழப்பீர்கள்."</string>
-    <string name="crypt_keeper_desc" product="default" msgid="1996334685607444282">"உங்கள் கணக்குகள், அமைப்புகள், பதிவிறக்கிய பயன்பாடுகள் மற்றும் அவற்றின் தரவு, மீடியா மற்றும் பிற கோப்புகள் என அனைத்தையும் என்க்ரிப்ட் செய்யலாம். உங்கள் மொபைலை என்க்ரிப்ட் செய்த பிறகு, திரைப்பூட்டை (அதாவது வடிவம் அல்லது பின் அல்லது கடவுச்சொல்) அமைத்திருந்தால், ஒவ்வொரு முறையும் மொபைலை இயக்கும்போது குறிநீக்குவதற்கு திரையைத் திறக்க வேண்டும். உங்களின் எல்லா தரவையும் அழித்து, ஆரம்ப நிலைக்கு மீட்டமைப்பதே குறிநீக்குவதற்கான மற்றொரு வழியாகும்.\n\nஎன்க்ரிப்ட் செய்வதற்கு ஒரு மணிநேரம் அல்லது அதற்கு மேல் ஆகலாம். சார்ஜ் செய்த பேட்டரியுடன் தொடங்கி, செயல் முடியும் வரை சார்ஜ் ஆகும் நிலையிலேயே வைக்கவும். செயலில் குறுக்கிட்டால், உங்கள் தரவில் சிலவற்றை அல்லது மொத்தத்தையும் இழப்பீர்கள்."</string>
+    <string name="crypt_keeper_desc" product="tablet" msgid="9142792050252407734">"உங்கள் கணக்குகள், அமைப்புகள், பதிவிறக்கிய ஆப்ஸ் மற்றும் அவற்றின் தரவு, மீடியா மற்றும் பிற கோப்புகள் என அனைத்தையும் என்க்ரிப்ட் செய்யலாம். உங்கள் டேப்லெட்டை என்க்ரிப்ட் செய்த பிறகு, திரைப்பூட்டை (அதாவது வடிவம் அல்லது பின் அல்லது கடவுச்சொல்) அமைத்திருந்தால், ஒவ்வொரு முறையும் டேப்லெட்டை இயக்கும்போது குறிநீக்குவதற்கு திரையைத் திறக்க வேண்டும். உங்களின் எல்லா தரவையும் அழித்து, ஆரம்ப நிலைக்கு மீட்டமைப்பதே குறிநீக்குவதற்கான மற்றொரு வழியாகும்.\n\nஎன்க்ரிப்ட் செய்வதற்கு ஒரு மணிநேரம் அல்லது அதற்கு மேல் ஆகலாம். சார்ஜ் செய்த பேட்டரியுடன் தொடங்கி, செயல் முடியும் வரை சார்ஜ் ஆகும் நிலையிலேயே வைக்கவும். செயலில் குறுக்கிட்டால், உங்கள் தரவில் சிலவற்றை அல்லது மொத்தத்தையும் இழப்பீர்கள்."</string>
+    <string name="crypt_keeper_desc" product="default" msgid="1996334685607444282">"உங்கள் கணக்குகள், அமைப்புகள், பதிவிறக்கிய ஆப்ஸ் மற்றும் அவற்றின் தரவு, மீடியா மற்றும் பிற கோப்புகள் என அனைத்தையும் என்க்ரிப்ட் செய்யலாம். உங்கள் மொபைலை என்க்ரிப்ட் செய்த பிறகு, திரைப்பூட்டை (அதாவது வடிவம் அல்லது பின் அல்லது கடவுச்சொல்) அமைத்திருந்தால், ஒவ்வொரு முறையும் மொபைலை இயக்கும்போது குறிநீக்குவதற்கு திரையைத் திறக்க வேண்டும். உங்களின் எல்லா தரவையும் அழித்து, ஆரம்ப நிலைக்கு மீட்டமைப்பதே குறிநீக்குவதற்கான மற்றொரு வழியாகும்.\n\nஎன்க்ரிப்ட் செய்வதற்கு ஒரு மணிநேரம் அல்லது அதற்கு மேல் ஆகலாம். சார்ஜ் செய்த பேட்டரியுடன் தொடங்கி, செயல் முடியும் வரை சார்ஜ் ஆகும் நிலையிலேயே வைக்கவும். செயலில் குறுக்கிட்டால், உங்கள் தரவில் சிலவற்றை அல்லது மொத்தத்தையும் இழப்பீர்கள்."</string>
     <string name="crypt_keeper_button_text" product="tablet" msgid="7918671468758813824">"டேப்லெட்டை என்க்ரிப்ட் செய்"</string>
     <string name="crypt_keeper_button_text" product="default" msgid="8737394386627318489">"மொபைலை என்க்ரிப்ட் செய்"</string>
     <string name="crypt_keeper_low_charge_text" msgid="1422879728632636311">"உங்கள் பேட்டரியை சார்ஜ் செய்து மீண்டும் முயற்சிக்கவும்."</string>
@@ -1067,7 +1067,7 @@
     <string name="wifi_hotspot_password_title" msgid="4289338152595154889">"ஹாட்ஸ்பாட் கடவுச்சொல்"</string>
     <string name="wifi_hotspot_ap_band_title" msgid="3485744480410441949">"AP அலைவரிசை"</string>
     <string name="wifi_hotspot_footer_info_regular" msgid="3876006922622827363">"மற்ற சாதனங்களுக்கு வைஃபை நெட்வொர்க்கை உருவாக்க, ஹாட்ஸ்பாட்டைப் பயன்படுத்தவும். ஹாட்ஸ்பாட்டானது, மொபைல் டேட்டா இணைப்பைப் பயன்படுத்தி இண்டர்நெட்டை வழங்குகிறது. கூடுதல் மொபைல் டேட்டா பேமெண்ட்கள் விதிக்கப்படலாம்."</string>
-    <string name="wifi_hotspot_footer_info_local_only" msgid="3339582350894639261">"அருகிலுள்ள சாதனங்களுடன் உள்ளடக்கத்தைப் பகிர, பயன்பாடுகள் ஹாட்ஸ்பாட்டையும் உருவாக்கலாம்."</string>
+    <string name="wifi_hotspot_footer_info_local_only" msgid="3339582350894639261">"அருகிலுள்ள சாதனங்களுடன் உள்ளடக்கத்தைப் பகிர, ஆப்ஸ் ஹாட்ஸ்பாட்டையும் உருவாக்கலாம்."</string>
     <string name="wifi_hotspot_auto_off_title" msgid="7416022590415189590">"ஹாட்ஸ்பாட்டைத் தானாக ஆஃப் செய்"</string>
     <string name="wifi_hotspot_auto_off_summary" msgid="3866769400624802105">"சாதனங்கள் எதுவும் இணைக்கப்படவில்லை எனில், வைஃபை ஹாட்ஸ்பாட் ஆஃப் செய்யப்படும்"</string>
     <string name="wifi_tether_starting" msgid="7676952148471297900">"ஹாட்ஸ்பாட்டை இயக்குகிறது…"</string>
@@ -1257,7 +1257,7 @@
     <string name="doze_title" msgid="235269029233857546">"புதிய அறிவிப்புகள்"</string>
     <string name="doze_summary" msgid="6762274282827831706">"அறிவிப்புகளைப் பெறும் போது திரையை இயக்கு"</string>
     <string name="doze_always_on_title" msgid="8555184965031789941">"எப்போதும் இயக்கத்தில் வை"</string>
-    <string name="doze_always_on_summary" msgid="7654436900436328950">"நேரம், அறிவிப்பு ஐகான்கள் மற்றும் பிற தகவலைக் காட்டு. அதே நேரத்தில் பேட்டரியை அதிகமாகப் பயன்படுத்தும்."</string>
+    <string name="doze_always_on_summary" msgid="7654436900436328950">"நேரம், அறிவிப்பு ஐகான்கள் மற்றும் பிற தகவல்களைக் காட்டும். பேட்டரியை அதிகமாகப் பயன்படுத்தும்."</string>
     <string name="title_font_size" msgid="5021464556860010851">"எழுத்துரு அளவு"</string>
     <string name="short_summary_font_size" msgid="4141077908728522946">"உரையைப் பெரிதாக்கும் அல்லது சிறிதாக்கும்"</string>
     <string name="sim_lock_settings" msgid="1986924650622642189">"சிம் கார்டின் பூட்டு அமைப்பு"</string>
@@ -1338,7 +1338,7 @@
     <string name="scanning_status_text_wifi_on_ble_on" msgid="6370507836346838473">"வைஃபைக்கும் புளூடூத்துக்குமான ஸ்கேனிங் ஆன் செய்யப்பட்டுள்ளது"</string>
     <string name="scanning_status_text_wifi_on_ble_off" msgid="8205014713732412608">"வைஃபை ஸ்கேனிங் ஆன் செய்யப்பட்டுள்ளது, புளூடூத் ஸ்கேனிங் ஆஃப் செய்யப்பட்டுள்ளது"</string>
     <string name="scanning_status_text_wifi_off_ble_on" msgid="7400522456303307057">"புளூடூத் ஸ்கேனிங் ஆன் செய்யப்பட்டுள்ளது, வைஃபை ஸ்கேனிங் ஆஃப் செய்யப்பட்டுள்ளது"</string>
-    <string name="scanning_status_text_wifi_off_ble_off" msgid="8575026386237481457">"வைஃபைக்கும் புளூடூத்துக்கமான ஸ்கேனிங் ஆஃப் செய்யப்பட்டுள்ளது"</string>
+    <string name="scanning_status_text_wifi_off_ble_off" msgid="8575026386237481457">"வைஃபைக்கும் புளூடூத்துக்குமான ஸ்கேனிங் ஆஃப் செய்யப்பட்டுள்ளது"</string>
     <string name="status_meid_number" msgid="8756271256760479835">"MEID"</string>
     <string name="status_icc_id" msgid="9191847562997702709">"ICCID"</string>
     <string name="status_data_network_type" msgid="2344720457353394909">"மொபைல் டேட்டா நெட்வொர்க்கின் வகை"</string>
@@ -1384,12 +1384,12 @@
     <string name="sd_format_summary" product="nosdcard" msgid="1179857727779521920">"இசை மற்றும் படங்கள் போன்ற அக USB சேமிப்பிடத்தில் உள்ள எல்லா தரவையும் அழிக்கும்"</string>
     <string name="sd_format_summary" product="default" msgid="4284028411908176234">"இசை மற்றும் படங்கள் போன்ற SD கார்டில் உள்ள எல்லா தரவையும் அழிக்கிறது"</string>
     <string name="memory_clear_cache_title" msgid="4306793268129306684">"தற்காலிகத் தரவை அழிக்கவா?"</string>
-    <string name="memory_clear_cache_message" msgid="6723120398411410031">"இது, எல்லா பயன்பாடுகளின் தற்காலிகச் சேமிப்பு தரவை அழிக்கும்."</string>
+    <string name="memory_clear_cache_message" msgid="6723120398411410031">"இது, எல்லா ஆப்ஸின் தற்காலிகச் சேமிப்பு தரவை அழிக்கும்."</string>
     <string name="mtp_ptp_mode_summary" msgid="6074099855478444183">"MTP அல்லது PTP செயல்பாடு இயக்கத்தில் உள்ளது"</string>
     <string name="dlg_confirm_unmount_title" product="nosdcard" msgid="3843209947310774105">"USB சேமிப்பிடத்தை அகற்றவா?"</string>
     <string name="dlg_confirm_unmount_title" product="default" msgid="4400426555375434431">"SD கார்டை அகற்றவா?"</string>
-    <string name="dlg_confirm_unmount_text" product="nosdcard" msgid="1423648405874813948">"USB சேமிப்பிடத்தை அகற்றிவிட்டால், நீங்கள் பயன்படுத்துகின்ற சில பயன்பாடுகள் நின்றுவிடும், மேலும் நீங்கள் USB சேமிப்பிடத்தை மீண்டும் செருகும்வரை அவை கிடைக்காமல் இருக்கலாம்."</string>
-    <string name="dlg_confirm_unmount_text" product="default" msgid="4099391737780732622">"SD கார்டை அகற்றினால், நீங்கள் பயன்படுத்தும் சில பயன்பாடுகள் நின்றுவிடும், மேலும் SD கார்டை மீண்டும் செருகும் வரை அவை பயன்படுத்த கிடைக்காமல் இருக்கலாம்."</string>
+    <string name="dlg_confirm_unmount_text" product="nosdcard" msgid="1423648405874813948">"USB சேமிப்பிடத்தை அகற்றிவிட்டால், நீங்கள் பயன்படுத்துகின்ற சில ஆப்ஸ் நின்றுவிடும், மேலும் நீங்கள் USB சேமிப்பிடத்தை மீண்டும் செருகும்வரை அவை கிடைக்காமல் இருக்கலாம்."</string>
+    <string name="dlg_confirm_unmount_text" product="default" msgid="4099391737780732622">"SD கார்டை அகற்றினால், நீங்கள் பயன்படுத்தும் சில ஆப்ஸ் நின்றுவிடும், மேலும் SD கார்டை மீண்டும் செருகும் வரை அவை பயன்படுத்த கிடைக்காமல் இருக்கலாம்."</string>
     <string name="dlg_error_unmount_title" product="nosdcard" msgid="3132640848329117857"></string>
     <string name="dlg_error_unmount_title" product="default" msgid="3132640848329117857"></string>
     <string name="dlg_error_unmount_text" product="nosdcard" msgid="4710773826053117136">"USB கார்டை அகற்ற முடியவில்லை. பிறகு முயற்சிக்கவும்."</string>
@@ -1399,7 +1399,7 @@
     <string name="sd_ejecting_title" msgid="595074246815112145">"அகற்றுகிறது"</string>
     <string name="sd_ejecting_summary" msgid="5708943172014003213">"அகற்றுதல் செயலில் உள்ளது"</string>
     <string name="storage_low_title" msgid="6957178208426099592">"சேமிப்பிடம் குறைகிறது"</string>
-    <string name="storage_low_summary" msgid="4475275204869514141">"ஒத்திசைத்தல் போன்ற அமைப்பின் சில செயல்பாடுகள் வேலைசெய்யாமல் போகலாம். பயன்பாடுகள் அல்லது மீடியா உள்ளடக்கம் போன்ற உருப்படிகளை நீக்குதல் அல்லது அகற்றுவதன் மூலம் சேமிப்பிடத்தை காலியாக்க முயற்சிக்கவும்."</string>
+    <string name="storage_low_summary" msgid="4475275204869514141">"ஒத்திசைத்தல் போன்ற அமைப்பின் சில செயல்பாடுகள் வேலைசெய்யாமல் போகலாம். ஆப்ஸ் அல்லது மீடியா உள்ளடக்கம் போன்ற உருப்படிகளை நீக்குதல் அல்லது அகற்றுவதன் மூலம் சேமிப்பிடத்தை காலியாக்க முயற்சிக்கவும்."</string>
     <string name="storage_menu_rename" msgid="3731682449294417745">"மறுபெயரிடு"</string>
     <string name="storage_menu_mount" msgid="6395893560780365473">"பொருத்து"</string>
     <string name="storage_menu_unmount" msgid="5041360076873514189">"வெளியேற்று"</string>
@@ -1419,7 +1419,7 @@
     <string name="usb_ptp_title" msgid="6629335976394685361">"கேமரா (PTP)"</string>
     <string name="usb_ptp_summary" msgid="460425275251168189">"கேமரா மென்பொருளைப் பயன்படுத்தி நீங்கள் படங்களை அனுப்பவும், மேலும் MTP ஆதரிக்காத கணினிகளில் எந்தக் கோப்புகளையும் பரிமாற்றவும் உதவுகிறது."</string>
     <string name="usb_midi_title" msgid="8626512517313340943">"MIDI"</string>
-    <string name="usb_midi_summary" msgid="3607444815743771712">"MIDI இயக்கப்பட்ட பயன்பாடுகள், USB மூலம் MIDI மென்பொருளைப் பயன்படுத்தி கணினியில் செயல்பட அனுமதிக்கும்."</string>
+    <string name="usb_midi_summary" msgid="3607444815743771712">"MIDI இயக்கப்பட்ட ஆப்ஸ், USB மூலம் MIDI மென்பொருளைப் பயன்படுத்தி கணினியில் செயல்பட அனுமதிக்கும்."</string>
     <string name="storage_other_users" msgid="1055693465220962928">"பிற பயனர்கள்"</string>
     <string name="storage_internal_title" msgid="7969898703086593200">"சாதனச் சேமிப்பகம்"</string>
     <string name="storage_external_title" msgid="3308178326521953306">"கையடக்கச் சேமிப்பகம்"</string>
@@ -1437,11 +1437,11 @@
     <string name="storage_dialog_unmounted" msgid="515810851912430933">"<xliff:g id="NAME_0">^1</xliff:g> பாதுகாப்பாக வெளியேற்றப்பட்டது, ஆனால் இன்னும் கிடைக்கிறது. \n\n<xliff:g id="NAME_1">^1</xliff:g>ஐப் பயன்படுத்த, முதலில் அதைச் செருக வேண்டும்."</string>
     <string name="storage_dialog_unmountable" msgid="7082856306456936054">"<xliff:g id="NAME_0">^1</xliff:g> சிதைந்துள்ளது. \n\n<xliff:g id="NAME_1">^1</xliff:g>ஐப் பயன்படுத்த, முதலில் அதை அமைக்க வேண்டும்."</string>
     <string name="storage_dialog_unsupported" msgid="8274023677580782553">"சாதனம் <xliff:g id="NAME_0">^1</xliff:g>ஐ ஆதரிக்காது. \n\nசாதனத்தில் <xliff:g id="NAME_1">^1</xliff:g>ஐப் பயன்படுத்த, முதலில் அதை அமைக்க வேண்டும்."</string>
-    <string name="storage_internal_format_details" msgid="2780806013122012384">"மீட்டமைவுக்குப் பிறகு, <xliff:g id="NAME_0">^1</xliff:g>ஐ மற்ற சாதனங்களில் பயன்படுத்தலாம். \n\n<xliff:g id="NAME_1">^1</xliff:g> இல் உள்ள எல்லா தரவும் அழிக்கப்படும். அதனால் முதலில் காப்புப் பிரதி எடுத்துக்கொள்ளவும். \n\n"<b>"படங்கள் &amp; மற்ற மீடியாவைக் காப்புப் பிரதி எடுத்தல்"</b>" \nமீடியா கோப்புகளை சாதனத்தின் மாற்று சேமிப்பகத்திற்கு நகர்த்தவும் அல்லது USB கேபிளைப் பயன்படுத்தி கணினிக்கு மாற்றவும். \n\n"<b>"பயன்பாடுகளின் காப்புப் பிரதி"</b>" \n<xliff:g id="NAME_6">^1</xliff:g> இல் சேமிக்கப்பட்ட எல்லா பயன்பாடுகளும் நிறுவல்நீக்கப்பட்டு அவற்றின் தரவு அழிக்கப்படும். இந்தப் பயன்பாடுகளை வைத்திருக்க, சாதனத்தின் மாற்று சேமிப்பகத்திற்கு அவற்றை நகர்த்தவும்."</string>
-    <string name="storage_internal_unmount_details" msgid="4667435317528624039"><b>"<xliff:g id="NAME_0">^1</xliff:g>ஐ வெளியேற்றும்போது, அதில் சேமித்த பயன்பாடுகள் வேலை செய்யாததுடன், அதில் சேமித்திருந்த மீடியா கோப்புகள் மீண்டும் அதைச் செருகும் வரை கிடைக்காது."</b>" \n\nஇந்தச் சாதனத்தில் மட்டும் வேலை செய்யுமாறு <xliff:g id="NAME_1">^1</xliff:g> மீட்டமைக்கப்பட்டதால் பிற சாதனங்களில் அது வேலை செய்யாது."</string>
-    <string name="storage_internal_forget_details" msgid="5655856574682184453">"<xliff:g id="NAME">^1</xliff:g> இல் உள்ள பயன்பாடுகள், படங்கள் அல்லது தரவைப் பயன்படுத்த, அதை மீண்டும் செருகவும். \n\nசாதனம் இல்லையெனில், இந்தச் சேமிப்பகத்தை அகற்றிவிடவும். \n\nஅவ்வாறு அகற்றினால், அதிலுள்ள தரவு இனி கிடைக்காது. \n\nபயன்பாடுகளை மீண்டும் நிறுவிக்கொள்ளலாம், எனினும் அவற்றின் தரவு மீண்டும் கிடைக்காது."</string>
+    <string name="storage_internal_format_details" msgid="2780806013122012384">"மீட்டமைவுக்குப் பிறகு, <xliff:g id="NAME_0">^1</xliff:g>ஐ மற்ற சாதனங்களில் பயன்படுத்தலாம். \n\n<xliff:g id="NAME_1">^1</xliff:g> இல் உள்ள எல்லா தரவும் அழிக்கப்படும். அதனால் முதலில் காப்புப் பிரதி எடுத்துக்கொள்ளவும். \n\n"<b>"படங்கள் &amp; மற்ற மீடியாவைக் காப்புப் பிரதி எடுத்தல்"</b>" \nமீடியா கோப்புகளை சாதனத்தின் மாற்று சேமிப்பகத்திற்கு நகர்த்தவும் அல்லது USB கேபிளைப் பயன்படுத்தி கணினிக்கு மாற்றவும். \n\n"<b>"ஆப்ஸின் காப்புப் பிரதி"</b>" \n<xliff:g id="NAME_6">^1</xliff:g> இல் சேமிக்கப்பட்ட எல்லா பயன்பாடுகளும் நிறுவல்நீக்கப்பட்டு அவற்றின் தரவு அழிக்கப்படும். இந்த ஆப்ஸை வைத்திருக்க, சாதனத்தின் மாற்று சேமிப்பகத்திற்கு அவற்றை நகர்த்தவும்."</string>
+    <string name="storage_internal_unmount_details" msgid="4667435317528624039"><b>"<xliff:g id="NAME_0">^1</xliff:g>ஐ வெளியேற்றும்போது, அதில் சேமித்த ஆப்ஸ் வேலை செய்யாததுடன், அதில் சேமித்திருந்த மீடியா கோப்புகள் மீண்டும் அதைச் செருகும் வரை கிடைக்காது."</b>" \n\nஇந்தச் சாதனத்தில் மட்டும் வேலை செய்யுமாறு <xliff:g id="NAME_1">^1</xliff:g> மீட்டமைக்கப்பட்டதால் பிற சாதனங்களில் அது வேலை செய்யாது."</string>
+    <string name="storage_internal_forget_details" msgid="5655856574682184453">"<xliff:g id="NAME">^1</xliff:g> இல் உள்ள ஆப்ஸ், படங்கள் அல்லது தரவைப் பயன்படுத்த, அதை மீண்டும் செருகவும். \n\nசாதனம் இல்லையெனில், இந்தச் சேமிப்பகத்தை அகற்றிவிடவும். \n\nஅவ்வாறு அகற்றினால், அதிலுள்ள தரவு இனி கிடைக்காது. \n\nஆப்ஸை மீண்டும் நிறுவிக்கொள்ளலாம், எனினும் அவற்றின் தரவு மீண்டும் கிடைக்காது."</string>
     <string name="storage_internal_forget_confirm_title" msgid="331032276130605241">"<xliff:g id="NAME">^1</xliff:g>ஐ அகற்றவா?"</string>
-    <string name="storage_internal_forget_confirm" msgid="3052483375203727176">"<xliff:g id="NAME">^1</xliff:g> இல் சேமிக்கப்பட்ட அனைத்து பயன்பாடுகள், படங்கள் மற்றும் தரவு ஆகியவற்றை நிரந்தரமாக இழப்பீர்கள்."</string>
+    <string name="storage_internal_forget_confirm" msgid="3052483375203727176">"<xliff:g id="NAME">^1</xliff:g> இல் சேமிக்கப்பட்ட அனைத்து ஆப்ஸ், படங்கள் மற்றும் தரவு ஆகியவற்றை நிரந்தரமாக இழப்பீர்கள்."</string>
     <string name="storage_detail_apps" msgid="8154648512504196820">"ஆப்ஸ்"</string>
     <string name="storage_detail_images" msgid="6996202225684468964">"படங்கள்"</string>
     <string name="storage_detail_videos" msgid="6030983354721080849">"வீடியோக்கள்"</string>
@@ -1452,7 +1452,7 @@
     <string name="storage_detail_explore" msgid="8206900269596580264">"<xliff:g id="NAME">^1</xliff:g> இல் உலாவு"</string>
     <string name="storage_detail_dialog_other" msgid="5073511663616043370">"ஆப்ஸ் சேமித்துள்ள பகிர்ந்த ஃபைல்கள், இண்டர்நெட் அல்லது புளூடூத் மூலம் பதிவிறக்கிய ஃபைல்கள், Android ஃபைல்கள் போன்றவை மற்ற ஃபைல்களில் அடங்கும். \n\n<xliff:g id="NAME">^1</xliff:g> இல் தெரியக்கூடிய உள்ளடக்கத்தைப் பார்க்க, ’உலாவு’ என்பதைத் தட்டவும்."</string>
     <string name="storage_detail_dialog_system" msgid="1472572861360014226">"Android <xliff:g id="VERSION">%s</xliff:g> பதிப்பை இயக்குவதற்குப் பயன்படுத்தப்படும் ஃபைல்களும் இயங்குதளத்தில் அடங்கும்"</string>
-    <string name="storage_detail_dialog_user" msgid="1663117417635010371">"<xliff:g id="USER_0">^1</xliff:g> சேமிப்பகத்தின் <xliff:g id="SIZE">^2</xliff:g> அளவைப் பயன்படுத்தி, படங்கள், இசை, பயன்பாடுகள் அல்லது பிற தரவைச் சேமித்திருக்கலாம். \n\nவிவரங்களைப் பார்க்க, <xliff:g id="USER_1">^1</xliff:g>க்கு மாறவும்."</string>
+    <string name="storage_detail_dialog_user" msgid="1663117417635010371">"<xliff:g id="USER_0">^1</xliff:g> சேமிப்பகத்தின் <xliff:g id="SIZE">^2</xliff:g> அளவைப் பயன்படுத்தி, படங்கள், இசை, ஆப்ஸ் அல்லது பிற தரவைச் சேமித்திருக்கலாம். \n\nவிவரங்களைப் பார்க்க, <xliff:g id="USER_1">^1</xliff:g>க்கு மாறவும்."</string>
     <string name="storage_wizard_init_title" msgid="3407283236421089014">"<xliff:g id="NAME">^1</xliff:g>ஐ அமைக்கவும்"</string>
     <string name="storage_wizard_init_external_title" msgid="6853250619674645478">"கையடக்க சேமிப்பகமாகப் பயன்படுத்தவும்"</string>
     <string name="storage_wizard_init_external_summary" msgid="6993815290050489327">"சாதனங்களுக்கிடையே படங்களையும் பிற மீடியாவையும் நகர்த்தலாம்."</string>
@@ -1466,14 +1466,14 @@
     <string name="storage_wizard_format_progress_title" msgid="6905902731208646436">"<xliff:g id="NAME">^1</xliff:g> வடிவமைக்கப்படுகிறது"</string>
     <string name="storage_wizard_format_progress_body" msgid="5346709539457190419">"<xliff:g id="NAME">^1</xliff:g> ஃபார்மேட் செய்யப்படும்போது அகற்ற வேண்டாம்."</string>
     <string name="storage_wizard_migrate_title" msgid="7440473364104826496">"புதிய சேமிப்பகத்திற்கு நகர்த்துக"</string>
-    <string name="storage_wizard_migrate_body" msgid="4959356431201831339">"படங்கள், கோப்புகள் மற்றும் சில பயன்பாடுகளை புதிய <xliff:g id="NAME">^1</xliff:g>க்கு நகர்த்தலாம். \n\nநகர்த்துவதற்கு <xliff:g id="TIME">^2</xliff:g> ஆகும், மேலும் அகச் சேமிப்பகத்தில் <xliff:g id="SIZE">^3</xliff:g> இடத்தைக் காலிசெய்யும். இந்தச் செயல்பாட்டின் போது, சில பயன்பாடுகள் இயங்காது."</string>
+    <string name="storage_wizard_migrate_body" msgid="4959356431201831339">"படங்கள், கோப்புகள் மற்றும் சில ஆப்ஸை புதிய <xliff:g id="NAME">^1</xliff:g>க்கு நகர்த்தலாம். \n\nநகர்த்துவதற்கு <xliff:g id="TIME">^2</xliff:g> ஆகும், மேலும் அகச் சேமிப்பகத்தில் <xliff:g id="SIZE">^3</xliff:g> இடத்தைக் காலிசெய்யும். இந்தச் செயல்பாட்டின் போது, சில ஆப்ஸ் இயங்காது."</string>
     <string name="storage_wizard_migrate_now" msgid="9004605853000689024">"இப்போதே நகர்த்தவும்"</string>
     <string name="storage_wizard_migrate_later" msgid="5303070653970922924">"பிறகு நகர்த்தவும்"</string>
     <string name="storage_wizard_migrate_confirm_title" msgid="5768497751644935313">"தரவை நகர்த்தவும்"</string>
     <string name="storage_wizard_migrate_confirm_body" msgid="7297723787416643076"><b>"நகர்த்துவதற்கு <xliff:g id="TIME">^1</xliff:g> ஆகலாம். இதனால் <xliff:g id="NAME">^3</xliff:g> இல் <xliff:g id="SIZE">^2</xliff:g> அளவு சேமிப்பகம் கிடைக்கும்."</b></string>
     <string name="storage_wizard_migrate_confirm_next" msgid="6539804689462991087">"நகர்த்து"</string>
     <string name="storage_wizard_migrate_progress_title" msgid="7542196688665109833">"தரவு நகர்த்தப்படுகிறது…"</string>
-    <string name="storage_wizard_migrate_details" msgid="4269509141637554985">"நகர்த்தும்போது: \n• <xliff:g id="NAME">^1</xliff:g>ஐ அகற்ற வேண்டாம். \n• சில பயன்பாடுகள் சரியாக வேலை செய்யாது. \n• சாதனம் சார்ஜ் செய்யப்பட்டிருக்க வேண்டும்."</string>
+    <string name="storage_wizard_migrate_details" msgid="4269509141637554985">"நகர்த்தும்போது: \n• <xliff:g id="NAME">^1</xliff:g>ஐ அகற்ற வேண்டாம். \n• சில ஆப்ஸ் சரியாக வேலை செய்யாது. \n• சாதனம் சார்ஜ் செய்யப்பட்டிருக்க வேண்டும்."</string>
     <string name="storage_wizard_ready_title" msgid="4905921139763520341">"<xliff:g id="NAME">^1</xliff:g> பயன்படுத்துவதற்குத் தயார்"</string>
     <string name="storage_wizard_ready_external_body" msgid="8785407468656286236">"<xliff:g id="NAME">^1</xliff:g> படங்களையும் பிற மீடியாவையும் பயன்படுத்த, தயாராக உள்ளது."</string>
     <string name="storage_wizard_ready_internal_body" msgid="2258287496678469217">"புதிய <xliff:g id="NAME">^1</xliff:g> வேலை செய்கிறது. \n\nசாதனத்திற்கு படங்கள், கோப்புகள், ஆப்ஸ் டேட்டாவை நகர்த்த, அமைப்புகள் &gt; சேமிப்பகம் என்பதற்குச் செல்லவும்."</string>
@@ -1483,7 +1483,7 @@
     <string name="storage_wizard_move_progress_title" msgid="5250929161803336592">"<xliff:g id="APP">^1</xliff:g> நகர்த்தப்படுகிறது…"</string>
     <string name="storage_wizard_move_progress_body" msgid="1713792142250410169">"நகர்த்தும்போது <xliff:g id="NAME">^1</xliff:g>ஐ அகற்ற வேண்டாம். \n\nநகர்த்தி முடிக்கும்வரை, சாதனத்தில் <xliff:g id="APP">^2</xliff:g> ஆப்ஸ் கிடைக்காது."</string>
     <string name="storage_wizard_move_progress_cancel" msgid="9047521329704060401">"நகர்த்துவதை ரத்துசெய்"</string>
-    <string name="storage_wizard_slow_body" msgid="2307974936036261069">"இந்த <xliff:g id="NAME_0">^1</xliff:g> வேகம் குறைவானது போல் தெரிகிறது. \n\nநீங்கள் தொடரலாம், இந்த இடத்திற்கு நகர்த்தப்பட்ட பயன்பாடுகள் தடங்கல்களுடன் இயங்கலாம் மற்றும் தரவைப் பரிமாற்றுவதற்கு அதிக நேரம் எடுக்கலாம். \n\nசிறந்த செயல்திறனுக்கு, வேகமான <xliff:g id="NAME_1">^1</xliff:g>ஐப் பயன்படுத்தவும்."</string>
+    <string name="storage_wizard_slow_body" msgid="2307974936036261069">"இந்த <xliff:g id="NAME_0">^1</xliff:g> வேகம் குறைவானது போல் தெரிகிறது. \n\nநீங்கள் தொடரலாம், இந்த இடத்திற்கு நகர்த்தப்பட்ட ஆப்ஸ் தடங்கல்களுடன் இயங்கலாம் மற்றும் தரவைப் பரிமாற்றுவதற்கு அதிக நேரம் எடுக்கலாம். \n\nசிறந்த செயல்திறனுக்கு, வேகமான <xliff:g id="NAME_1">^1</xliff:g>ஐப் பயன்படுத்தவும்."</string>
     <string name="storage_wizard_init_v2_title" msgid="7408910177547901960">"<xliff:g id="NAME">^1</xliff:g>ஐ எப்படிப் பயன்படுத்துவீர்கள்?"</string>
     <string name="storage_wizard_init_v2_internal_title" product="tablet" msgid="7948795312504302810">"கூடுதல் டேப்லெட் சேமிப்பகம் உபயோகி"</string>
     <string name="storage_wizard_init_v2_internal_summary" product="tablet" msgid="6237770506398410172">"இந்த டேப்லெட்டில் உள்ள ஆப்ஸ், ஃபைல்கள் &amp; மீடியாவிற்கு மட்டும்"</string>
@@ -1660,18 +1660,18 @@
     <string name="location_scanning_bluetooth_always_scanning_description" msgid="3796673798637848690">"புளூடூத் ஆஃப் செய்யப்பட்டிருந்தாலும்கூட, எந்தநேரத்திலும் அருகிலுள்ள சாதனங்களைத் தேட, ஆப்ஸையும் சேவைகளையும் அனுமதிக்கும். உதாரணத்திற்கு, இருப்பிடம் சார்ந்த அம்சங்கள் மற்றும் சேவைகளை மேம்படுத்துவதற்கும் இதைப் பயன்படுத்தலாம்."</string>
     <string name="managed_profile_location_services" msgid="224925483299159541">"பணிக் கணக்கிற்கான இருப்பிடச் சேவைகள்"</string>
     <string name="location_network_based" msgid="1535812159327454835">"வைஃபை &amp; மொபைல் நெட்வொர்க்கின் இருப்பிடம்"</string>
-    <string name="location_neighborhood_level" msgid="8459352741296587916">"உங்கள் இருப்பிடத்தை விரைவாகக் கணிக்கும் வகையில் பயன்பாடுகள், Google இன் இருப்பிடச் சேவையைப் பயன்படுத்தலாம். அநாமதேய இருப்பிடத் தரவு சேகரிக்கப்பட்டு Google க்கு அனுப்பப்படும்."</string>
+    <string name="location_neighborhood_level" msgid="8459352741296587916">"உங்கள் இருப்பிடத்தை விரைவாகக் கணிக்கும் வகையில் ஆப்ஸ், Google இன் இருப்பிடச் சேவையைப் பயன்படுத்தலாம். அநாமதேய இருப்பிடத் தரவு சேகரிக்கப்பட்டு Google க்கு அனுப்பப்படும்."</string>
     <string name="location_neighborhood_level_wifi" msgid="6120133551482003840">"வைஃபை மூலம் இருப்பிடம் கண்டறியப்பட்டது"</string>
     <string name="location_gps" msgid="688049341158297763">"GPS சாட்டிலைட்டுகள்"</string>
-    <string name="location_street_level" product="tablet" msgid="4459804798444296650">"உங்கள் இருப்பிடத்தைக் குறிப்பதற்காக, பயன்பாடுகள் உங்கள் டேப்லெட்டில் GPS ஐப் பயன்படுத்தும்"</string>
-    <string name="location_street_level" product="default" msgid="7407688345675450051">"உங்கள் இருப்பிடத்தைக் குறிப்பதற்காக, பயன்பாடுகள் உங்கள் தொலைபேசியில் GPS ஐப் பயன்படுத்தும்"</string>
+    <string name="location_street_level" product="tablet" msgid="4459804798444296650">"உங்கள் இருப்பிடத்தைக் குறிப்பதற்காக, ஆப்ஸ் உங்கள் டேப்லெட்டில் GPS ஐப் பயன்படுத்தும்"</string>
+    <string name="location_street_level" product="default" msgid="7407688345675450051">"உங்கள் இருப்பிடத்தைக் குறிப்பதற்காக, ஆப்ஸ் உங்கள் தொலைபேசியில் GPS ஐப் பயன்படுத்தும்"</string>
     <string name="assisted_gps" msgid="5411780261117055175">"துணை GPS ஐப் பயன்படுத்து"</string>
     <string name="assisted_gps_enabled" msgid="2561022181775725369">"GPS க்கு உதவ, சேவையகத்தைப் பயன்படுத்து (நெட்வொர்க் பயன்பாட்டைக் குறைக்க, தேர்வுநீக்கு)"</string>
     <string name="assisted_gps_disabled" msgid="6448758788217415937">"GPS க்கு உதவ, சேவையகத்தைப் பயன்படுத்து (GPS செயல்திறனை மேம்படுத்த தேர்வுநீக்கு)"</string>
     <string name="use_location_title" msgid="7724788634359496634">"இருப்பிடம் &amp; Google தேடல்"</string>
     <string name="use_location_summary" msgid="7396716606067400283">"தேடல் முடிவுகள் மற்றும் பிற சேவைகளை மேம்படுத்துவதற்காக Google உங்கள் இருப்பிடத்தைப் பயன்படுத்தும்"</string>
     <string name="location_access_title" msgid="8587974819606800029">"எனது இருப்பிடத்திற்கான அணுகல்"</string>
-    <string name="location_access_summary" msgid="6919495149026354355">"உங்கள் அனுமதியைக் கேட்ட பயன்பாடுகள் உங்களின் இருப்பிடத் தகவலைப் பயன்படுத்தும்"</string>
+    <string name="location_access_summary" msgid="6919495149026354355">"உங்கள் அனுமதியைக் கேட்ட ஆப்ஸ் உங்களின் இருப்பிடத் தகவலைப் பயன்படுத்தும்"</string>
     <string name="location_sources_heading" msgid="8526658357120282741">"இருப்பிட ஆதாரங்கள்"</string>
     <string name="about_settings" product="tablet" msgid="4869626690708456341">"டேப்லெட் அறிமுகம்"</string>
     <string name="about_settings" product="default" msgid="6019547763377294261">"மொபைல் விவரம்"</string>
@@ -1777,17 +1777,17 @@
     <string name="lock_settings_profile_unification_dialog_confirm" msgid="888942752619181804">"ஒரே பூட்டைப் பயன்படுத்து"</string>
     <string name="lock_settings_profile_unification_dialog_uncompliant_confirm" msgid="8046452284593057185">"ஒரே பூட்டைப் பயன்படுத்து"</string>
     <string name="lock_settings_profile_unified_summary" msgid="5347244550751740962">"சாதனத் திரைப் பூட்டைப் போன்றது"</string>
-    <string name="manageapplications_settings_title" msgid="6876782217962262376">"பயன்பாடுகளை நிர்வகி"</string>
-    <string name="manageapplications_settings_summary" msgid="5092964799412478962">"நிறுவப்பட்ட பயன்பாடுகளை நிர்வகி மற்றும் அகற்று"</string>
+    <string name="manageapplications_settings_title" msgid="6876782217962262376">"ஆப்ஸை நிர்வகி"</string>
+    <string name="manageapplications_settings_summary" msgid="5092964799412478962">"நிறுவப்பட்ட ஆப்ஸை நிர்வகி மற்றும் அகற்று"</string>
     <string name="applications_settings" msgid="368331725658793179">"ஆப்ஸ் தகவல்"</string>
     <string name="applications_settings_summary" msgid="8888258399577123906">"அமைப்புகளை நிர்வகிக்கும், விரைவு துவக்கத்திற்கான குறுக்குவழிகளை அமைக்கும்"</string>
     <string name="applications_settings_header" msgid="3766501606045211098">"ஆப்ஸ் அமைப்பு"</string>
     <string name="install_applications" msgid="7745902974984889179">"அறியப்படாத மூலங்கள்"</string>
-    <string name="install_applications_title" msgid="8164828577588659496">"எல்லா பயன்பாட்டு ஆதாரங்களையும் அனுமதி"</string>
+    <string name="install_applications_title" msgid="8164828577588659496">"எல்லா ஆப்ஸ் ஆதாரங்களையும் அனுமதி"</string>
     <string name="recent_app_category_title" msgid="7688788038277126727">"சமீபத்தில் திறந்தவை"</string>
     <string name="see_all_apps_title" msgid="6435061912110347474">"<xliff:g id="COUNT">%1$d</xliff:g> பயன்பாடுகளையும் காட்டு"</string>
-    <string name="install_all_warning" product="tablet" msgid="4580699862358542727">"அறியப்படாத பயன்பாடுகளால் உங்கள் டேப்லெட்டும் தனிப்பட்ட தரவும் அதிகம் பாதிப்பிற்கு உள்ளாகும். இந்த மூலத்திலிருந்து பயன்பாடுகளை நிறுவுவதால், அவற்றைப் பயன்படுத்தும் போது உங்கள் டேப்லெட்டுக்கு ஏதேனும் சேதம் ஏற்பட்டாலோ அல்லது தரவை இழந்தாலோ, அதற்கு நீங்கள்தான் பொறுப்பாவீர்கள் என்பதை ஏற்கிறீர்கள்."</string>
-    <string name="install_all_warning" product="default" msgid="7445839116997296358">"அறியப்படாத பயன்பாடுககளால் உங்கள் மொபைலும் தனிப்பட்ட தரவும் அதிகம் பாதிப்பிற்கு உள்ளாகும். இந்த மூலத்திலிருந்து பயன்பாடுகளை நிறுவுவதால், அவற்றைப் பயன்படுத்தும் போது உங்கள் மொபைலுக்கு ஏதேனும் சேதம் ஏற்பட்டாலோ அல்லது தரவை இழந்தாலோ, அதற்கு நீங்கள்தான் பொறுப்பாவீர்கள் என்பதை ஏற்கிறீர்கள்."</string>
+    <string name="install_all_warning" product="tablet" msgid="4580699862358542727">"அறியப்படாத பயன்பாடுகளால் உங்கள் டேப்லெட்டும் தனிப்பட்ட தரவும் அதிகம் பாதிப்பிற்கு உள்ளாகும். இந்த மூலத்திலிருந்து ஆப்ஸை நிறுவுவதால், அவற்றைப் பயன்படுத்தும் போது உங்கள் டேப்லெட்டுக்கு ஏதேனும் சேதம் ஏற்பட்டாலோ அல்லது தரவை இழந்தாலோ, அதற்கு நீங்கள்தான் பொறுப்பாவீர்கள் என்பதை ஏற்கிறீர்கள்."</string>
+    <string name="install_all_warning" product="default" msgid="7445839116997296358">"அறியப்படாத பயன்பாடுககளால் உங்கள் மொபைலும் தனிப்பட்ட தரவும் அதிகம் பாதிப்பிற்கு உள்ளாகும். இந்த மூலத்திலிருந்து ஆப்ஸை நிறுவுவதால், அவற்றைப் பயன்படுத்தும் போது உங்கள் மொபைலுக்கு ஏதேனும் சேதம் ஏற்பட்டாலோ அல்லது தரவை இழந்தாலோ, அதற்கு நீங்கள்தான் பொறுப்பாவீர்கள் என்பதை ஏற்கிறீர்கள்."</string>
     <string name="install_all_warning" product="device" msgid="9141585291103603515">"அறியப்படாத ஆப்ஸால் உங்கள் சாதனம் மற்றும் தனிப்பட்ட தரவு மிக எளிதாகப் பாதிப்புக்குள்ளாகும். இந்த மூலத்திலிருந்து ஆப்ஸை நிறுவி, பயன்படுத்தும்போது, உங்கள் சாதனத்திற்கு ஏதேனும் சேதம் ஏற்பட்டாலோ தரவை இழந்தாலோ, அதற்கு நீங்கள்தான் பொறுப்பாவீர்கள் என்பதை ஏற்கிறீர்கள்."</string>
     <string name="advanced_settings" msgid="6282069364060968122">"மேம்பட்ட அமைப்பு"</string>
     <string name="advanced_settings_summary" msgid="5912237062506771716">"மேலும் அமைப்பு விருப்பங்களை இயக்கு"</string>
@@ -1843,7 +1843,7 @@
     <string name="filter" msgid="2426943916212457962">"வடிகட்டு"</string>
     <string name="filter_dlg_title" msgid="115313222190512670">"வடிப்பான் விருப்பங்களைத் தேர்வுசெய்யவும்"</string>
     <string name="filter_apps_all" msgid="3938077534861382701">"எல்லாப் பயன்பாடுகளும்"</string>
-    <string name="filter_apps_disabled" msgid="5394488790555678117">"முடக்கிய பயன்பாடுகள்"</string>
+    <string name="filter_apps_disabled" msgid="5394488790555678117">"முடக்கிய ஆப்ஸ்"</string>
     <string name="filter_apps_third_party" msgid="3985794876813232322">"பதிவிறக்கப்பட்டது"</string>
     <string name="filter_apps_running" msgid="6852975378502426359">"இயங்குகிறது"</string>
     <string name="filter_apps_onsdcard" product="nosdcard" msgid="3501701148760911442">"USB சேமிப்பகம்"</string>
@@ -1889,13 +1889,13 @@
     <string name="instant_app_details_summary" msgid="6384264315914966114">"<xliff:g id="APP_STORE">%1$s</xliff:g> பற்றிய கூடுதல் தகவல்"</string>
     <string name="app_ops_running" msgid="6378418969742957805">"இயங்குகிறது"</string>
     <string name="app_ops_never_used" msgid="8305262378162525813">"(ஒருபோதும் பயன்படுத்தவில்லை)"</string>
-    <string name="no_default_apps" msgid="4519038578011412532">"இயல்பு பயன்பாடுகள் இல்லை."</string>
+    <string name="no_default_apps" msgid="4519038578011412532">"இயல்பு ஆப்ஸ் இல்லை."</string>
     <string name="storageuse_settings_title" msgid="3390798597982116048">"சேமிப்பிடத்தின் பயன்பாடு"</string>
-    <string name="storageuse_settings_summary" msgid="3013328092465903687">"பயன்பாடுகள் பயன்படுத்திய சேமிப்பிடத்தைக் காட்டு"</string>
+    <string name="storageuse_settings_summary" msgid="3013328092465903687">"ஆப்ஸ் பயன்படுத்திய சேமிப்பிடத்தைக் காட்டு"</string>
     <string name="service_restarting" msgid="1190995225643385568">"மீண்டும் தொடங்குகிறது"</string>
     <string name="cached" msgid="4019482949725020855">"தற்காலிகச் சேமிப்பின் பின்புலச் செயல்முறை"</string>
     <string name="no_running_services" msgid="618823924559385173">"எதுவும் இயக்கத்தில் இல்லை."</string>
-    <string name="service_started_by_app" msgid="6906027340122215035">"பயன்பாட்டால் தொடங்கப்பட்டது."</string>
+    <string name="service_started_by_app" msgid="6906027340122215035">"ஆப்ஸால் தொடங்கப்பட்டது."</string>
     <!-- no translation found for service_client_name (7083258170099389413) -->
     <skip />
     <string name="service_background_processes" msgid="2678557055039755445">"<xliff:g id="MEMORY">%1$s</xliff:g> மீதமுள்ளது"</string>
@@ -1923,9 +1923,9 @@
     <string name="runningservicedetails_processes_title" msgid="5496507383850423763">"செயல்கள்"</string>
     <string name="service_stop" msgid="8812777462903125191">"நிறுத்து"</string>
     <string name="service_manage" msgid="7045214643721276662">"அமைப்பு"</string>
-    <string name="service_stop_description" msgid="4184180745938573707">"இந்த ஆப்ஸ் ஏற்கனவே இதன் பயன்பாட்டால் தொடங்கப்பட்டது. இதை நிறுத்துவதால் ஆப்ஸ் தோல்வியடையலாம்."</string>
+    <string name="service_stop_description" msgid="4184180745938573707">"இந்த ஆப்ஸ் ஏற்கனவே இதன் ஆப்ஸால் தொடங்கப்பட்டது. இதை நிறுத்துவதால் ஆப்ஸ் தோல்வியடையலாம்."</string>
     <string name="heavy_weight_stop_description" msgid="7444148811046611463">"பயன்பாட்டைப் பாதுகாப்பாக நிறுத்த முடியாது. இதை நிறுத்தினால், நீங்கள் நடப்பு செயல்கள் சிலவற்றை இழக்க நேரிடலாம்."</string>
-    <string name="background_process_stop_description" msgid="8971810208873038109">"இது பழைய பயன்பாட்டு செயல்முறையாகும், மீண்டும் தேவைப்பட்டால் வழங்குவதற்காக இன்னமும் தொடர்ந்து செயல்படுத்தப்படுகிறது. பொதுவாக அதை நிறுத்துவதற்கு எந்தக் காரணமும் இல்லை."</string>
+    <string name="background_process_stop_description" msgid="8971810208873038109">"இது பழைய ஆப்ஸ் செயல்முறையாகும், மீண்டும் தேவைப்பட்டால் வழங்குவதற்காக இன்னமும் தொடர்ந்து செயல்படுத்தப்படுகிறது. பொதுவாக அதை நிறுத்துவதற்கு எந்தக் காரணமும் இல்லை."</string>
     <string name="service_manage_description" msgid="8058123524402833082">"<xliff:g id="CLIENT_NAME">%1$s</xliff:g>: தற்போது பயன்பாட்டில் உள்ளது. அதைக் கட்டுப்படுத்த, அமைப்புகளைத் தட்டவும்."</string>
     <string name="main_running_process_description" msgid="7733268956566861797">"முக்கிய செயல்முறை பயன்பாட்டில் உள்ளது."</string>
     <string name="process_service_in_use_description" msgid="2253782391122637651">"<xliff:g id="COMP_NAME">%1$s</xliff:g> இன் சேவை பயன்பாட்டில் உள்ளது."</string>
@@ -2060,7 +2060,7 @@
     <string name="accessibility_shortcut_description" msgid="1427049334225166395">"ஷார்ட்கட் இயக்கப்பட்டிருக்கும் போது, அணுகல்தன்மை அம்சத்தைத் தொடங்க, 3 வினாடிகளுக்கு இரண்டு ஒலியளவு விசைகளையும் அழுத்தவும்."</string>
     <string name="accessibility_toggle_high_text_contrast_preference_title" msgid="5652244684961877255">"உரையின் உயர் மாறுபாடு"</string>
     <string name="accessibility_toggle_screen_magnification_auto_update_preference_title" msgid="2466317284195934003">"திரை உருப்பெருக்கத்தைத் தானாகப் புதுப்பி"</string>
-    <string name="accessibility_toggle_screen_magnification_auto_update_preference_summary" msgid="6625473745911276917">"பயன்பாட்டு மாற்றங்களில் திரை உருப்பெருக்கத்தைப் புதுப்பிக்கவும்"</string>
+    <string name="accessibility_toggle_screen_magnification_auto_update_preference_summary" msgid="6625473745911276917">"ஆப்ஸ் மாற்றங்களில் திரை உருப்பெருக்கத்தைப் புதுப்பிக்கவும்"</string>
     <string name="accessibility_power_button_ends_call_prerefence_title" msgid="6172987104538172869">"பவர் பட்டன் அழைப்பை நிறுத்தும்"</string>
     <string name="accessibility_toggle_large_pointer_icon_title" msgid="9127905775116570565">"பெரிய மவுஸ் பாயிண்டர்"</string>
     <string name="accessibility_disable_animations" msgid="8378441317115710009">"அனிமேஷன்களை அகற்று"</string>
@@ -2405,7 +2405,7 @@
     <string name="battery_desc_bluetooth" msgid="3468061900485447679">"புளூடூத்தால் பயன்படுத்தப்பட்ட பேட்டரி அளவு"</string>
     <string name="battery_sugg_bluetooth_basic" msgid="6353294067057749310">"புளூடூத் ஐப் பயன்படுத்தாதபோது அதை முடக்கவும்"</string>
     <string name="battery_sugg_bluetooth_headset" msgid="2421931037149315202">"வேறு புளூடூத் சாதனத்துடன் இணைக்க முயற்சிக்கவும்"</string>
-    <string name="battery_desc_apps" msgid="6826726880149226823">"பயன்பாட்டால் பயன்படுத்தப்பட்ட பேட்டரியின் அளவு"</string>
+    <string name="battery_desc_apps" msgid="6826726880149226823">"ஆப்ஸால் பயன்படுத்தப்பட்ட பேட்டரியின் அளவு"</string>
     <string name="battery_sugg_apps_info" msgid="9175761965559743977">"ஆப்ஸை நிறுத்தவும் அல்லது நிறுவல் நீக்கவும்"</string>
     <string name="battery_sugg_apps_gps" msgid="489694612870772770">"பேட்டரி சேமிப்பு முறையைத் தேர்ந்தெடுக்கவும்"</string>
     <string name="battery_sugg_apps_settings" msgid="20465932930350295">"பேட்டரி அளவின் பயன்பாட்டைக் குறைப்பதற்கான அமைப்புகளை ஆப்ஸ் வழங்கலாம்"</string>
@@ -2563,7 +2563,7 @@
     <string name="uninstall_device_admin" msgid="9017499299961719830">"ஆப்ஸை நிறுவல் நீக்கு"</string>
     <string name="remove_and_uninstall_device_admin" msgid="5607703579731496253">"செயலற்றதாக்கி, நிறுவல் நீக்கு"</string>
     <string name="select_device_admin_msg" msgid="4173769638399075387">"சாதனநிர்வாகி ஆப்ஸ்"</string>
-    <string name="no_device_admins" msgid="4129231900385977460">"சாதன நிர்வாகிப் பயன்பாடுகள் எதுவுமில்லை"</string>
+    <string name="no_device_admins" msgid="4129231900385977460">"சாதன நிர்வாகிப் ஆப்ஸ் எதுவுமில்லை"</string>
     <string name="personal_device_admin_title" msgid="759440849188565661">"தனிப்பட்டவை"</string>
     <string name="managed_device_admin_title" msgid="8021522755492551726">"பணியிடம்"</string>
     <string name="sms_access_restriction_enabled" msgid="3006320256764718303">"மெசேஜ், அழைப்புப் பதிவு அணுகலைக் கட்டுப்படுத்துதல்"</string>
@@ -2575,7 +2575,7 @@
     <string name="device_admin_warning" msgid="4421817419326480449">"இந்த நிர்வாகி ஆப்ஸைச் செயல்படுத்தினால், பின்வரும் செயல்பாடுகளைச் செய்ய <xliff:g id="APP_NAME">%1$s</xliff:g> ஆப்ஸ் அனுமதிக்கப்படும்:"</string>
     <string name="device_admin_status" msgid="5424944611789040723">"இந்த நிர்வாகி ஆப்ஸ் செயலில் உள்ளது, அத்துடன் பின்வரும் செயல்பாடுகளைச் செய்ய <xliff:g id="APP_NAME">%1$s</xliff:g> ஆப்ஸ் அனுமதிக்கும்:"</string>
     <string name="profile_owner_add_title" msgid="735805919754362791">"சுயவிவர நிர்வாகியை இயக்கவா?"</string>
-    <string name="adding_profile_owner_warning" msgid="1284541194547382194">"தொடர்வதன் மூலம், நிர்வாகி (உங்கள் தனிப்பட்ட தரவுடன் சேர்த்து, தொடர்புடைய தரவையும் சேமிக்கக்கூடும்) உங்கள் பயனரை நிர்வகிக்கும்.\n\nஉங்கள் நிர்வாகியால் அமைப்புகள், அணுகல், பயன்பாடுகள் மற்றும் நெட்வொர்க் செயல்பாடு, உங்கள் சாதனத்தின் இருப்பிடத் தகவல் உட்பட இந்தப் பயனருடன் தொடர்புடைய தரவு ஆகியவற்றை நிர்வகிக்க முடியும்."</string>
+    <string name="adding_profile_owner_warning" msgid="1284541194547382194">"தொடர்வதன் மூலம், நிர்வாகி (உங்கள் தனிப்பட்ட தரவுடன் சேர்த்து, தொடர்புடைய தரவையும் சேமிக்கக்கூடும்) உங்கள் பயனரை நிர்வகிக்கும்.\n\nஉங்கள் நிர்வாகியால் அமைப்புகள், அணுகல், ஆப்ஸ் மற்றும் நெட்வொர்க் செயல்பாடு, உங்கள் சாதனத்தின் இருப்பிடத் தகவல் உட்பட இந்தப் பயனருடன் தொடர்புடைய தரவு ஆகியவற்றை நிர்வகிக்க முடியும்."</string>
     <string name="admin_disabled_other_options" msgid="8097063307730025707">"உங்கள் நிர்வாகி பிற விருப்பங்களை முடக்கியுள்ளார்"</string>
     <string name="admin_more_details" msgid="1719819589822345585">"மேலும் விவரங்கள்"</string>
     <string name="notification_log_title" msgid="4200467765474474753">"அறிவிப்பு பதிவு"</string>
@@ -2598,7 +2598,7 @@
     <string name="background_data" msgid="8275750862371471171">"பின்புல டேட்டா உபயோகம்"</string>
     <string name="background_data_summary" msgid="799640633948841990">"பயன்பாடுகளால் எந்நேரத்திலும் தரவை ஒத்திசைக்கவும், அனுப்பவும் பெறவும் முடியும்"</string>
     <string name="background_data_dialog_title" msgid="8306650658158895976">"பின்புல டேட்டா உபயோகத்தை முடக்கவா?"</string>
-    <string name="background_data_dialog_message" msgid="8126774244911656527">"பின்புல டேட்டா உபயோகத்தை முடக்குவது பேட்டரியின் ஆயுளை நீட்டிக்கிறது மற்றும் தரவு பயன்பாட்டைக் குறைக்கிறது. சில பயன்பாடுகள் தொடர்ந்து பின்புல டேட்டா உபயோகம் இணைப்பைப் பயன்படுத்தலாம்."</string>
+    <string name="background_data_dialog_message" msgid="8126774244911656527">"பின்புல டேட்டா உபயோகத்தை முடக்குவது பேட்டரியின் ஆயுளை நீட்டிக்கிறது மற்றும் தரவு பயன்பாட்டைக் குறைக்கிறது. சில ஆப்ஸ் தொடர்ந்து பின்புல டேட்டா உபயோகம் இணைப்பைப் பயன்படுத்தலாம்."</string>
     <string name="sync_automatically" msgid="5746117156896468099">"ஆப்ஸின் டேட்டாவைத் தானாக ஒத்திசை"</string>
     <string name="sync_enabled" msgid="535172627223336983">"ஒத்திசைவு முடக்கத்தில்"</string>
     <string name="sync_disabled" msgid="713721807204805062">"ஒத்திசைவு முடக்கத்தில்"</string>
@@ -2615,7 +2615,7 @@
     <string name="sync_calendar" msgid="6573708019827519372">"கேலெண்டர்"</string>
     <string name="sync_contacts" msgid="5687434785723746534">"தொடர்புகள்"</string>
     <string name="sync_plug" msgid="6703804441408427257"><font fgcolor="#ffffffff">"Google ஒத்திசைவுக்கு வரவேற்கிறோம்!"</font>" \nநீங்கள் எங்கிருந்தாலும் உங்கள் தொடர்புகள், சந்திப்புகள் மற்றும் பலவற்றுக்கான அணுகலை அனுமதிப்பதற்காக Google தரவை ஒத்திசைக்கிறது."</string>
-    <string name="header_application_sync_settings" msgid="4581847153669774489">"பயன்பாட்டு ஒத்திசைவு அமைப்பு"</string>
+    <string name="header_application_sync_settings" msgid="4581847153669774489">"ஆப்ஸ் ஒத்திசைவு அமைப்பு"</string>
     <string name="header_data_and_synchronization" msgid="400831816068697286">"தரவு &amp; ஒத்திசைத்தல்"</string>
     <string name="preference_change_password_title" msgid="7243527448378789274">"கடவுச்சொல்லை மாற்று"</string>
     <string name="header_account_settings" msgid="8586173964125512219">"கணக்கு அமைப்பு"</string>
@@ -2715,8 +2715,8 @@
     <string name="data_usage_restrict_background_multiuser" product="default" msgid="6846901756455789858">"பின்னணி மொபைல் டேட்டாவைக் கட்டுப்படுத்தினால், வைஃபையுடன் இணைக்கும் வரை சில பயன்பாடுகளும் சேவைகளும் வேலை செய்யாது.\n\nஇதனால் இந்த மொபைலைப் பயன்படுத்தும் எல்லாப் பயனர்களும் பாதிக்கப்படுவார்கள்."</string>
     <string name="data_usage_sweep_warning" msgid="4646401408698778092"><font size="18">"<xliff:g id="NUMBER">^1</xliff:g>"</font>" "<font size="9">"<xliff:g id="UNIT">^2</xliff:g>"</font>\n<font size="12">"எச்சரிக்கை"</font></string>
     <string name="data_usage_sweep_limit" msgid="6101105504557548269"><font size="18">"<xliff:g id="NUMBER">^1</xliff:g>"</font>" "<font size="9">"<xliff:g id="UNIT">^2</xliff:g>"</font>\n<font size="12">"வரம்பு"</font></string>
-    <string name="data_usage_uninstalled_apps" msgid="4152786786140875769">"அகற்றப்பட்ட பயன்பாடுகள்"</string>
-    <string name="data_usage_uninstalled_apps_users" msgid="61092462416505112">"அகற்றப்பட்ட பயன்பாடுகள் மற்றும் பயனர்கள்"</string>
+    <string name="data_usage_uninstalled_apps" msgid="4152786786140875769">"அகற்றப்பட்ட ஆப்ஸ்"</string>
+    <string name="data_usage_uninstalled_apps_users" msgid="61092462416505112">"அகற்றப்பட்ட ஆப்ஸ் மற்றும் பயனர்கள்"</string>
     <string name="data_usage_received_sent" msgid="5532467049487334656">"<xliff:g id="RECEIVED">%1$s</xliff:g> பெறப்பட்டது, <xliff:g id="SENT">%2$s</xliff:g> அனுப்பப்பட்டது"</string>
     <string name="data_usage_total_during_range" msgid="7307562900020512747">"<xliff:g id="RANGE">%2$s</xliff:g>: <xliff:g id="TOTAL">%1$s</xliff:g> பயன்படுத்தப்பட்டது."</string>
     <string name="data_usage_total_during_range_mobile" product="tablet" msgid="366118962920532455">"<xliff:g id="RANGE">%2$s</xliff:g>: உங்கள் டேப்லெட் அளவீட்டின் படி <xliff:g id="TOTAL">%1$s</xliff:g> பயன்படுத்தப்பட்டுள்ளது. உங்கள் மொபைல் நிறுவனத்தின் டேட்டா உபயோகத்தின் கணக்கு மாறுபடலாம்."</string>
@@ -2828,14 +2828,14 @@
       <item quantity="one">சான்றிதழை நம்பு அல்லது அகற்று</item>
     </plurals>
     <plurals name="ssl_ca_cert_info_message_device_owner" formatted="false" msgid="9046046586061880100">
-      <item quantity="other"><xliff:g id="MANAGING_DOMAIN_1">%s</xliff:g> உங்கள் சாதனத்தில் சான்றிதழ் அங்கீகாரங்களை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், பயன்பாடுகள், பாதுகாப்பான இணையதளங்கள் உட்பட சாதன நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அவற்றை அனுமதிக்கக்கூடும்.\n\nசான்றிதழ்களைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
-      <item quantity="one"><xliff:g id="MANAGING_DOMAIN_0">%s</xliff:g> உங்கள் சாதனத்தில் சான்றிதழ் அங்கீகாரத்தை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், பயன்பாடுகள், பாதுகாப்பான இணையதளங்கள் உட்பட சாதன நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அதை அனுமதிக்கக்கூடும்.\n\nசான்றிதழைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
+      <item quantity="other"><xliff:g id="MANAGING_DOMAIN_1">%s</xliff:g> உங்கள் சாதனத்தில் சான்றிதழ் அங்கீகாரங்களை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், ஆப்ஸ், பாதுகாப்பான இணையதளங்கள் உட்பட சாதன நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அவற்றை அனுமதிக்கக்கூடும்.\n\nசான்றிதழ்களைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
+      <item quantity="one"><xliff:g id="MANAGING_DOMAIN_0">%s</xliff:g> உங்கள் சாதனத்தில் சான்றிதழ் அங்கீகாரத்தை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், ஆப்ஸ், பாதுகாப்பான இணையதளங்கள் உட்பட சாதன நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அதை அனுமதிக்கக்கூடும்.\n\nசான்றிதழைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
     </plurals>
     <plurals name="ssl_ca_cert_info_message" formatted="false" msgid="8271858091418779584">
-      <item quantity="other"><xliff:g id="MANAGING_DOMAIN_1">%s</xliff:g> உங்கள் பணிச் சுயவிவரத்திற்குச் சான்றிதழ் அங்கீகாரங்களை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், பயன்பாடுகள், பாதுகாப்பான இணையதளங்கள் உட்பட பணி நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அவற்றை அனுமதிக்கக்கூடும்.\n\nசான்றிதழ்களைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
-      <item quantity="one"><xliff:g id="MANAGING_DOMAIN_0">%s</xliff:g> உங்கள் பணிச் சுயவிவரத்திற்குச் சான்றிதழ் அங்கீகாரத்தை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், பயன்பாடுகள், பாதுகாப்பான இணையதளங்கள் உட்பட பணி நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அதை அனுமதிக்கக்கூடும்.\n\nசான்றிதழைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
+      <item quantity="other"><xliff:g id="MANAGING_DOMAIN_1">%s</xliff:g> உங்கள் பணிச் சுயவிவரத்திற்குச் சான்றிதழ் அங்கீகாரங்களை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், ஆப்ஸ், பாதுகாப்பான இணையதளங்கள் உட்பட பணி நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அவற்றை அனுமதிக்கக்கூடும்.\n\nசான்றிதழ்களைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
+      <item quantity="one"><xliff:g id="MANAGING_DOMAIN_0">%s</xliff:g> உங்கள் பணிச் சுயவிவரத்திற்குச் சான்றிதழ் அங்கீகாரத்தை நிறுவியுள்ளது. இது மின்னஞ்சல்கள், ஆப்ஸ், பாதுகாப்பான இணையதளங்கள் உட்பட பணி நெட்வொர்க் செயல்பாட்டைக் கண்காணிப்பதற்கு அதை அனுமதிக்கக்கூடும்.\n\nசான்றிதழைப் பற்றிய கூடுதல் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்.</item>
     </plurals>
-    <string name="ssl_ca_cert_warning_message" msgid="8692156828262606685">"மின்னஞ்சல்கள், பயன்பாடுகள் மற்றும் பாதுகாப்பான இணையதளங்கள் உள்ளிட்ட உங்களின் நெட்வொர்க் செயல்பாட்டை மூன்றாம் தரப்பினர் கண்காணிக்க முடியும்.\n\nஉங்கள் சாதனத்தில் நிறுவப்பட்ட நம்பிக்கையான சான்று இதைச் சாத்தியமாக்கும்."</string>
+    <string name="ssl_ca_cert_warning_message" msgid="8692156828262606685">"மின்னஞ்சல்கள், ஆப்ஸ் மற்றும் பாதுகாப்பான இணையதளங்கள் உள்ளிட்ட உங்களின் நெட்வொர்க் செயல்பாட்டை மூன்றாம் தரப்பினர் கண்காணிக்க முடியும்.\n\nஉங்கள் சாதனத்தில் நிறுவப்பட்ட நம்பிக்கையான சான்று இதைச் சாத்தியமாக்கும்."</string>
     <plurals name="ssl_ca_cert_settings_button" formatted="false" msgid="3227175122066058245">
       <item quantity="other">சான்றிதழ்களைச் சரிபார்</item>
       <item quantity="one">சான்றிதழைச் சரிபார்</item>
@@ -2848,7 +2848,7 @@
     <string name="user_add_user_or_profile_menu" msgid="4220679989900149336">"பயனர் அல்லது சுயவிவரத்தைச் சேர்"</string>
     <string name="user_add_user_menu" msgid="9006572936456324794">"பயனரைச் சேர்"</string>
     <string name="user_summary_restricted_profile" msgid="5214838615043574917">"கட்டுப்படுத்தப்பட்ட சுயவிவரம்"</string>
-    <string name="user_need_lock_message" msgid="3421243467724322311">"நீங்கள் வரையறுக்கப்பட்டச் சுயவிவரத்தை உருவாக்குவதற்கு முன்பு, உங்கள் பயன்பாடுகள் மற்றும் தனிப்பட்ட தரவைப் பாதுகாக்கும் வகையில் நீங்கள் திரைப் பூட்டை அமைக்க வேண்டும்."</string>
+    <string name="user_need_lock_message" msgid="3421243467724322311">"நீங்கள் வரையறுக்கப்பட்டச் சுயவிவரத்தை உருவாக்குவதற்கு முன்பு, உங்கள் ஆப்ஸ் மற்றும் தனிப்பட்ட தரவைப் பாதுகாக்கும் வகையில் நீங்கள் திரைப் பூட்டை அமைக்க வேண்டும்."</string>
     <string name="user_set_lock_button" msgid="4660971133148866612">"பூட்டை அமை"</string>
     <string name="user_summary_not_set_up" msgid="6436691939044332679">"அமைக்கவில்லை"</string>
     <string name="user_summary_restricted_not_set_up" msgid="896552290436689508">"அமைக்கவில்லை - கட்டுப்படுத்தப்பட்ட சுயவிவரம்"</string>
@@ -2858,8 +2858,8 @@
     <string name="user_nickname" msgid="1088216221559125529">"செல்லப்பெயர்"</string>
     <string name="user_add_user_type_title" msgid="8672326434351387845">"சேர்"</string>
     <string name="user_add_max_count" msgid="4524573950126500416">"<xliff:g id="USER_COUNT">%1$d</xliff:g> பயனர்கள் வரை சேர்க்கலாம்"</string>
-    <string name="user_add_user_item_summary" msgid="6114355152711455716">"பயனர்கள் தங்களுக்குச் சொந்தமான பயன்பாடுகள் மற்றும் உள்ளடக்கத்தை வைத்திருக்க வேண்டும்"</string>
-    <string name="user_add_profile_item_summary" msgid="6386283837789573755">"உங்கள் கணக்கிலிருந்து பயன்பாடுகள் மற்றும் உள்ளடக்கத்திற்கான அணுகலை நீங்கள் வரையறுக்கலாம்"</string>
+    <string name="user_add_user_item_summary" msgid="6114355152711455716">"பயனர்கள் தங்களுக்குச் சொந்தமான ஆப்ஸ் மற்றும் உள்ளடக்கத்தை வைத்திருக்க வேண்டும்"</string>
+    <string name="user_add_profile_item_summary" msgid="6386283837789573755">"உங்கள் கணக்கிலிருந்து ஆப்ஸ் மற்றும் உள்ளடக்கத்திற்கான அணுகலை நீங்கள் வரையறுக்கலாம்"</string>
     <string name="user_add_user_item_title" msgid="6835385073795492410">"பயனர்"</string>
     <string name="user_add_profile_item_title" msgid="4932743891449790664">"கட்டுப்படுத்தப்பட்ட சுயவிவரம்"</string>
     <string name="user_add_user_title" msgid="2320897397066676472">"புதியவரைச் சேர்க்கவா?"</string>
@@ -2905,7 +2905,7 @@
     <string name="emergency_info_title" msgid="1522609271881425375">"அவசரத் தகவல்"</string>
     <string name="emergency_info_summary" msgid="7280464759837387342">"<xliff:g id="USER_NAME">%1$s</xliff:g> தகவலும் தொடர்புகளும்"</string>
     <string name="application_restrictions" msgid="6871981013736536763">"பயன்பாடுகளையும் உள்ளடக்கத்தையும் அனுமதி"</string>
-    <string name="apps_with_restrictions_header" msgid="8656739605673756176">"வரையறைகளுடனான பயன்பாடுகள்"</string>
+    <string name="apps_with_restrictions_header" msgid="8656739605673756176">"வரையறைகளுடனான ஆப்ஸ்"</string>
     <string name="apps_with_restrictions_settings_button" msgid="5065896213467171744">"பயன்பாட்டிற்கான அமைப்புகளை விரிவுபடுத்து"</string>
     <string name="nfc_payment_settings_title" msgid="5070077706735415291">"தட்டி, கட்டணம் செலுத்துதல்"</string>
     <string name="nfc_payment_how_it_works" msgid="7607901964687787177">"இது எவ்வாறு இயங்குகிறது"</string>
@@ -2960,7 +2960,7 @@
     <string name="app_restrictions_custom_label" msgid="8791627858467265176">"ஆப்ஸின் வரையறைகளை அமை"</string>
     <string name="user_restrictions_controlled_by" msgid="3442508299902131033">"<xliff:g id="APP">%1$s</xliff:g> ஆல் கட்டுப்படுத்தப்படுகிறது"</string>
     <string name="app_sees_restricted_accounts" msgid="2210750497683265281">"இந்த ஆப்ஸ் உங்கள் கணக்குகளை அணுகலாம்"</string>
-    <string name="app_sees_restricted_accounts_and_controlled_by" msgid="5028333644657350816">"இந்தப் பயன்பாட்டால் உங்கள் கணக்குகளை அணுக முடியும். கட்டுப்படுத்தும் ஆப்ஸ்: <xliff:g id="APP">%1$s</xliff:g>"</string>
+    <string name="app_sees_restricted_accounts_and_controlled_by" msgid="5028333644657350816">"இந்த ஆப்ஸால் உங்கள் கணக்குகளை அணுக முடியும். கட்டுப்படுத்தும் ஆப்ஸ்: <xliff:g id="APP">%1$s</xliff:g>"</string>
     <string name="restriction_wifi_config_title" msgid="1689176998451296068">"வைஃபை மற்றும் மொபைல்"</string>
     <string name="restriction_wifi_config_summary" msgid="2450206736438594690">"வைஃபை மற்றும் மொபைல் அமைப்புகளின் மாற்றத்தை அனுமதிக்கவும்"</string>
     <string name="restriction_bluetooth_config_title" msgid="34551118506640221">"புளூடூத்"</string>
@@ -2970,7 +2970,7 @@
     <string name="restriction_nfc_enable_summary" product="tablet" msgid="3292205836938064931">"டேப்லெட்டானது வேறொரு சாதனத்தைத் தொடும்போது தரவுப் பரிமாற்றத்தை அனுமதி"</string>
     <string name="restriction_nfc_enable_summary" product="default" msgid="226439584043333608">"வேறொரு சாதனத்தைத் தொடும்போது டேட்டா பரிமாற்றத்தை அனுமதி"</string>
     <string name="restriction_location_enable_title" msgid="358506740636434856">"இருப்பிடம்"</string>
-    <string name="restriction_location_enable_summary" msgid="4159500201124004463">"பயன்பாடுகள் உங்கள் இருப்பிடத் தகவலைப் பயன்படுத்தலாம்"</string>
+    <string name="restriction_location_enable_summary" msgid="4159500201124004463">"ஆப்ஸ் உங்கள் இருப்பிடத் தகவலைப் பயன்படுத்தலாம்"</string>
     <string name="wizard_back" msgid="223654213898117594">"பின் செல்"</string>
     <string name="wizard_next" msgid="5239664512608113542">"அடுத்து"</string>
     <string name="wizard_finish" msgid="3742102879981212094">"முடி"</string>
@@ -3078,9 +3078,9 @@
     <string name="keywords_users" msgid="5880705776023155640">"வரம்பிடல், வரம்பு, வரம்பிட்டது"</string>
     <string name="keywords_keyboard_and_ime" msgid="3327265741354129990">"உரை திருத்தம், சரிசெய், ஒலி, அதிர்வு, தானியங்கு, மொழி, சைகை, பரிந்துரை, பரிந்துரைப்பு, தீம், வன்மொழி, சொல், வகை, ஈமோஜி, சர்வதேசம்"</string>
     <string name="keywords_reset_apps" msgid="2645701455052020435">"மீட்டமை, விருப்பத்தேர்வுகள், இயல்பு"</string>
-    <string name="keywords_all_apps" msgid="846444448435698930">"ஆப்ஸ், பதிவிறக்கு, பயன்பாடுகள், முறைமை"</string>
-    <string name="keywords_app_permissions" msgid="8539841019997048500">"பயன்பாடுகள், அனுமதிகள், பாதுகாப்பு"</string>
-    <string name="keywords_default_apps" msgid="7435952699323965532">"பயன்பாடுகள், இயல்பு"</string>
+    <string name="keywords_all_apps" msgid="846444448435698930">"ஆப்ஸ், பதிவிறக்கு, ஆப்ஸ், முறைமை"</string>
+    <string name="keywords_app_permissions" msgid="8539841019997048500">"ஆப்ஸ், அனுமதிகள், பாதுகாப்பு"</string>
+    <string name="keywords_default_apps" msgid="7435952699323965532">"ஆப்ஸ், இயல்பு"</string>
     <string name="keywords_ignore_optimizations" msgid="9127632532176249438">"மேம்படுத்தல்களைத் தவிர்த்தல், பேட்டரியைக் குறைவாகப் பயன்படுத்துதல், ஆப்ஸ் காத்திருப்பு நிலை"</string>
     <string name="keywords_color_mode" msgid="8893345199519181751">"அதிர்வு, RGB, sRGB, வண்ணம், இயற்கை, நிலையானது"</string>
     <string name="keywords_color_temperature" msgid="2255253972992035046">"வண்ணம், வண்ண வெப்பநிலை, D65, D73, வெள்ளை, மஞ்சள், நீலம், அடர், வெளிர்"</string>
@@ -3362,7 +3362,7 @@
     </plurals>
     <string name="notification_assistant_title" msgid="8216604031352764011">"அறிவிப்பு அஸிஸ்டண்ட்"</string>
     <string name="no_notification_assistant" msgid="9140123568386413264">"அறிவிப்பு அசிஸ்டண்ட் இல்லை"</string>
-    <string name="no_notification_listeners" msgid="1366386609506834717">"அறிவிப்பு அணுகலைக் கோரும் பயன்பாடுகள் எதுவும் நிறுவப்படவில்லை."</string>
+    <string name="no_notification_listeners" msgid="1366386609506834717">"அறிவிப்பு அணுகலைக் கோரும் ஆப்ஸ் எதுவும் நிறுவப்படவில்லை."</string>
     <string name="notification_assistant_security_warning_title" msgid="4190584438086738496">"<xliff:g id="SERVICE">%1$s</xliff:g> சேவைக்கான அறிவிப்பு அணுகலை அனுமதிக்கவா?"</string>
     <string name="notification_assistant_security_warning_summary" msgid="6924513399671031930">"தொடர்புகளின் பெயர்கள் மற்றும் உங்களுக்கான மெசேஜ்களில் இருக்கும் உரைகள் போன்ற தனிப்பட்ட தகவல்கள் அடங்கிய அனைத்து அறிவிப்புகளையும் <xliff:g id="NOTIFICATION_ASSISTANT_NAME">%1$s</xliff:g> சேவையால் படிக்க இயலும். அறிவிப்புகளை மாற்றியமைக்கவோ நிராகரிக்கவோ அவற்றிலுள்ள செயல் பட்டன்களைத் தூண்டவோ இதனால் இயலும். \n\n’தொந்தரவு செய்ய வேண்டாம்’ அம்சத்தை ஆன் அல்லது ஆஃப் செய்வதற்கு ஆப்ஸை அனுமதிப்பதோடு அது தொடர்பான அமைப்புகளை மாற்றவும் இதனால் இயலும்."</string>
     <string name="notification_listener_security_warning_title" msgid="4902253246428777797">"<xliff:g id="SERVICE">%1$s</xliff:g>க்கான அறிவிப்பு அணுகலை அனுமதிக்கவா?"</string>
@@ -3371,7 +3371,7 @@
     <string name="notification_listener_disable_warning_confirm" msgid="7863495391671154188">"முடக்கு"</string>
     <string name="notification_listener_disable_warning_cancel" msgid="6264631825225298458">"ரத்துசெய்"</string>
     <string name="vr_listeners_title" msgid="511483902408792832">"VR உதவிச் சேவைகள்"</string>
-    <string name="no_vr_listeners" msgid="7675484190394450979">"VR உதவிச் சேவைகளாக இயங்குவதற்காகக் கோரிய பயன்பாடுகள் எதுவும் நிறுவப்படவில்லை."</string>
+    <string name="no_vr_listeners" msgid="7675484190394450979">"VR உதவிச் சேவைகளாக இயங்குவதற்காகக் கோரிய ஆப்ஸ் எதுவும் நிறுவப்படவில்லை."</string>
     <string name="vr_listener_security_warning_title" msgid="7019322246707645361">"<xliff:g id="SERVICE">%1$s</xliff:g>ஐ அணுக VR சேவையை அனுமதிக்கவா?"</string>
     <string name="vr_listener_security_warning_summary" msgid="5093225583584522067">"விர்ச்சுவல் ரியாலிட்டி பயன்முறையில் பயன்பாடுகளைப் பயன்படுத்தும்போது, <xliff:g id="VR_LISTENER_NAME">%1$s</xliff:g> இயங்க முடியும்."</string>
     <string name="display_vr_pref_title" msgid="1088464812293416981">"VRரில் இருக்கும் போது"</string>
@@ -3385,8 +3385,8 @@
     <string name="picture_in_picture_app_detail_summary" msgid="918632751775525347">"ஆப்ஸ் திறந்திருக்கும் போது அல்லது அதிலிருந்து நீங்கள் வெளியேறும் போது (எடுத்துக்காட்டாக, வீடியோவைத் தொடர்ந்து பார்க்க), பிக்ச்சர்-இன்-பிக்ச்சர் சாளரத்தை உருவாக்க, இந்த ஆப்ஸை அனுமதிக்கும். இந்தச் சாளரம் நீங்கள் பயன்படுத்தும் பிற ஆப்ஸ்களின் மேல் காட்டப்படும்."</string>
     <string name="manage_zen_access_title" msgid="3058206309728524196">"\'தொந்தரவு செய்யாதே\' அணுகல்"</string>
     <string name="zen_access_detail_switch" msgid="8706332327904974500">"’தொந்தரவு செய்ய வேண்டாம்’ அம்சத்தை அனுமதி"</string>
-    <string name="zen_access_empty_text" msgid="7667538993781607731">"\'தொந்தரவு செய்யாதே\' அணுகலை நிறுவப்பட்ட பயன்பாடுகள் எதுவும் கோரவில்லை"</string>
-    <string name="loading_notification_apps" msgid="1978345231934072091">"பயன்பாடுகளை ஏற்றுகிறது..."</string>
+    <string name="zen_access_empty_text" msgid="7667538993781607731">"\'தொந்தரவு செய்யாதே\' அணுகலை நிறுவப்பட்ட ஆப்ஸ் எதுவும் கோரவில்லை"</string>
+    <string name="loading_notification_apps" msgid="1978345231934072091">"ஆப்ஸை ஏற்றுகிறது..."</string>
     <string name="app_notifications_off_desc" msgid="3904090905748895146">"உங்கள் கோரிக்கையின் படி, சாதனத்தில் இந்த ஆப்ஸின் அறிவிப்புகள் தோன்றுவதை Android தடுக்கிறது"</string>
     <string name="channel_notifications_off_desc" msgid="8005444443218306611">"உங்கள் கோரிக்கையின் படி, இந்தச் சாதனத்தில், இந்த வகை அறிவிப்புகள் தோன்றுவதை Android தடுக்கிறது"</string>
     <string name="channel_group_notifications_off_desc" msgid="7154205544298672850">"உங்கள் கோரிக்கையின் படி, இந்தச் சாதனத்தில், இந்தக் குழு அறிவிப்புகள் தோன்றுவதை Android தடுக்கிறது"</string>
@@ -3629,14 +3629,14 @@
     <string name="filter_instant_apps" msgid="8087483282854072366">"இன்ஸ்டண்ட் ஆப்ஸ்"</string>
     <string name="filter_personal_apps" msgid="3473268022652904457">"தனிப்பட்டவை"</string>
     <string name="filter_work_apps" msgid="4202483998339465542">"பணியிடம்"</string>
-    <string name="filter_notif_all_apps" msgid="1862666327228804896">"பயன்பாடுகள்: எல்லாம்"</string>
+    <string name="filter_notif_all_apps" msgid="1862666327228804896">"ஆப்ஸ்: எல்லாம்"</string>
     <string name="filter_notif_blocked_apps" msgid="5694956954776028202">"ஆஃப் செய்யப்பட்டவை"</string>
     <string name="filter_notif_urgent_channels" msgid="5000735867167027148">"வகைகள்: அதிக முக்கியத்துவம்"</string>
     <string name="filter_notif_low_channels" msgid="6859599463135775287">"வகைகள்: குறைந்த முக்கியத்துவம்"</string>
     <string name="filter_notif_blocked_channels" msgid="6110799550327612670">"வகைகள்: முடக்கப்பட்டன"</string>
     <string name="filter_notif_dnd_channels" msgid="3251570137256371092">"வகை: டிஎன்டியை மீறும்"</string>
     <string name="advanced_apps" msgid="6643869089344883537">"மேம்பட்டவை"</string>
-    <string name="configure_apps" msgid="4066683118857400943">"பயன்பாடுகளை உள்ளமை"</string>
+    <string name="configure_apps" msgid="4066683118857400943">"ஆப்ஸை உள்ளமை"</string>
     <string name="unknown_app" msgid="2312052973570376877">"அறியப்படாத ஆப்ஸ்"</string>
     <string name="app_permissions" msgid="3215958256821756086">"அனுமதி நிர்வாகம்"</string>
     <string name="app_permissions_summary" msgid="8785798165776061594">"<xliff:g id="APPS">%1$s</xliff:g> பயன்படுத்தும் ஆப்ஸ்"</string>
@@ -3659,7 +3659,7 @@
     <string name="assist_and_voice_input_title" msgid="324148194703846130">"அசிஸ்ட் &amp; குரல் உள்ளீடு"</string>
     <string name="default_assist_title" msgid="2060846994203235317">"அசிஸ்ட் ஆப்ஸ்"</string>
     <string name="assistant_security_warning_title" msgid="8014460924169723059">"<xliff:g id="ASSISTANT_APP_NAME">%s</xliff:g>ஐ அசிஸ்டண்ட் பயன்பாடாக அமைக்கவா?"</string>
-    <string name="assistant_security_warning" msgid="1304057692847069938">"உங்கள் திரையில் தெரியும் தகவல் அல்லது பயன்பாடுகளுக்குள் அணுகத்தக்க தகவல் உள்பட உங்கள் சாதனத்தில் உபயோகத்தில் இருக்கும் பயன்பாடுகள் பற்றிய தகவலை அசிஸ்டண்ட் படிக்க முடியும்."</string>
+    <string name="assistant_security_warning" msgid="1304057692847069938">"உங்கள் திரையில் தெரியும் தகவல் அல்லது பயன்பாடுகளுக்குள் அணுகத்தக்க தகவல் உள்பட உங்கள் சாதனத்தில் உபயோகத்தில் இருக்கும் ஆப்ஸ் பற்றிய தகவலை அசிஸ்டண்ட் படிக்க முடியும்."</string>
     <string name="assistant_security_warning_agree" msgid="5105692801460137289">"ஏற்கிறேன்"</string>
     <string name="assistant_security_warning_disagree" msgid="4217490999193100459">"ஏற்கவில்லை"</string>
     <string name="choose_voice_input_title" msgid="5369311838580756359">"குரல் உள்ளீட்டைத் தேர்வுசெய்க"</string>
@@ -3673,7 +3673,7 @@
     <string name="apps_storage" msgid="5658466038269046038">"ஆப்ஸ் சேமிப்பகம்"</string>
     <string name="usage_access" msgid="2023443456361489516">"உபயோக அணுகல்"</string>
     <string name="permit_usage_access" msgid="3321727608629752758">"உபயோக அணுகல் அனுமதி"</string>
-    <string name="app_usage_preference" msgid="5691545073101551727">"பயன்பாட்டு உபயோக விருப்பத்தேர்வுகள்"</string>
+    <string name="app_usage_preference" msgid="5691545073101551727">"ஆப்ஸ் உபயோக விருப்பத்தேர்வுகள்"</string>
     <string name="time_spent_in_app_pref_title" msgid="2803186835902798451">"பயன்படுத்திய நேரம்"</string>
     <string name="usage_access_description" msgid="2178083292760305207">"உபயோக அணுகலானது, நீங்கள் வேறு எந்தெந்த ஆப்ஸை எவ்வளவு அடிக்கடி பயன்படுத்துகிறீர்கள் என்று அறியும் அனுமதியை ஒரு ஆப்ஸுக்கு வழங்குகிறது. உங்கள் மொபைல் நிறுவனம், மொழி அமைப்புகள் மற்றும் பிற விவரங்களையும் அறிந்து கொள்ளும் அனுமதியும் இதில் அடங்கும்."</string>
     <string name="memory_settings_title" msgid="7867148522014070721">"நினைவகம்"</string>
@@ -3692,11 +3692,11 @@
     <string name="show_all_apps" msgid="5442552004569634846">"முழு பயன்பாட்டைக் காட்டு"</string>
     <string name="hide_extra_apps" msgid="6798261081113299441">"ஆப்ஸின் உபயோகத்தை காட்டு"</string>
     <plurals name="power_high_usage_summary" formatted="false" msgid="4658343710126205199">
-      <item quantity="other">வழக்கத்திற்கு மாறாக <xliff:g id="NUMBER">%2$d</xliff:g> பயன்பாடுகள் செயல்படுகின்றன</item>
+      <item quantity="other">வழக்கத்திற்கு மாறாக <xliff:g id="NUMBER">%2$d</xliff:g> ஆப்ஸ் செயல்படுகின்றன</item>
       <item quantity="one">வழக்கத்திற்கு மாறாக <xliff:g id="APP">%1$s</xliff:g> செயல்படுகிறது</item>
     </plurals>
     <plurals name="power_high_usage_title" formatted="false" msgid="63134064262760835">
-      <item quantity="other">பேட்டரியை அதிகமாகப் பயன்படுத்தும் பயன்பாடுகள்</item>
+      <item quantity="other">பேட்டரியை அதிகமாகப் பயன்படுத்தும் ஆப்ஸ்</item>
       <item quantity="one">பேட்டரியை அதிகமாகப் பயன்படுத்தும் <xliff:g id="APP">%1$s</xliff:g> பயன்பாடு</item>
     </plurals>
     <string name="high_power_filter_on" msgid="5294209328473386403">"பவர் சேமிக்காதவை"</string>
@@ -3705,7 +3705,7 @@
     <string name="high_power_system" msgid="739584574711292753">"பேட்டரியைச் சேமிக்காது"</string>
     <string name="high_power_desc" msgid="333756885680362741">"பேட்டரி மேம்படுத்தலைப் பயன்படுத்தவில்லை எனில், உங்கள் பேட்டரி மிக விரைவில் தீர்ந்துவிடக்கூடும்."</string>
     <string name="high_power_prompt_title" msgid="2805745781720454052">"எப்போதும் பின்னணியில் இயங்க, ஆப்ஸை அனுமதிக்கவா?"</string>
-    <string name="high_power_prompt_body" msgid="8067395096053552289">"எப்போதும் பின்னணியில் இயங்க <xliff:g id="APP_NAME">%1$s</xliff:g> ஆப்ஸை அனுமதிப்பதால், பேட்டரியின் ஆயுள் குறையக்கூடும். \n\nஇதை அமைப்புகள் &gt; பயன்பாடுகள் &amp; அறிவிப்புகள் என்பதற்குச் சென்று, மாற்றலாம்."</string>
+    <string name="high_power_prompt_body" msgid="8067395096053552289">"எப்போதும் பின்னணியில் இயங்க <xliff:g id="APP_NAME">%1$s</xliff:g> ஆப்ஸை அனுமதிப்பதால், பேட்டரியின் ஆயுள் குறையக்கூடும். \n\nஇதை அமைப்புகள் &gt; ஆப்ஸ் &amp; அறிவிப்புகள் என்பதற்குச் சென்று, மாற்றலாம்."</string>
     <string name="battery_summary" msgid="4345690800899981339">"முழு சார்ஜ் ஆனதிலிருந்து <xliff:g id="PERCENTAGE">%1$s</xliff:g> பயன்படுத்தப்பட்டுள்ளது"</string>
     <string name="battery_power_management" msgid="2853925857548647969">"பேட்டரி திறன் மேலாண்மை"</string>
     <string name="no_battery_summary" msgid="4105932628367471314">"கடைசியாக முழு சார்ஜ் செய்த நேரத்திலிருந்து, பேட்டரி பயன்படுத்தப்படவில்லை"</string>
@@ -3771,7 +3771,7 @@
     <string name="total_memory" msgid="7352192982476976453">"மொத்த நினைவகம்"</string>
     <string name="average_used" msgid="3022736210190754669">"பயன்படுத்தியது (%)"</string>
     <string name="free_memory" msgid="4758919141048544927">"இருப்பது"</string>
-    <string name="memory_usage_apps" msgid="2839241373381152354">"பயன்பாடுகள் உபயோகிக்கும் நினைவகம்"</string>
+    <string name="memory_usage_apps" msgid="2839241373381152354">"ஆப்ஸ் உபயோகிக்கும் நினைவகம்"</string>
     <plurals name="memory_usage_apps_summary" formatted="false" msgid="1235024908546944704">
       <item quantity="other">கடந்த <xliff:g id="DURATION_1">%2$s</xliff:g> இல் <xliff:g id="COUNT">%1$d</xliff:g> ஆப்ஸ்கள் நினைவகத்தைப் பயன்படுத்தியுள்ளன</item>
       <item quantity="one">கடந்த <xliff:g id="DURATION_0">%2$s</xliff:g> இல் 1 ஆப்ஸ் நினைவகத்தைப் பயன்படுத்தியுள்ளது</item>
@@ -3799,18 +3799,18 @@
     <string name="permit_draw_overlay" msgid="9039092257052422344">"பிற ஆப்ஸின் மேலே காட்டுவதை அனுமதி"</string>
     <string name="allow_overlay_description" msgid="6669524816705082807">"நீங்கள் பயன்படுத்தும் பிற ஆப்ஸின் மேலே உள்ளடக்கத்தைக் காட்ட, இந்த ஆப்ஸை அனுமதிக்கும். மேலும், அவற்றை நீங்கள் பயன்படுத்தும் போது இது குறுக்கிடக்கூடும் அல்லது அவை தோன்றும் விதத்தையோ, செயல்படும் விதத்தையோ மாற்றக்கூடும்."</string>
     <string name="keywords_vr_listener" msgid="5312633527788917750">"vr விர்ச்சுவல் ரியாலிட்டி லிஷனர் ஸ்டீரியோ உதவிச் சேவை"</string>
-    <string name="keywords_system_alert_window" msgid="3936658600272194599">"சாதனம் விழிப்பூட்டல் சாளரம் உரையாடல் காட்டு பிற பயன்பாடுகளின் மேல்"</string>
+    <string name="keywords_system_alert_window" msgid="3936658600272194599">"சாதனம் விழிப்பூட்டல் சாளரம் உரையாடல் காட்டு பிற ஆப்ஸின் மேல்"</string>
     <string name="overlay_settings" msgid="3325154759946433666">"பிற ஆப்ஸின் மேலே காட்டு"</string>
-    <string name="system_alert_window_summary" msgid="7703582115861844158">"பிற பயன்பாடுகளின் மேலே காட்டுவதற்கு <xliff:g id="COUNT_1">%2$d</xliff:g> இல் <xliff:g id="COUNT_0">%1$d</xliff:g> பயன்பாடுகள் அனுமதிக்கப்பட்டுள்ளன"</string>
-    <string name="filter_overlay_apps" msgid="6336897660213304743">"அனுமதி பெற்ற பயன்பாடுகள்"</string>
+    <string name="system_alert_window_summary" msgid="7703582115861844158">"பிற ஆப்ஸின் மேலே காட்டுவதற்கு <xliff:g id="COUNT_1">%2$d</xliff:g> இல் <xliff:g id="COUNT_0">%1$d</xliff:g> ஆப்ஸ் அனுமதிக்கப்பட்டுள்ளன"</string>
+    <string name="filter_overlay_apps" msgid="6336897660213304743">"அனுமதி பெற்ற ஆப்ஸ்"</string>
     <string name="app_permission_summary_allowed" msgid="6458476982015518778">"அனுமதிக்கப்பட்டது"</string>
     <string name="app_permission_summary_not_allowed" msgid="1171642541675462584">"அனுமதிக்கப்படவில்லை"</string>
-    <string name="keywords_install_other_apps" msgid="5383559540695847668">"நிறுவு பயன்பாடுகள் அறியப்படாத மூலங்கள்"</string>
+    <string name="keywords_install_other_apps" msgid="5383559540695847668">"நிறுவு ஆப்ஸ் அறியப்படாத மூலங்கள்"</string>
     <string name="write_settings" msgid="9009040811145552108">"சாதன அமைப்புகளை மாற்று"</string>
     <string name="keywords_write_settings" msgid="3450405263390246293">"முறைமை அமைப்புகளை எழுது மாற்று"</string>
-    <string name="write_settings_summary" msgid="4650251358459404247">"<xliff:g id="COUNT_1">%2$d</xliff:g> இல் <xliff:g id="COUNT_0">%1$d</xliff:g> பயன்பாடுகள் முறைமை அமைப்புகளை மாற்ற அனுமதிக்கப்பட்டுள்ளன"</string>
+    <string name="write_settings_summary" msgid="4650251358459404247">"<xliff:g id="COUNT_1">%2$d</xliff:g> இல் <xliff:g id="COUNT_0">%1$d</xliff:g> ஆப்ஸ் முறைமை அமைப்புகளை மாற்ற அனுமதிக்கப்பட்டுள்ளன"</string>
     <string name="financial_apps_sms_access_title" msgid="3422655018008259655">"நிதி ஆப்ஸிற்கான மெசேஜ் அணுகல்"</string>
-    <string name="filter_install_sources_apps" msgid="4519839764020866701">"பிற பயன்பாடுகளை நிறுவலாம்"</string>
+    <string name="filter_install_sources_apps" msgid="4519839764020866701">"பிற ஆப்ஸை நிறுவலாம்"</string>
     <string name="filter_write_settings_apps" msgid="6864144615530081121">"முறைமை அமைப்புகளை மாற்றலாம்"</string>
     <string name="write_settings_title" msgid="5852614614193830632">"முறைமை அமைப்புகளை மாற்றலாம்"</string>
     <string name="write_system_settings" msgid="20450765210832463">"சாதன அமைப்புகளை மாற்று"</string>
@@ -3849,7 +3849,7 @@
       <item quantity="one">1 பயன்பாட்டிற்கு முடக்கப்பட்டுள்ளது</item>
     </plurals>
     <string name="notification_summary_none" msgid="5003043219430054784">"அனைத்திற்கும் இயக்கப்பட்டுள்ளது"</string>
-    <string name="apps_summary" msgid="8355759446490212195">"<xliff:g id="COUNT">%1$d</xliff:g> பயன்பாடுகள் நிறுவப்பட்டுள்ளன"</string>
+    <string name="apps_summary" msgid="8355759446490212195">"<xliff:g id="COUNT">%1$d</xliff:g> ஆப்ஸ் நிறுவப்பட்டுள்ளன"</string>
     <string name="apps_summary_example" msgid="3011143598675185269">"24 ஆப்ஸ் நிறுவப்பட்டன"</string>
     <string name="storage_summary" msgid="4835916510511133784">"பயன்படுத்தியது: <xliff:g id="PERCENTAGE">%1$s</xliff:g>, காலியிடம்: <xliff:g id="FREE_SPACE">%2$s</xliff:g>"</string>
     <string name="storage_summary_with_sdcard" msgid="8742907204848352697">"சாதனச் சேமிப்பகம்: <xliff:g id="PERCENTAGE">%1$s</xliff:g> பயன்படுத்தப்பட்டது - <xliff:g id="FREE_SPACE">%2$s</xliff:g> பயன்படுத்துவதற்கு உள்ளது"</string>
@@ -3955,7 +3955,7 @@
     <string name="data_limit" msgid="5793521160051596228">"டேட்டா வரம்பு"</string>
     <string name="data_usage_template" msgid="6848274347956096882">"<xliff:g id="ID_1">%1$s</xliff:g> பயன்படுத்தியது: <xliff:g id="ID_2">%2$s</xliff:g>"</string>
     <string name="configure" msgid="8232696842838580549">"உள்ளமை"</string>
-    <string name="data_usage_other_apps" msgid="7002491980141402084">"தரவு உபயோகத்தில் உள்ளடங்கும் பிற பயன்பாடுகள்"</string>
+    <string name="data_usage_other_apps" msgid="7002491980141402084">"தரவு உபயோகத்தில் உள்ளடங்கும் பிற ஆப்ஸ்"</string>
     <plurals name="data_saver_unrestricted_summary" formatted="false" msgid="6046013861315713697">
       <item quantity="other">டேட்டா சேமிப்பான் இயக்கப்பட்டிருக்கும் போது, பயனரின் எல்லா தகவலையும் பயன்படுத்த <xliff:g id="COUNT">%1$d</xliff:g> ஆப்ஸ் அனுமதிக்கப்பட்டுள்ளன</item>
       <item quantity="one">டேட்டா சேமிப்பான் இயக்கப்பட்டிருக்கும் போது, பயனரின் எல்லா தகவலையும் பயன்படுத்த 1 ஆப்ஸ் அனுமதிக்கப்பட்டுள்ளது</item>
@@ -4060,7 +4060,7 @@
     <string name="page_tab_title_summary" msgid="4824744863994538006">"எல்லாம்"</string>
     <string name="page_tab_title_support" msgid="5569262185010367870">"உதவிக்குறிப்பு &amp; உதவி"</string>
     <string name="developer_smallest_width" msgid="2603134476228805075">"மிகக் குறைந்த அகலம்"</string>
-    <string name="premium_sms_none" msgid="940723020871007898">"பிரீமிய SMS அணுகலைக் கோரும் பயன்பாடுகள் எதுவும் நிறுவப்படவில்லை"</string>
+    <string name="premium_sms_none" msgid="940723020871007898">"பிரீமிய SMS அணுகலைக் கோரும் ஆப்ஸ் எதுவும் நிறுவப்படவில்லை"</string>
     <string name="premium_sms_warning" msgid="7604011651486294515">"பிரீமிய SMSக்குக் கட்டணம் விதிக்கப்படலாம், அது மொபைல் நிறுவன பில்களில் சேர்க்கப்படும். பயன்பாட்டிற்கான அனுமதியை இயக்கினால், அந்தப் பயன்பாட்டைப் பயன்படுத்தி பிரீமிய SMSஐ அனுப்ப முடியும்."</string>
     <string name="premium_sms_access" msgid="4550027460595822851">"பிரீமிய SMS அணுகல்"</string>
     <string name="bluetooth_disabled" msgid="6588102116819268238">"ஆஃப்"</string>
@@ -4166,16 +4166,16 @@
     <string name="enterprise_privacy_exposure_changes_category" msgid="1877045221796512001">"உங்கள் நிறுவனத்தின் நிர்வாகி செய்த மாற்றங்கள்"</string>
     <string name="enterprise_privacy_device_access_category" msgid="2967602674816237833">"இந்தச் சாதனத்திற்கான உங்கள் அணுகல்"</string>
     <string name="enterprise_privacy_enterprise_data" msgid="6551504749971424942">"உங்கள் பணிக் கணக்குடன் தொடர்புடைய மின்னஞ்சல் மற்றும் கேலெண்டர் போன்ற தரவு"</string>
-    <string name="enterprise_privacy_installed_packages" msgid="4376014821459811800">"உங்கள் சாதனத்தில் உள்ள பயன்பாடுகளின் பட்டியல்"</string>
+    <string name="enterprise_privacy_installed_packages" msgid="4376014821459811800">"உங்கள் சாதனத்தில் உள்ள ஆப்ஸின் பட்டியல்"</string>
     <string name="enterprise_privacy_usage_stats" msgid="445762931318731975">"ஒவ்வொரு பயன்பாட்டிலும் செலவழித்த நேரமும் தரவும்"</string>
     <string name="enterprise_privacy_network_logs" msgid="5427398751599441159">"மிகச் சமீபத்திய நெட்வொர்க் ட்ராஃபிக் பதிவு"</string>
     <string name="enterprise_privacy_bug_reports" msgid="283443567328836380">"மிகச் சமீபத்திய பிழை அறிக்கை"</string>
     <string name="enterprise_privacy_security_logs" msgid="8936969480449604726">"மிகச் சமீபத்திய பாதுகாப்புப் பதிவு"</string>
     <string name="enterprise_privacy_none" msgid="5990646476868794882">"ஏதுமில்லை"</string>
     <string name="enterprise_privacy_enterprise_installed_packages" msgid="6575025134782391212">"நிறுவிய ஆப்ஸ்"</string>
-    <string name="enterprise_privacy_apps_count_estimation_info" msgid="5020730108878608500">"பயன்பாடுகளின் எண்ணிக்கை கணிப்பின் அடிப்படையிலானது. இதில் Play ஸ்டோரிலிருந்து நிறுவப்படாத பயன்பாடுகள் சேர்க்கப்படாமல் இருக்கலாம்."</string>
+    <string name="enterprise_privacy_apps_count_estimation_info" msgid="5020730108878608500">"ஆப்ஸின் எண்ணிக்கை கணிப்பின் அடிப்படையிலானது. இதில் Play ஸ்டோரிலிருந்து நிறுவப்படாத ஆப்ஸ் சேர்க்கப்படாமல் இருக்கலாம்."</string>
     <plurals name="enterprise_privacy_number_packages_lower_bound" formatted="false" msgid="5161417161943060602">
-      <item quantity="other">குறைந்தபட்சம் <xliff:g id="COUNT_1">%d</xliff:g> பயன்பாடுகள்</item>
+      <item quantity="other">குறைந்தபட்சம் <xliff:g id="COUNT_1">%d</xliff:g> ஆப்ஸ்</item>
       <item quantity="one">குறைந்தபட்சம் <xliff:g id="COUNT_0">%d</xliff:g> பயன்பாடு</item>
     </plurals>
     <string name="enterprise_privacy_location_access" msgid="110406267468274216">"இருப்பிடத்திற்கான அனுமதிகள்"</string>
@@ -4212,7 +4212,7 @@
     <string name="do_disclosure_learn_more_separator" msgid="702345537118848010">" "</string>
     <string name="learn_more" msgid="6844160787130206258">"மேலும் அறிக"</string>
     <plurals name="default_camera_app_title" formatted="false" msgid="8762954032197483848">
-      <item quantity="other">கேமரா பயன்பாடுகள்</item>
+      <item quantity="other">கேமரா ஆப்ஸ்</item>
       <item quantity="one">கேமரா பயன்பாடு</item>
     </plurals>
     <string name="default_calendar_app_title" msgid="6484001237347739255">"கேலெண்டர் ஆப்ஸ்"</string>
@@ -4223,7 +4223,7 @@
     </plurals>
     <string name="default_map_app_title" msgid="6919751358166607185">"வரைபட ஆப்ஸ்"</string>
     <plurals name="default_phone_app_title" formatted="false" msgid="7593838689002912108">
-      <item quantity="other">ஃபோன் பயன்பாடுகள்</item>
+      <item quantity="other">ஃபோன் ஆப்ஸ்</item>
       <item quantity="one">ஃபோன் பயன்பாடு</item>
     </plurals>
     <string name="app_names_concatenation_template_2" msgid="8267577900046506189">"<xliff:g id="FIRST_APP_NAME">%1$s</xliff:g>, <xliff:g id="SECOND_APP_NAME">%2$s</xliff:g>"</string>
diff --git a/tests/CarDeveloperOptions/res/values-te-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-te-nokeys/strings.xml
new file mode 100644
index 0000000..b6410b0
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-te-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"అనువర్తనాలను నిర్వహించండి"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-te/arrays.xml b/tests/CarDeveloperOptions/res/values-te/arrays.xml
new file mode 100644
index 0000000..73bb0eb
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-te/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"అమెరికా"</item>
+    <item msgid="4791956477275129121">"యూరప్"</item>
+    <item msgid="3812126832016254559">"ఆఫ్రికా"</item>
+    <item msgid="2765816300353408280">"ఆసియా"</item>
+    <item msgid="6683489385344409742">"ఆస్ట్రేలియా"</item>
+    <item msgid="5194868215515664953">"పసిఫిక్"</item>
+    <item msgid="7044520255415007865">"అన్నీ"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 సెకన్లు"</item>
+    <item msgid="772029947136115322">"30 సెకన్లు"</item>
+    <item msgid="8743663928349474087">"1 నిమిషం"</item>
+    <item msgid="1506508631223164814">"2 నిమిషాలు"</item>
+    <item msgid="8664703938127907662">"5 నిమిషాలు"</item>
+    <item msgid="5827960506924849753">"10 నిమిషాలు"</item>
+    <item msgid="6677424950124253938">"30 నిమిషాలు"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"కనెక్ట్ అయింది"</item>
+    <item msgid="983792611851499732">"ఆహ్వానించబడింది"</item>
+    <item msgid="5438273405428201793">"విఫలమైంది"</item>
+    <item msgid="4646663015449312554">"అందుబాటులో ఉంది"</item>
+    <item msgid="3230556734162006146">"పరిధి వెలుపల ఉంది"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 నిమిషాలు"</item>
+    <item msgid="2759776603549270587">"5 నిమిషాలు"</item>
+    <item msgid="167772676068860015">"1 గంట"</item>
+    <item msgid="5985477119043628504">"ఎప్పటికీ గడువు ముగియదు"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"గత 30 రోజులు"</item>
+    <item msgid="3211287705232736964">"విని. పునరా. సెట్ చేయి..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"వినియోగ సమయం"</item>
+    <item msgid="2784401352592276015">"చివరిగా ఉపయోగించినది"</item>
+    <item msgid="249854287216326349">"యాప్ పేరు"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ఏదీ వద్దు"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ఏదీ వద్దు"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ఏదీ వద్దు"</item>
+    <item msgid="1464741437353223198">"మాన్యువల్"</item>
+    <item msgid="5793600062487886090">"ప్రాక్సీ ఆటో-కాన్ఫిగరేషన్"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ఏదీ వద్దు"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP లేదా CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"అంతర్గత పరికర నిల్వ"</item>
+    <item msgid="3186681694079967527">"తీసివేయదగిన SD కార్డు"</item>
+    <item msgid="6902033473986647035">"సిస్టమ్ నిర్ణయించుకునేలా అనుమతించు"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"స్థానం"</item>
+    <item msgid="6842381562497597649">"వ్యక్తిగతం"</item>
+    <item msgid="3966700236695683444">"సందేశం"</item>
+    <item msgid="8563996233342430477">"మీడియా"</item>
+    <item msgid="5323851085993963783">"పరికరం"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"స్థూల స్థానం"</item>
+    <item msgid="1830619568689922920">"ఖచ్చితమైన స్థానం"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"వైబ్రేట్"</item>
+    <item msgid="8632513128515114092">"పరిచయాలను చదవండి"</item>
+    <item msgid="3741042113569620272">"పరిచయాలను సవరించండి"</item>
+    <item msgid="4204420969709009931">"కాల్ లాగ్‌ను చదవండి"</item>
+    <item msgid="2260380357119423209">"కాల్ లాగ్‌ను సవరించండి"</item>
+    <item msgid="6550710385014530934">"క్యాలెండర్‌ను చదవండి"</item>
+    <item msgid="3575906174264853951">"క్యాలెండర్‌ను సవరించండి"</item>
+    <item msgid="4319843242568057174">"wi-fi స్కాన్"</item>
+    <item msgid="2981791890467303819">"నోటిఫికేషన్"</item>
+    <item msgid="6617825156152476692">"సెల్ స్కాన్"</item>
+    <item msgid="8865260890611559753">"ఫోన్‌కు కాల్ చేయండి"</item>
+    <item msgid="3254999273961542982">"SMSను చదవండి"</item>
+    <item msgid="7711446453028825171">"SMSను వ్రాయండి"</item>
+    <item msgid="6123238544099198034">"SMSను స్వీకరించండి"</item>
+    <item msgid="838342167431596036">"అత్యవసర SMSను స్వీకరించండి"</item>
+    <item msgid="8554432731560956686">"MMSను స్వీకరించండి"</item>
+    <item msgid="7464863464299515059">"WAP పుష్‌ను స్వీకరించండి"</item>
+    <item msgid="310463075729606765">"SMSను పంపండి"</item>
+    <item msgid="7338021933527689514">"ICC SMSను చదవండి"</item>
+    <item msgid="6130369335466613036">"ICC SMSను వ్రాయండి"</item>
+    <item msgid="6536865581421670942">"సెట్టింగ్‌లను సవరించండి"</item>
+    <item msgid="4547203129183558973">"పైభాగంలో గీయండి"</item>
+    <item msgid="9080347512916542840">"నోటిఫికేషన్‌లను యాక్సెస్ చేయండి"</item>
+    <item msgid="5332718516635907742">"కెమెరా"</item>
+    <item msgid="6098422447246167852">"ఆడియోను రికార్డ్ చేయండి"</item>
+    <item msgid="9182794235292595296">"ఆడియో ప్లే చేయండి"</item>
+    <item msgid="8760743229597702019">"క్లిప్‌బోర్డ్‌ను చదవండి"</item>
+    <item msgid="2266923698240538544">"క్లిప్‌బోర్డ్‌ను సవరించండి"</item>
+    <item msgid="1801619438618539275">"మీడియా బటన్‌లు"</item>
+    <item msgid="31588119965784465">"ఆడియో కేంద్రీకరణ"</item>
+    <item msgid="7565226799008076833">"మాస్టర్ వాల్యూమ్"</item>
+    <item msgid="5420704980305018295">"వాయిస్ వాల్యూమ్"</item>
+    <item msgid="5797363115508970204">"రింగ్ వాల్యూమ్"</item>
+    <item msgid="8233154098550715999">"మీడియా వాల్యూమ్"</item>
+    <item msgid="5196715605078153950">"అలారం వాల్యూమ్"</item>
+    <item msgid="394030698764284577">"నోటిఫికేషన్ వాల్యూమ్"</item>
+    <item msgid="8952898972491680178">"బ్లూటూత్ వాల్యూమ్"</item>
+    <item msgid="8506227454543690851">"సక్రియంగా ఉంచండి"</item>
+    <item msgid="1108160036049727420">"స్థానాన్ని పర్యవేక్షించండి"</item>
+    <item msgid="1496205959751719491">"అధిక శక్తివంతమైన స్థానాన్ని పర్యవేక్షించండి"</item>
+    <item msgid="3776296279910987380">"వినియోగ గణాంకాలను పొందండి"</item>
+    <item msgid="8827100324471975602">"మైక్రోఫోన్‌ను మ్యూట్ చేయండి/అన్‌మ్యూట్ చేయండి"</item>
+    <item msgid="6880736730520126864">"టోస్ట్‌ను చూపడం"</item>
+    <item msgid="4933375960222609935">"ప్రాజెక్ట్ మీడియా"</item>
+    <item msgid="8357907018938895462">"VPNని సక్రియం చేయడం"</item>
+    <item msgid="8143812849911310973">"వాల్‌పేపర్ వ్రాయడం"</item>
+    <item msgid="6266277260961066535">"నిర్మాణంలో సహాయం"</item>
+    <item msgid="7715498149883482300">"స్క్రీన్‌షాట్‌కు సహాయం"</item>
+    <item msgid="4046679376726313293">"ఫోన్ స్థితిని చదవడం"</item>
+    <item msgid="6329507266039719587">"వాయిస్ మెయిల్‌ను జోడించడం"</item>
+    <item msgid="7692440726415391408">"sipని ఉపయోగించడం"</item>
+    <item msgid="8572453398128326267">"వెళ్లే కాల్‌ను ప్రాసెస్ చేయడం"</item>
+    <item msgid="7775674394089376306">"వేలిముద్ర"</item>
+    <item msgid="3182815133441738779">"శరీర సెన్సార్‌లు"</item>
+    <item msgid="2793100005496829513">"సెల్ ప్రసారాలను చదవడం"</item>
+    <item msgid="2633626056029384366">"స్థానాన్ని నకిలీ చేయడం"</item>
+    <item msgid="8356842191824684631">"నిల్వను చదవడం"</item>
+    <item msgid="5671906070163291500">"నిల్వలో వ్రాయడం"</item>
+    <item msgid="2791955098549340418">"స్క్రీన్‌ను ఆన్ చేయడం"</item>
+    <item msgid="5599435119609178367">"ఖాతాలను పొందడం"</item>
+    <item msgid="1165623660533024666">"నేపథ్యంలో అమలు చేయడం"</item>
+    <item msgid="6423861043647911030">"యాక్సెస్ సామర్థ్య వాల్యూమ్"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"తక్కువ సేపు"</item>
+    <item msgid="4816511817309094890">"మధ్యస్థం"</item>
+    <item msgid="8305084671259331134">"ఎక్కువ సేపు"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"డిఫాల్ట్"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif సంక్షిప్తం"</item>
+    <item msgid="6529379119163117545">"Sans-serif మోనోస్పేస్"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif మోనోస్పేస్"</item>
+    <item msgid="4448481989108928248">"సాధారణం"</item>
+    <item msgid="4627069151979553527">"కర్సివ్"</item>
+    <item msgid="6896773537705206194">"చిన్న క్యాపిటల్‌లు"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"డిఫాల్ట్"</item>
+    <item msgid="6488643537808152001">"ఏదీ వద్దు"</item>
+    <item msgid="552332815156010137">"చుట్టుగీత"</item>
+    <item msgid="7187891159463789272">"నీడ ఉంచు"</item>
+    <item msgid="8019330250538856521">"పైకి ఎత్తి ఉంచినట్లుగా"</item>
+    <item msgid="8987385315647049787">"క్రిందికి ఉన్నట్లుగా"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"పూర్వ-భాగస్వామ్య కీలతో L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"ప్రమాణపత్రాలతో L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"పూర్వ-భాగస్వామ్య కీలు మరియు Xauth ప్రామాణీకరణతో IPSec VPN"</item>
+    <item msgid="3319427315593649917">"ప్రమాణపత్రాలు మరియు Xauth ప్రామాణీకరణతో IPSec VPN"</item>
+    <item msgid="8258927774145391041">"ప్రమాణపత్రాలు మరియు హైబ్రిడ్ ప్రామాణీకరణతో IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ఏదీ వద్దు"</item>
+    <item msgid="1157046369795346308">"మాన్యువల్"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"అడగండి"</item>
+    <item msgid="7718817231348607934">"ఎప్పటికీ అనుమతించవద్దు"</item>
+    <item msgid="8184570120217958741">"ఎల్లప్పుడూ అనుమతించు"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"స్థిరం"</item>
+    <item msgid="167418068739176448">"ప్రముఖ కార్యకలాపం"</item>
+    <item msgid="4760813290195199773">"ముఖ్యం (ముందుభాగం)"</item>
+    <item msgid="2328684826817647595">"ముఖ్యం (నేపథ్యం)"</item>
+    <item msgid="7746406490652867365">"బ్యాకప్"</item>
+    <item msgid="5597404364389196754">"అధిక భారం"</item>
+    <item msgid="1290888779300174556">"సేవ (అమలవుతోంది)"</item>
+    <item msgid="7241098542073939046">"సేవ (పునఃప్రారంభమవుతోంది)"</item>
+    <item msgid="6610439017684111046">"రిసీవర్"</item>
+    <item msgid="7367606086319921117">"హోమ్"</item>
+    <item msgid="3344660712396741826">"చివరి కార్యకలాపం"</item>
+    <item msgid="5006559348883303865">"కాష్ చేసినవి (కార్యకలాపం)"</item>
+    <item msgid="8633480732468137525">"కాష్ చేసినవి (కార్యకలాపం క్లయింట్)"</item>
+    <item msgid="6248998242443333892">"కాష్ చేసినవి (ఖాళీ)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"నీలి ఆకుపచ్చ"</item>
+    <item msgid="3228505970082457852">"నీలి రంగు"</item>
+    <item msgid="6590260735734795647">"నీలిరంగు"</item>
+    <item msgid="3521763377357218577">"వంగ రంగు"</item>
+    <item msgid="5932337981182999919">"గులాబీ"</item>
+    <item msgid="5642914536624000094">"ఎరుపు రంగు"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 రోజులు పైబడినవి"</item>
+    <item msgid="8699273238891265610">"60 రోజులు పైబడినవి"</item>
+    <item msgid="8346279419423837266">"90 రోజులు పైబడినవి"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ఆటోమేటిక్‌గా గుర్తించు"</item>
+    <item msgid="773943026484148895">"గణించబడేదానిగా పరిగణించండి"</item>
+    <item msgid="1008268820118852416">"గణించబడనిదిగా పరిగణించండి"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"యాదృచ్ఛిక MAC అడ్రస్‌ని ఉపయోగించండి (డిఫాల్ట్)"</item>
+    <item msgid="214234417308375326">"MAC పరికరాన్ని ఉపయోగించండి"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"వద్దు"</item>
+    <item msgid="1930581185557754880">"అవును"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"ముదురు రంగు"</item>
+    <item msgid="5079453644557603349">"లేత రంగు"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ఆఫ్‌లో ఉంది"</item>
+    <item msgid="4072198137051566919">"డీబగ్"</item>
+    <item msgid="2473005316958868509">"విశదీకృత"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"ఇల్లు మాత్రమే"</item>
+    <item msgid="1161026694891024702">"ఆటోమేటిక్‌"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"ప్రాధాన్యత ఉన్న నెట్‌వర్క్ మోడ్‌లు: GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"GSM మాత్రమే"</item>
+    <item msgid="8579197487913425819">"WCDMA మాత్రమే"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA స్వయంచాలకం"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo ఆటోమేటిక్‌"</item>
+    <item msgid="4219607161971472471">"CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo మాత్రమే"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"అంతర్జాతీయ"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA మాత్రమే"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"అంతర్జాతీయ"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMT"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-te/strings.xml b/tests/CarDeveloperOptions/res/values-te/strings.xml
index 9f09c49..273d210 100644
--- a/tests/CarDeveloperOptions/res/values-te/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-te/strings.xml
@@ -1303,7 +1303,7 @@
     <string name="system_update_settings_list_item_title" msgid="1907497454722790033">"సిస్టమ్ అప్‌డేట్‌లు"</string>
     <string name="system_update_settings_list_item_summary" msgid="3497456690691907873"></string>
     <string name="firmware_version" msgid="547095584029938749">"Android వెర్షన్"</string>
-    <string name="security_patch" msgid="483709031051932208">"Android భద్రతా అతికింపు స్థాయి"</string>
+    <string name="security_patch" msgid="483709031051932208">"Android భద్రతా ప్యాచ్ స్థాయి"</string>
     <string name="model_info" msgid="1729765474260797594">"మోడల్"</string>
     <string name="model_summary" msgid="8781425868254352168">"మోడల్: %1$s"</string>
     <string name="hardware_info" msgid="174270144950621815">"మోడల్ &amp; హార్డ్‌వేర్"</string>
@@ -2420,7 +2420,7 @@
     <string name="battery_used_by" msgid="840331542883421888">"<xliff:g id="APP">%2$s</xliff:g> <xliff:g id="PERCENT">%1$s</xliff:g> ఉపయోగించింది"</string>
     <string name="battery_overall_usage" msgid="5874301442415987516">"మొత్తం బ్యాటరీలో <xliff:g id="PERCENT">%1$s</xliff:g>"</string>
     <string name="battery_detail_since_full_charge" msgid="3814176986148084378">"చివరిసారి పూర్తిగా ఛార్జ్ చేసినప్పటి నుండి వినియోగ వివరాలు"</string>
-    <string name="battery_last_full_charge" msgid="5624033030647170717">"చివర‌గా పూర్తి ఛార్జ్ చేసింది"</string>
+    <string name="battery_last_full_charge" msgid="5624033030647170717">"చివరిసారి పూర్తిగా ఛార్జ్ చేసింది"</string>
     <string name="battery_full_charge_last" msgid="4614554109170251301">"పూర్తి ఛార్జ్ మిగిలి ఉండే సమయం"</string>
     <string name="battery_footer_summary" msgid="4828444679643906943">"బ్యాటరీ వినియోగ డేటా క‌చ్చితం కాదు. వాడ‌కాన్ని బ‌ట్టి మారుతూ ఉంటుంది"</string>
     <string name="battery_detail_foreground" msgid="6616408559186553085">"ఫోన్ బాగా వాడుతున్న‌ప్పుడు"</string>
@@ -2459,7 +2459,7 @@
     <string name="battery_saver_turn_on_automatically_never" msgid="2623381258359775227">"ఎప్పటికీ వద్దు"</string>
     <string name="battery_saver_turn_on_automatically_pct" msgid="434270432432390307">"<xliff:g id="PERCENT">%1$s</xliff:g> బ్యాటరీ ఉన్నప్పుడు"</string>
     <string name="battery_percentage" msgid="7782252476471033843">"బ్యాటరీ పవర్ శాతం"</string>
-    <string name="battery_percentage_description" msgid="9219875229166700610">"స్థితి బార్‌లో బ్యాటరీ పవర్ శాతాన్ని చూపు"</string>
+    <string name="battery_percentage_description" msgid="9219875229166700610">"స్టేటస్ బార్‌లో బ్యాటరీ పవర్ శాతాన్ని చూపుతుంది"</string>
     <string name="process_stats_summary_title" msgid="9189588417488537954">"ప్రాసెస్ గణాంకాలు"</string>
     <string name="process_stats_summary" msgid="8077998499161221885">"అమలవుతున్న ప్రాసెస్‌ల గురించి అసాధారణమైన గణాంకాలు"</string>
     <string name="app_memory_use" msgid="5126237308545653706">"మెమరీ వినియోగం"</string>
@@ -2519,13 +2519,13 @@
     <string name="credentials_install" product="nosdcard" msgid="8509362500537206883">"నిల్వ నుండి ఇన్‌స్టాల్ చేయండి"</string>
     <string name="credentials_install" product="default" msgid="8997183776710118353">"SD కార్డు నుండి ఇన్‌స్టాల్ చేయండి"</string>
     <string name="credentials_install_summary" product="nosdcard" msgid="3426661965567059596">"నిల్వ నుండి స‌ర్టిఫికెట్‌ల‌ను ఇన్‌స్టాల్ చేయండి"</string>
-    <string name="credentials_install_summary" product="default" msgid="4943897416156671633">"SD కార్డు నుండి ప్రమాణపత్రాలను ఇన్‌స్టాల్ చేయండి"</string>
+    <string name="credentials_install_summary" product="default" msgid="4943897416156671633">"SD కార్డు నుండి సర్టిఫికెట్‌లను ఇన్‌స్టాల్ చేయండి"</string>
     <string name="credentials_reset" msgid="355080737664731678">"ఆధారాలను క్లియర్ చేయండి"</string>
     <string name="credentials_reset_summary" msgid="7622528359699428555">"అన్ని స‌ర్టిఫికెట్‌ల‌ను తీసివేయండి"</string>
     <string name="trusted_credentials" msgid="6989242522455395200">"విశ్వసనీయ ఆధారాలు"</string>
-    <string name="trusted_credentials_summary" msgid="7411781319056251582">"విశ్వసనీయ CA స‌ర్టిఫికెట్‌ల‌ను ప్రదర్శించు"</string>
+    <string name="trusted_credentials_summary" msgid="7411781319056251582">"విశ్వసనీయ CA స‌ర్టిఫికెట్‌ల‌ను ప్రదర్శిస్తుంది"</string>
     <string name="user_credentials" msgid="8365731467650306757">"వినియోగదారు ఆధారాలు"</string>
-    <string name="user_credentials_summary" msgid="7350223899317423252">"నిల్వ చేసిన ఆధారాలను వీక్షించండి మరియు సవరించండి"</string>
+    <string name="user_credentials_summary" msgid="7350223899317423252">"నిల్వ ఉన్న ఆధారాలను చూడండి, వాటిని సవరించండి"</string>
     <string name="advanced_security_title" msgid="286883005673855845">"అధునాతనం"</string>
     <string name="credential_storage_type" msgid="2585337320206095255">"నిల్వ రకం"</string>
     <string name="credential_storage_type_hardware" msgid="5054143224259023600">"హార్డ్‌వేర్ మద్దతు"</string>
@@ -3397,7 +3397,7 @@
       <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> వర్గం</item>
     </plurals>
     <string name="no_channels" msgid="8884254729302501652">"ఈ యాప్ ఏ నోటిఫికేషన్‌లను పోస్ట్ చేయలేదు"</string>
-    <string name="app_settings_link" msgid="8465287765715790984">"యాప్‌లో అదనపు సెట్టింగ్‌లు"</string>
+    <string name="app_settings_link" msgid="8465287765715790984">"యాప్‌లోని అదనపు సెట్టింగ్‌లు"</string>
     <string name="app_notification_listing_summary_zero" msgid="4047782719487686699">"అన్ని యాప్‌లలో ఆన్ చేయబడ్డాయి"</string>
     <plurals name="app_notification_listing_summary_others" formatted="false" msgid="1161774065480666519">
       <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> యాప్‌లలో ఆఫ్ చేయబడింది</item>
@@ -3443,9 +3443,9 @@
     <string name="zen_mode_unknown_app_set_behavior" msgid="5666462954329932302">"ఈ సెట్టింగ్‌లు ప్రస్తుతం మార్చబడవు. ఒక యాప్ అనుకూల ప్రవర్తనతో స్వయంచాలకంగా అంతరాయం కలిగించవద్దుని ఆన్ చేసింది."</string>
     <string name="zen_mode_qs_set_behavior" msgid="788646569296973998">"ఈ సెట్టింగ్‌లు ప్రస్తుతం మార్చబడవు. అనుకూల ప్రవర్తనతో అంతరాయం కలిగించవద్దు మాన్యువల్‌గా ఆన్ చేయబడింది."</string>
     <string name="zen_schedule_rule_type_name" msgid="4516851728113801329">"సమయం"</string>
-    <string name="zen_schedule_rule_enabled_toast" msgid="1742354493045049048">"పేర్కొన్న సమయాల్లో అంతరాయం కలిగించవద్దు ఆన్ అయ్యేలా స్వయంచాలక నిబంధన సెట్ చేయబడింది"</string>
+    <string name="zen_schedule_rule_enabled_toast" msgid="1742354493045049048">"నిర్దేశిత‌ సమయాల్లో \'అంతరాయం కలిగించవద్దు\' ఆన్ అయ్యేలా ఆటోమేటిక్ నిబంధన సెట్ చేయబడింది"</string>
     <string name="zen_event_rule_type_name" msgid="7467729997336583342">"ఈవెంట్"</string>
-    <string name="zen_event_rule_enabled_toast" msgid="7087368268966855976">"పేర్కొన్న సందర్భాల్లో అంతరాయం కలిగించవద్దు ఆన్ అయ్యేలా స్వయంచాలక నిబంధన సెట్ చేయబడింది"</string>
+    <string name="zen_event_rule_enabled_toast" msgid="7087368268966855976">"నిర్దిష్ట‌ సందర్భాల్లో \'అంతరాయం కలిగించవద్దు\' ఆన్ అయ్యేలా ఆటోమేటిక్ నిబంధన సెట్ చేయబడింది"</string>
     <string name="zen_mode_event_rule_calendar" msgid="6088077103908487442">"వీటి సంబంధిత ఈవెంట్‌ల సమయంలో"</string>
     <string name="zen_mode_event_rule_summary_calendar_template" msgid="4027207992040792657">"<xliff:g id="CALENDAR">%1$s</xliff:g> సంబంధిత ఈవెంట్‌ల సమయంలో"</string>
     <string name="zen_mode_event_rule_summary_any_calendar" msgid="7590085295784895885">"ఏదైనా క్యాలెండర్"</string>
@@ -3701,10 +3701,10 @@
       <item quantity="other">యాప్‌ల కారణంగా బ్యాటరీ ఖాళీ అవుతోంది</item>
       <item quantity="one"><xliff:g id="APP">%1$s</xliff:g> కారణంగా బ్యాటరీ ఖాళీ అవుతోంది</item>
     </plurals>
-    <string name="high_power_filter_on" msgid="5294209328473386403">"అనుకూలీకరించనివి"</string>
+    <string name="high_power_filter_on" msgid="5294209328473386403">"ఆప్టిమైజ్ చేయనివి"</string>
     <string name="high_power_on" msgid="3573501822510580334">"అనుకూలీకరించబడలేదు"</string>
     <string name="high_power_off" msgid="5906679734326490426">"బ్యాటరీ వినియోగాన్ని ఆప్టిమైజ్ చేస్తోంది"</string>
-    <string name="high_power_system" msgid="739584574711292753">"బ్యాటరీ అనుకూలీకరణ అందుబాటులో లేదు"</string>
+    <string name="high_power_system" msgid="739584574711292753">"బ్యాటరీ ఆప్టిమైజేషన్ అందుబాటులో లేదు"</string>
     <string name="high_power_desc" msgid="333756885680362741">"బ్యాటరీ అనుకూలీకరణను వర్తింపజేయదు. మీ బ్యాటరీ మరింత శీఘ్రంగా వినియోగించబడవచ్చు."</string>
     <string name="high_power_prompt_title" msgid="2805745781720454052">"ఎల్లప్పుడూ నేపథ్యంలో అమలు కావడానికి అనువర్తనాన్ని అనుమతించాలా?"</string>
     <string name="high_power_prompt_body" msgid="8067395096053552289">"ఎల్లప్పుడూ నేపథ్యంలో అమలు కావడానికి <xliff:g id="APP_NAME">%1$s</xliff:g>ని అనుమతిస్తే బ్యాటరీ జీవితకాలం తగ్గిపోవచ్చు. \n\nమీరు తర్వాత సెట్టింగ్‌లు &gt; యాప్‌లు &amp; నోటిఫికేషన్‌లలోకి వెళ్లి దీనిని మార్చవచ్చు."</string>
@@ -3864,7 +3864,7 @@
     <string name="users_summary" msgid="6693338169439092387">"<xliff:g id="USER_NAME">%1$s</xliff:g>గా సైన్ ఇన్ చేసారు"</string>
     <string name="payment_summary" msgid="1381646849276543242">"<xliff:g id="APP_NAME">%1$s</xliff:g> డిఫాల్ట్‌గా ఉంది"</string>
     <string name="backup_disabled" msgid="6941165814784765643">"బ్యాకప్ నిలిపివేయబడింది"</string>
-    <string name="android_version_summary" msgid="2192751442789395445">"Android <xliff:g id="VERSION">%1$s</xliff:g>కి అప్‌డేట్ చేయబడింది"</string>
+    <string name="android_version_summary" msgid="2192751442789395445">"Android <xliff:g id="VERSION">%1$s</xliff:g>కు అప్‌డేట్ చేయబడింది"</string>
     <string name="android_version_pending_update_summary" msgid="3554543810520655076">"అప్‌డేట్ అందుబాటులో ఉంది"</string>
     <string name="disabled_by_policy_title" msgid="1238318274952958846">"చర్య అనుమతించబడదు"</string>
     <string name="disabled_by_policy_title_adjust_volume" msgid="7094547090629203316">"వాల్యూమ్‌ని మార్చలేరు"</string>
diff --git a/tests/CarDeveloperOptions/res/values-th-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-th-nokeys/strings.xml
new file mode 100644
index 0000000..a4a738e
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-th-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"จัดการแอปพลิเคชัน"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-th/arrays.xml b/tests/CarDeveloperOptions/res/values-th/arrays.xml
new file mode 100644
index 0000000..7492d38
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-th/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"อเมริกา"</item>
+    <item msgid="4791956477275129121">"ยุโรป"</item>
+    <item msgid="3812126832016254559">"แอฟริกา"</item>
+    <item msgid="2765816300353408280">"เอเชีย"</item>
+    <item msgid="6683489385344409742">"ออสเตรเลีย"</item>
+    <item msgid="5194868215515664953">"แปซิฟิก"</item>
+    <item msgid="7044520255415007865">"ทั้งหมด"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 วินาที"</item>
+    <item msgid="772029947136115322">"30 วินาที"</item>
+    <item msgid="8743663928349474087">"1 นาที"</item>
+    <item msgid="1506508631223164814">"2 นาที"</item>
+    <item msgid="8664703938127907662">"5 นาที"</item>
+    <item msgid="5827960506924849753">"10 นาที"</item>
+    <item msgid="6677424950124253938">"30 นาที"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"เล็ก"</item>
+    <item msgid="591935967183159581">"ค่าเริ่มต้น"</item>
+    <item msgid="1714184661981538355">"ใหญ่"</item>
+    <item msgid="6195563047686707484">"ใหญ่ที่สุด"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"กำลังสแกน..."</item>
+    <item msgid="8058143476674427024">"กำลังเชื่อมต่อไปยัง <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"กำลังตรวจสอบสิทธิ์กับ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"กำลังรับที่อยู่ IP จาก <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"เชื่อมต่อกับ <xliff:g id="NETWORK_NAME">%1$s</xliff:g> แล้ว"</item>
+    <item msgid="6600156231416890902">"ระงับไว้"</item>
+    <item msgid="4133290864821295785">"กำลังตัดการเชื่อมต่อจาก <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="3980154971187953257">"ถูกตัดการเชื่อมต่อ"</item>
+    <item msgid="2847316776634969068">"ไม่สำเร็จ"</item>
+    <item msgid="4390990424746035383">"ถูกบล็อก"</item>
+    <item msgid="3618248791367063949">"หลีกเลี่ยงการเชื่อมต่อกับสัญญาณที่ไม่แรงพอชั่วคราว"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"ปุ่มกด"</item>
+    <item msgid="7401896200768713930">"PIN จากอุปกรณ์เพียร์"</item>
+    <item msgid="4526848028011846710">"PIN จากอุปกรณ์นี้"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"เชื่อมต่อแล้ว"</item>
+    <item msgid="983792611851499732">"เชิญแล้ว"</item>
+    <item msgid="5438273405428201793">"ไม่สำเร็จ"</item>
+    <item msgid="4646663015449312554">"ใช้งานได้"</item>
+    <item msgid="3230556734162006146">"อยู่นอกระยะสัญญาณ"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 นาที"</item>
+    <item msgid="2759776603549270587">"5 นาที"</item>
+    <item msgid="167772676068860015">"1 ชั่วโมง"</item>
+    <item msgid="5985477119043628504">"ไม่มีระยะหมดเวลา"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 วันที่ผ่านมา"</item>
+    <item msgid="3211287705232736964">"ตั้งรอบการใช้..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"เวลาการใช้งาน"</item>
+    <item msgid="2784401352592276015">"ครั้งสุดท้ายที่ใช้"</item>
+    <item msgid="249854287216326349">"ชื่อแอปพลิเคชัน"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"ไม่มี"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"ไม่มี"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"คงที่"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"ไม่มี"</item>
+    <item msgid="1464741437353223198">"คู่มือ"</item>
+    <item msgid="5793600062487886090">"กำหนดค่าพร็อกซีอัตโนมัติ"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"ไม่มี"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP หรือ CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"ที่จัดเก็บข้อมูลอุปกรณ์ภายใน"</item>
+    <item msgid="3186681694079967527">"การ์ด SD แบบนำออกได้"</item>
+    <item msgid="6902033473986647035">"ให้ระบบเลือก"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"ตำแหน่ง"</item>
+    <item msgid="6842381562497597649">"ส่วนตัว"</item>
+    <item msgid="3966700236695683444">"การรับส่งข้อความ"</item>
+    <item msgid="8563996233342430477">"สื่อ"</item>
+    <item msgid="5323851085993963783">"อุปกรณ์"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"ตำแหน่งคร่าวๆ"</item>
+    <item msgid="1830619568689922920">"ตำแหน่งโดยละเอียด"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"สั่น"</item>
+    <item msgid="8632513128515114092">"อ่านรายชื่อติดต่อ"</item>
+    <item msgid="3741042113569620272">"แก้ไขรายชื่อติดต่อ"</item>
+    <item msgid="4204420969709009931">"อ่านประวัติการโทร"</item>
+    <item msgid="2260380357119423209">"แก้ไขประวัติการโทร"</item>
+    <item msgid="6550710385014530934">"อ่านปฏิทิน"</item>
+    <item msgid="3575906174264853951">"แก้ไขปฏิทิน"</item>
+    <item msgid="4319843242568057174">"ค้นหา WiFi"</item>
+    <item msgid="2981791890467303819">"การแจ้งเตือน"</item>
+    <item msgid="6617825156152476692">"ค้นหาเซลล์"</item>
+    <item msgid="8865260890611559753">"โทรเข้าโทรศัพท์"</item>
+    <item msgid="3254999273961542982">"อ่าน SMS"</item>
+    <item msgid="7711446453028825171">"เขียน SMS"</item>
+    <item msgid="6123238544099198034">"รับ SMS"</item>
+    <item msgid="838342167431596036">"รับ SMS ฉุกเฉิน"</item>
+    <item msgid="8554432731560956686">"รับ MMS"</item>
+    <item msgid="7464863464299515059">"รับ WAP Push"</item>
+    <item msgid="310463075729606765">"ส่ง SMS"</item>
+    <item msgid="7338021933527689514">"อ่าน ICC SMS"</item>
+    <item msgid="6130369335466613036">"เขียน ICC SMS"</item>
+    <item msgid="6536865581421670942">"แก้ไขการตั้งค่า"</item>
+    <item msgid="4547203129183558973">"วาดด้านบน"</item>
+    <item msgid="9080347512916542840">"เข้าถึงการแจ้งเตือน"</item>
+    <item msgid="5332718516635907742">"กล้อง"</item>
+    <item msgid="6098422447246167852">"บันทึกเสียง"</item>
+    <item msgid="9182794235292595296">"เล่นเสียง"</item>
+    <item msgid="8760743229597702019">"อ่านคลิปบอร์ด"</item>
+    <item msgid="2266923698240538544">"แก้ไขคลิปบอร์ด"</item>
+    <item msgid="1801619438618539275">"ปุ่มสื่อ"</item>
+    <item msgid="31588119965784465">"โฟกัสอัตโนมัติ"</item>
+    <item msgid="7565226799008076833">"ระดับเสียงหลัก"</item>
+    <item msgid="5420704980305018295">"ระดับเสียงสนทนา"</item>
+    <item msgid="5797363115508970204">"ระดับเสียงเรียกเข้า"</item>
+    <item msgid="8233154098550715999">"ระดับเสียงของสื่อ"</item>
+    <item msgid="5196715605078153950">"ระดับเสียงปลุก"</item>
+    <item msgid="394030698764284577">"ระดับเสียงการแจ้งเตือน"</item>
+    <item msgid="8952898972491680178">"ระดับเสียงบลูทูธ"</item>
+    <item msgid="8506227454543690851">"ทำงานตลอดเวลา"</item>
+    <item msgid="1108160036049727420">"ตำแหน่งจอภาพ"</item>
+    <item msgid="1496205959751719491">"ติดตามตำแหน่งโดยใช้พลังงานมาก"</item>
+    <item msgid="3776296279910987380">"ดูสถิติการใช้งาน"</item>
+    <item msgid="8827100324471975602">"ปิด/เปิดเสียงไมโครโฟน"</item>
+    <item msgid="6880736730520126864">"แสดงข้อความโทสต์"</item>
+    <item msgid="4933375960222609935">"สื่อของโครงการ"</item>
+    <item msgid="8357907018938895462">"เปิดใช้งาน VPN"</item>
+    <item msgid="8143812849911310973">"เขียนวอลเปเปอร์"</item>
+    <item msgid="6266277260961066535">"สนับสนุนโครงสร้าง"</item>
+    <item msgid="7715498149883482300">"สนับสนุนภาพหน้าจอ"</item>
+    <item msgid="4046679376726313293">"อ่านสถานะโทรศัพท์"</item>
+    <item msgid="6329507266039719587">"เพิ่มข้อความเสียง"</item>
+    <item msgid="7692440726415391408">"ใช้ SIP"</item>
+    <item msgid="8572453398128326267">"โทรออก"</item>
+    <item msgid="7775674394089376306">"ลายนิ้วมือ"</item>
+    <item msgid="3182815133441738779">"เซ็นเซอร์ร่างกาย"</item>
+    <item msgid="2793100005496829513">"อ่านการส่งข้อมูลเตือนภัยทางมือถือ (CB)"</item>
+    <item msgid="2633626056029384366">"จำลองสถานที่"</item>
+    <item msgid="8356842191824684631">"อ่านพื้นที่เก็บข้อมูล"</item>
+    <item msgid="5671906070163291500">"เขียนพื้นที่เก็บข้อมูล"</item>
+    <item msgid="2791955098549340418">"เปิดหน้าจอ"</item>
+    <item msgid="5599435119609178367">"สร้างบัญชี"</item>
+    <item msgid="1165623660533024666">"ทำงานในพื้นหลัง"</item>
+    <item msgid="6423861043647911030">"ระดับเสียงการเข้าถึง"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"สั้น"</item>
+    <item msgid="4816511817309094890">"ปานกลาง"</item>
+    <item msgid="8305084671259331134">"ยาว"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ค่าเริ่มต้น"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif แบบย่อ"</item>
+    <item msgid="6529379119163117545">"Sans-serif ความกว้างคงที่"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif ความกว้างคงที่"</item>
+    <item msgid="4448481989108928248">"แบบไม่เป็นทางการ"</item>
+    <item msgid="4627069151979553527">"คัดลายมือ"</item>
+    <item msgid="6896773537705206194">"อักษรตัวพิมพ์ใหญ่ขนาดเล็ก"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ค่าเริ่มต้น"</item>
+    <item msgid="6488643537808152001">"ไม่มี"</item>
+    <item msgid="552332815156010137">"ตีกรอบ"</item>
+    <item msgid="7187891159463789272">"เงาตกกระทบ"</item>
+    <item msgid="8019330250538856521">"ยกสูงขึ้น"</item>
+    <item msgid="8987385315647049787">"ลดต่ำ"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"ใช้ค่าเริ่มต้นของแอป"</item>
+    <item msgid="8611890312638868524">"สีขาวบนพื้นสีดำ"</item>
+    <item msgid="5891360837786277638">"สีดำบนพื้นสีขาว"</item>
+    <item msgid="2798457065945456853">"สีเหลืองบนพื้นสีดำ"</item>
+    <item msgid="5799049811524553967">"สีเหลืองบนพื้นสีน้ำเงิน"</item>
+    <item msgid="3673930830658169860">"กำหนดเอง"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN พร้อมด้วยคีย์ที่แชร์ไว้ล่วงหน้า"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN พร้อมด้วยใบรับรอง"</item>
+    <item msgid="312397853907741968">"IPSec VPN พร้อมด้วยคีย์ที่แชร์ไว้ล่วงหน้าและการตรวจสอบสิทธิ์ Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN พร้อมด้วยใบรับรองและการตรวจสอบสิทธิ์ Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN พร้อมด้วยใบรับรองและการตรวจสอบสิทธิ์แบบผสม"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"ไม่มี"</item>
+    <item msgid="1157046369795346308">"คู่มือ"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"ถูกตัดการเชื่อมต่อ"</item>
+    <item msgid="8754480102834556765">"กำลังเริ่มต้น..."</item>
+    <item msgid="3351334355574270250">"กำลังเชื่อมต่อ…"</item>
+    <item msgid="8303882153995748352">"เชื่อมต่อแล้ว"</item>
+    <item msgid="9135049670787351881">"ระยะหมดเวลา"</item>
+    <item msgid="2124868417182583926">"ไม่สำเร็จ"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"ถาม"</item>
+    <item msgid="7718817231348607934">"ไม่อนุญาตเลย"</item>
+    <item msgid="8184570120217958741">"อนุญาตเสมอ"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"ต่อเนื่อง"</item>
+    <item msgid="167418068739176448">"กิจกรรมแรก"</item>
+    <item msgid="4760813290195199773">"สำคัญ (พื้นหน้า)"</item>
+    <item msgid="2328684826817647595">"สำคัญ (พื้นหลัง)"</item>
+    <item msgid="7746406490652867365">"การสำรองข้อมูล"</item>
+    <item msgid="5597404364389196754">"ใช้หน่วยความจำมาก"</item>
+    <item msgid="1290888779300174556">"บริการ (กำลังทำงาน)"</item>
+    <item msgid="7241098542073939046">"บริการ (กำลังรีสตาร์ท)"</item>
+    <item msgid="6610439017684111046">"ผู้รับ"</item>
+    <item msgid="7367606086319921117">"หน้าแรก"</item>
+    <item msgid="3344660712396741826">"กิจกรรมสุดท้าย"</item>
+    <item msgid="5006559348883303865">"แคชไว้ (กิจกรรม)"</item>
+    <item msgid="8633480732468137525">"แคชไว้ (ไคลเอ็นต์กิจกรรม)"</item>
+    <item msgid="6248998242443333892">"แคชไว้ (ว่างเปล่า)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"น้ำเงินอมเขียว"</item>
+    <item msgid="3228505970082457852">"น้ำเงิน"</item>
+    <item msgid="6590260735734795647">"น้ำเงินอมม่วง"</item>
+    <item msgid="3521763377357218577">"ม่วง"</item>
+    <item msgid="5932337981182999919">"ชมพู"</item>
+    <item msgid="5642914536624000094">"แดง"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"เกิน 30 วัน"</item>
+    <item msgid="8699273238891265610">"เกิน 60 วัน"</item>
+    <item msgid="8346279419423837266">"เกิน 90 วัน"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"ตรวจหาโดยอัตโนมัติ"</item>
+    <item msgid="773943026484148895">"ถือว่ามีการวัดปริมาณอินเทอร์เน็ต"</item>
+    <item msgid="1008268820118852416">"ถือว่าไม่มีการวัดปริมาณอินเทอร์เน็ต"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"ใช้ที่อยู่ MAC แบบสุ่ม (ค่าเริ่มต้น)"</item>
+    <item msgid="214234417308375326">"ใช้ที่อยู่ MAC ของอุปกรณ์"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"ไม่"</item>
+    <item msgid="1930581185557754880">"ใช่"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"มืด"</item>
+    <item msgid="5079453644557603349">"สีอ่อน"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"ปิด"</item>
+    <item msgid="4072198137051566919">"แก้ไขข้อบกพร่อง"</item>
+    <item msgid="2473005316958868509">"รายละเอียด"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"เครือข่ายบ้านเท่านั้น"</item>
+    <item msgid="1161026694891024702">"อัตโนมัติ"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"ต้องการ GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"GSM เท่านั้น"</item>
+    <item msgid="8579197487913425819">"WCDMA เท่านั้น"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA อัตโนมัติ"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo อัตโนมัติ"</item>
+    <item msgid="4219607161971472471">"CDMA ที่ไม่มี EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo เท่านั้น"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"ทั่วโลก"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA เท่านั้น"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"ทั่วโลก"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-th/strings.xml b/tests/CarDeveloperOptions/res/values-th/strings.xml
index 0455a58..32f93b9 100644
--- a/tests/CarDeveloperOptions/res/values-th/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-th/strings.xml
@@ -3521,7 +3521,7 @@
     <string name="zen_mode_when" msgid="7835420687948416255">"เปิดโดยอัตโนมัติ"</string>
     <string name="zen_mode_when_never" msgid="4506296396609224524">"ไม่ใช้"</string>
     <string name="zen_mode_when_every_night" msgid="3942151668791426194">"ทุกคืน"</string>
-    <string name="zen_mode_when_weeknights" msgid="2412709309122408474">"คืนวันจันทร์-ศุกร์"</string>
+    <string name="zen_mode_when_weeknights" msgid="2412709309122408474">"คืนวันธรรมดา"</string>
     <string name="zen_mode_start_time" msgid="5979122139937561731">"เวลาเริ่มต้น"</string>
     <string name="zen_mode_end_time" msgid="3188578493250909972">"เวลาสิ้นสุด"</string>
     <string name="zen_mode_end_time_next_day_summary_format" msgid="1598612215612648214">"<xliff:g id="FORMATTED_TIME">%s</xliff:g> วันถัดไป"</string>
diff --git a/tests/CarDeveloperOptions/res/values-tl-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-tl-nokeys/strings.xml
new file mode 100644
index 0000000..8a13a50
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-tl-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Pamahalaan ang mga application"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-tl/arrays.xml b/tests/CarDeveloperOptions/res/values-tl/arrays.xml
new file mode 100644
index 0000000..ac105cb
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-tl/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"America"</item>
+    <item msgid="4791956477275129121">"Europe"</item>
+    <item msgid="3812126832016254559">"Africa"</item>
+    <item msgid="2765816300353408280">"Asia"</item>
+    <item msgid="6683489385344409742">"Australia"</item>
+    <item msgid="5194868215515664953">"Pacific"</item>
+    <item msgid="7044520255415007865">"Lahat"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 segundo"</item>
+    <item msgid="772029947136115322">"30 segundo"</item>
+    <item msgid="8743663928349474087">"1 minuto"</item>
+    <item msgid="1506508631223164814">"2 minuto"</item>
+    <item msgid="8664703938127907662">"5 minuto"</item>
+    <item msgid="5827960506924849753">"10 minuto"</item>
+    <item msgid="6677424950124253938">"30 minuto"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Maliit"</item>
+    <item msgid="591935967183159581">"Default"</item>
+    <item msgid="1714184661981538355">"Malaki"</item>
+    <item msgid="6195563047686707484">"Pinakamalaki"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Nagsa-scan..."</item>
+    <item msgid="8058143476674427024">"Kumukonekta sa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Nagpapatotoo sa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Kumukuha ng IP address mula sa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Nakakonekta sa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Suspendido"</item>
+    <item msgid="4133290864821295785">"Inaalis sa pagkakakonekta mula sa <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Hindi nakakonekta"</item>
+    <item msgid="2847316776634969068">"Hindi tagumpay"</item>
+    <item msgid="4390990424746035383">"Naka-block"</item>
+    <item msgid="3618248791367063949">"Pansamantalang iniiwasan ang mabagal na koneksyon"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"button na Push"</item>
+    <item msgid="7401896200768713930">"PIN mula sa device ng kaibigan"</item>
+    <item msgid="4526848028011846710">"PIN mula sa device"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Nakakonekta"</item>
+    <item msgid="983792611851499732">"Inimbitahan"</item>
+    <item msgid="5438273405428201793">"Hindi tagumpay"</item>
+    <item msgid="4646663015449312554">"Available"</item>
+    <item msgid="3230556734162006146">"Wala-sa-sakop"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 minuto"</item>
+    <item msgid="2759776603549270587">"5 minuto"</item>
+    <item msgid="167772676068860015">"1 oras"</item>
+    <item msgid="5985477119043628504">"Huwag kailanman mag-time out"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Nakalipas na 30 araw"</item>
+    <item msgid="3211287705232736964">"Itakda ang usage cycle..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Oras ng paggamit"</item>
+    <item msgid="2784401352592276015">"Huling oras na ginamit"</item>
+    <item msgid="249854287216326349">"Pangalan ng app"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Wala"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Wala"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Static"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Wala"</item>
+    <item msgid="1464741437353223198">"Manual"</item>
+    <item msgid="5793600062487886090">"Auto-Config ng Proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Wala"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP o CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Storage ng panloob na device"</item>
+    <item msgid="3186681694079967527">"Naaalis na SD card"</item>
+    <item msgid="6902033473986647035">"Hayaang magpasya ang system"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Lokasyon"</item>
+    <item msgid="6842381562497597649">"Personal"</item>
+    <item msgid="3966700236695683444">"Pagmemensahe"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Device"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"tinatayang lokasyon"</item>
+    <item msgid="1830619568689922920">"eksaktong lokasyon"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"mag-vibrate"</item>
+    <item msgid="8632513128515114092">"magbasa ng mga contact"</item>
+    <item msgid="3741042113569620272">"baguhin ang mga contact"</item>
+    <item msgid="4204420969709009931">"basahin ang log ng tawag"</item>
+    <item msgid="2260380357119423209">"baguhin ang log ng tawag"</item>
+    <item msgid="6550710385014530934">"magbasa ng kalendaryo"</item>
+    <item msgid="3575906174264853951">"baguhin ang kalendaryo"</item>
+    <item msgid="4319843242568057174">"pag-scan ng wi-fi"</item>
+    <item msgid="2981791890467303819">"notification"</item>
+    <item msgid="6617825156152476692">"pag-scan ng cell"</item>
+    <item msgid="8865260890611559753">"tumawag sa telepono"</item>
+    <item msgid="3254999273961542982">"magbasa ng SMS"</item>
+    <item msgid="7711446453028825171">"sumulat ng SMS"</item>
+    <item msgid="6123238544099198034">"tumanggap ng SMS"</item>
+    <item msgid="838342167431596036">"tumanggap ng pang-emergency na SMS"</item>
+    <item msgid="8554432731560956686">"tumanggap ng MMS"</item>
+    <item msgid="7464863464299515059">"tumanggap ng WAP push"</item>
+    <item msgid="310463075729606765">"magpadala ng SMS"</item>
+    <item msgid="7338021933527689514">"magbasa ng ICC SMS"</item>
+    <item msgid="6130369335466613036">"sumulat ng ICC SMS"</item>
+    <item msgid="6536865581421670942">"baguhin ang mga setting"</item>
+    <item msgid="4547203129183558973">"gumuhit sa tuktok"</item>
+    <item msgid="9080347512916542840">"i-access ang mga notification"</item>
+    <item msgid="5332718516635907742">"camera"</item>
+    <item msgid="6098422447246167852">"i-record ang audio"</item>
+    <item msgid="9182794235292595296">"i-play ang audio"</item>
+    <item msgid="8760743229597702019">"basahin ang clipboard"</item>
+    <item msgid="2266923698240538544">"baguhin ang clipboard"</item>
+    <item msgid="1801619438618539275">"mga button ng media"</item>
+    <item msgid="31588119965784465">"focus ng audio"</item>
+    <item msgid="7565226799008076833">"master na volume"</item>
+    <item msgid="5420704980305018295">"volume ng boses"</item>
+    <item msgid="5797363115508970204">"volume ng ring"</item>
+    <item msgid="8233154098550715999">"volume ng media"</item>
+    <item msgid="5196715605078153950">"volume ng alarma"</item>
+    <item msgid="394030698764284577">"volume ng notification"</item>
+    <item msgid="8952898972491680178">"volume ng bluetooth"</item>
+    <item msgid="8506227454543690851">"panatilihing bukas"</item>
+    <item msgid="1108160036049727420">"subaybayan ang lokasyon"</item>
+    <item msgid="1496205959751719491">"subaybayan ang lokasyon na gumagamit ng maraming power"</item>
+    <item msgid="3776296279910987380">"kumuha ng stats sa paggamit"</item>
+    <item msgid="8827100324471975602">"i-mute/i-unmute ang mikropono"</item>
+    <item msgid="6880736730520126864">"ipakita ang toast"</item>
+    <item msgid="4933375960222609935">"i-project ang media"</item>
+    <item msgid="8357907018938895462">"i-activate ang VPN"</item>
+    <item msgid="8143812849911310973">"write wallpaper"</item>
+    <item msgid="6266277260961066535">"assist structure"</item>
+    <item msgid="7715498149883482300">"assist screenshot"</item>
+    <item msgid="4046679376726313293">"basahin ang katayuan ng telepono"</item>
+    <item msgid="6329507266039719587">"magdagdag ng voicemail"</item>
+    <item msgid="7692440726415391408">"gamitin ang sip"</item>
+    <item msgid="8572453398128326267">"iproseso ang papalabas na tawag"</item>
+    <item msgid="7775674394089376306">"fingerprint"</item>
+    <item msgid="3182815133441738779">"mga sensor ng katawan"</item>
+    <item msgid="2793100005496829513">"basahin ang mga cell broadcast"</item>
+    <item msgid="2633626056029384366">"kunwaring lokasyon"</item>
+    <item msgid="8356842191824684631">"basahin ang storage"</item>
+    <item msgid="5671906070163291500">"i-write ang storage"</item>
+    <item msgid="2791955098549340418">"i-on ang screen"</item>
+    <item msgid="5599435119609178367">"kunin ang mga account"</item>
+    <item msgid="1165623660533024666">"patakbuhin sa background"</item>
+    <item msgid="6423861043647911030">"dami ng pagiging naa-access"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Maikli"</item>
+    <item msgid="4816511817309094890">"Katamtaman"</item>
+    <item msgid="8305084671259331134">"Mahaba"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Default"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Maliliit na capital"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Default"</item>
+    <item msgid="6488643537808152001">"Wala"</item>
+    <item msgid="552332815156010137">"Outline"</item>
+    <item msgid="7187891159463789272">"Drop shadow"</item>
+    <item msgid="8019330250538856521">"Nakaangat"</item>
+    <item msgid="8987385315647049787">"Depressed"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Gamitin ang app default"</item>
+    <item msgid="8611890312638868524">"Puti sa itim"</item>
+    <item msgid="5891360837786277638">"Itim sa puti"</item>
+    <item msgid="2798457065945456853">"Dilaw sa itim"</item>
+    <item msgid="5799049811524553967">"Dilaw sa asul"</item>
+    <item msgid="3673930830658169860">"Custom"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN na may mga paunang nabahaging key"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN na may mga certificate"</item>
+    <item msgid="312397853907741968">"IPSec VPN na may mga paunang nabahaging keys at pagpapatotoo ng Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN na may mga certificate at pagpapatotoo ng Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN na may mga certificate at hybrid na pagpapatotoo"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Wala"</item>
+    <item msgid="1157046369795346308">"Manual"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Hindi nakakonekta"</item>
+    <item msgid="8754480102834556765">"Sinisimulan…"</item>
+    <item msgid="3351334355574270250">"Kumokonekta…"</item>
+    <item msgid="8303882153995748352">"Nakakonekta"</item>
+    <item msgid="9135049670787351881">"Timeout"</item>
+    <item msgid="2124868417182583926">"Hindi tagumpay"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Magtanong"</item>
+    <item msgid="7718817231348607934">"Huwag kailanman payagan"</item>
+    <item msgid="8184570120217958741">"Palaging payagan"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Tuluy-tuloy"</item>
+    <item msgid="167418068739176448">"Nangungunang gawain"</item>
+    <item msgid="4760813290195199773">"Mahalaga (foreground)"</item>
+    <item msgid="2328684826817647595">"Mahalaga (background)"</item>
+    <item msgid="7746406490652867365">"Pag-back Up"</item>
+    <item msgid="5597404364389196754">"Mabigat na timbang"</item>
+    <item msgid="1290888779300174556">"Serbisyo (gumagana)"</item>
+    <item msgid="7241098542073939046">"Serbisyo (nagre-restart)"</item>
+    <item msgid="6610439017684111046">"Receiver"</item>
+    <item msgid="7367606086319921117">"Home"</item>
+    <item msgid="3344660712396741826">"Huling gawain"</item>
+    <item msgid="5006559348883303865">"Naka-cache (gawain)"</item>
+    <item msgid="8633480732468137525">"Naka-cache (client ng gawain)"</item>
+    <item msgid="6248998242443333892">"Naka-cache (walang laman)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Teal"</item>
+    <item msgid="3228505970082457852">"Asul"</item>
+    <item msgid="6590260735734795647">"Indigo"</item>
+    <item msgid="3521763377357218577">"Lila"</item>
+    <item msgid="5932337981182999919">"Pink"</item>
+    <item msgid="5642914536624000094">"Pula"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Higit sa 30 araw"</item>
+    <item msgid="8699273238891265610">"Higit sa 60 araw"</item>
+    <item msgid="8346279419423837266">"Higit sa 90 araw"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Awtomatikong tukuyin"</item>
+    <item msgid="773943026484148895">"Ituring bilang nakametro"</item>
+    <item msgid="1008268820118852416">"Ituring bilang hindi nakametro"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Gamitin ang na-randomize na MAC (default)"</item>
+    <item msgid="214234417308375326">"Gamitin ang device MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Huwag"</item>
+    <item msgid="1930581185557754880">"Oo"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Madilim"</item>
+    <item msgid="5079453644557603349">"Maliwanag"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Naka-off"</item>
+    <item msgid="4072198137051566919">"Debug"</item>
+    <item msgid="2473005316958868509">"Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Home lang"</item>
+    <item msgid="1161026694891024702">"Awtomatiko"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Mas gusto ang GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"GSM lang"</item>
+    <item msgid="8579197487913425819">"WCDMA lang"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA auto"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo auto"</item>
+    <item msgid="4219607161971472471">"CDMA na walang EvDo"</item>
+    <item msgid="7278975240951052041">"EvDo lang"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Pangkalahatan"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"TDSCDMA lang"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Pangkalahatan"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-tr-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-tr-nokeys/strings.xml
new file mode 100644
index 0000000..c83a1ca
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-tr-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Uygulamaları yönet"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-tr/arrays.xml b/tests/CarDeveloperOptions/res/values-tr/arrays.xml
new file mode 100644
index 0000000..c89a502
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-tr/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Avrupa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Asya"</item>
+    <item msgid="6683489385344409742">"Avustralya"</item>
+    <item msgid="5194868215515664953">"Pasifik"</item>
+    <item msgid="7044520255415007865">"Tümü"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 saniye"</item>
+    <item msgid="772029947136115322">"30 saniye"</item>
+    <item msgid="8743663928349474087">"1 dakika"</item>
+    <item msgid="1506508631223164814">"2 dakika"</item>
+    <item msgid="8664703938127907662">"5 dakika"</item>
+    <item msgid="5827960506924849753">"10 dakika"</item>
+    <item msgid="6677424950124253938">"30 dakika"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Küçük"</item>
+    <item msgid="591935967183159581">"Varsayılan"</item>
+    <item msgid="1714184661981538355">"Büyük"</item>
+    <item msgid="6195563047686707484">"En büyük"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Taranıyor…"</item>
+    <item msgid="8058143476674427024">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> ağına bağlanılıyor…"</item>
+    <item msgid="7547609081339573756">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> üzerinde kimlik doğrulanıyor…"</item>
+    <item msgid="5145158315060185414">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> ağından IP adresi alınıyor…"</item>
+    <item msgid="3283243151651124831">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> ağına bağlandı"</item>
+    <item msgid="6600156231416890902">"Askıya alındı"</item>
+    <item msgid="4133290864821295785">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g> bağlantısı kesiliyor…"</item>
+    <item msgid="3980154971187953257">"Bağlantı kesildi"</item>
+    <item msgid="2847316776634969068">"Başarısız"</item>
+    <item msgid="4390990424746035383">"Engellendi"</item>
+    <item msgid="3618248791367063949">"Kötü bağlantıdan geçici olarak kaçınılıyor"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Düğme"</item>
+    <item msgid="7401896200768713930">"Eş cihazın PIN\'i"</item>
+    <item msgid="4526848028011846710">"Bu cihazın PIN\'i"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Bağlı"</item>
+    <item msgid="983792611851499732">"Davet edildi"</item>
+    <item msgid="5438273405428201793">"Başarısız"</item>
+    <item msgid="4646663015449312554">"Kullanılabilir"</item>
+    <item msgid="3230556734162006146">"Kapsama alanı dışında"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 dakika"</item>
+    <item msgid="2759776603549270587">"5 dakika"</item>
+    <item msgid="167772676068860015">"1 saat"</item>
+    <item msgid="5985477119043628504">"Asla zaman aşımı olmasın"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Son 30 gün"</item>
+    <item msgid="3211287705232736964">"Kullanım döngüsünü ayarla..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Kullanım süresi"</item>
+    <item msgid="2784401352592276015">"Son kullanıldığı tarih"</item>
+    <item msgid="249854287216326349">"Uygulama adı"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Hiçbiri"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GT"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Hiçbiri"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GT"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Statik"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Hiçbiri"</item>
+    <item msgid="1464741437353223198">"Manuel"</item>
+    <item msgid="5793600062487886090">"Proxy Otomatik Yapılandırması"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Hiçbiri"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP veya CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Dahili cihaz depolaması"</item>
+    <item msgid="3186681694079967527">"Çıkarılabilir SD kart"</item>
+    <item msgid="6902033473986647035">"Sistem karar versin"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Konum"</item>
+    <item msgid="6842381562497597649">"Kişisel"</item>
+    <item msgid="3966700236695683444">"Mesajlaşma"</item>
+    <item msgid="8563996233342430477">"Medya"</item>
+    <item msgid="5323851085993963783">"Cihaz"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"yaklaşık konum"</item>
+    <item msgid="1830619568689922920">"hassas konum"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"titreşim"</item>
+    <item msgid="8632513128515114092">"kişileri oku"</item>
+    <item msgid="3741042113569620272">"kişileri değiştir"</item>
+    <item msgid="4204420969709009931">"çağrı günlüğünü oku"</item>
+    <item msgid="2260380357119423209">"çağrı günlüğünü değiştir"</item>
+    <item msgid="6550710385014530934">"takvimi oku"</item>
+    <item msgid="3575906174264853951">"takvimi değiştir"</item>
+    <item msgid="4319843242568057174">"kablosuz tarama"</item>
+    <item msgid="2981791890467303819">"bildirim"</item>
+    <item msgid="6617825156152476692">"hücre tarama"</item>
+    <item msgid="8865260890611559753">"telefon et"</item>
+    <item msgid="3254999273961542982">"SMS oku"</item>
+    <item msgid="7711446453028825171">"SMS yaz"</item>
+    <item msgid="6123238544099198034">"SMS al"</item>
+    <item msgid="838342167431596036">"acil SMS al"</item>
+    <item msgid="8554432731560956686">"MMS al"</item>
+    <item msgid="7464863464299515059">"WAP push al"</item>
+    <item msgid="310463075729606765">"SMS gönder"</item>
+    <item msgid="7338021933527689514">"ICC SMS oku"</item>
+    <item msgid="6130369335466613036">"ICC SMS yaz"</item>
+    <item msgid="6536865581421670942">"ayarları değiştir"</item>
+    <item msgid="4547203129183558973">"üste çiz"</item>
+    <item msgid="9080347512916542840">"bildirimlere eriş"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"ses kaydet"</item>
+    <item msgid="9182794235292595296">"sesi çal"</item>
+    <item msgid="8760743229597702019">"panoyu oku"</item>
+    <item msgid="2266923698240538544">"panoyu değiştir"</item>
+    <item msgid="1801619438618539275">"medya düğmeleri"</item>
+    <item msgid="31588119965784465">"ses odağı"</item>
+    <item msgid="7565226799008076833">"ana ses düzeyi"</item>
+    <item msgid="5420704980305018295">"konuşma sesi düzeyi"</item>
+    <item msgid="5797363115508970204">"çalma sesi düzeyi"</item>
+    <item msgid="8233154098550715999">"medya sesi düzeyi"</item>
+    <item msgid="5196715605078153950">"alarm sesi düzeyi"</item>
+    <item msgid="394030698764284577">"bildirim sesi düzeyi"</item>
+    <item msgid="8952898972491680178">"Bluetooth ses düzeyi"</item>
+    <item msgid="8506227454543690851">"uyanık tut"</item>
+    <item msgid="1108160036049727420">"konumu izle"</item>
+    <item msgid="1496205959751719491">"yüksek güç tüketen konum hizmetlerini izle"</item>
+    <item msgid="3776296279910987380">"kullanım istatistiklerini al"</item>
+    <item msgid="8827100324471975602">"mikrofonu kapat/aç"</item>
+    <item msgid="6880736730520126864">"kısa ileti göster"</item>
+    <item msgid="4933375960222609935">"medya yansıtma"</item>
+    <item msgid="8357907018938895462">"VPN\'yi etkinleştir"</item>
+    <item msgid="8143812849911310973">"yazı duvar kağıdı"</item>
+    <item msgid="6266277260961066535">"yardım yapısı"</item>
+    <item msgid="7715498149883482300">"yardım ekran görüntüsü"</item>
+    <item msgid="4046679376726313293">"telefon durumunu oku"</item>
+    <item msgid="6329507266039719587">"sesli mesaj ekle"</item>
+    <item msgid="7692440726415391408">"SIP kullan"</item>
+    <item msgid="8572453398128326267">"giden çağrıyı işle"</item>
+    <item msgid="7775674394089376306">"dijital parmak izi"</item>
+    <item msgid="3182815133441738779">"vücut sensörleri"</item>
+    <item msgid="2793100005496829513">"hücre yayınlarını oku"</item>
+    <item msgid="2633626056029384366">"sahte konum"</item>
+    <item msgid="8356842191824684631">"depolama alanını oku"</item>
+    <item msgid="5671906070163291500">"depolama alanına yaz"</item>
+    <item msgid="2791955098549340418">"ekranı aç"</item>
+    <item msgid="5599435119609178367">"hesapları al"</item>
+    <item msgid="1165623660533024666">"arka planda çalıştır"</item>
+    <item msgid="6423861043647911030">"erişilebilirlik ses düzeyi"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Konum"</item>
+    <item msgid="6656077694190491067">"Konum"</item>
+    <item msgid="8790228218278477369">"Konum"</item>
+    <item msgid="7836406246005211990">"Titreşim"</item>
+    <item msgid="3951439024549922598">"Kişileri oku"</item>
+    <item msgid="8802152411647068">"Kişileri değiştir"</item>
+    <item msgid="229544934599698735">"Çağrı günlüğünü oku"</item>
+    <item msgid="7396102294405899613">"Çağrı günlüğünü değiştir"</item>
+    <item msgid="3597797992398484655">"Takvimi okuma"</item>
+    <item msgid="2705975774250907343">"Takvimi değiştir"</item>
+    <item msgid="4668747371441932697">"Konum"</item>
+    <item msgid="1487578921720243646">"Bildirim yayınla"</item>
+    <item msgid="4636080349724146638">"Konum"</item>
+    <item msgid="673510900286463926">"Telefon et"</item>
+    <item msgid="542083422784609790">"SMS/MMS oku"</item>
+    <item msgid="1033780373029588436">"SMS/MMS yaz"</item>
+    <item msgid="5647111115517787488">"SMS/MMS al"</item>
+    <item msgid="8591105601108455893">"SMS/MMS al"</item>
+    <item msgid="7730995008517841903">"SMS/MMS al"</item>
+    <item msgid="2613033109026626086">"SMS/MMS al"</item>
+    <item msgid="3037159047591081136">"SMS/MMS gönder"</item>
+    <item msgid="4726682243833913568">"SMS/MMS oku"</item>
+    <item msgid="6555678522277865572">"SMS/MMS yaz"</item>
+    <item msgid="6981734935578130884">"Ayarları değiştir"</item>
+    <item msgid="8705854389991425629">"Üste çiz"</item>
+    <item msgid="5861356020344153651">"Bildirimlere eriş"</item>
+    <item msgid="78432174621628659">"Kamera"</item>
+    <item msgid="3986116419882154794">"Ses kaydet"</item>
+    <item msgid="4516840825756409490">"Sesi çal"</item>
+    <item msgid="6811712502798183957">"Panoyu oku"</item>
+    <item msgid="2780369012602289114">"Panoyu değiştir"</item>
+    <item msgid="2331359440170850868">"Medya düğmeleri"</item>
+    <item msgid="6133599737122751231">"Ses odağı"</item>
+    <item msgid="6844485713404805301">"Ana ses düzeyi"</item>
+    <item msgid="1600379420669104929">"Konuşma ses düzeyi"</item>
+    <item msgid="6296768210470214866">"Zil ses düzeyi"</item>
+    <item msgid="510690696071629241">"Medya ses düzeyi"</item>
+    <item msgid="406861638631430109">"Alarm ses düzeyi"</item>
+    <item msgid="4715864795872233884">"Bildirim ses düzeyi"</item>
+    <item msgid="2311478519251301183">"Bluetooth ses düzeyi"</item>
+    <item msgid="5133991377896747027">"Uyanık tut"</item>
+    <item msgid="2464189519136248621">"Konum"</item>
+    <item msgid="2062677934050803037">"Konum"</item>
+    <item msgid="1735171933192715957">"Kullanım istatistiklerini al"</item>
+    <item msgid="1014093788778383554">"Mikrofonu kapat/aç"</item>
+    <item msgid="4199297950608622850">"Kısa ileti göster"</item>
+    <item msgid="2527962435313398821">"Proje medyası"</item>
+    <item msgid="5117506254221861929">"VPN\'yi etkinleştir"</item>
+    <item msgid="8291198322681891160">"Yazı duvar kağıdı"</item>
+    <item msgid="7106921284621230961">"Yardım yapısı"</item>
+    <item msgid="4496533640894624799">"Yardım ekran görüntüsü"</item>
+    <item msgid="2598847264853993611">"Telefon durumunu oku"</item>
+    <item msgid="9215610846802973353">"Sesli mesaj ekle"</item>
+    <item msgid="9186411956086478261">"SIP kullan"</item>
+    <item msgid="6884763100104539558">"Giden çağrıyı işle"</item>
+    <item msgid="125513972170580692">"Parmak izi"</item>
+    <item msgid="2556071024281275619">"Vücut sensörleri"</item>
+    <item msgid="617168514928339387">"Hücre yayınlarını oku"</item>
+    <item msgid="7134693570516523585">"Sahte konum"</item>
+    <item msgid="7224489175375229399">"Depolama alanını oku"</item>
+    <item msgid="8472735063903258202">"Depolama alanına yaz"</item>
+    <item msgid="4069276819909595110">"Ekranı aç"</item>
+    <item msgid="1228338896751121025">"Hesapları al"</item>
+    <item msgid="3181581793459233672">"Arka planda çalıştır"</item>
+    <item msgid="2340936043025374076">"Erişilebilirlik ses düzeyi"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kısa"</item>
+    <item msgid="4816511817309094890">"Orta"</item>
+    <item msgid="8305084671259331134">"Uzun"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Varsayılan"</item>
+    <item msgid="4147246073737933622">"Sans Serif"</item>
+    <item msgid="3117680749167407907">"Sans Serif dar"</item>
+    <item msgid="6529379119163117545">"Sans-serif sabit aralıklı"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif sabit aralıklı"</item>
+    <item msgid="4448481989108928248">"Gayriresmî"</item>
+    <item msgid="4627069151979553527">"Bitişik el yazısı"</item>
+    <item msgid="6896773537705206194">"Küçük boyutlu büyük harfler"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Varsayılan"</item>
+    <item msgid="6488643537808152001">"Hiçbiri"</item>
+    <item msgid="552332815156010137">"Dış çizgi"</item>
+    <item msgid="7187891159463789272">"Gölge"</item>
+    <item msgid="8019330250538856521">"Yükseltilmiş"</item>
+    <item msgid="8987385315647049787">"Bastırılmış"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"%25"</item>
+    <item msgid="4665048002584838262">"%50"</item>
+    <item msgid="1874668269931014581">"%75"</item>
+    <item msgid="6462911487571123954">"%100"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Uygulama varsayılanı"</item>
+    <item msgid="8611890312638868524">"Siyah üzerine beyaz"</item>
+    <item msgid="5891360837786277638">"Beyaz üzerine siyah"</item>
+    <item msgid="2798457065945456853">"Siyah üzerine sarı"</item>
+    <item msgid="5799049811524553967">"Mavi üzerine sarı"</item>
+    <item msgid="3673930830658169860">"Özel"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"Önceden paylaşılan anahtara sahip L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"Sertifikalara sahip L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"Önceden paylaşılan anahtarlara ve Xauth kimlik doğrulamaya sahip IPSec VPN"</item>
+    <item msgid="3319427315593649917">"Sertifikalara ve Xauth kimlik doğrulamaya sahip IPSec VPN"</item>
+    <item msgid="8258927774145391041">"Sertifikalara ve karma kimlik doğrulamaya sahip IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Yok"</item>
+    <item msgid="1157046369795346308">"Manuel"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Bağlantı kesildi"</item>
+    <item msgid="8754480102834556765">"Başlatılıyor..."</item>
+    <item msgid="3351334355574270250">"Bağlanıyor..."</item>
+    <item msgid="8303882153995748352">"Bağlı"</item>
+    <item msgid="9135049670787351881">"Zaman aşımı"</item>
+    <item msgid="2124868417182583926">"Başarısız"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Sor"</item>
+    <item msgid="7718817231348607934">"Asla izin verme"</item>
+    <item msgid="8184570120217958741">"Her zaman izin ver"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Kalıcı"</item>
+    <item msgid="167418068739176448">"En üstteki etkinlik"</item>
+    <item msgid="4760813290195199773">"Önemli (ön plan)"</item>
+    <item msgid="2328684826817647595">"Önemli (arka plan)"</item>
+    <item msgid="7746406490652867365">"Yedekleme"</item>
+    <item msgid="5597404364389196754">"Ağır"</item>
+    <item msgid="1290888779300174556">"Hizmet (çalışıyor)"</item>
+    <item msgid="7241098542073939046">"Hizmet (yeniden başlatılıyor)"</item>
+    <item msgid="6610439017684111046">"Alıcı"</item>
+    <item msgid="7367606086319921117">"Ana ekran"</item>
+    <item msgid="3344660712396741826">"En sondaki etkinlik"</item>
+    <item msgid="5006559348883303865">"Önbelleğe alındı (etkinlik)"</item>
+    <item msgid="8633480732468137525">"Önbelleğe alındı (etkinlik istemcisi)"</item>
+    <item msgid="6248998242443333892">"Önbelleğe alındı (boş)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Camgöbeği"</item>
+    <item msgid="3228505970082457852">"Mavi"</item>
+    <item msgid="6590260735734795647">"Çivit mavisi"</item>
+    <item msgid="3521763377357218577">"Mor"</item>
+    <item msgid="5932337981182999919">"Pembe"</item>
+    <item msgid="5642914536624000094">"Kırmızı"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 günden eski"</item>
+    <item msgid="8699273238891265610">"60 günden eski"</item>
+    <item msgid="8346279419423837266">"90 günden eski"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Otomatik olarak algıla"</item>
+    <item msgid="773943026484148895">"Sınırlı olarak ele al"</item>
+    <item msgid="1008268820118852416">"Sınırsız olarak ele al"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Rastgele MAC kullan (varsayılan)"</item>
+    <item msgid="214234417308375326">"Cihaz MAC kullan"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Hayır"</item>
+    <item msgid="1930581185557754880">"Evet"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Koyu"</item>
+    <item msgid="5079453644557603349">"Açık"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Kapalı"</item>
+    <item msgid="4072198137051566919">"Hata ayıklama"</item>
+    <item msgid="2473005316958868509">"Ayrıntılı"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Yalnızca ev"</item>
+    <item msgid="1161026694891024702">"Otomatik"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA tercih edilen"</item>
+    <item msgid="7581481130337402578">"Yalnızca GSM"</item>
+    <item msgid="8579197487913425819">"Yalnızca WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA otomatik"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo otomatik"</item>
+    <item msgid="4219607161971472471">"EvDo olmadan CDMA"</item>
+    <item msgid="7278975240951052041">"Yalnızca EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Küresel"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Yalnızca TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Küresel"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-tr/strings.xml b/tests/CarDeveloperOptions/res/values-tr/strings.xml
index f28ea00..d2bcaf3 100644
--- a/tests/CarDeveloperOptions/res/values-tr/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-tr/strings.xml
@@ -4124,7 +4124,7 @@
     <string name="ambient_display_pickup_summary" product="default" msgid="8798915340594367449">"Saati, bildirimleri ve diğer bilgileri kontrol etmek için telefonunuzu elinize alın."</string>
     <string name="ambient_display_pickup_summary" product="tablet" msgid="1077745287100012928">"Saati, bildirimleri ve diğer bilgileri kontrol etmek için tabletinizi elinize alın."</string>
     <string name="ambient_display_pickup_summary" product="device" msgid="404199660076598026">"Saati, bildirimleri ve diğer bilgileri kontrol etmek için cihazınızı elinize alın."</string>
-    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Telefonu kontrol etmek için dokunun"</string>
+    <string name="ambient_display_tap_screen_title" product="default" msgid="2784322628239960695">"Telefonu kontrol etmek için dokun"</string>
     <string name="ambient_display_tap_screen_title" product="tablet" msgid="6434521782016864148">"Tableti kontrol etmek için dokunun"</string>
     <string name="ambient_display_tap_screen_title" product="device" msgid="4396793721852647356">"Cihazı kontrol etmek için dokunun"</string>
     <string name="ambient_display_tap_screen_summary" msgid="7869039870571925213">"Saati, bildirimleri ve diğer bilgileri kontrol etmek için ekranınıza dokunun."</string>
diff --git a/tests/CarDeveloperOptions/res/values-uk-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-uk-nokeys/strings.xml
new file mode 100644
index 0000000..93ecf4a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-uk-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Керувати програмами"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-uk/arrays.xml b/tests/CarDeveloperOptions/res/values-uk/arrays.xml
new file mode 100644
index 0000000..15a18d5
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-uk/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Америка"</item>
+    <item msgid="4791956477275129121">"Європа"</item>
+    <item msgid="3812126832016254559">"Африка"</item>
+    <item msgid="2765816300353408280">"Азія"</item>
+    <item msgid="6683489385344409742">"Австралія"</item>
+    <item msgid="5194868215515664953">"Тихоокеан."</item>
+    <item msgid="7044520255415007865">"Усі"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 секунд"</item>
+    <item msgid="772029947136115322">"30 секунд"</item>
+    <item msgid="8743663928349474087">"1 хвилина"</item>
+    <item msgid="1506508631223164814">"2 хвилини"</item>
+    <item msgid="8664703938127907662">"5 хвилин"</item>
+    <item msgid="5827960506924849753">"10 хвилин"</item>
+    <item msgid="6677424950124253938">"30 хвилин"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Малий"</item>
+    <item msgid="591935967183159581">"За умовчанням"</item>
+    <item msgid="1714184661981538355">"Великий"</item>
+    <item msgid="6195563047686707484">"Найбільший"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Сканування..."</item>
+    <item msgid="8058143476674427024">"Підключення до <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"Автентифікація з мережею <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Отримання ІР-адреси від мережі <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Підключено до <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Призупинено"</item>
+    <item msgid="4133290864821295785">"Відключення від <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Роз’єднано"</item>
+    <item msgid="2847316776634969068">"Помилка"</item>
+    <item msgid="4390990424746035383">"Заблоковано"</item>
+    <item msgid="3618248791367063949">"Тимчасове уникнення слабкого з’єднання"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Кнопка Push"</item>
+    <item msgid="7401896200768713930">"PIN з однорангового пристрою"</item>
+    <item msgid="4526848028011846710">"PIN із цього пристрою"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Під’єднано"</item>
+    <item msgid="983792611851499732">"Запрошено"</item>
+    <item msgid="5438273405428201793">"Помилка"</item>
+    <item msgid="4646663015449312554">"Доступно"</item>
+    <item msgid="3230556734162006146">"Поза зоною"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 хвилини"</item>
+    <item msgid="2759776603549270587">"5 хвилин"</item>
+    <item msgid="167772676068860015">"1 година"</item>
+    <item msgid="5985477119043628504">"Без часу очікування"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Останні 30 днів"</item>
+    <item msgid="3211287705232736964">"Цикл використання даних…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Час використ."</item>
+    <item msgid="2784401352592276015">"Останнє використання"</item>
+    <item msgid="249854287216326349">"Назва програми"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Немає"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Немає"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Статичні"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Немає"</item>
+    <item msgid="1464741437353223198">"Посібник"</item>
+    <item msgid="5793600062487886090">"Автоконфігурація проксі"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Немає"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP або CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Внутрішня пам\'ять пристрою"</item>
+    <item msgid="3186681694079967527">"Знімна карта SD"</item>
+    <item msgid="6902033473986647035">"Дозвольте виріш. системі"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Місцезнаходження"</item>
+    <item msgid="6842381562497597649">"Особисте"</item>
+    <item msgid="3966700236695683444">"Повідомлення"</item>
+    <item msgid="8563996233342430477">"Медіа-файли"</item>
+    <item msgid="5323851085993963783">"Пристрій"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"приблизне місцезнаходження"</item>
+    <item msgid="1830619568689922920">"точне місцезнаходження"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"вібросигнал"</item>
+    <item msgid="8632513128515114092">"читати контакти"</item>
+    <item msgid="3741042113569620272">"змінювати контакти"</item>
+    <item msgid="4204420969709009931">"читати журнал викликів"</item>
+    <item msgid="2260380357119423209">"змінювати журнал викликів"</item>
+    <item msgid="6550710385014530934">"переглядати календар"</item>
+    <item msgid="3575906174264853951">"змінювати календар"</item>
+    <item msgid="4319843242568057174">"сканування Wi-Fi"</item>
+    <item msgid="2981791890467303819">"сповіщення"</item>
+    <item msgid="6617825156152476692">"пошук мобільних мереж"</item>
+    <item msgid="8865260890611559753">"телефонувати"</item>
+    <item msgid="3254999273961542982">"читати SMS"</item>
+    <item msgid="7711446453028825171">"писати SMS"</item>
+    <item msgid="6123238544099198034">"отримувати SMS"</item>
+    <item msgid="838342167431596036">"отримувати екстрені SMS"</item>
+    <item msgid="8554432731560956686">"отримувати MMS"</item>
+    <item msgid="7464863464299515059">"отримувати WAP Push"</item>
+    <item msgid="310463075729606765">"надсилати SMS"</item>
+    <item msgid="7338021933527689514">"читати ICC SMS"</item>
+    <item msgid="6130369335466613036">"писати ICC SMS"</item>
+    <item msgid="6536865581421670942">"змінювати налаштування"</item>
+    <item msgid="4547203129183558973">"відображати зверху"</item>
+    <item msgid="9080347512916542840">"отримувати доступ до сповіщень"</item>
+    <item msgid="5332718516635907742">"камера"</item>
+    <item msgid="6098422447246167852">"записувати аудіо"</item>
+    <item msgid="9182794235292595296">"відтворювати аудіо"</item>
+    <item msgid="8760743229597702019">"читати буфер обміну"</item>
+    <item msgid="2266923698240538544">"змінювати буфер обміну"</item>
+    <item msgid="1801619438618539275">"кнопки медіа"</item>
+    <item msgid="31588119965784465">"активізація звуку"</item>
+    <item msgid="7565226799008076833">"загальна гучність"</item>
+    <item msgid="5420704980305018295">"гучність голосу"</item>
+    <item msgid="5797363115508970204">"гучність дзвінка"</item>
+    <item msgid="8233154098550715999">"гучність медіа"</item>
+    <item msgid="5196715605078153950">"гучність будильника"</item>
+    <item msgid="394030698764284577">"гучність сповіщення"</item>
+    <item msgid="8952898972491680178">"гучність Bluetooth"</item>
+    <item msgid="8506227454543690851">"залишати активним"</item>
+    <item msgid="1108160036049727420">"відстежувати місцезнаходження"</item>
+    <item msgid="1496205959751719491">"відстежувати енергозатратні місцезнаходження"</item>
+    <item msgid="3776296279910987380">"отримати статистику використання"</item>
+    <item msgid="8827100324471975602">"вимкнути або ввімкнути мікрофон"</item>
+    <item msgid="6880736730520126864">"показувати підказки"</item>
+    <item msgid="4933375960222609935">"транслювати вміст"</item>
+    <item msgid="8357907018938895462">"активувати VPN"</item>
+    <item msgid="8143812849911310973">"змінювати фоновий малюнок"</item>
+    <item msgid="6266277260961066535">"допоміжна структура"</item>
+    <item msgid="7715498149883482300">"допоміжний знімок екрана"</item>
+    <item msgid="4046679376726313293">"переглядати статус телефона"</item>
+    <item msgid="6329507266039719587">"додавати голосову пошту"</item>
+    <item msgid="7692440726415391408">"використовувати протокол SIP"</item>
+    <item msgid="8572453398128326267">"обробляти вихідні виклики"</item>
+    <item msgid="7775674394089376306">"відбиток пальця"</item>
+    <item msgid="3182815133441738779">"датчики на тілі"</item>
+    <item msgid="2793100005496829513">"переглядати повідомлення Cell Broadcast"</item>
+    <item msgid="2633626056029384366">"фіктивне місцезнаходження"</item>
+    <item msgid="8356842191824684631">"переглядати дані про пам’ять"</item>
+    <item msgid="5671906070163291500">"додавати дані в пам’ять і змінювати їх"</item>
+    <item msgid="2791955098549340418">"вмикати екран"</item>
+    <item msgid="5599435119609178367">"отримувати дані облікових записів"</item>
+    <item msgid="1165623660533024666">"працювати у фоновому режимі"</item>
+    <item msgid="6423861043647911030">"спеціальні можливості: гучність"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Коротка"</item>
+    <item msgid="4816511817309094890">"Звичайне сповіщення"</item>
+    <item msgid="8305084671259331134">"Довга"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"За умовчанням"</item>
+    <item msgid="4147246073737933622">"Sans-Serif"</item>
+    <item msgid="3117680749167407907">"Sans-Serif стиснений"</item>
+    <item msgid="6529379119163117545">"Моноширинний Sans-Serif"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Моноширинний Serif"</item>
+    <item msgid="4448481989108928248">"Неформальний шрифт"</item>
+    <item msgid="4627069151979553527">"Курсив"</item>
+    <item msgid="6896773537705206194">"Зменшені великі букви"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"За умовчанням"</item>
+    <item msgid="6488643537808152001">"Немає"</item>
+    <item msgid="552332815156010137">"Контур"</item>
+    <item msgid="7187891159463789272">"Додати тінь"</item>
+    <item msgid="8019330250538856521">"Опуклий"</item>
+    <item msgid="8987385315647049787">"Втиснений"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"За умовчанням"</item>
+    <item msgid="8611890312638868524">"Білий на чорному"</item>
+    <item msgid="5891360837786277638">"Чорний на білому"</item>
+    <item msgid="2798457065945456853">"Жовтий на чорному"</item>
+    <item msgid="5799049811524553967">"Жовтий на синьому"</item>
+    <item msgid="3673930830658169860">"Спеціальні звуки"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN зі спільними ключами"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN із сертифікатами"</item>
+    <item msgid="312397853907741968">"IPSec VPN зі спільними ключами й автентифікацією Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN із сертифікатами та автентифікацією Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN із сертифікатами та гібридною автентифікацією"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Немає"</item>
+    <item msgid="1157046369795346308">"Посібник"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Роз’єднано"</item>
+    <item msgid="8754480102834556765">"Ініціалізація..."</item>
+    <item msgid="3351334355574270250">"Під’єднання..."</item>
+    <item msgid="8303882153995748352">"Під’єднано"</item>
+    <item msgid="9135049670787351881">"Час очікування"</item>
+    <item msgid="2124868417182583926">"Помилка"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Запитувати"</item>
+    <item msgid="7718817231348607934">"Ніколи не дозволяти"</item>
+    <item msgid="8184570120217958741">"Завжди дозволяти"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Постійний"</item>
+    <item msgid="167418068739176448">"Перші дії"</item>
+    <item msgid="4760813290195199773">"Важливо (активний додаток)"</item>
+    <item msgid="2328684826817647595">"Важливо (фоновий додаток)"</item>
+    <item msgid="7746406490652867365">"Резервне копіювання"</item>
+    <item msgid="5597404364389196754">"Інтенсивний"</item>
+    <item msgid="1290888779300174556">"Служба (запущено)"</item>
+    <item msgid="7241098542073939046">"Служба (перезапуск)"</item>
+    <item msgid="6610439017684111046">"Приймач"</item>
+    <item msgid="7367606086319921117">"Головний екран"</item>
+    <item msgid="3344660712396741826">"Останні дії"</item>
+    <item msgid="5006559348883303865">"Кеш (дії)"</item>
+    <item msgid="8633480732468137525">"Кеш (дії клієнта)"</item>
+    <item msgid="6248998242443333892">"Кеш (порожньо)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Бірюзовий"</item>
+    <item msgid="3228505970082457852">"Синій"</item>
+    <item msgid="6590260735734795647">"Індиго"</item>
+    <item msgid="3521763377357218577">"Пурпуровий"</item>
+    <item msgid="5932337981182999919">"Рожевий"</item>
+    <item msgid="5642914536624000094">"Червоний"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Додані понад 30 днів тому"</item>
+    <item msgid="8699273238891265610">"Додані понад 60 днів тому"</item>
+    <item msgid="8346279419423837266">"Додані понад 90 днів тому"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Визначати автоматично"</item>
+    <item msgid="773943026484148895">"Вважати тарифікованою"</item>
+    <item msgid="1008268820118852416">"Вважати нетарифікованою"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Використовувати довільну MAC-адресу (за умовчанням)"</item>
+    <item msgid="214234417308375326">"Використовувати MAC-адресу пристрою"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Ні"</item>
+    <item msgid="1930581185557754880">"Так"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"темна"</item>
+    <item msgid="5079453644557603349">"світла"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Вимкнено"</item>
+    <item msgid="4072198137051566919">"Налагодження"</item>
+    <item msgid="2473005316958868509">"Докладно"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Лише домашні мережі"</item>
+    <item msgid="1161026694891024702">"Автоматично"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Рекомендовано GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"Лише GSM"</item>
+    <item msgid="8579197487913425819">"Лише WCDMA"</item>
+    <item msgid="8465243227505412498">"Авто GSM/WCDMA"</item>
+    <item msgid="9107479914166352132">"Авто CDMA/EvDo"</item>
+    <item msgid="4219607161971472471">"CDMA без EvDo"</item>
+    <item msgid="7278975240951052041">"Лише EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Загальний"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Лише TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Загальний"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-uk/strings.xml b/tests/CarDeveloperOptions/res/values-uk/strings.xml
index 626dd5f..f1f88f7 100644
--- a/tests/CarDeveloperOptions/res/values-uk/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-uk/strings.xml
@@ -389,7 +389,7 @@
     <string name="decryption_settings_summary" product="default" msgid="7401802133199522441">"Телефон не зашифровано"</string>
     <string name="encryption_and_credential_settings_summary" product="tablet" msgid="8170667308598998791">"Пристрій зашифровано"</string>
     <string name="decryption_settings_summary" product="tablet" msgid="7524119945312453569">"Пристрій не зашифровано"</string>
-    <string name="lockscreen_settings_title" msgid="1221505938891948413">"Дисплей заблокованого екрана"</string>
+    <string name="lockscreen_settings_title" msgid="1221505938891948413">"Заблокований екран"</string>
     <string name="lockscreen_settings_what_to_show_category" msgid="3133378945821488654">"Що показувати"</string>
     <string name="security_settings_summary" msgid="5210109100643223686">"Устан. Моє місцезн., розблок. екрана, блок. SIM-карти, сховища обл. даних"</string>
     <string name="cdma_security_settings_summary" msgid="1783066617800041869">"Устан. Моє місцезн., розбл. екрана, блок. схов. обл. даних"</string>
diff --git a/tests/CarDeveloperOptions/res/values-ur-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-ur-nokeys/strings.xml
new file mode 100644
index 0000000..a1da9ae
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ur-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"ایپلیکیشنز کا نظم کریں"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ur/arrays.xml b/tests/CarDeveloperOptions/res/values-ur/arrays.xml
new file mode 100644
index 0000000..cad7ffc
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-ur/arrays.xml
@@ -0,0 +1,368 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"امریکہ"</item>
+    <item msgid="4791956477275129121">"یورپ"</item>
+    <item msgid="3812126832016254559">"افریقہ"</item>
+    <item msgid="2765816300353408280">"ایشیا"</item>
+    <item msgid="6683489385344409742">"آسٹریلیا"</item>
+    <item msgid="5194868215515664953">"پیسفک"</item>
+    <item msgid="7044520255415007865">"تمام"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 سیکنڈ"</item>
+    <item msgid="772029947136115322">"30 سیکنڈ"</item>
+    <item msgid="8743663928349474087">"1 منٹ"</item>
+    <item msgid="1506508631223164814">"2 منٹ"</item>
+    <item msgid="8664703938127907662">"5 منٹ"</item>
+    <item msgid="5827960506924849753">"10 منٹ"</item>
+    <item msgid="6677424950124253938">"30 منٹ"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"منسلک"</item>
+    <item msgid="983792611851499732">"مدعو"</item>
+    <item msgid="5438273405428201793">"ناکام"</item>
+    <item msgid="4646663015449312554">"دستیاب ہے"</item>
+    <item msgid="3230556734162006146">"حد سے باہر"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 منٹ"</item>
+    <item msgid="2759776603549270587">"5 منٹ"</item>
+    <item msgid="167772676068860015">"1 گھنٹہ"</item>
+    <item msgid="5985477119043628504">"کبھی ٹائم آؤٹ نہ کریں"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"آخری 30 دن"</item>
+    <item msgid="3211287705232736964">"استعمال کا دور سیٹ کریں…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"استعمال کا وقت"</item>
+    <item msgid="2784401352592276015">"آخری بار استعمال کردہ"</item>
+    <item msgid="249854287216326349">"ایپ کا نام"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"کوئی نہیں"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"کوئی نہیں"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"کوئی نہیں"</item>
+    <item msgid="1464741437353223198">"مینوئل"</item>
+    <item msgid="5793600062487886090">"پراکسی آٹو کنفیگ"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"کوئی نہیں"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP یا CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"آلہ کا داخلی اسٹوریج"</item>
+    <item msgid="3186681694079967527">"ہٹانے لائق SD کارڈ"</item>
+    <item msgid="6902033473986647035">"سسٹم کو فیصلہ کرنے دیں"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"مقام"</item>
+    <item msgid="6842381562497597649">"ذاتی"</item>
+    <item msgid="3966700236695683444">"پیغام رسانی"</item>
+    <item msgid="8563996233342430477">"میڈیا"</item>
+    <item msgid="5323851085993963783">"آلہ"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"اندازاً مقام"</item>
+    <item msgid="1830619568689922920">"ٹھیک مقام"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"وائبریٹ"</item>
+    <item msgid="8632513128515114092">"رابطوں کو پڑھیں"</item>
+    <item msgid="3741042113569620272">"رابطوں میں ترمیم کریں"</item>
+    <item msgid="4204420969709009931">"کال لاگ پڑھیں"</item>
+    <item msgid="2260380357119423209">"کال لاگ میں ترمیم کریں"</item>
+    <item msgid="6550710385014530934">"کیلنڈر پڑھیں"</item>
+    <item msgid="3575906174264853951">"کیلنڈر میں ترمیم کریں"</item>
+    <item msgid="4319843242568057174">"wi-fi اسکین"</item>
+    <item msgid="2981791890467303819">"اطلاع"</item>
+    <item msgid="6617825156152476692">"سیل اسکین"</item>
+    <item msgid="8865260890611559753">"فون پر کال کریں"</item>
+    <item msgid="3254999273961542982">"SMS پڑھیں"</item>
+    <item msgid="7711446453028825171">"SMS لکھیں"</item>
+    <item msgid="6123238544099198034">"SMS وصول کریں"</item>
+    <item msgid="838342167431596036">"ہنگامی SMS موصول کریں"</item>
+    <item msgid="8554432731560956686">"MMS وصول کریں"</item>
+    <item msgid="7464863464299515059">"WAP پش وصول کریں"</item>
+    <item msgid="310463075729606765">"SMS بھیجیں"</item>
+    <item msgid="7338021933527689514">"ICC SMS پڑھیں"</item>
+    <item msgid="6130369335466613036">"ICC SMS لکھیں"</item>
+    <item msgid="6536865581421670942">"ترتیبات میں ترمیم کریں"</item>
+    <item msgid="4547203129183558973">"سب سے اوپر ڈرا کریں"</item>
+    <item msgid="9080347512916542840">"اطلاعات تک رسائی حاصل کریں"</item>
+    <item msgid="5332718516635907742">"کیمرا"</item>
+    <item msgid="6098422447246167852">"آڈیو ریکارڈ کریں"</item>
+    <item msgid="9182794235292595296">"آڈیو چلائیں"</item>
+    <item msgid="8760743229597702019">"کلپ بورڈ پڑھیں"</item>
+    <item msgid="2266923698240538544">"کلپ بورڈ میں ترمیم کریں"</item>
+    <item msgid="1801619438618539275">"میڈیا بٹنز"</item>
+    <item msgid="31588119965784465">"آڈیو فوکس"</item>
+    <item msgid="7565226799008076833">"ماسٹر والیوم"</item>
+    <item msgid="5420704980305018295">"صوتی والیوم"</item>
+    <item msgid="5797363115508970204">"رنگ والیوم"</item>
+    <item msgid="8233154098550715999">"میڈیا والیوم"</item>
+    <item msgid="5196715605078153950">"الارم والیوم"</item>
+    <item msgid="394030698764284577">"اطلاع کا والیوم"</item>
+    <item msgid="8952898972491680178">"بلوٹوتھ والیوم"</item>
+    <item msgid="8506227454543690851">"اسکرین آن رکھیں"</item>
+    <item msgid="1108160036049727420">"مقام پر نگاہ رکھیں"</item>
+    <item msgid="1496205959751719491">"اعلی قوت کے مقام پر نگاہ رکھیں"</item>
+    <item msgid="3776296279910987380">"استعمال کے اعداد و شمار حاصل کریں"</item>
+    <item msgid="8827100324471975602">"مائیکروفون کو خاموش کریں/اس کی آواز چلائیں"</item>
+    <item msgid="6880736730520126864">"ٹوسٹ دکھائیں"</item>
+    <item msgid="4933375960222609935">"پروجیکٹ میڈیا"</item>
+    <item msgid="8357907018938895462">"VPN کو فعال کریں"</item>
+    <item msgid="8143812849911310973">"وال پیپر لکھیں"</item>
+    <item msgid="6266277260961066535">"اسٹرکچر اسسٹ کریں"</item>
+    <item msgid="7715498149883482300">"اسکرین شاٹ اسسٹ کریں"</item>
+    <item msgid="4046679376726313293">"فون اسٹیٹ پڑھیں"</item>
+    <item msgid="6329507266039719587">"صوتی میل شامل کریں"</item>
+    <item msgid="7692440726415391408">"سِپ استعمال کریں"</item>
+    <item msgid="8572453398128326267">"باہر جانے والی کال پر کاروائی کریں"</item>
+    <item msgid="7775674394089376306">"فنگر پرنٹ"</item>
+    <item msgid="3182815133441738779">"باڈی سینسرز"</item>
+    <item msgid="2793100005496829513">"سیل نشریات پڑھیں"</item>
+    <item msgid="2633626056029384366">"مقام فرضی بنائیں"</item>
+    <item msgid="8356842191824684631">"اسٹوریج پڑھیں"</item>
+    <item msgid="5671906070163291500">"اسٹوریج لکھیں"</item>
+    <item msgid="2791955098549340418">"اسکرین آن کریں"</item>
+    <item msgid="5599435119609178367">"اکاؤنٹس حاصل کریں"</item>
+    <item msgid="1165623660533024666">"پس منظر میں چلائیں"</item>
+    <item msgid="6423861043647911030">"ایکسیسبیلٹی والیوم"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"مختصر"</item>
+    <item msgid="4816511817309094890">"متوسط"</item>
+    <item msgid="8305084671259331134">"طویل"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"ڈیفالٹ"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif گٹھا ہوا"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"بڑے حروف چھوٹے سائز میں"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"ڈیفالٹ"</item>
+    <item msgid="6488643537808152001">"کوئی نہیں"</item>
+    <item msgid="552332815156010137">"آؤٹ لائن"</item>
+    <item msgid="7187891159463789272">"سایہ شامل کریں"</item>
+    <item msgid="8019330250538856521">"ابھرا ہوا"</item>
+    <item msgid="8987385315647049787">"دبا ہوا"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"پہلے سے اشتراک کردہ کلیدوں کے ساتھ L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"سرٹیفیکیٹس کے ساتھ L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"پہلے سے اشتراک کردہ کلیدوں اور Xauth توثیق کے ساتھ IPSec VPN"</item>
+    <item msgid="3319427315593649917">"سرٹیفیکیٹس اور Xauth توثیق کے ساتھ IPSec VPN"</item>
+    <item msgid="8258927774145391041">"سرٹیفیکیٹس اور ہائی برڈ توثیق کے ساتھ IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"کوئی نہیں"</item>
+    <item msgid="1157046369795346308">"مینوئل"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"پوچھیں"</item>
+    <item msgid="7718817231348607934">"کبھی اجازت نہ دیں"</item>
+    <item msgid="8184570120217958741">"ہمیشہ اجازت دیں"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"استقلال پذیر"</item>
+    <item msgid="167418068739176448">"سرفہرست سرگرمی"</item>
+    <item msgid="4760813290195199773">"اہم (پیش منظر)"</item>
+    <item msgid="2328684826817647595">"اہم (پس منظر)"</item>
+    <item msgid="7746406490652867365">"بیک اپ"</item>
+    <item msgid="5597404364389196754">"بھاری بھرکم"</item>
+    <item msgid="1290888779300174556">"سروس (چل رہی ہے)"</item>
+    <item msgid="7241098542073939046">"سروس (دوبارہ شروع ہو رہی ہے)"</item>
+    <item msgid="6610439017684111046">"وصول کنندہ"</item>
+    <item msgid="7367606086319921117">"ہوم"</item>
+    <item msgid="3344660712396741826">"آخری سرگرمی"</item>
+    <item msgid="5006559348883303865">"کیش کی ہوئی (سرگرمی)"</item>
+    <item msgid="8633480732468137525">"کیش کی ہوئی (سرگرمی کلائنٹ)"</item>
+    <item msgid="6248998242443333892">"کیش کی ہوئی (خالی)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"نیلگوں سبز"</item>
+    <item msgid="3228505970082457852">"نیلا"</item>
+    <item msgid="6590260735734795647">"گہرا نیلا"</item>
+    <item msgid="3521763377357218577">"جامنی"</item>
+    <item msgid="5932337981182999919">"گلابی"</item>
+    <item msgid="5642914536624000094">"سرخ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 دن سے زیادہ پرانی"</item>
+    <item msgid="8699273238891265610">"60 دن سے زیادہ پرانی"</item>
+    <item msgid="8346279419423837266">"90 دن سے زیادہ پرانی"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"خود کار طور پر پتہ لگائیں"</item>
+    <item msgid="773943026484148895">"میٹر شدہ کے بطور خیال کریں"</item>
+    <item msgid="1008268820118852416">"غیر میٹر شدہ کے بطور خیال کریں"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"بے ترتیب MAC کا استعمال کریں (ڈیفالٹ)"</item>
+    <item msgid="214234417308375326">"آلہ کا MAC استعمال کریں"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"نہیں"</item>
+    <item msgid="1930581185557754880">"ہاں"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"گہری"</item>
+    <item msgid="5079453644557603349">"ہلکی"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"آف"</item>
+    <item msgid="4072198137051566919">"ڈیبگ کریں"</item>
+    <item msgid="2473005316958868509">"وربوس"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"صرف ہوم"</item>
+    <item msgid="1161026694891024702">"خودکار"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA ترجیحی"</item>
+    <item msgid="7581481130337402578">"صرف GSM"</item>
+    <item msgid="8579197487913425819">"صرف WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA خودکار"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo خودکار"</item>
+    <item msgid="4219607161971472471">"EvDo کے بغیر CDMA"</item>
+    <item msgid="7278975240951052041">"صرف EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"عالمی"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"صرف TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"عالمی"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-ur/strings.xml b/tests/CarDeveloperOptions/res/values-ur/strings.xml
index 3c8fbc5..d93758c 100644
--- a/tests/CarDeveloperOptions/res/values-ur/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-ur/strings.xml
@@ -1237,7 +1237,7 @@
     <string name="wallpaper_settings_summary_custom" msgid="8950504698015331202">"حسب ضرورت"</string>
     <string name="wallpaper_suggestion_title" msgid="3012130414886743201">"وال پیپر تبدیل کریں"</string>
     <string name="wallpaper_suggestion_summary" msgid="4247262938988875842">"اپنی اسکرین کو ذاتی نوعیت کا بنائیں"</string>
-    <string name="wallpaper_settings_fragment_title" msgid="1503701065297188901">"وال پیپر منتخب کریں منجانب"</string>
+    <string name="wallpaper_settings_fragment_title" msgid="1503701065297188901">"وال پیپر منتخب کریں"</string>
     <string name="screensaver_settings_title" msgid="7720091234133721021">"اسکرین سیور"</string>
     <string name="screensaver_settings_summary_either_long" msgid="6078038506795498288">"ڈاک سے منسلک یا چارج ہونے کے دوران"</string>
     <string name="screensaver_settings_summary_either_short" msgid="2453772128682850053">"دونوں صورتوں میں"</string>
@@ -3164,7 +3164,7 @@
     <string name="zen_mode_behavior_settings_title" msgid="423125904296667490">"مستثنیات"</string>
     <string name="zen_mode_duration_settings_title" msgid="5522668871014735728">"ڈیفالٹ دورانیہ"</string>
     <string name="zen_mode_behavior_allow_title" msgid="2440627647424280842">"اس سے آوازیں اور وائبریشنز کی اجازت دیں"</string>
-    <string name="zen_mode_behavior_no_sound" msgid="7290387625018248748">"کوئی آواز نہیں ہے"</string>
+    <string name="zen_mode_behavior_no_sound" msgid="7290387625018248748">"کوئی آواز نہیں"</string>
     <string name="zen_mode_behavior_total_silence" msgid="371498357539257671">"مکمل خاموشی"</string>
     <string name="zen_mode_behavior_no_sound_except" msgid="8894465423364103198">"<xliff:g id="CATEGORIES">%1$s</xliff:g> کے سوا کوئی آواز نہیں ہے"</string>
     <string name="zen_mode_behavior_alarms_only" msgid="8406622989983047562">"الارمز اور میڈیا کے علاوہ کوئی آواز نہیں ہے"</string>
diff --git a/tests/CarDeveloperOptions/res/values-uz-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-uz-nokeys/strings.xml
new file mode 100644
index 0000000..9c97e4a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-uz-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Ilovalarni boshqarish"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-uz/arrays.xml b/tests/CarDeveloperOptions/res/values-uz/arrays.xml
new file mode 100644
index 0000000..77a19ab
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-uz/arrays.xml
@@ -0,0 +1,355 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Amerika"</item>
+    <item msgid="4791956477275129121">"Yevropa"</item>
+    <item msgid="3812126832016254559">"Afrika"</item>
+    <item msgid="2765816300353408280">"Osiyo"</item>
+    <item msgid="6683489385344409742">"Avstraliya"</item>
+    <item msgid="5194868215515664953">"Tinch okeani"</item>
+    <item msgid="7044520255415007865">"Hammasi"</item>
+  </string-array>
+    <!-- no translation found for screen_timeout_entries:0 (8596143519087753804) -->
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for dream_timeout_entries:7 (8271452751594598661) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+    <!-- no translation found for entries_font_size:0 (2340391964816059553) -->
+    <!-- no translation found for entries_font_size:0 (6490061470416867723) -->
+    <!-- no translation found for entries_font_size:2 (1714184661981538355) -->
+    <!-- no translation found for entries_font_size:2 (1678068858001018666) -->
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+    <!-- no translation found for wifi_status:3 (5848277343965362748) -->
+    <!-- no translation found for wifi_status_with_ssid:1 (6816207058895999545) -->
+    <!-- no translation found for wifi_status_with_ssid:3 (7547609081339573756) -->
+    <!-- no translation found for wifi_status_with_ssid:4 (5145158315060185414) -->
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+    <!-- no translation found for wifi_p2p_wps_setup:0 (5390235347963255303) -->
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Ulandi"</item>
+    <item msgid="983792611851499732">"Taklif qilingan"</item>
+    <item msgid="5438273405428201793">"Muvaffaqiyatsiz"</item>
+    <item msgid="4646663015449312554">"Mavjud"</item>
+    <item msgid="3230556734162006146">"Chegaradan tashqari"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_visibility_timeout_entries:1 (2759776603549270587) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+    <!-- no translation found for wifi_signal:1 (7882129634982603782) -->
+    <!-- no translation found for wifi_signal:4 (999948812884919584) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"So‘nggi 30 kun"</item>
+    <item msgid="3211287705232736964">"Internetdan foyd-sh davri…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Sarf vaqti"</item>
+    <item msgid="2784401352592276015">"So‘nggi marta foydalanish"</item>
+    <item msgid="249854287216326349">"Ilova nomi"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Tarmoq yo‘q"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Tarmoq yo‘q"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_ip_settings:1 (4377002609760712163) -->
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Tarmoq yo‘q"</item>
+    <item msgid="1464741437353223198">"Qo‘llanma"</item>
+    <item msgid="5793600062487886090">"Proksi avto-sozlamalari"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Tarmoq yo‘q"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP yoki CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Ichki xotira qurilmasi"</item>
+    <item msgid="3186681694079967527">"Tashqi SD karta"</item>
+    <item msgid="6902033473986647035">"Tizimni o‘zi tanlasin"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Joylashuv"</item>
+    <item msgid="6842381562497597649">"Shaxsiy"</item>
+    <item msgid="3966700236695683444">"SMS/MMS"</item>
+    <item msgid="8563996233342430477">"Media"</item>
+    <item msgid="5323851085993963783">"Qurilma"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"taxminiy joylashuv"</item>
+    <item msgid="1830619568689922920">"aniq joylashuv"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"tebranish"</item>
+    <item msgid="8632513128515114092">"kontaktlarni ko‘rib chiqish"</item>
+    <item msgid="3741042113569620272">"kontaktlarni o‘zgartirish"</item>
+    <item msgid="4204420969709009931">"qo‘ng‘iroqlar jurnalini ko‘rib chiqish"</item>
+    <item msgid="2260380357119423209">"qo‘ng‘iroqlar jurnalini o‘zgartirish"</item>
+    <item msgid="6550710385014530934">"taqvimni ko‘rib chiqish"</item>
+    <item msgid="3575906174264853951">"taqvimni o‘zgartirish"</item>
+    <item msgid="4319843242568057174">"wi-fi tarmog‘ini qidirish"</item>
+    <item msgid="2981791890467303819">"xabarnoma"</item>
+    <item msgid="6617825156152476692">"uyali tarmoqni qidirish"</item>
+    <item msgid="8865260890611559753">"telefonga qo‘ng‘iroq qilish"</item>
+    <item msgid="3254999273961542982">"SMS\'ni o‘qish"</item>
+    <item msgid="7711446453028825171">"SMS yozish"</item>
+    <item msgid="6123238544099198034">"SMS qabul qilish"</item>
+    <item msgid="838342167431596036">"Favqulodda SMS qabul qilish"</item>
+    <item msgid="8554432731560956686">"MMS qabul qilish"</item>
+    <item msgid="7464863464299515059">"WAP push xabarlarini qabul qilish"</item>
+    <item msgid="310463075729606765">"SMS yuborish"</item>
+    <item msgid="7338021933527689514">"ICC SMS‘ni o‘qish"</item>
+    <item msgid="6130369335466613036">"ICC SMS yozish"</item>
+    <item msgid="6536865581421670942">"sozlamalarni o‘zgartirish"</item>
+    <item msgid="4547203129183558973">"ustiga chizish"</item>
+    <item msgid="9080347512916542840">"xabarnomalarga kirish"</item>
+    <item msgid="5332718516635907742">"kamera"</item>
+    <item msgid="6098422447246167852">"ovoz yozib olish"</item>
+    <item msgid="9182794235292595296">"audioqaydni ijro etish"</item>
+    <item msgid="8760743229597702019">"vaqtinchalik xotira ma‘lumotini o‘qish"</item>
+    <item msgid="2266923698240538544">"vaqtinchalik xotira ma‘lumotini o‘zgartirish"</item>
+    <item msgid="1801619438618539275">"multimedia tugmalari"</item>
+    <item msgid="31588119965784465">"audio fokus"</item>
+    <item msgid="7565226799008076833">"umumiy tovush balandligi"</item>
+    <item msgid="5420704980305018295">"ovoz balandligi"</item>
+    <item msgid="5797363115508970204">"jiringlash tovushi"</item>
+    <item msgid="8233154098550715999">"multimedia tovushi"</item>
+    <item msgid="5196715605078153950">"signal tovushi"</item>
+    <item msgid="394030698764284577">"xabarnoma tovush balandligi"</item>
+    <item msgid="8952898972491680178">"bluetooth tovush balandligi"</item>
+    <item msgid="8506227454543690851">"uyg‘oq turish"</item>
+    <item msgid="1108160036049727420">"joylashuvni kuzatish"</item>
+    <item msgid="1496205959751719491">"yuqori elektr kuchlanishga ega joylashuvlarni kuzatish"</item>
+    <item msgid="3776296279910987380">"foydalanish statistikasini ko‘rish"</item>
+    <item msgid="8827100324471975602">"mikrofonni o‘chirish/yoqish"</item>
+    <item msgid="6880736730520126864">"toast dasturini ko‘rsatish"</item>
+    <item msgid="4933375960222609935">"kontentni translatsiya qilish"</item>
+    <item msgid="8357907018938895462">"VPN tarmog‘ini faollashtirish"</item>
+    <item msgid="8143812849911310973">"orqa fon rasmiga yozish"</item>
+    <item msgid="6266277260961066535">"yordam tuzilishi"</item>
+    <item msgid="7715498149883482300">"yordam ekran rasmi"</item>
+    <item msgid="4046679376726313293">"telefon holatini o‘qish"</item>
+    <item msgid="6329507266039719587">"ovozli xabar qo‘shish"</item>
+    <item msgid="7692440726415391408">"SIPdan foydalanish"</item>
+    <item msgid="8572453398128326267">"chiquvchi qo‘ng‘iroq jarayoni"</item>
+    <item msgid="7775674394089376306">"barmoq izi"</item>
+    <item msgid="3182815133441738779">"tana sezgichlari"</item>
+    <item msgid="2793100005496829513">"tarqatma xabarlarni o‘qish"</item>
+    <item msgid="2633626056029384366">"soxta joylashuv"</item>
+    <item msgid="8356842191824684631">"xotirani o‘qish"</item>
+    <item msgid="5671906070163291500">"xotiraga yozish"</item>
+    <item msgid="2791955098549340418">"ekranni yoqish"</item>
+    <item msgid="5599435119609178367">"hisoblarni olish"</item>
+    <item msgid="1165623660533024666">"fonda ishga tushirish"</item>
+    <item msgid="6423861043647911030">"maxsus imkoniyatlar ovozi balandligi"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:3 (7836406246005211990) -->
+    <!-- no translation found for app_ops_labels:4 (3951439024549922598) -->
+    <!-- no translation found for app_ops_labels:8 (3597797992398484655) -->
+    <!-- no translation found for app_ops_labels:20 (3037159047591081136) -->
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Qisqa"</item>
+    <item msgid="4816511817309094890">"O‘rtacha"</item>
+    <item msgid="8305084671259331134">"Uzoq"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Asosiy"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Ixchamlashtirilgan Sans-serif"</item>
+    <item msgid="6529379119163117545">"Sans-serif (bir xil oraliqli)"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif (bir xil oraliqli)"</item>
+    <item msgid="4448481989108928248">"Norasmiy"</item>
+    <item msgid="4627069151979553527">"Qiya"</item>
+    <item msgid="6896773537705206194">"Kichik bosh harflar"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+    <!-- no translation found for captioning_font_size_selector_titles:3 (2784236342175159295) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Asosiy"</item>
+    <item msgid="6488643537808152001">"Tarmoq yo‘q"</item>
+    <item msgid="552332815156010137">"Chegara"</item>
+    <item msgid="7187891159463789272">"Soyani olib tashlash"</item>
+    <item msgid="8019330250538856521">"Ko‘tarilgan"</item>
+    <item msgid="8987385315647049787">"Pasaytirilgan"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+    <!-- no translation found for captioning_preset_selector_titles:2 (5891360837786277638) -->
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN avval ulashilgan kalitlar bilan"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN sertifikatlar bilan"</item>
+    <item msgid="312397853907741968">"IPSec VPN avval ulashilgan kalitlar bilan va Xauth tasdiqidan o‘tish"</item>
+    <item msgid="3319427315593649917">"IPSec VPN sertifikatlar bilan and Xauth tasdiqidan o‘tish"</item>
+    <item msgid="8258927774145391041">"IPSec VPN sertifikatlar bilan va aralash tasdiqidan o‘tish"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Hech biri"</item>
+    <item msgid="1157046369795346308">"Qo‘llanma"</item>
+  </string-array>
+    <!-- no translation found for vpn_states:4 (9135049670787351881) -->
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"So‘rash"</item>
+    <item msgid="7718817231348607934">"Hech qachon ruxsat berilmasin"</item>
+    <item msgid="8184570120217958741">"Har doim ruxsat berilsin"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Barqaror"</item>
+    <item msgid="167418068739176448">"Eng mashhur harakat"</item>
+    <item msgid="4760813290195199773">"Muhim (faol rejim)"</item>
+    <item msgid="2328684826817647595">"Muhim (orqa fon)"</item>
+    <item msgid="7746406490652867365">"Zaxiralash"</item>
+    <item msgid="5597404364389196754">"O‘ta og‘ir"</item>
+    <item msgid="1290888779300174556">"Xizmat (ishlamoqda)"</item>
+    <item msgid="7241098542073939046">"Xizmat (qayta ishga tushirilmoqda)"</item>
+    <item msgid="6610439017684111046">"Qabul qiluvchi"</item>
+    <item msgid="7367606086319921117">"Bosh sahifa"</item>
+    <item msgid="3344660712396741826">"So‘nggi harakat"</item>
+    <item msgid="5006559348883303865">"Keshlangan (harakat)"</item>
+    <item msgid="8633480732468137525">"Keshlangan (harakat mijozi)"</item>
+    <item msgid="6248998242443333892">"Keshlangan (bo‘sh)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Moviy"</item>
+    <item msgid="3228505970082457852">"Ko‘k"</item>
+    <item msgid="6590260735734795647">"To‘q ko‘k"</item>
+    <item msgid="3521763377357218577">"Binafsharang"</item>
+    <item msgid="5932337981182999919">"Pushti"</item>
+    <item msgid="5642914536624000094">"Qizil"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"30 kundan ortiq"</item>
+    <item msgid="8699273238891265610">"60 kundan ortiq"</item>
+    <item msgid="8346279419423837266">"90 kundan ortiq"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Avtomatik aniqlash"</item>
+    <item msgid="773943026484148895">"Bu – pulli tarmoq"</item>
+    <item msgid="1008268820118852416">"Bu – bepul tarmoq"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Ixtiyoriy MAC manzil (standart)"</item>
+    <item msgid="214234417308375326">"Ixtiyoriy MAC manzil"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Yo‘q"</item>
+    <item msgid="1930581185557754880">"Ha"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tungi"</item>
+    <item msgid="5079453644557603349">"Kunduzgi"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Yoqilmagan"</item>
+    <item msgid="4072198137051566919">"Tuzatish"</item>
+    <item msgid="2473005316958868509">"Batafsil"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Faqat uy"</item>
+    <item msgid="1161026694891024702">"Avtomatik"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA (afzal)"</item>
+    <item msgid="7581481130337402578">"Faqat GSM"</item>
+    <item msgid="8579197487913425819">"Faqat WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA (avtomatik)"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo (avtomatik)"</item>
+    <item msgid="4219607161971472471">"CDMA (EvDo imkoniyatisiz)"</item>
+    <item msgid="7278975240951052041">"Faqat EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA va LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Global"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Faqat TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Global"</item>
+    <item msgid="7893851358184700811">"LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-uz/strings.xml b/tests/CarDeveloperOptions/res/values-uz/strings.xml
index 0f54e7a..eea063b 100644
--- a/tests/CarDeveloperOptions/res/values-uz/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-uz/strings.xml
@@ -62,7 +62,7 @@
     <string name="radioInfo_roaming_not" msgid="7733269160603599835">"Rouming o‘chirilgan"</string>
     <string name="radioInfo_phone_idle" msgid="1893851191227617344">"Faol emas"</string>
     <string name="radioInfo_phone_ringing" msgid="5587975376222853265">"Jiringlamoqda"</string>
-    <string name="radioInfo_phone_offhook" msgid="3186071430568806208">"Qo‘ng‘iroq"</string>
+    <string name="radioInfo_phone_offhook" msgid="3186071430568806208">"Chaqiruv"</string>
     <string name="radioInfo_data_disconnected" msgid="5311119240521915279">"Uzildi"</string>
     <string name="radioInfo_data_connecting" msgid="47095003276717745">"Ulanilmoqda"</string>
     <string name="radioInfo_data_connected" msgid="3755289851642913750">"Ulandi"</string>
@@ -355,7 +355,7 @@
     <string name="owner_info_settings_title" msgid="2537966178998339896">"Qulflangan ekran ustidagi matn"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"Vidjetlarni yoqish"</string>
     <string name="security_enable_widgets_disabled_summary" msgid="4408176087132339331">"Administrator tomonidan o‘chirilgan"</string>
-    <string name="lockdown_settings_title" msgid="4534779922580115990">"Qulflash funksiyasini ko‘rsatish"</string>
+    <string name="lockdown_settings_title" msgid="4534779922580115990">"Qulflash tugmasini chiqarish"</string>
     <string name="lockdown_settings_summary" msgid="7270756909878256174">"Smart Lock, barmoq izi bilan qulfni ochish va ekran qulfidagi bildirishnomalarni faolsizlantiradigan quvvat tugmasi funksiyasini ko‘rsatish."</string>
     <string name="trust_agents_extend_unlock_title" msgid="3582017561316089951">"Ishonch agentlari qulf ochishni sura oladi"</string>
     <string name="trust_agents_extend_unlock_summary" msgid="3543997596586078084">"Bu parametr yoqilsa, ishonch agentlari uzoq vaqt qulfsiz saqlaydi, lekin qulflangan qurilmani qulfdan chiqara olmaydi."</string>
@@ -1116,7 +1116,7 @@
     <string name="sound_settings" msgid="3306063041029638807">"Tovush"</string>
     <string name="all_volume_title" msgid="1750261506951315423">"Ovoz balandligi"</string>
     <string name="musicfx_title" msgid="6456079041566773649">"Musiqa effektlari"</string>
-    <string name="ring_volume_title" msgid="5874791723449821646">"Qo‘ng‘iroq ovozi"</string>
+    <string name="ring_volume_title" msgid="5874791723449821646">"Jiringlash tovushi"</string>
     <string name="vibrate_in_silent_title" msgid="2314667015729841220">"Ovozsizligida tebranish"</string>
     <string name="notification_sound_title" msgid="6812164482799723931">"Standart bildirishnoma tovushi"</string>
     <string name="incoming_call_volume_title" msgid="4736570528754310450">"Rington"</string>
@@ -2061,7 +2061,7 @@
     <string name="accessibility_toggle_high_text_contrast_preference_title" msgid="5652244684961877255">"Yuqori kontrastli matn"</string>
     <string name="accessibility_toggle_screen_magnification_auto_update_preference_title" msgid="2466317284195934003">"Ekranda kattalashtirish xususiyatini avtomatik ravishda yangilash"</string>
     <string name="accessibility_toggle_screen_magnification_auto_update_preference_summary" msgid="6625473745911276917">"Bir ilovadan ikkinchisiga o‘tishda ekranda kattalashtirish xususiyatini yangilash"</string>
-    <string name="accessibility_power_button_ends_call_prerefence_title" msgid="6172987104538172869">"Quvvat tugmasi qo‘n-ni tugatadi"</string>
+    <string name="accessibility_power_button_ends_call_prerefence_title" msgid="6172987104538172869">"Quvvat tugmasi chaqiruvni tugatadi"</string>
     <string name="accessibility_toggle_large_pointer_icon_title" msgid="9127905775116570565">"Yirik sichqoncha kursori"</string>
     <string name="accessibility_disable_animations" msgid="8378441317115710009">"Animatsiyalarni olib tashlash"</string>
     <string name="accessibility_toggle_master_mono_title" msgid="899550848196702565">"Mono audio"</string>
@@ -2201,7 +2201,7 @@
     <string name="print_menu_item_settings" msgid="2654804159012579508">"Sozlamalar"</string>
     <string name="print_menu_item_add_printers" msgid="8198201275621756510">"Printerlar qo‘shish"</string>
     <string name="print_feature_state_on" msgid="1838010230650403367">"YONIQ"</string>
-    <string name="print_feature_state_off" msgid="208580346723223688">"YOQILMAGAN"</string>
+    <string name="print_feature_state_off" msgid="208580346723223688">"Yoqilmagan"</string>
     <string name="print_menu_item_add_service" msgid="6803000110578493782">"Xizmat qo‘shish"</string>
     <string name="print_menu_item_add_printer" msgid="8529196211179574921">"Printer qo‘shish"</string>
     <string name="print_menu_item_search" msgid="1165316329772287360">"Qidiruv"</string>
@@ -3145,9 +3145,9 @@
     <string name="sound_settings_example_summary" msgid="2091822107298841827">"Jiringlaganda: 80%"</string>
     <string name="media_volume_option_title" msgid="3553411883305505682">"Multimedia tovushi"</string>
     <string name="remote_media_volume_option_title" msgid="6355710054191873836">"Translatsiya tovushi balandligi"</string>
-    <string name="call_volume_option_title" msgid="5028003296631037334">"Chaqiruv tovushi"</string>
-    <string name="alarm_volume_option_title" msgid="3184076022438477047">"Signal tovushi balandligi"</string>
-    <string name="ring_volume_option_title" msgid="2038924918468372264">"Rington"</string>
+    <string name="call_volume_option_title" msgid="5028003296631037334">"Suhbat tovushi"</string>
+    <string name="alarm_volume_option_title" msgid="3184076022438477047">"Signal tovushi"</string>
+    <string name="ring_volume_option_title" msgid="2038924918468372264">"Jiringlash tovushi"</string>
     <string name="notification_volume_option_title" msgid="1358512611511348260">"Bildirishnomalar ovozi"</string>
     <string name="ringtone_title" msgid="1409086028485922583">"Telefon ringtoni"</string>
     <string name="notification_ringtone_title" msgid="2932960620843976285">"Standart bildirishnoma tovushi"</string>
@@ -3562,7 +3562,7 @@
     <string name="device_feedback" msgid="4042352891448769818">"Qurilma haqida fikr-mulohaza"</string>
     <string name="restr_pin_enter_admin_pin" msgid="8577847751493521230">"Administrator PIN kodini kiriting"</string>
     <string name="switch_on_text" msgid="7100491749799298324">"YONIQ"</string>
-    <string name="switch_off_text" msgid="3539551289454353555">"YOQILMAGAN"</string>
+    <string name="switch_off_text" msgid="3539551289454353555">"Yoqilmagan"</string>
     <string name="screen_pinning_title" msgid="578020318289781102">"Ekranni mahkamlash"</string>
     <string name="screen_pinning_description" msgid="3814537379086412278">"Agar bu xususiyat yoqilsa, ekran faqat bitta ilovaga mahkamlanadi.\n\nEkranni mahkamlash uchun:\n\n1. Ekranni mahkamlash xususiyatini yoqing\n\n2. Umumiy ma’lumot tugmasini bosing\n\n3. Ekranning yuqorisidagi ilova ikonkasini bosib, keyin Makhamlash tugmasini bosing"</string>
     <string name="screen_pinning_unlock_pattern" msgid="1060334707088339444">"Yechishdan oldin grafik kalit so‘ralsin"</string>
diff --git a/tests/CarDeveloperOptions/res/values-vi-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-vi-nokeys/strings.xml
new file mode 100644
index 0000000..4b76224
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-vi-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Quản lý ứng dụng"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-vi/arrays.xml b/tests/CarDeveloperOptions/res/values-vi/arrays.xml
new file mode 100644
index 0000000..26a3273
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-vi/arrays.xml
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"Châu Mỹ"</item>
+    <item msgid="4791956477275129121">"Châu Âu"</item>
+    <item msgid="3812126832016254559">"Châu Phi"</item>
+    <item msgid="2765816300353408280">"Châu Á"</item>
+    <item msgid="6683489385344409742">"Úc"</item>
+    <item msgid="5194868215515664953">"Thái Bình Dương"</item>
+    <item msgid="7044520255415007865">"Tất cả"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 giây"</item>
+    <item msgid="772029947136115322">"30 giây"</item>
+    <item msgid="8743663928349474087">"1 phút"</item>
+    <item msgid="1506508631223164814">"2 phút"</item>
+    <item msgid="8664703938127907662">"5 phút"</item>
+    <item msgid="5827960506924849753">"10 phút"</item>
+    <item msgid="6677424950124253938">"30 phút"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Nhỏ"</item>
+    <item msgid="591935967183159581">"Mặc định"</item>
+    <item msgid="1714184661981538355">"Lớn"</item>
+    <item msgid="6195563047686707484">"Lớn nhất"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Đang quét…"</item>
+    <item msgid="8058143476674427024">"Đang kết nối tới <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="7547609081339573756">"Đang xác thực với <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="5145158315060185414">"Đang lấy địa chỉ IP từ <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3283243151651124831">"Đã kết nối tới <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Bị tạm ngưng"</item>
+    <item msgid="4133290864821295785">"Đăng ngắt kết nối khỏi <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Đã ngắt kết nối"</item>
+    <item msgid="2847316776634969068">"Không thành công"</item>
+    <item msgid="4390990424746035383">"Bị chặn"</item>
+    <item msgid="3618248791367063949">"Tạm thời tránh kết nối kém"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Nút bấm"</item>
+    <item msgid="7401896200768713930">"Mã PIN từ thiết bị ngang hàng"</item>
+    <item msgid="4526848028011846710">"Mã PIN từ th.bị này"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Đã kết nối"</item>
+    <item msgid="983792611851499732">"Đã mời"</item>
+    <item msgid="5438273405428201793">"Không thành công"</item>
+    <item msgid="4646663015449312554">"Có sẵn"</item>
+    <item msgid="3230556734162006146">"Ngoài vùng phủ sóng"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 phút"</item>
+    <item msgid="2759776603549270587">"5 phút"</item>
+    <item msgid="167772676068860015">"1 giờ"</item>
+    <item msgid="5985477119043628504">"Không bao giờ hết thời gian chờ"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"30 ngày qua"</item>
+    <item msgid="3211287705232736964">"Đặt chu kỳ sử dụng..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Thời gian sử dụng"</item>
+    <item msgid="2784401352592276015">"Sử dụng lần cuối"</item>
+    <item msgid="249854287216326349">"Tên ứng dụng"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"0 mạng"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"0 mạng"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"Tĩnh"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"0 mạng"</item>
+    <item msgid="1464741437353223198">"Hướng dẫn sử dụng"</item>
+    <item msgid="5793600062487886090">"Tự động định cấu hình proxy"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"0 mạng"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP hoặc CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Bộ nhớ trong của thiết bị"</item>
+    <item msgid="3186681694079967527">"Thẻ SD tháo lắp được"</item>
+    <item msgid="6902033473986647035">"Cho phép hệ thống quyết định"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Vị trí"</item>
+    <item msgid="6842381562497597649">"Cá nhân"</item>
+    <item msgid="3966700236695683444">"Nhắn tin"</item>
+    <item msgid="8563996233342430477">"Phương tiện"</item>
+    <item msgid="5323851085993963783">"Thiết bị"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"vị trí tổng thể"</item>
+    <item msgid="1830619568689922920">"vị trí chính xác"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"rung"</item>
+    <item msgid="8632513128515114092">"đọc danh sách liên hệ"</item>
+    <item msgid="3741042113569620272">"sửa đổi danh sách liên hệ"</item>
+    <item msgid="4204420969709009931">"đọc nhật ký cuộc gọi"</item>
+    <item msgid="2260380357119423209">"sửa đổi nhật ký cuộc gọi"</item>
+    <item msgid="6550710385014530934">"đọc lịch"</item>
+    <item msgid="3575906174264853951">"sửa đổi lịch"</item>
+    <item msgid="4319843242568057174">"quét wi-fi"</item>
+    <item msgid="2981791890467303819">"thông báo"</item>
+    <item msgid="6617825156152476692">"quét điện thoại di động"</item>
+    <item msgid="8865260890611559753">"gọi điện thoại"</item>
+    <item msgid="3254999273961542982">"đọc SMS"</item>
+    <item msgid="7711446453028825171">"soạn SMS"</item>
+    <item msgid="6123238544099198034">"nhận SMS"</item>
+    <item msgid="838342167431596036">"nhận SMS khẩn cấp"</item>
+    <item msgid="8554432731560956686">"nhận MMS"</item>
+    <item msgid="7464863464299515059">"nhận WAP push"</item>
+    <item msgid="310463075729606765">"gửi SMS"</item>
+    <item msgid="7338021933527689514">"đọc ICC SMS"</item>
+    <item msgid="6130369335466613036">"soạn ICC SMS"</item>
+    <item msgid="6536865581421670942">"sửa đổi cài đặt"</item>
+    <item msgid="4547203129183558973">"vẽ lên trên"</item>
+    <item msgid="9080347512916542840">"truy cập thông báo"</item>
+    <item msgid="5332718516635907742">"máy ảnh"</item>
+    <item msgid="6098422447246167852">"ghi âm"</item>
+    <item msgid="9182794235292595296">"phát âm thanh"</item>
+    <item msgid="8760743229597702019">"đọc khay nhớ tạm"</item>
+    <item msgid="2266923698240538544">"sửa đổi khay nhớ tạm"</item>
+    <item msgid="1801619438618539275">"các nút phương tiện truyền thông"</item>
+    <item msgid="31588119965784465">"tập trung âm thanh"</item>
+    <item msgid="7565226799008076833">"âm lượng chính"</item>
+    <item msgid="5420704980305018295">"âm lượng thoại"</item>
+    <item msgid="5797363115508970204">"âm lượng chuông"</item>
+    <item msgid="8233154098550715999">"âm lượng phương tiện"</item>
+    <item msgid="5196715605078153950">"âm lượng báo thức"</item>
+    <item msgid="394030698764284577">"âm lượng thông báo"</item>
+    <item msgid="8952898972491680178">"âm lượng bluetooth"</item>
+    <item msgid="8506227454543690851">"không khóa màn hình"</item>
+    <item msgid="1108160036049727420">"giám sát vị trí"</item>
+    <item msgid="1496205959751719491">"theo dõi vị trí dùng điện năng cao"</item>
+    <item msgid="3776296279910987380">"tải thống kế sử dụng"</item>
+    <item msgid="8827100324471975602">"tắt/bật micrô"</item>
+    <item msgid="6880736730520126864">"hiển thị thông báo nhanh"</item>
+    <item msgid="4933375960222609935">"chiếu phương tiện"</item>
+    <item msgid="8357907018938895462">"kích hoạt VPN"</item>
+    <item msgid="8143812849911310973">"hình nền ghi"</item>
+    <item msgid="6266277260961066535">"cấu trúc hỗ trợ"</item>
+    <item msgid="7715498149883482300">"ảnh chụp màn hình hỗ trợ"</item>
+    <item msgid="4046679376726313293">"đọc trạng thái điện thoại"</item>
+    <item msgid="6329507266039719587">"thêm thư thoại"</item>
+    <item msgid="7692440726415391408">"sử dụng SIP"</item>
+    <item msgid="8572453398128326267">"xử lý cuộc gọi đi"</item>
+    <item msgid="7775674394089376306">"vân tay"</item>
+    <item msgid="3182815133441738779">"cảm biến cơ thể"</item>
+    <item msgid="2793100005496829513">"đọc truyền phát trên di động"</item>
+    <item msgid="2633626056029384366">"vị trí mô phỏng"</item>
+    <item msgid="8356842191824684631">"bộ nhớ đọc"</item>
+    <item msgid="5671906070163291500">"bộ nhớ ghi"</item>
+    <item msgid="2791955098549340418">"bật màn hình"</item>
+    <item msgid="5599435119609178367">"nhận tài khoản"</item>
+    <item msgid="1165623660533024666">"chạy trong nền"</item>
+    <item msgid="6423861043647911030">"âm lượng hỗ trợ tiếp cận"</item>
+  </string-array>
+    <!-- no translation found for app_ops_labels:41 (2464189519136248621) -->
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Ngắn"</item>
+    <item msgid="4816511817309094890">"Trung bình"</item>
+    <item msgid="8305084671259331134">"Dài"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Mặc định"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif mật độ cao"</item>
+    <item msgid="6529379119163117545">"Giãn cách đơn Sans-serif"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Giãn cách đơn Serif"</item>
+    <item msgid="4448481989108928248">"Thông thường"</item>
+    <item msgid="4627069151979553527">"Chữ thảo"</item>
+    <item msgid="6896773537705206194">"Chữ viết hoa nhỏ"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Mặc định"</item>
+    <item msgid="6488643537808152001">"0 mạng"</item>
+    <item msgid="552332815156010137">"Viền ngoài"</item>
+    <item msgid="7187891159463789272">"Bóng đổ"</item>
+    <item msgid="8019330250538856521">"Tăng"</item>
+    <item msgid="8987385315647049787">"Giảm"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Mặc định của ứng dụng"</item>
+    <item msgid="8611890312638868524">"Chữ trắng trên nền đen"</item>
+    <item msgid="5891360837786277638">"Chữ đen trên nền trắng"</item>
+    <item msgid="2798457065945456853">"Chữ vàng trên nền đen"</item>
+    <item msgid="5799049811524553967">"Chữ vàng trên nền xanh lam"</item>
+    <item msgid="3673930830658169860">"Tùy chỉnh"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN có khóa chia sẻ trước"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN có chứng chỉ"</item>
+    <item msgid="312397853907741968">"IPSec VPN có khóa được chia sẻ trước và xác thực Xauth"</item>
+    <item msgid="3319427315593649917">"IPSec VPN có chứng chỉ và xác thực Xauth"</item>
+    <item msgid="8258927774145391041">"IPSec VPN có chứng chỉ và xác thực kết hợp"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Không có gì"</item>
+    <item msgid="1157046369795346308">"Hướng dẫn sử dụng"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Đã ngắt kết nối"</item>
+    <item msgid="8754480102834556765">"Đang chạy..."</item>
+    <item msgid="3351334355574270250">"Đang kết nối…"</item>
+    <item msgid="8303882153995748352">"Đã kết nối"</item>
+    <item msgid="9135049670787351881">"Thời gian chờ"</item>
+    <item msgid="2124868417182583926">"Không thành công"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Hỏi"</item>
+    <item msgid="7718817231348607934">"Không bao giờ cho phép"</item>
+    <item msgid="8184570120217958741">"Luôn cho phép"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Liên tục"</item>
+    <item msgid="167418068739176448">"Hoạt động hàng đầu"</item>
+    <item msgid="4760813290195199773">"Quan trọng (nền trước)"</item>
+    <item msgid="2328684826817647595">"Quan trọng (nền sau)"</item>
+    <item msgid="7746406490652867365">"Sao lưu"</item>
+    <item msgid="5597404364389196754">"Hạng nặng"</item>
+    <item msgid="1290888779300174556">"Dịch vụ (đang chạy)"</item>
+    <item msgid="7241098542073939046">"Dịch vụ (đang khởi động lại)"</item>
+    <item msgid="6610439017684111046">"Người nhận"</item>
+    <item msgid="7367606086319921117">"Màn hình chính"</item>
+    <item msgid="3344660712396741826">"Hoạt động sau cùng"</item>
+    <item msgid="5006559348883303865">"Được lưu trong bộ nhớ đệm (hoạt động)"</item>
+    <item msgid="8633480732468137525">"Được lưu trong bộ nhớ đệm (máy khách hoạt động)"</item>
+    <item msgid="6248998242443333892">"Được lưu trong bộ nhớ đệm (trống)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Xanh két"</item>
+    <item msgid="3228505970082457852">"Lam"</item>
+    <item msgid="6590260735734795647">"Chàm"</item>
+    <item msgid="3521763377357218577">"Tía"</item>
+    <item msgid="5932337981182999919">"Hồng"</item>
+    <item msgid="5642914536624000094">"Đỏ"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Cách đây hơn 30 ngày"</item>
+    <item msgid="8699273238891265610">"Cách đây hơn 60 ngày"</item>
+    <item msgid="8346279419423837266">"Cách đây hơn 90 ngày"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Tự động phát hiện"</item>
+    <item msgid="773943026484148895">"Coi như có đo lượng dữ liệu"</item>
+    <item msgid="1008268820118852416">"Coi như không đo lượng dữ liệu"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Sử dụng MAC ngẫu nhiên (mặc định)"</item>
+    <item msgid="214234417308375326">"Sử dụng địa chỉ MAC của thiết bị"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Không"</item>
+    <item msgid="1930581185557754880">"Có"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Tối"</item>
+    <item msgid="5079453644557603349">"Sáng"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Đang tắt"</item>
+    <item msgid="4072198137051566919">"Gỡ lỗi"</item>
+    <item msgid="2473005316958868509">"Chi tiết"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Chỉ nhà riêng"</item>
+    <item msgid="1161026694891024702">"Tự động"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA được ưu tiên"</item>
+    <item msgid="7581481130337402578">"Chỉ GSM"</item>
+    <item msgid="8579197487913425819">"Chỉ WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA tự động"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo tự động"</item>
+    <item msgid="4219607161971472471">"CDMA không có EvDo"</item>
+    <item msgid="7278975240951052041">"Chỉ EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Toàn cầu"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"Chỉ TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Toàn cầu"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-vi/strings.xml b/tests/CarDeveloperOptions/res/values-vi/strings.xml
index 731fd69..99655fb 100644
--- a/tests/CarDeveloperOptions/res/values-vi/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-vi/strings.xml
@@ -355,8 +355,8 @@
     <string name="owner_info_settings_title" msgid="2537966178998339896">"Thông điệp trên màn hình khóa"</string>
     <string name="security_enable_widgets_title" msgid="1701510007926738088">"Bật tiện ích"</string>
     <string name="security_enable_widgets_disabled_summary" msgid="4408176087132339331">"Bị quản trị viên vô hiệu hóa"</string>
-    <string name="lockdown_settings_title" msgid="4534779922580115990">"Tùy chọn hiển thị khóa"</string>
-    <string name="lockdown_settings_summary" msgid="7270756909878256174">"Tùy chọn hiển thị nút nguồn sẽ tắt tính năng Smart Lock, tính năng mở khóa bằng vân tay và thông báo trên màn hình khóa"</string>
+    <string name="lockdown_settings_title" msgid="4534779922580115990">"Hiển thị tùy chọn khóa"</string>
+    <string name="lockdown_settings_summary" msgid="7270756909878256174">"Hiển thị tùy chọn nút nguồn để tắt tính năng Smart Lock, mở khóa bằng vân tay, và thông báo trên màn hình khóa"</string>
     <string name="trust_agents_extend_unlock_title" msgid="3582017561316089951">"Tác nhân tin cậy chỉ kéo dài thời gian mở khóa"</string>
     <string name="trust_agents_extend_unlock_summary" msgid="3543997596586078084">"Nếu bạn bật, các tác nhân tin cậy sẽ kéo dài thời gian mở khóa, nhưng không thể mở khóa thiết bị bị khóa nữa."</string>
     <string name="trust_lost_locks_screen_title" msgid="3094736590690459372">"Khóa màn hình khi mất đi sự tin cậy"</string>
@@ -4398,8 +4398,8 @@
     <string name="mobile_network_list_add_more" msgid="65420172175416318">"Thêm"</string>
     <string name="mobile_network_active_sim" msgid="7660119090716084589">"Đang hoạt động/SIM"</string>
     <string name="mobile_network_inactive_sim" msgid="8296195866147486039">"Không hoạt động/SIM"</string>
-    <string name="mobile_network_active_esim" msgid="2919290915755581140">"Đang hoạt động/SIM đã tải xuống"</string>
-    <string name="mobile_network_inactive_esim" msgid="6525747163540293028">"Không hoạt động/SIM đã tải xuống"</string>
+    <string name="mobile_network_active_esim" msgid="2919290915755581140">"Đang hoạt động/Đã tải SIM xuống"</string>
+    <string name="mobile_network_inactive_esim" msgid="6525747163540293028">"Không hoạt động/Đã tải SIM xuống"</string>
     <string name="mobile_network_sim_name" msgid="8228870017368926761">"Tên SIM"</string>
     <string name="mobile_network_sim_name_rename" msgid="4810736493612513152">"Đổi tên"</string>
     <string name="mobile_network_use_sim_on" msgid="1944823242539751387">"Dùng SIM"</string>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rCN-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-zh-rCN-nokeys/strings.xml
new file mode 100644
index 0000000..633153c
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zh-rCN-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"管理应用"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rCN/arrays.xml b/tests/CarDeveloperOptions/res/values-zh-rCN/arrays.xml
new file mode 100644
index 0000000..cfa817a
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zh-rCN/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"美洲"</item>
+    <item msgid="4791956477275129121">"欧洲"</item>
+    <item msgid="3812126832016254559">"非洲"</item>
+    <item msgid="2765816300353408280">"亚洲"</item>
+    <item msgid="6683489385344409742">"澳大利亚"</item>
+    <item msgid="5194868215515664953">"太平洋"</item>
+    <item msgid="7044520255415007865">"全部"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15秒"</item>
+    <item msgid="772029947136115322">"30 秒"</item>
+    <item msgid="8743663928349474087">"1 分钟"</item>
+    <item msgid="1506508631223164814">"2 分钟"</item>
+    <item msgid="8664703938127907662">"5 分钟"</item>
+    <item msgid="5827960506924849753">"10分钟"</item>
+    <item msgid="6677424950124253938">"30 分钟"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"小"</item>
+    <item msgid="591935967183159581">"默认"</item>
+    <item msgid="1714184661981538355">"大"</item>
+    <item msgid="6195563047686707484">"最大"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"正在扫描..."</item>
+    <item msgid="8058143476674427024">"正在连接到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"正在通过 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 进行身份验证..."</item>
+    <item msgid="5145158315060185414">"正在从 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 获取 IP 地址..."</item>
+    <item msgid="3283243151651124831">"已连接到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"已暂停"</item>
+    <item msgid="4133290864821295785">"正在断开与 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 的连接..."</item>
+    <item msgid="3980154971187953257">"已断开连接"</item>
+    <item msgid="2847316776634969068">"失败"</item>
+    <item msgid="4390990424746035383">"屏蔽"</item>
+    <item msgid="3618248791367063949">"暂时关闭(网络状况不佳)"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"按钮"</item>
+    <item msgid="7401896200768713930">"从对等设备获取的 PIN 码"</item>
+    <item msgid="4526848028011846710">"此设备生成的 PIN 码"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"已连接"</item>
+    <item msgid="983792611851499732">"已邀请"</item>
+    <item msgid="5438273405428201793">"失败"</item>
+    <item msgid="4646663015449312554">"可用"</item>
+    <item msgid="3230556734162006146">"超出范围"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 分钟"</item>
+    <item msgid="2759776603549270587">"5分钟"</item>
+    <item msgid="167772676068860015">"1 小时"</item>
+    <item msgid="5985477119043628504">"永不超时"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"过去30天"</item>
+    <item msgid="3211287705232736964">"设置流量周期…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"使用时间"</item>
+    <item msgid="2784401352592276015">"上次使用时间"</item>
+    <item msgid="249854287216326349">"应用名称"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"无"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"无"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"静态"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"无"</item>
+    <item msgid="1464741437353223198">"手册"</item>
+    <item msgid="5793600062487886090">"代理自动配置"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"无"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP 或 CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"内部存储设备"</item>
+    <item msgid="3186681694079967527">"可卸载的SD卡"</item>
+    <item msgid="6902033473986647035">"由系统确定"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"位置信息"</item>
+    <item msgid="6842381562497597649">"个人"</item>
+    <item msgid="3966700236695683444">"短信"</item>
+    <item msgid="8563996233342430477">"媒体"</item>
+    <item msgid="5323851085993963783">"设备"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"粗略位置"</item>
+    <item msgid="1830619568689922920">"精确位置"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"振动"</item>
+    <item msgid="8632513128515114092">"读取联系人"</item>
+    <item msgid="3741042113569620272">"修改联系人"</item>
+    <item msgid="4204420969709009931">"读取通话记录"</item>
+    <item msgid="2260380357119423209">"修改通话记录"</item>
+    <item msgid="6550710385014530934">"读取日历"</item>
+    <item msgid="3575906174264853951">"修改日历"</item>
+    <item msgid="4319843242568057174">"WLAN扫描"</item>
+    <item msgid="2981791890467303819">"通知"</item>
+    <item msgid="6617825156152476692">"手机网络扫描"</item>
+    <item msgid="8865260890611559753">"拨打电话"</item>
+    <item msgid="3254999273961542982">"读取短信"</item>
+    <item msgid="7711446453028825171">"编写短信"</item>
+    <item msgid="6123238544099198034">"接收短信"</item>
+    <item msgid="838342167431596036">"接收紧急短信"</item>
+    <item msgid="8554432731560956686">"接收彩信"</item>
+    <item msgid="7464863464299515059">"接收 WAP PUSH 消息"</item>
+    <item msgid="310463075729606765">"发送短信"</item>
+    <item msgid="7338021933527689514">"读取 ICC 短信"</item>
+    <item msgid="6130369335466613036">"写入 ICC 短信"</item>
+    <item msgid="6536865581421670942">"修改设置"</item>
+    <item msgid="4547203129183558973">"在最上层显示内容"</item>
+    <item msgid="9080347512916542840">"访问通知"</item>
+    <item msgid="5332718516635907742">"相机"</item>
+    <item msgid="6098422447246167852">"录制音频"</item>
+    <item msgid="9182794235292595296">"播放音频"</item>
+    <item msgid="8760743229597702019">"读取剪贴板内容"</item>
+    <item msgid="2266923698240538544">"修改剪贴板内容"</item>
+    <item msgid="1801619438618539275">"媒体按钮"</item>
+    <item msgid="31588119965784465">"音频焦点"</item>
+    <item msgid="7565226799008076833">"主音量"</item>
+    <item msgid="5420704980305018295">"语音音量"</item>
+    <item msgid="5797363115508970204">"铃声音量"</item>
+    <item msgid="8233154098550715999">"媒体音量"</item>
+    <item msgid="5196715605078153950">"闹钟音量"</item>
+    <item msgid="394030698764284577">"通知音量"</item>
+    <item msgid="8952898972491680178">"蓝牙音量"</item>
+    <item msgid="8506227454543690851">"保持唤醒状态"</item>
+    <item msgid="1108160036049727420">"监测位置"</item>
+    <item msgid="1496205959751719491">"监控高电耗位置信息服务"</item>
+    <item msgid="3776296279910987380">"获取使用情况统计信息"</item>
+    <item msgid="8827100324471975602">"将麦克风静音或取消静音"</item>
+    <item msgid="6880736730520126864">"显示问候语"</item>
+    <item msgid="4933375960222609935">"投影媒体"</item>
+    <item msgid="8357907018938895462">"激活 VPN"</item>
+    <item msgid="8143812849911310973">"写入壁纸"</item>
+    <item msgid="6266277260961066535">"辅助结构"</item>
+    <item msgid="7715498149883482300">"辅助屏幕截图"</item>
+    <item msgid="4046679376726313293">"读取手机状态"</item>
+    <item msgid="6329507266039719587">"添加语音邮件"</item>
+    <item msgid="7692440726415391408">"使用 SIP"</item>
+    <item msgid="8572453398128326267">"处理拨出电话"</item>
+    <item msgid="7775674394089376306">"指纹"</item>
+    <item msgid="3182815133441738779">"身体传感器"</item>
+    <item msgid="2793100005496829513">"读取小区广播"</item>
+    <item msgid="2633626056029384366">"模拟位置"</item>
+    <item msgid="8356842191824684631">"读取存储空间"</item>
+    <item msgid="5671906070163291500">"写入存储空间"</item>
+    <item msgid="2791955098549340418">"开启屏幕"</item>
+    <item msgid="5599435119609178367">"获取帐号"</item>
+    <item msgid="1165623660533024666">"在后台运行"</item>
+    <item msgid="6423861043647911030">"无障碍功能音量"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"位置信息"</item>
+    <item msgid="6656077694190491067">"位置信息"</item>
+    <item msgid="8790228218278477369">"位置信息"</item>
+    <item msgid="7836406246005211990">"振动"</item>
+    <item msgid="3951439024549922598">"读取联系人"</item>
+    <item msgid="8802152411647068">"修改联系人"</item>
+    <item msgid="229544934599698735">"读取通话记录"</item>
+    <item msgid="7396102294405899613">"修改通话记录"</item>
+    <item msgid="3597797992398484655">"读取日历"</item>
+    <item msgid="2705975774250907343">"修改日历"</item>
+    <item msgid="4668747371441932697">"位置信息"</item>
+    <item msgid="1487578921720243646">"发布通知"</item>
+    <item msgid="4636080349724146638">"位置"</item>
+    <item msgid="673510900286463926">"拨打电话"</item>
+    <item msgid="542083422784609790">"读取短信/彩信"</item>
+    <item msgid="1033780373029588436">"编写短信/彩信"</item>
+    <item msgid="5647111115517787488">"接收短信/彩信"</item>
+    <item msgid="8591105601108455893">"接收短信/彩信"</item>
+    <item msgid="7730995008517841903">"接收短信/彩信"</item>
+    <item msgid="2613033109026626086">"接收短信/彩信"</item>
+    <item msgid="3037159047591081136">"发送短信/彩信"</item>
+    <item msgid="4726682243833913568">"读取短信/彩信"</item>
+    <item msgid="6555678522277865572">"编写短信/彩信"</item>
+    <item msgid="6981734935578130884">"修改设置"</item>
+    <item msgid="8705854389991425629">"在最上层显示内容"</item>
+    <item msgid="5861356020344153651">"访问通知"</item>
+    <item msgid="78432174621628659">"相机"</item>
+    <item msgid="3986116419882154794">"录制音频"</item>
+    <item msgid="4516840825756409490">"播放音频"</item>
+    <item msgid="6811712502798183957">"读取剪贴板内容"</item>
+    <item msgid="2780369012602289114">"修改剪贴板内容"</item>
+    <item msgid="2331359440170850868">"媒体按钮"</item>
+    <item msgid="6133599737122751231">"音频焦点"</item>
+    <item msgid="6844485713404805301">"主音量"</item>
+    <item msgid="1600379420669104929">"语音音量"</item>
+    <item msgid="6296768210470214866">"铃声音量"</item>
+    <item msgid="510690696071629241">"媒体音量"</item>
+    <item msgid="406861638631430109">"闹钟音量"</item>
+    <item msgid="4715864795872233884">"通知音量"</item>
+    <item msgid="2311478519251301183">"蓝牙音量"</item>
+    <item msgid="5133991377896747027">"保持唤醒状态"</item>
+    <item msgid="2464189519136248621">"位置"</item>
+    <item msgid="2062677934050803037">"位置"</item>
+    <item msgid="1735171933192715957">"获取使用情况统计信息"</item>
+    <item msgid="1014093788778383554">"将麦克风静音或取消静音"</item>
+    <item msgid="4199297950608622850">"显示问候语"</item>
+    <item msgid="2527962435313398821">"投影媒体"</item>
+    <item msgid="5117506254221861929">"激活 VPN"</item>
+    <item msgid="8291198322681891160">"写入壁纸"</item>
+    <item msgid="7106921284621230961">"辅助结构"</item>
+    <item msgid="4496533640894624799">"辅助屏幕截图"</item>
+    <item msgid="2598847264853993611">"读取手机状态"</item>
+    <item msgid="9215610846802973353">"添加语音邮件"</item>
+    <item msgid="9186411956086478261">"使用 SIP"</item>
+    <item msgid="6884763100104539558">"处理拨出电话"</item>
+    <item msgid="125513972170580692">"指纹"</item>
+    <item msgid="2556071024281275619">"身体传感器"</item>
+    <item msgid="617168514928339387">"读取小区广播"</item>
+    <item msgid="7134693570516523585">"模拟位置"</item>
+    <item msgid="7224489175375229399">"读取存储空间"</item>
+    <item msgid="8472735063903258202">"写入存储空间"</item>
+    <item msgid="4069276819909595110">"开启屏幕"</item>
+    <item msgid="1228338896751121025">"获取帐号"</item>
+    <item msgid="3181581793459233672">"在后台运行"</item>
+    <item msgid="2340936043025374076">"无障碍功能音量"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"短"</item>
+    <item msgid="4816511817309094890">"中"</item>
+    <item msgid="8305084671259331134">"长"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"默认"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif monospace"</item>
+    <item msgid="4448481989108928248">"Casual"</item>
+    <item msgid="4627069151979553527">"Cursive"</item>
+    <item msgid="6896773537705206194">"Small capitals"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"默认"</item>
+    <item msgid="6488643537808152001">"无"</item>
+    <item msgid="552332815156010137">"轮廓"</item>
+    <item msgid="7187891159463789272">"阴影"</item>
+    <item msgid="8019330250538856521">"凸起"</item>
+    <item msgid="8987385315647049787">"凹陷"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"使用应用默认样式"</item>
+    <item msgid="8611890312638868524">"黑底白字"</item>
+    <item msgid="5891360837786277638">"白底黑字"</item>
+    <item msgid="2798457065945456853">"黑底黄字"</item>
+    <item msgid="5799049811524553967">"蓝底黄字"</item>
+    <item msgid="3673930830658169860">"自定义"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"具有预共享密钥的 L2TP/IPSec VPN"</item>
+    <item msgid="6128519070545038358">"具有证书的 L2TP/IPSec VPN"</item>
+    <item msgid="312397853907741968">"具有预共享密钥且进行 Xauth 身份验证的 IPSec VPN"</item>
+    <item msgid="3319427315593649917">"具有证书且进行 Xauth 身份验证的 IPSec VPN"</item>
+    <item msgid="8258927774145391041">"具有证书且进行混合身份验证的 IPSec VPN"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"无"</item>
+    <item msgid="1157046369795346308">"手册"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"已断开连接"</item>
+    <item msgid="8754480102834556765">"正在初始化..."</item>
+    <item msgid="3351334355574270250">"正在连接..."</item>
+    <item msgid="8303882153995748352">"已连接"</item>
+    <item msgid="9135049670787351881">"超时"</item>
+    <item msgid="2124868417182583926">"失败"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"询问"</item>
+    <item msgid="7718817231348607934">"永不允许"</item>
+    <item msgid="8184570120217958741">"始终允许"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"常驻"</item>
+    <item msgid="167418068739176448">"顶层 Activity"</item>
+    <item msgid="4760813290195199773">"重要(前台)"</item>
+    <item msgid="2328684826817647595">"重要(后台)"</item>
+    <item msgid="7746406490652867365">"备份"</item>
+    <item msgid="5597404364389196754">"重量级"</item>
+    <item msgid="1290888779300174556">"服务(运行中)"</item>
+    <item msgid="7241098542073939046">"服务(重新启动中)"</item>
+    <item msgid="6610439017684111046">"接收器"</item>
+    <item msgid="7367606086319921117">"主屏幕"</item>
+    <item msgid="3344660712396741826">"前一个 Activity"</item>
+    <item msgid="5006559348883303865">"已缓存 (Activity)"</item>
+    <item msgid="8633480732468137525">"已缓存(Activity 客户端)"</item>
+    <item msgid="6248998242443333892">"已缓存(空)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"青色"</item>
+    <item msgid="3228505970082457852">"蓝色"</item>
+    <item msgid="6590260735734795647">"靛青色"</item>
+    <item msgid="3521763377357218577">"紫色"</item>
+    <item msgid="5932337981182999919">"粉红色"</item>
+    <item msgid="5642914536624000094">"红色"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"超过 30 天"</item>
+    <item msgid="8699273238891265610">"超过 60 天"</item>
+    <item msgid="8346279419423837266">"超过 90 天"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"自动检测"</item>
+    <item msgid="773943026484148895">"视为按流量计费"</item>
+    <item msgid="1008268820118852416">"视为不按流量计费"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"使用随机 MAC(默认)"</item>
+    <item msgid="214234417308375326">"使用设备 MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"否"</item>
+    <item msgid="1930581185557754880">"是"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"深色"</item>
+    <item msgid="5079453644557603349">"浅色"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"关闭"</item>
+    <item msgid="4072198137051566919">"调试"</item>
+    <item msgid="2473005316958868509">"详细"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"仅本地系统"</item>
+    <item msgid="1161026694891024702">"自动"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"首选 GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"仅限 GSM"</item>
+    <item msgid="8579197487913425819">"仅限 WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA 自动选择"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo 自动选择"</item>
+    <item msgid="4219607161971472471">"CDMA,无 EvDo 功能"</item>
+    <item msgid="7278975240951052041">"仅限 EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"通用"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"仅限 TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"通用"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rCN/strings.xml b/tests/CarDeveloperOptions/res/values-zh-rCN/strings.xml
index 7f0fbd3..0b74125 100644
--- a/tests/CarDeveloperOptions/res/values-zh-rCN/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-zh-rCN/strings.xml
@@ -845,7 +845,7 @@
     <string name="wifi_error" msgid="5605801874484465557">"出错"</string>
     <string name="wifi_sap_no_channel_error" msgid="6881796988574851628">"在此国家/地区无法使用 5 GHz 频段"</string>
     <string name="wifi_in_airplane_mode" msgid="4729571191578262246">"正处于飞行模式下"</string>
-    <string name="wifi_notify_open_networks" msgid="4782239203624619655">"打开网络通知"</string>
+    <string name="wifi_notify_open_networks" msgid="4782239203624619655">"开放网络通知"</string>
     <string name="wifi_notify_open_networks_summary" msgid="1383681260705466715">"有可用的高品质公共网络时通知我"</string>
     <string name="wifi_wakeup" msgid="4963732992164721548">"自动开启 WLAN"</string>
     <string name="wifi_wakeup_summary" msgid="1152699417411690">"位于已保存的高品质网络(例如您的家庭网络)附近时自动重新开启 WLAN"</string>
@@ -2078,7 +2078,7 @@
     <string name="accessibility_control_timeout_preference_title" msgid="2771808346038759474">"操作执行时长"</string>
     <string name="accessibility_content_timeout_preference_summary" msgid="853829064617918179">"请选择您需要阅读的消息的显示时间(只会暂时显示)。\n\n只有部分应用支持这项设置。"</string>
     <string name="accessibility_control_timeout_preference_summary" msgid="8582212299606932160">"请选择提示您执行操作的消息的显示时间(只会暂时显示)。\n\n部分应用可能不支持这项设置。"</string>
-    <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"触摸和按住延迟"</string>
+    <string name="accessibility_long_press_timeout_preference_title" msgid="5029685114164868477">"轻触并按住的延迟时间"</string>
     <string name="accessibility_display_inversion_preference_title" msgid="3852635518618938998">"颜色反转"</string>
     <string name="accessibility_display_inversion_preference_subtitle" msgid="69291255322175323">"可能会影响性能"</string>
     <string name="accessibility_autoclick_preference_title" msgid="9164599088410340405">"停留时间"</string>
@@ -3096,9 +3096,9 @@
     <string name="keywords_sim_status" msgid="3852088576719874387">"网络, 移动网络状态, 服务状态, 信号强度, 移动网络类型, 漫游, ICCID"</string>
     <string name="keywords_model_and_hardware" msgid="2743197096210895251">"序列号, 硬件版本"</string>
     <string name="keywords_android_version" msgid="4842749998088987740">"Android 安全补丁程序级别, 基带版本, 内核版本"</string>
-    <string name="keywords_dark_ui_mode" msgid="1027966176887770318">"主题背景, 浅色, 夜间, 模式"</string>
+    <string name="keywords_dark_ui_mode" msgid="1027966176887770318">"主题背景, 光亮, 暗黑, 模式"</string>
     <string name="keywords_financial_apps_sms_access" msgid="3236014691838121857">"财经应用,短信,权限"</string>
-    <string name="keywords_systemui_theme" msgid="9150908170417305866">"深色主题背景"</string>
+    <string name="keywords_systemui_theme" msgid="9150908170417305866">"深色主题"</string>
     <string name="keywords_device_feedback" msgid="6948977907405738490">"错误"</string>
     <string name="keywords_ambient_display_screen" msgid="5873935693887583428">"主动显示, 锁定屏幕显示"</string>
     <string name="keywords_lock_screen_notif" msgid="4914337222856805463">"锁定屏幕通知, 通知"</string>
@@ -4070,7 +4070,7 @@
     <string name="dark_ui_mode" msgid="703844190192599217">"主题背景"</string>
     <string name="dark_ui_mode_title" msgid="8774932716427742413">"选择主题背景"</string>
     <string name="dark_ui_settings_light_summary" msgid="5219102347744462812">"此设置也适用于应用"</string>
-    <string name="dark_ui_settings_dark_summary" msgid="7042737828943784289">"受支持的应用还会切换到深色主题背景"</string>
+    <string name="dark_ui_settings_dark_summary" msgid="7042737828943784289">"受支持的应用还会切换到深色主题"</string>
     <string name="quick_settings_developer_tiles" msgid="7423485925757678719">"快捷设置开发者图块"</string>
     <string name="winscope_trace_quick_settings_title" msgid="940971040388411374">"Winscope 跟踪"</string>
     <string name="sensors_off_quick_settings_title" msgid="3655699045300438902">"传感器已关闭"</string>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rHK-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-zh-rHK-nokeys/strings.xml
new file mode 100644
index 0000000..10ea868
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zh-rHK-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"管理應用程式"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rHK/arrays.xml b/tests/CarDeveloperOptions/res/values-zh-rHK/arrays.xml
new file mode 100644
index 0000000..d47fdb1
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zh-rHK/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"美洲"</item>
+    <item msgid="4791956477275129121">"歐洲"</item>
+    <item msgid="3812126832016254559">"非洲"</item>
+    <item msgid="2765816300353408280">"亞洲"</item>
+    <item msgid="6683489385344409742">"澳洲"</item>
+    <item msgid="5194868215515664953">"太平洋"</item>
+    <item msgid="7044520255415007865">"全部"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 秒"</item>
+    <item msgid="772029947136115322">"30 秒"</item>
+    <item msgid="8743663928349474087">"1 分鐘"</item>
+    <item msgid="1506508631223164814">"2 分鐘"</item>
+    <item msgid="8664703938127907662">"5 分鐘"</item>
+    <item msgid="5827960506924849753">"10 分鐘"</item>
+    <item msgid="6677424950124253938">"30 分鐘"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"小"</item>
+    <item msgid="591935967183159581">"預設"</item>
+    <item msgid="1714184661981538355">"大"</item>
+    <item msgid="6195563047686707484">"最大"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"正在掃瞄…"</item>
+    <item msgid="8058143476674427024">"正在連線到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"正在取得 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 的授權..."</item>
+    <item msgid="5145158315060185414">"正在從 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 取得 IP 位址..."</item>
+    <item msgid="3283243151651124831">"已連線到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"已暫停"</item>
+    <item msgid="4133290864821295785">"正在中斷 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 連線…"</item>
+    <item msgid="3980154971187953257">"已中斷連線"</item>
+    <item msgid="2847316776634969068">"不成功"</item>
+    <item msgid="4390990424746035383">"已封鎖"</item>
+    <item msgid="3618248791367063949">"目前正暫時避開欠佳的連線"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"按鍵"</item>
+    <item msgid="7401896200768713930">"來自對端裝置的 PIN"</item>
+    <item msgid="4526848028011846710">"從這部裝置產生的 PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"已連接"</item>
+    <item msgid="983792611851499732">"已邀請"</item>
+    <item msgid="5438273405428201793">"不成功"</item>
+    <item msgid="4646663015449312554">"可用"</item>
+    <item msgid="3230556734162006146">"超出範圍"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 分鐘"</item>
+    <item msgid="2759776603549270587">"5 分鐘"</item>
+    <item msgid="167772676068860015">"1 小時"</item>
+    <item msgid="5985477119043628504">"永不逾時"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"最近 30 天"</item>
+    <item msgid="3211287705232736964">"設定用量週期…"</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"使用時間"</item>
+    <item msgid="2784401352592276015">"上次使用時間"</item>
+    <item msgid="249854287216326349">"應用程式名稱"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"無"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"無"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"靜態"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"無"</item>
+    <item msgid="1464741437353223198">"手動"</item>
+    <item msgid="5793600062487886090">"Proxy 自動設定"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"無"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP 或 CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"內部裝置儲存空間"</item>
+    <item msgid="3186681694079967527">"卸除式 SD 卡"</item>
+    <item msgid="6902033473986647035">"讓系統決定"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"位置"</item>
+    <item msgid="6842381562497597649">"個人"</item>
+    <item msgid="3966700236695683444">"短訊"</item>
+    <item msgid="8563996233342430477">"媒體"</item>
+    <item msgid="5323851085993963783">"裝置"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"約略位置"</item>
+    <item msgid="1830619568689922920">"精確位置"</item>
+    <item msgid="3317274469481923141">"全球衛星定位系統 (GPS)"</item>
+    <item msgid="8931785990160383356">"震動"</item>
+    <item msgid="8632513128515114092">"讀取通訊錄"</item>
+    <item msgid="3741042113569620272">"修改通訊錄"</item>
+    <item msgid="4204420969709009931">"讀取通話記錄"</item>
+    <item msgid="2260380357119423209">"修改通話記錄"</item>
+    <item msgid="6550710385014530934">"讀取日曆"</item>
+    <item msgid="3575906174264853951">"修改日曆"</item>
+    <item msgid="4319843242568057174">"Wi-Fi 掃瞄"</item>
+    <item msgid="2981791890467303819">"通知"</item>
+    <item msgid="6617825156152476692">"手機掃瞄"</item>
+    <item msgid="8865260890611559753">"撥打電話"</item>
+    <item msgid="3254999273961542982">"讀取 SMS"</item>
+    <item msgid="7711446453028825171">"寫入 SMS"</item>
+    <item msgid="6123238544099198034">"接收 SMS"</item>
+    <item msgid="838342167431596036">"接收緊急 SMS"</item>
+    <item msgid="8554432731560956686">"接收 MMS"</item>
+    <item msgid="7464863464299515059">"接收 WAP PUSH 短訊"</item>
+    <item msgid="310463075729606765">"傳送 SMS"</item>
+    <item msgid="7338021933527689514">"讀取 ICC SMS"</item>
+    <item msgid="6130369335466613036">"寫入 ICC SMS"</item>
+    <item msgid="6536865581421670942">"修改設定"</item>
+    <item msgid="4547203129183558973">"在上面繪圖"</item>
+    <item msgid="9080347512916542840">"存取通知"</item>
+    <item msgid="5332718516635907742">"相機"</item>
+    <item msgid="6098422447246167852">"錄製音效"</item>
+    <item msgid="9182794235292595296">"播放音效"</item>
+    <item msgid="8760743229597702019">"讀取剪貼簿"</item>
+    <item msgid="2266923698240538544">"修改剪貼簿"</item>
+    <item msgid="1801619438618539275">"媒體按鈕"</item>
+    <item msgid="31588119965784465">"音頻焦點"</item>
+    <item msgid="7565226799008076833">"主音量"</item>
+    <item msgid="5420704980305018295">"語音音量"</item>
+    <item msgid="5797363115508970204">"鈴聲音量"</item>
+    <item msgid="8233154098550715999">"媒體音量"</item>
+    <item msgid="5196715605078153950">"鬧鐘音量"</item>
+    <item msgid="394030698764284577">"通知音量"</item>
+    <item msgid="8952898972491680178">"藍牙音量"</item>
+    <item msgid="8506227454543690851">"保持啟用"</item>
+    <item msgid="1108160036049727420">"監測位置"</item>
+    <item msgid="1496205959751719491">"監控高耗電量定位功能"</item>
+    <item msgid="3776296279910987380">"取得使用統計資料"</item>
+    <item msgid="8827100324471975602">"關閉/開啟麥克風"</item>
+    <item msgid="6880736730520126864">"顯示 Toast"</item>
+    <item msgid="4933375960222609935">"投影媒體"</item>
+    <item msgid="8357907018938895462">"啟用 VPN"</item>
+    <item msgid="8143812849911310973">"撰寫桌布"</item>
+    <item msgid="6266277260961066535">"輔助結構"</item>
+    <item msgid="7715498149883482300">"輔助螢幕擷取畫面"</item>
+    <item msgid="4046679376726313293">"讀取手機狀態"</item>
+    <item msgid="6329507266039719587">"新增留言"</item>
+    <item msgid="7692440726415391408">"使用 SIP"</item>
+    <item msgid="8572453398128326267">"處理撥出的通話"</item>
+    <item msgid="7775674394089376306">"指紋"</item>
+    <item msgid="3182815133441738779">"人體感應器"</item>
+    <item msgid="2793100005496829513">"讀取區域廣播"</item>
+    <item msgid="2633626056029384366">"模擬位置"</item>
+    <item msgid="8356842191824684631">"讀取儲存空間"</item>
+    <item msgid="5671906070163291500">"寫入儲存空間"</item>
+    <item msgid="2791955098549340418">"開啟螢幕"</item>
+    <item msgid="5599435119609178367">"取得帳戶"</item>
+    <item msgid="1165623660533024666">"在背景中執行"</item>
+    <item msgid="6423861043647911030">"無障礙功能音量"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"位置"</item>
+    <item msgid="6656077694190491067">"位置"</item>
+    <item msgid="8790228218278477369">"位置"</item>
+    <item msgid="7836406246005211990">"震動"</item>
+    <item msgid="3951439024549922598">"讀取通訊錄"</item>
+    <item msgid="8802152411647068">"修改通訊錄"</item>
+    <item msgid="229544934599698735">"讀取通話記錄"</item>
+    <item msgid="7396102294405899613">"修改通話記錄"</item>
+    <item msgid="3597797992398484655">"讀取日曆"</item>
+    <item msgid="2705975774250907343">"修改日曆"</item>
+    <item msgid="4668747371441932697">"位置"</item>
+    <item msgid="1487578921720243646">"發佈通知"</item>
+    <item msgid="4636080349724146638">"位置"</item>
+    <item msgid="673510900286463926">"撥打電話"</item>
+    <item msgid="542083422784609790">"讀取 SMS/MMS"</item>
+    <item msgid="1033780373029588436">"寫入 SMS/MMS"</item>
+    <item msgid="5647111115517787488">"接收 SMS/MMS"</item>
+    <item msgid="8591105601108455893">"接收 SMS/MMS"</item>
+    <item msgid="7730995008517841903">"接收 SMS/MMS"</item>
+    <item msgid="2613033109026626086">"接收 SMS/MMS"</item>
+    <item msgid="3037159047591081136">"傳送 SMS/MMS"</item>
+    <item msgid="4726682243833913568">"讀取 SMS/MMS"</item>
+    <item msgid="6555678522277865572">"寫入 SMS/MMS"</item>
+    <item msgid="6981734935578130884">"修改設定"</item>
+    <item msgid="8705854389991425629">"在上面繪圖"</item>
+    <item msgid="5861356020344153651">"存取通知"</item>
+    <item msgid="78432174621628659">"相機"</item>
+    <item msgid="3986116419882154794">"錄製音效"</item>
+    <item msgid="4516840825756409490">"播放音效"</item>
+    <item msgid="6811712502798183957">"讀取剪貼簿"</item>
+    <item msgid="2780369012602289114">"修改剪貼簿"</item>
+    <item msgid="2331359440170850868">"媒體按鈕"</item>
+    <item msgid="6133599737122751231">"音頻焦點"</item>
+    <item msgid="6844485713404805301">"主音量"</item>
+    <item msgid="1600379420669104929">"語音音量"</item>
+    <item msgid="6296768210470214866">"鈴聲音量"</item>
+    <item msgid="510690696071629241">"媒體音量"</item>
+    <item msgid="406861638631430109">"鬧鐘音量"</item>
+    <item msgid="4715864795872233884">"通知音量"</item>
+    <item msgid="2311478519251301183">"藍牙音量"</item>
+    <item msgid="5133991377896747027">"保持啟用"</item>
+    <item msgid="2464189519136248621">"位置"</item>
+    <item msgid="2062677934050803037">"位置"</item>
+    <item msgid="1735171933192715957">"取得使用統計資料"</item>
+    <item msgid="1014093788778383554">"關閉/開啟麥克風"</item>
+    <item msgid="4199297950608622850">"顯示 Toast"</item>
+    <item msgid="2527962435313398821">"投影媒體"</item>
+    <item msgid="5117506254221861929">"啟用 VPN"</item>
+    <item msgid="8291198322681891160">"撰寫桌布"</item>
+    <item msgid="7106921284621230961">"輔助結構"</item>
+    <item msgid="4496533640894624799">"輔助螢幕擷取畫面"</item>
+    <item msgid="2598847264853993611">"讀取手機狀態"</item>
+    <item msgid="9215610846802973353">"新增留言"</item>
+    <item msgid="9186411956086478261">"使用 SIP"</item>
+    <item msgid="6884763100104539558">"處理撥出的通話"</item>
+    <item msgid="125513972170580692">"指紋"</item>
+    <item msgid="2556071024281275619">"人體感應器"</item>
+    <item msgid="617168514928339387">"讀取區域廣播"</item>
+    <item msgid="7134693570516523585">"模擬位置"</item>
+    <item msgid="7224489175375229399">"讀取儲存空間"</item>
+    <item msgid="8472735063903258202">"寫入儲存空間"</item>
+    <item msgid="4069276819909595110">"開啟螢幕"</item>
+    <item msgid="1228338896751121025">"取得帳戶"</item>
+    <item msgid="3181581793459233672">"在背景中執行"</item>
+    <item msgid="2340936043025374076">"無障礙功能音量"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"短"</item>
+    <item msgid="4816511817309094890">"中"</item>
+    <item msgid="8305084671259331134">"長"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"預設"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif 等寬字型"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif 等寬字型"</item>
+    <item msgid="4448481989108928248">"行書"</item>
+    <item msgid="4627069151979553527">"草書"</item>
+    <item msgid="6896773537705206194">"小楷"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"預設"</item>
+    <item msgid="6488643537808152001">"無"</item>
+    <item msgid="552332815156010137">"外框"</item>
+    <item msgid="7187891159463789272">"投射陰影"</item>
+    <item msgid="8019330250538856521">"凸出"</item>
+    <item msgid="8987385315647049787">"內凹"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"使用應用程式預設樣式"</item>
+    <item msgid="8611890312638868524">"黑底白字"</item>
+    <item msgid="5891360837786277638">"白底黑字"</item>
+    <item msgid="2798457065945456853">"黑底黃字"</item>
+    <item msgid="5799049811524553967">"藍底黃字"</item>
+    <item msgid="3673930830658169860">"自訂"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN (預先共用密鑰)"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN (憑證)"</item>
+    <item msgid="312397853907741968">"IPSec VPN (預先共用密鑰和 Xauth 驗證)"</item>
+    <item msgid="3319427315593649917">"IPSec VPN (憑證和 Xauth 驗證)"</item>
+    <item msgid="8258927774145391041">"IPSec VPN (憑證和混合驗證)"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"無"</item>
+    <item msgid="1157046369795346308">"手動"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"已中斷連線"</item>
+    <item msgid="8754480102834556765">"正在初始..."</item>
+    <item msgid="3351334355574270250">"正在連線..."</item>
+    <item msgid="8303882153995748352">"已連接"</item>
+    <item msgid="9135049670787351881">"逾時"</item>
+    <item msgid="2124868417182583926">"不成功"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"詢問"</item>
+    <item msgid="7718817231348607934">"永不允許"</item>
+    <item msgid="8184570120217958741">"永遠允許"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"持續"</item>
+    <item msgid="167418068739176448">"重大活動"</item>
+    <item msgid="4760813290195199773">"重要 (前景)"</item>
+    <item msgid="2328684826817647595">"重要 (背景)"</item>
+    <item msgid="7746406490652867365">"備份"</item>
+    <item msgid="5597404364389196754">"高負載"</item>
+    <item msgid="1290888779300174556">"服務 (執行中)"</item>
+    <item msgid="7241098542073939046">"服務 (重新啟動中)"</item>
+    <item msgid="6610439017684111046">"接收器"</item>
+    <item msgid="7367606086319921117">"首頁"</item>
+    <item msgid="3344660712396741826">"最近活動"</item>
+    <item msgid="5006559348883303865">"快取 (活動)"</item>
+    <item msgid="8633480732468137525">"快取 (活動使用者端)"</item>
+    <item msgid="6248998242443333892">"快取 (清空)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"藍綠色"</item>
+    <item msgid="3228505970082457852">"藍色"</item>
+    <item msgid="6590260735734795647">"靛藍色"</item>
+    <item msgid="3521763377357218577">"紫色"</item>
+    <item msgid="5932337981182999919">"粉紅色"</item>
+    <item msgid="5642914536624000094">"紅色"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"超過 30 天"</item>
+    <item msgid="8699273238891265610">"超過 60 天"</item>
+    <item msgid="8346279419423837266">"超過 90 天"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"自動偵測"</item>
+    <item msgid="773943026484148895">"設定為按用量收費"</item>
+    <item msgid="1008268820118852416">"設定為非按用量收費"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"使用隨機 MAC (預設)"</item>
+    <item msgid="214234417308375326">"使用 MAC 裝置"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"否"</item>
+    <item msgid="1930581185557754880">"是"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"深色"</item>
+    <item msgid="5079453644557603349">"淺色"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"關閉"</item>
+    <item msgid="4072198137051566919">"偵錯"</item>
+    <item msgid="2473005316958868509">"詳細"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"僅限住宅電話"</item>
+    <item msgid="1161026694891024702">"自動"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"首選 GSM/WCDMA"</item>
+    <item msgid="7581481130337402578">"只限 GSM"</item>
+    <item msgid="8579197487913425819">"只限 WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA 自動切換"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo 自動切換"</item>
+    <item msgid="4219607161971472471">"CDMA (沒有 EvDo)"</item>
+    <item msgid="7278975240951052041">"只限 EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"全球"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"只限 TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"全球"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rHK/strings.xml b/tests/CarDeveloperOptions/res/values-zh-rHK/strings.xml
index 839b0a5..74a45ec 100644
--- a/tests/CarDeveloperOptions/res/values-zh-rHK/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-zh-rHK/strings.xml
@@ -390,7 +390,7 @@
     <string name="security_passwords_title" msgid="6853942836045862315">"私隱權"</string>
     <string name="disabled_by_administrator_summary" msgid="6099821045360491127">"已由管理員停用"</string>
     <string name="security_status_title" msgid="1261960357751754428">"安全性狀態"</string>
-    <string name="security_dashboard_summary_face" msgid="2536136110153593745">"螢幕鎖定, 臉容解鎖"</string>
+    <string name="security_dashboard_summary_face" msgid="2536136110153593745">"螢幕鎖定, 臉孔解鎖"</string>
     <string name="security_dashboard_summary" msgid="4048877125766167227">"螢幕鎖定、指紋"</string>
     <string name="security_dashboard_summary_no_fingerprint" msgid="8861903321053490658">"螢幕鎖定"</string>
     <string name="security_settings_face_preference_summary" msgid="4437701024542221434">"已加入臉孔"</string>
@@ -427,7 +427,7 @@
     <string name="security_settings_face_settings_remove_face_data" msgid="2821359954483136239">"移除臉容資料"</string>
     <string name="security_settings_face_settings_footer" msgid="4627175759990550715">"您的臉容可以用來解鎖裝置和存取應用程式。"<annotation id="url">"瞭解詳情"</annotation></string>
     <string name="security_settings_face_settings_remove_dialog_title" msgid="5675319895815271094">"是否刪除臉容資料?"</string>
-    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"臉容解鎖功能記錄的資料將以安全方式永久刪除。移除後,您將需使用 PIN、圖案或密碼解鎖手機、登入應用程式及確認付款。"</string>
+    <string name="security_settings_face_settings_remove_dialog_details" msgid="3754494807169276107">"臉孔解鎖功能記錄的資料將以安全方式永久刪除。移除後,您將需使用 PIN、圖案或密碼解鎖手機、登入應用程式及確認付款。"</string>
     <string name="security_settings_fingerprint_preference_title" msgid="4177132225930582928">"指紋"</string>
     <string name="fingerprint_manage_category_title" msgid="1463406696801542090">"管理指紋"</string>
     <string name="fingerprint_usage_category_title" msgid="7298369141954599706">"使用指紋"</string>
@@ -845,7 +845,7 @@
     <string name="wifi_error" msgid="5605801874484465557">"錯誤"</string>
     <string name="wifi_sap_no_channel_error" msgid="6881796988574851628">"此國家/地區無法使用 5 GHz 頻譜"</string>
     <string name="wifi_in_airplane_mode" msgid="4729571191578262246">"處於飛行模式"</string>
-    <string name="wifi_notify_open_networks" msgid="4782239203624619655">"開啟網絡通知"</string>
+    <string name="wifi_notify_open_networks" msgid="4782239203624619655">"開放網絡通知"</string>
     <string name="wifi_notify_open_networks_summary" msgid="1383681260705466715">"有高品質的公共網絡時通知我"</string>
     <string name="wifi_wakeup" msgid="4963732992164721548">"自動開啟 Wi‑Fi"</string>
     <string name="wifi_wakeup_summary" msgid="1152699417411690">"附近有已儲存的高品質網絡 (例如家用網絡) 時會開啟 Wi-Fi"</string>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rTW-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-zh-rTW-nokeys/strings.xml
new file mode 100644
index 0000000..10ea868
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zh-rTW-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"管理應用程式"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rTW/arrays.xml b/tests/CarDeveloperOptions/res/values-zh-rTW/arrays.xml
new file mode 100644
index 0000000..8b9e3bc
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zh-rTW/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"美國"</item>
+    <item msgid="4791956477275129121">"歐洲"</item>
+    <item msgid="3812126832016254559">"非洲"</item>
+    <item msgid="2765816300353408280">"亞洲"</item>
+    <item msgid="6683489385344409742">"澳大利亞"</item>
+    <item msgid="5194868215515664953">"太平洋"</item>
+    <item msgid="7044520255415007865">"全部"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 秒"</item>
+    <item msgid="772029947136115322">"30 秒"</item>
+    <item msgid="8743663928349474087">"1 分鐘"</item>
+    <item msgid="1506508631223164814">"2 分鐘"</item>
+    <item msgid="8664703938127907662">"5 分鐘"</item>
+    <item msgid="5827960506924849753">"10 分鐘"</item>
+    <item msgid="6677424950124253938">"30 分鐘"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"小"</item>
+    <item msgid="591935967183159581">"預設"</item>
+    <item msgid="1714184661981538355">"大"</item>
+    <item msgid="6195563047686707484">"最大"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"掃描中…"</item>
+    <item msgid="8058143476674427024">"正在連線到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="7547609081339573756">"正在取得 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 的授權…"</item>
+    <item msgid="5145158315060185414">"正在從 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 取得 IP 位址…"</item>
+    <item msgid="3283243151651124831">"已連線到 <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"待命"</item>
+    <item msgid="4133290864821295785">"正在中斷 <xliff:g id="NETWORK_NAME">%1$s</xliff:g> 連線…"</item>
+    <item msgid="3980154971187953257">"連線中斷"</item>
+    <item msgid="2847316776634969068">"失敗"</item>
+    <item msgid="4390990424746035383">"已封鎖"</item>
+    <item msgid="3618248791367063949">"目前正暫時避開品質不佳的連線"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"按鈕"</item>
+    <item msgid="7401896200768713930">"來自對端裝置的 PIN"</item>
+    <item msgid="4526848028011846710">"從這個裝置產生 PIN"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"已連線"</item>
+    <item msgid="983792611851499732">"已邀請"</item>
+    <item msgid="5438273405428201793">"失敗"</item>
+    <item msgid="4646663015449312554">"有可用的 SIM 卡"</item>
+    <item msgid="3230556734162006146">"超出範圍"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 分鐘"</item>
+    <item msgid="2759776603549270587">"5 分鐘"</item>
+    <item msgid="167772676068860015">"1 小時"</item>
+    <item msgid="5985477119043628504">"無時限"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"最近 30 天"</item>
+    <item msgid="3211287705232736964">"設定用量週期..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"使用時間"</item>
+    <item msgid="2784401352592276015">"上次使用時間"</item>
+    <item msgid="249854287216326349">"應用程式名稱"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"PEAP"</item>
+    <item msgid="336771389015263226">"TLS"</item>
+    <item msgid="2124951724092063376">"TTLS"</item>
+    <item msgid="7427377376024106344">"PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"都不套用"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"都不套用"</item>
+    <item msgid="7901133332272818442">"PAP"</item>
+    <item msgid="8549879045980332977">"MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"DHCP"</item>
+    <item msgid="4377002609760712163">"靜態"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"都不套用"</item>
+    <item msgid="1464741437353223198">"說明書"</item>
+    <item msgid="5793600062487886090">"Proxy 自動設定"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"都不套用"</item>
+    <item msgid="1950796738039490374">"PAP"</item>
+    <item msgid="8166687999538788787">"CHAP"</item>
+    <item msgid="1276004657191968988">"PAP 或 CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"內部裝置儲存空間"</item>
+    <item msgid="3186681694079967527">"卸除式 SD 卡"</item>
+    <item msgid="6902033473986647035">"讓系統決定"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"定位"</item>
+    <item msgid="6842381562497597649">"個人"</item>
+    <item msgid="3966700236695683444">"簡訊"</item>
+    <item msgid="8563996233342430477">"媒體"</item>
+    <item msgid="5323851085993963783">"裝置"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"約略位置"</item>
+    <item msgid="1830619568689922920">"精確位置"</item>
+    <item msgid="3317274469481923141">"GPS"</item>
+    <item msgid="8931785990160383356">"震動"</item>
+    <item msgid="8632513128515114092">"讀取聯絡人資料"</item>
+    <item msgid="3741042113569620272">"修改聯絡人資料"</item>
+    <item msgid="4204420969709009931">"讀取通話記錄"</item>
+    <item msgid="2260380357119423209">"修改通話記錄"</item>
+    <item msgid="6550710385014530934">"讀取日曆"</item>
+    <item msgid="3575906174264853951">"修改日曆"</item>
+    <item msgid="4319843242568057174">"Wi-Fi 掃描"</item>
+    <item msgid="2981791890467303819">"通知"</item>
+    <item msgid="6617825156152476692">"手機掃描"</item>
+    <item msgid="8865260890611559753">"撥打電話"</item>
+    <item msgid="3254999273961542982">"讀取 SMS"</item>
+    <item msgid="7711446453028825171">"撰寫 SMS"</item>
+    <item msgid="6123238544099198034">"接收簡訊"</item>
+    <item msgid="838342167431596036">"接收緊急 SMS"</item>
+    <item msgid="8554432731560956686">"接收 MMS"</item>
+    <item msgid="7464863464299515059">"接收 WAP PUSH 簡訊"</item>
+    <item msgid="310463075729606765">"傳送 SMS"</item>
+    <item msgid="7338021933527689514">"讀取 ICC SMS"</item>
+    <item msgid="6130369335466613036">"撰寫 ICC SMS"</item>
+    <item msgid="6536865581421670942">"修改設定"</item>
+    <item msgid="4547203129183558973">"在最上層繪圖"</item>
+    <item msgid="9080347512916542840">"存取通知"</item>
+    <item msgid="5332718516635907742">"相機"</item>
+    <item msgid="6098422447246167852">"錄音"</item>
+    <item msgid="9182794235292595296">"播放音訊"</item>
+    <item msgid="8760743229597702019">"讀取剪貼簿"</item>
+    <item msgid="2266923698240538544">"修改剪貼簿"</item>
+    <item msgid="1801619438618539275">"媒體按鈕"</item>
+    <item msgid="31588119965784465">"音訊焦點"</item>
+    <item msgid="7565226799008076833">"主音量"</item>
+    <item msgid="5420704980305018295">"語音音量"</item>
+    <item msgid="5797363115508970204">"鈴聲音量"</item>
+    <item msgid="8233154098550715999">"媒體音量"</item>
+    <item msgid="5196715605078153950">"鬧鐘音量"</item>
+    <item msgid="394030698764284577">"通知音量"</item>
+    <item msgid="8952898972491680178">"藍牙音量"</item>
+    <item msgid="8506227454543690851">"停用休眠"</item>
+    <item msgid="1108160036049727420">"監控位置"</item>
+    <item msgid="1496205959751719491">"監控高耗電定位功能"</item>
+    <item msgid="3776296279910987380">"取得使用統計資料"</item>
+    <item msgid="8827100324471975602">"關閉/開啟麥克風"</item>
+    <item msgid="6880736730520126864">"顯示浮動式訊息"</item>
+    <item msgid="4933375960222609935">"投影媒體"</item>
+    <item msgid="8357907018938895462">"啟用 VPN"</item>
+    <item msgid="8143812849911310973">"寫入桌布"</item>
+    <item msgid="6266277260961066535">"輔助結構"</item>
+    <item msgid="7715498149883482300">"輔助螢幕截圖"</item>
+    <item msgid="4046679376726313293">"讀取手機狀態"</item>
+    <item msgid="6329507266039719587">"新增語音留言"</item>
+    <item msgid="7692440726415391408">"使用 SIP"</item>
+    <item msgid="8572453398128326267">"處理撥出電話"</item>
+    <item msgid="7775674394089376306">"指紋"</item>
+    <item msgid="3182815133441738779">"人體感測器"</item>
+    <item msgid="2793100005496829513">"讀取區域廣播"</item>
+    <item msgid="2633626056029384366">"模擬位置"</item>
+    <item msgid="8356842191824684631">"讀取儲存空間"</item>
+    <item msgid="5671906070163291500">"寫入儲存空間"</item>
+    <item msgid="2791955098549340418">"開啟螢幕"</item>
+    <item msgid="5599435119609178367">"取得帳戶"</item>
+    <item msgid="1165623660533024666">"在背景執行"</item>
+    <item msgid="6423861043647911030">"無障礙工具音量"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"定位"</item>
+    <item msgid="6656077694190491067">"定位"</item>
+    <item msgid="8790228218278477369">"定位"</item>
+    <item msgid="7836406246005211990">"震動"</item>
+    <item msgid="3951439024549922598">"讀取聯絡人資料"</item>
+    <item msgid="8802152411647068">"修改聯絡人資料"</item>
+    <item msgid="229544934599698735">"讀取通話記錄"</item>
+    <item msgid="7396102294405899613">"修改通話記錄"</item>
+    <item msgid="3597797992398484655">"讀取日曆"</item>
+    <item msgid="2705975774250907343">"修改日曆"</item>
+    <item msgid="4668747371441932697">"定位"</item>
+    <item msgid="1487578921720243646">"發布通知"</item>
+    <item msgid="4636080349724146638">"位置"</item>
+    <item msgid="673510900286463926">"撥打電話"</item>
+    <item msgid="542083422784609790">"讀取簡訊/MMS"</item>
+    <item msgid="1033780373029588436">"寫入簡訊/MMS"</item>
+    <item msgid="5647111115517787488">"接收 SMS/MMS"</item>
+    <item msgid="8591105601108455893">"接收 SMS/MMS"</item>
+    <item msgid="7730995008517841903">"接收 SMS/MMS"</item>
+    <item msgid="2613033109026626086">"接收 SMS/MMS"</item>
+    <item msgid="3037159047591081136">"傳送 SMS/MMS"</item>
+    <item msgid="4726682243833913568">"讀取簡訊/MMS"</item>
+    <item msgid="6555678522277865572">"寫入簡訊/MMS"</item>
+    <item msgid="6981734935578130884">"修改設定"</item>
+    <item msgid="8705854389991425629">"在最上層繪圖"</item>
+    <item msgid="5861356020344153651">"存取通知"</item>
+    <item msgid="78432174621628659">"相機"</item>
+    <item msgid="3986116419882154794">"錄音"</item>
+    <item msgid="4516840825756409490">"播放音訊"</item>
+    <item msgid="6811712502798183957">"讀取剪貼簿"</item>
+    <item msgid="2780369012602289114">"修改剪貼簿"</item>
+    <item msgid="2331359440170850868">"媒體按鈕"</item>
+    <item msgid="6133599737122751231">"音訊焦點"</item>
+    <item msgid="6844485713404805301">"主音量"</item>
+    <item msgid="1600379420669104929">"語音音量"</item>
+    <item msgid="6296768210470214866">"鈴聲音量"</item>
+    <item msgid="510690696071629241">"媒體音量"</item>
+    <item msgid="406861638631430109">"鬧鐘音量"</item>
+    <item msgid="4715864795872233884">"通知音量"</item>
+    <item msgid="2311478519251301183">"藍牙音量"</item>
+    <item msgid="5133991377896747027">"停用休眠"</item>
+    <item msgid="2464189519136248621">"位置"</item>
+    <item msgid="2062677934050803037">"定位"</item>
+    <item msgid="1735171933192715957">"取得使用統計資料"</item>
+    <item msgid="1014093788778383554">"關閉/開啟麥克風"</item>
+    <item msgid="4199297950608622850">"顯示浮動式訊息"</item>
+    <item msgid="2527962435313398821">"投影媒體"</item>
+    <item msgid="5117506254221861929">"啟用 VPN"</item>
+    <item msgid="8291198322681891160">"寫入桌布"</item>
+    <item msgid="7106921284621230961">"輔助結構"</item>
+    <item msgid="4496533640894624799">"輔助螢幕截圖"</item>
+    <item msgid="2598847264853993611">"讀取手機狀態"</item>
+    <item msgid="9215610846802973353">"新增語音留言"</item>
+    <item msgid="9186411956086478261">"使用 SIP"</item>
+    <item msgid="6884763100104539558">"處理撥出電話"</item>
+    <item msgid="125513972170580692">"指紋"</item>
+    <item msgid="2556071024281275619">"人體感測器"</item>
+    <item msgid="617168514928339387">"讀取區域廣播"</item>
+    <item msgid="7134693570516523585">"模擬位置"</item>
+    <item msgid="7224489175375229399">"讀取儲存空間"</item>
+    <item msgid="8472735063903258202">"寫入儲存空間"</item>
+    <item msgid="4069276819909595110">"開啟螢幕"</item>
+    <item msgid="1228338896751121025">"取得帳戶"</item>
+    <item msgid="3181581793459233672">"在背景執行"</item>
+    <item msgid="2340936043025374076">"無障礙工具音量"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"短"</item>
+    <item msgid="4816511817309094890">"中"</item>
+    <item msgid="8305084671259331134">"長"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"預設"</item>
+    <item msgid="4147246073737933622">"Sans-serif"</item>
+    <item msgid="3117680749167407907">"Sans-serif condensed"</item>
+    <item msgid="6529379119163117545">"Sans-serif 等寬字型"</item>
+    <item msgid="1487203730637617924">"Serif"</item>
+    <item msgid="4937790671987480464">"Serif 等寬字型"</item>
+    <item msgid="4448481989108928248">"隨性"</item>
+    <item msgid="4627069151979553527">"草寫"</item>
+    <item msgid="6896773537705206194">"小型大寫字母"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"預設"</item>
+    <item msgid="6488643537808152001">"都不套用"</item>
+    <item msgid="552332815156010137">"外框"</item>
+    <item msgid="7187891159463789272">"陰影"</item>
+    <item msgid="8019330250538856521">"浮凸"</item>
+    <item msgid="8987385315647049787">"內凹"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"使用應用程式預設值"</item>
+    <item msgid="8611890312638868524">"黑底白字"</item>
+    <item msgid="5891360837786277638">"白底黑字"</item>
+    <item msgid="2798457065945456853">"黑底黃字"</item>
+    <item msgid="5799049811524553967">"藍底黃字"</item>
+    <item msgid="3673930830658169860">"自訂"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"L2TP/IPSec VPN (預先共用金鑰)"</item>
+    <item msgid="6128519070545038358">"L2TP/IPSec VPN (憑證)"</item>
+    <item msgid="312397853907741968">"IPSec VPN (預先共用金鑰和 Xauth 驗證)"</item>
+    <item msgid="3319427315593649917">"IPSec VPN (憑證和 Xauth 驗證)"</item>
+    <item msgid="8258927774145391041">"IPSec VPN (憑證和混合驗證)"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"無"</item>
+    <item msgid="1157046369795346308">"說明書"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"連線中斷"</item>
+    <item msgid="8754480102834556765">"初始中…"</item>
+    <item msgid="3351334355574270250">"連線中…"</item>
+    <item msgid="8303882153995748352">"已連線"</item>
+    <item msgid="9135049670787351881">"逾時"</item>
+    <item msgid="2124868417182583926">"失敗"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"詢問"</item>
+    <item msgid="7718817231348607934">"一律不允許"</item>
+    <item msgid="8184570120217958741">"一律允許"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"持續"</item>
+    <item msgid="167418068739176448">"重大活動"</item>
+    <item msgid="4760813290195199773">"重要 (前景)"</item>
+    <item msgid="2328684826817647595">"重要 (背景)"</item>
+    <item msgid="7746406490652867365">"備份"</item>
+    <item msgid="5597404364389196754">"高負載"</item>
+    <item msgid="1290888779300174556">"服務 (執行中)"</item>
+    <item msgid="7241098542073939046">"服務 (重新啟動中)"</item>
+    <item msgid="6610439017684111046">"接收器"</item>
+    <item msgid="7367606086319921117">"主螢幕"</item>
+    <item msgid="3344660712396741826">"最近活動"</item>
+    <item msgid="5006559348883303865">"快取 (活動)"</item>
+    <item msgid="8633480732468137525">"快取 (活動用戶端)"</item>
+    <item msgid="6248998242443333892">"快取 (清空)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"藍綠色"</item>
+    <item msgid="3228505970082457852">"藍色"</item>
+    <item msgid="6590260735734795647">"靛藍色"</item>
+    <item msgid="3521763377357218577">"紫色"</item>
+    <item msgid="5932337981182999919">"粉紅色"</item>
+    <item msgid="5642914536624000094">"紅色"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"超過 30 天"</item>
+    <item msgid="8699273238891265610">"超過 60 天"</item>
+    <item msgid="8346279419423837266">"超過 90 天"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"自動偵測"</item>
+    <item msgid="773943026484148895">"視為計量付費"</item>
+    <item msgid="1008268820118852416">"視為非計量付費"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"使用隨機化 MAC (預設)"</item>
+    <item msgid="214234417308375326">"使用裝置 MAC"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"否"</item>
+    <item msgid="1930581185557754880">"是"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"深色"</item>
+    <item msgid="5079453644557603349">"淺色"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"已關閉"</item>
+    <item msgid="4072198137051566919">"偵錯"</item>
+    <item msgid="2473005316958868509">"詳細"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"僅限家用網路"</item>
+    <item msgid="1161026694891024702">"自動"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"GSM/WCDMA 優先"</item>
+    <item msgid="7581481130337402578">"僅限 GSM"</item>
+    <item msgid="8579197487913425819">"僅限 WCDMA"</item>
+    <item msgid="8465243227505412498">"GSM/WCDMA 自動切換"</item>
+    <item msgid="9107479914166352132">"CDMA/EvDo 自動切換"</item>
+    <item msgid="4219607161971472471">"CDMA (不具 EvDo)"</item>
+    <item msgid="7278975240951052041">"僅限 EvDo"</item>
+    <item msgid="2295969832276827854">"CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"通用"</item>
+    <item msgid="5713723042183940349">"LTE"</item>
+    <item msgid="8600184258612405670">"LTE/WCDMA"</item>
+    <item msgid="5638632460322750180">"僅限 TDSCDMA"</item>
+    <item msgid="4346392996298714633">"TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"通用"</item>
+    <item msgid="7893851358184700811">"LTE/CDMA"</item>
+    <item msgid="1779116915491192719">"LTE/GSM/UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zh-rTW/strings.xml b/tests/CarDeveloperOptions/res/values-zh-rTW/strings.xml
index 24abb0a..f2d5d3d 100644
--- a/tests/CarDeveloperOptions/res/values-zh-rTW/strings.xml
+++ b/tests/CarDeveloperOptions/res/values-zh-rTW/strings.xml
@@ -349,7 +349,7 @@
     <string name="time_picker_title" msgid="1596400307061268660">"時間"</string>
     <string name="lock_after_timeout" msgid="7755520959071097304">"自動鎖定"</string>
     <string name="lock_after_timeout_summary" msgid="3160517585613694740">"休眠 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>後"</string>
-    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"休眠後立即鎖定 (<xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g> 讓螢幕保持解鎖狀態時除外)"</string>
+    <string name="lock_immediately_summary_with_exception" msgid="6442552135409347556">"休眠後立即鎖定 (由「<xliff:g id="TRUST_AGENT_NAME">%1$s</xliff:g>」維持解鎖狀態時除外)"</string>
     <string name="lock_after_timeout_summary_with_exception" msgid="7218267834086717545">"休眠 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>後 (由「<xliff:g id="TRUST_AGENT_NAME">%2$s</xliff:g>」維持解鎖狀態時除外)"</string>
     <string name="show_owner_info_on_lockscreen_label" msgid="4510756693837171575">"在鎖定畫面上顯示擁有者資訊"</string>
     <string name="owner_info_settings_title" msgid="2537966178998339896">"鎖定螢幕訊息"</string>
@@ -845,7 +845,7 @@
     <string name="wifi_error" msgid="5605801874484465557">"錯誤"</string>
     <string name="wifi_sap_no_channel_error" msgid="6881796988574851628">"5 GHz 頻帶在這個國家/地區不受支援"</string>
     <string name="wifi_in_airplane_mode" msgid="4729571191578262246">"處於飛行模式時"</string>
-    <string name="wifi_notify_open_networks" msgid="4782239203624619655">"開啟網路通知"</string>
+    <string name="wifi_notify_open_networks" msgid="4782239203624619655">"開放式網路通知"</string>
     <string name="wifi_notify_open_networks_summary" msgid="1383681260705466715">"有高品質的公用網路時通知我"</string>
     <string name="wifi_wakeup" msgid="4963732992164721548">"自動開啟 Wi‑Fi"</string>
     <string name="wifi_wakeup_summary" msgid="1152699417411690">"位於已儲存的高品質 Wi‑Fi 網路範圍內 (例如家用網路) 時自動重新開啟 Wi‑Fi"</string>
@@ -3297,7 +3297,7 @@
     <string name="asst_capabilities_actions_replies_title" msgid="3929395108744251338">"智慧操作和回覆"</string>
     <string name="asst_capabilities_actions_replies_summary" msgid="5647029698181357902">"自動將內容通知操作和快速回覆新增至通知"</string>
     <string name="hide_silent_icons_title" msgid="1070905516921542662">"隱藏無聲通知狀態圖示"</string>
-    <string name="hide_silent_icons_summary" msgid="2624346914488256888">"在狀態列隱藏無聲通知圖示"</string>
+    <string name="hide_silent_icons_summary" msgid="2624346914488256888">"在狀態列隱藏靜音通知圖示"</string>
     <string name="notification_badging_title" msgid="6311699476970264712">"允許使用通知圓點"</string>
     <string name="notification_bubbles_title" msgid="9196562435741861317">"泡泡"</string>
     <string name="notification_bubbles_summary" msgid="4624512775901949578">"使用浮動快速鍵,隨時隨地快速存取應用程式內容"</string>
@@ -3396,7 +3396,7 @@
       <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> 個類別</item>
       <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> 個類別</item>
     </plurals>
-    <string name="no_channels" msgid="8884254729302501652">"這個應用程式未發佈任何通知"</string>
+    <string name="no_channels" msgid="8884254729302501652">"這個應用程式未發布任何通知"</string>
     <string name="app_settings_link" msgid="8465287765715790984">"應用程式中的其他設定"</string>
     <string name="app_notification_listing_summary_zero" msgid="4047782719487686699">"已針對所有應用程式開啟這項設定"</string>
     <plurals name="app_notification_listing_summary_others" formatted="false" msgid="1161774065480666519">
@@ -3753,10 +3753,10 @@
     <string name="background_check_title" msgid="4136736684290307970">"完整背景存取權"</string>
     <string name="assist_access_context_title" msgid="2274614501747710439">"使用畫面中的文字"</string>
     <string name="assist_access_context_summary" msgid="5867997494395842785">"允許小幫手應用程式存取畫面中的文字內容"</string>
-    <string name="assist_access_screenshot_title" msgid="1991014038776117688">"使用螢幕擷取畫面"</string>
+    <string name="assist_access_screenshot_title" msgid="1991014038776117688">"使用螢幕截圖"</string>
     <string name="assist_access_screenshot_summary" msgid="3010943864000489424">"允許小幫手應用程式存取畫面擷圖"</string>
     <string name="assist_flash_title" msgid="8852484250748551092">"閃爍螢幕"</string>
-    <string name="assist_flash_summary" msgid="6697095786317559129">"小幫手應用程式存取螢幕或螢幕擷取畫面中的文字時,螢幕邊緣會閃爍"</string>
+    <string name="assist_flash_summary" msgid="6697095786317559129">"小幫手應用程式存取螢幕或螢幕截圖中的文字時,螢幕邊緣會閃爍"</string>
     <string name="assist_footer" msgid="7030121180457472165">"小幫手應用程式可根據你目前瀏覽的畫面資訊,為你提供協助。部分應用程式同時支援啟動器和語音輸入服務,為你提供更完善的服務。"</string>
     <string name="average_memory_use" msgid="5333366040118953945">"記憶體平均用量"</string>
     <string name="maximum_memory_use" msgid="6509872438499846077">"記憶體最高用量"</string>
diff --git a/tests/CarDeveloperOptions/res/values-zu-nokeys/strings.xml b/tests/CarDeveloperOptions/res/values-zu-nokeys/strings.xml
new file mode 100644
index 0000000..9d821ab
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zu-nokeys/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applications_settings_summary" msgid="1051076839604862240">"Phatha izinhlelo zokusebenza"</string>
+</resources>
diff --git a/tests/CarDeveloperOptions/res/values-zu/arrays.xml b/tests/CarDeveloperOptions/res/values-zu/arrays.xml
new file mode 100644
index 0000000..670a9f2
--- /dev/null
+++ b/tests/CarDeveloperOptions/res/values-zu/arrays.xml
@@ -0,0 +1,459 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+**
+** Copyright 2019 The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+**     http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+  <string-array name="timezone_filters">
+    <item msgid="3431380197378148950">"i-America"</item>
+    <item msgid="4791956477275129121">"i-Europe"</item>
+    <item msgid="3812126832016254559">"i-Afrika"</item>
+    <item msgid="2765816300353408280">"i-Asia"</item>
+    <item msgid="6683489385344409742">"i-Australia"</item>
+    <item msgid="5194868215515664953">"Iphasifiki"</item>
+    <item msgid="7044520255415007865">"Konke"</item>
+  </string-array>
+  <string-array name="screen_timeout_entries">
+    <item msgid="8596143519087753804">"15 amasekhondi"</item>
+    <item msgid="772029947136115322">"30 amasekhondi"</item>
+    <item msgid="8743663928349474087">"1 iminithi"</item>
+    <item msgid="1506508631223164814">"2 amaminithi"</item>
+    <item msgid="8664703938127907662">"5 amaminithi"</item>
+    <item msgid="5827960506924849753">"10 amaminithi"</item>
+    <item msgid="6677424950124253938">"30 amaminithi"</item>
+  </string-array>
+    <!-- no translation found for dream_timeout_entries:1 (2517785806387977252) -->
+    <!-- no translation found for dream_timeout_entries:5 (2788593551142462622) -->
+    <!-- no translation found for dream_timeout_entries:6 (8012672183888404961) -->
+    <!-- no translation found for lock_after_timeout_entries:2 (5558060663472279597) -->
+    <!-- no translation found for lock_after_timeout_entries:6 (4376575879222393045) -->
+    <!-- no translation found for lock_after_timeout_entries:7 (811192536981678974) -->
+  <string-array name="entries_font_size">
+    <item msgid="2340391964816059553">"Ncane"</item>
+    <item msgid="591935967183159581">"Okuzenzakalelayo"</item>
+    <item msgid="1714184661981538355">"Okukhulu"</item>
+    <item msgid="6195563047686707484">"Okukhulu kakhulu"</item>
+  </string-array>
+    <!-- no translation found for wifi_status:1 (4157625910392775808) -->
+  <string-array name="wifi_status_with_ssid">
+    <item msgid="4853670665485437464"></item>
+    <item msgid="6816207058895999545">"Iyaskena..."</item>
+    <item msgid="8058143476674427024">"Ixhuma ku-<xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="7547609081339573756">"Iqinisekisa nge <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="5145158315060185414">"Ithola ikheli le-IP kusuka <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</item>
+    <item msgid="3283243151651124831">"Ixhumeke ku-<xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item>
+    <item msgid="6600156231416890902">"Kumiswe okwesikhashana"</item>
+    <item msgid="4133290864821295785">"Inqamula kusuka <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item>
+    <item msgid="3980154971187953257">"Ayixhunyiwe kwi-inthanethi"</item>
+    <item msgid="2847316776634969068">"Akuphumelelanga"</item>
+    <item msgid="4390990424746035383">"Ivinjelwe"</item>
+    <item msgid="3618248791367063949">"Okwesikhashana ivikela ukuxhumana okungaqinile"</item>
+  </string-array>
+    <!-- no translation found for wifi_tether_security:0 (5586343370515598801) -->
+    <!-- no translation found for wifi_tether_security:1 (6136336549994615745) -->
+  <string-array name="wifi_p2p_wps_setup">
+    <item msgid="5390235347963255303">"Cindezela inkinobho"</item>
+    <item msgid="7401896200768713930">"Iphinikhodi kusuka kudivaysisi yabangani"</item>
+    <item msgid="4526848028011846710">"Iphinilkhodi kusuka kuledivaysi"</item>
+  </string-array>
+  <string-array name="wifi_p2p_status">
+    <item msgid="8741947238021758201">"Ixhunyiwe"</item>
+    <item msgid="983792611851499732">"Menyiwe"</item>
+    <item msgid="5438273405428201793">"Akuphumelelanga"</item>
+    <item msgid="4646663015449312554">"Iyatholakala"</item>
+    <item msgid="3230556734162006146">"Ikude nebanga"</item>
+  </string-array>
+  <string-array name="bluetooth_visibility_timeout_entries">
+    <item msgid="8247986727324120082">"2 amaminithi"</item>
+    <item msgid="2759776603549270587">"5 amaminithi"</item>
+    <item msgid="167772676068860015">"1 ihora"</item>
+    <item msgid="5985477119043628504">"Ayiphelelwa isikhathi"</item>
+  </string-array>
+    <!-- no translation found for bluetooth_max_connected_audio_devices:2 (5318020123964299318) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:3 (6429260054182662738) -->
+    <!-- no translation found for bluetooth_max_connected_audio_devices:4 (1644506614010085798) -->
+    <!-- no translation found for wifi_signal:0 (1709949377823900951) -->
+  <string-array name="data_usage_data_range">
+    <item msgid="8986775481492954015">"Izinsuku zokugcina ezingu-30"</item>
+    <item msgid="3211287705232736964">"Isetha umjikelezo wokusebenzisa..."</item>
+  </string-array>
+  <string-array name="usage_stats_display_order_types">
+    <item msgid="1266031014388516303">"Isikhathi sokusetshenziswa"</item>
+    <item msgid="2784401352592276015">"Isikhathi sokugcina ukusetshenziswa"</item>
+    <item msgid="249854287216326349">"Igama lohlelo lokusebenza"</item>
+  </string-array>
+  <string-array name="wifi_eap_entries">
+    <item msgid="5538816743897530343">"I-PEAP"</item>
+    <item msgid="336771389015263226">"I-TLS"</item>
+    <item msgid="2124951724092063376">"I-TTLS"</item>
+    <item msgid="7427377376024106344">"I-PWD"</item>
+  </string-array>
+  <string-array name="wifi_peap_phase2_entries">
+    <item msgid="8934819312374410084">"Lutho"</item>
+    <item msgid="8655686691660180616">"MSCHAPV2"</item>
+    <item msgid="1354245862267605928">"GTC"</item>
+  </string-array>
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:0 (7122038588318037831) -->
+    <!-- no translation found for wifi_peap_phase2_entries_with_sim_auth:2 (6333849991499980140) -->
+  <string-array name="wifi_phase2_entries">
+    <item msgid="5865367433072785952">"Lutho"</item>
+    <item msgid="7901133332272818442">"I-PAP"</item>
+    <item msgid="8549879045980332977">"I-MSCHAP"</item>
+    <item msgid="7330627471456865502">"MSCHAPV2"</item>
+    <item msgid="6255179395132581882">"GTC"</item>
+  </string-array>
+  <string-array name="wifi_ip_settings">
+    <item msgid="2717196390555072244">"i-DHCP"</item>
+    <item msgid="4377002609760712163">"Kumile"</item>
+  </string-array>
+  <string-array name="wifi_proxy_settings">
+    <item msgid="9032900195127165132">"Lutho"</item>
+    <item msgid="1464741437353223198">"Ngokulawulwa"</item>
+    <item msgid="5793600062487886090">"Ukulungiselela ngokuzenzakalela kwephroksi"</item>
+  </string-array>
+  <string-array name="apn_auth_entries">
+    <item msgid="7099647881902405997">"Lutho"</item>
+    <item msgid="1950796738039490374">"I-PAP"</item>
+    <item msgid="8166687999538788787">"I-CHAP"</item>
+    <item msgid="1276004657191968988">"I-PAP noma i-CHAP"</item>
+  </string-array>
+  <string-array name="apn_protocol_entries">
+    <item msgid="4179023087537182757">"IPv4"</item>
+    <item msgid="9148582221081416020">"IPv6"</item>
+    <item msgid="4094895508821270572">"IPv4/IPv6"</item>
+  </string-array>
+    <!-- no translation found for bearer_entries:1 (2740477081395679090) -->
+    <!-- no translation found for mvno_type_entries:0 (6984770764726663331) -->
+    <!-- no translation found for mvno_type_entries:2 (7556656048009090524) -->
+  <string-array name="app_install_location_entries">
+    <item msgid="6621866711026016227">"Isitoreji sedivaysi yangaphakathi"</item>
+    <item msgid="3186681694079967527">"Khipha ikhadi le-SD"</item>
+    <item msgid="6902033473986647035">"Vumela isistimu inqume"</item>
+  </string-array>
+  <string-array name="app_ops_categories">
+    <item msgid="1102693344156734891">"Indawo"</item>
+    <item msgid="6842381562497597649">"Okomuntu siqu"</item>
+    <item msgid="3966700236695683444">"Imilayezo"</item>
+    <item msgid="8563996233342430477">"Imidiya"</item>
+    <item msgid="5323851085993963783">"Idivayisi"</item>
+  </string-array>
+  <string-array name="app_ops_summaries">
+    <item msgid="2585253854462134715">"indawo emaholoholo"</item>
+    <item msgid="1830619568689922920">"indawo elungile"</item>
+    <item msgid="3317274469481923141">"I-GPS"</item>
+    <item msgid="8931785990160383356">"dlidliza"</item>
+    <item msgid="8632513128515114092">"funda oxhumana nabo"</item>
+    <item msgid="3741042113569620272">"shintsha oxhumana nabo"</item>
+    <item msgid="4204420969709009931">"funda irekhodi lwamakholi"</item>
+    <item msgid="2260380357119423209">"shintsha irekhodi lwamakholi"</item>
+    <item msgid="6550710385014530934">"funda ikhalenda"</item>
+    <item msgid="3575906174264853951">"shintsha ikhalenda"</item>
+    <item msgid="4319843242568057174">"isikeni se-Wi-Fi"</item>
+    <item msgid="2981791890467303819">"isaziso"</item>
+    <item msgid="6617825156152476692">"ukuskena iseli"</item>
+    <item msgid="8865260890611559753">"shayela ifoni"</item>
+    <item msgid="3254999273961542982">"funda i-SMS"</item>
+    <item msgid="7711446453028825171">"bhala i-SMS"</item>
+    <item msgid="6123238544099198034">"thola i-SMS"</item>
+    <item msgid="838342167431596036">"thola i-SMS yezimo eziphuthumayo"</item>
+    <item msgid="8554432731560956686">"thola i-MMS"</item>
+    <item msgid="7464863464299515059">"thola ukuphushwa kwe-WAP"</item>
+    <item msgid="310463075729606765">"Thumela i-SMS"</item>
+    <item msgid="7338021933527689514">"Funda i-ICC SMS"</item>
+    <item msgid="6130369335466613036">"bhala i-ICC SMS"</item>
+    <item msgid="6536865581421670942">"shintsha izilungiselelo"</item>
+    <item msgid="4547203129183558973">"dweba ngaphezulu"</item>
+    <item msgid="9080347512916542840">"finyelela kuzaziso"</item>
+    <item msgid="5332718516635907742">"ikhamera"</item>
+    <item msgid="6098422447246167852">"qopha umsindo"</item>
+    <item msgid="9182794235292595296">"dlala umsindo"</item>
+    <item msgid="8760743229597702019">"funda ibhodi lokunamathisela"</item>
+    <item msgid="2266923698240538544">"shintsha ibhodi lokunamathisela"</item>
+    <item msgid="1801619438618539275">"izinkinobho zabezindaba"</item>
+    <item msgid="31588119965784465">"ukugxila komsindo"</item>
+    <item msgid="7565226799008076833">"ivolumu kangqo"</item>
+    <item msgid="5420704980305018295">"ivolumu yezwi"</item>
+    <item msgid="5797363115508970204">"ivolumu yokukhala"</item>
+    <item msgid="8233154098550715999">"ivolumu yabezindaba"</item>
+    <item msgid="5196715605078153950">"ivolumu ye-alamu"</item>
+    <item msgid="394030698764284577">"ivolumu yesaziso"</item>
+    <item msgid="8952898972491680178">"ivolumu ye-bluetooth"</item>
+    <item msgid="8506227454543690851">"gcina kuphapheme"</item>
+    <item msgid="1108160036049727420">"ngamela indawo"</item>
+    <item msgid="1496205959751719491">"yongamela indawo yamandla aphezulu"</item>
+    <item msgid="3776296279910987380">"thola izibalo zokusebenzisa"</item>
+    <item msgid="8827100324471975602">"thulisa/yekisa ukuthulisa imakrofoni"</item>
+    <item msgid="6880736730520126864">"bonisa i-toast"</item>
+    <item msgid="4933375960222609935">"imidiya yephrojekthi"</item>
+    <item msgid="8357907018938895462">"sebenzisa i-VPN"</item>
+    <item msgid="8143812849911310973">"bhala isithombe-skrini"</item>
+    <item msgid="6266277260961066535">"ukulekelela ukwakheka"</item>
+    <item msgid="7715498149883482300">"ukulekelela isithombe-skrini"</item>
+    <item msgid="4046679376726313293">"funda isimo sefoni"</item>
+    <item msgid="6329507266039719587">"engeza ivoyisimeyili"</item>
+    <item msgid="7692440726415391408">"sebenzisa i-sip"</item>
+    <item msgid="8572453398128326267">"cubungula ikholi ephumayo"</item>
+    <item msgid="7775674394089376306">"izigxivizo zeminwe"</item>
+    <item msgid="3182815133441738779">"izinzwa zomzimba"</item>
+    <item msgid="2793100005496829513">"funda ukusakaza kweseli"</item>
+    <item msgid="2633626056029384366">"hlekisa ngendawo"</item>
+    <item msgid="8356842191824684631">"funda isitoreji"</item>
+    <item msgid="5671906070163291500">"bhala isitoreji"</item>
+    <item msgid="2791955098549340418">"vula isikrini"</item>
+    <item msgid="5599435119609178367">"thola ama-akhawunti"</item>
+    <item msgid="1165623660533024666">"sebenzisa emuva"</item>
+    <item msgid="6423861043647911030">"ivolumu yokufinyeleleka"</item>
+  </string-array>
+  <string-array name="app_ops_labels">
+    <item msgid="7892361636570580123">"Indawo"</item>
+    <item msgid="6656077694190491067">"Indawo"</item>
+    <item msgid="8790228218278477369">"Indawo"</item>
+    <item msgid="7836406246005211990">"Dlidliza"</item>
+    <item msgid="3951439024549922598">"Funda oxhumana nabo"</item>
+    <item msgid="8802152411647068">"Shintsha oxhumana nabo"</item>
+    <item msgid="229544934599698735">"Funda irekhodi lwamakholi"</item>
+    <item msgid="7396102294405899613">"Shintsha irekhodi lwamakholi"</item>
+    <item msgid="3597797992398484655">"Funda ikhalenda"</item>
+    <item msgid="2705975774250907343">"Shintsha ikhalenda"</item>
+    <item msgid="4668747371441932697">"Indawo"</item>
+    <item msgid="1487578921720243646">"Isaziso sokuthunyelwe"</item>
+    <item msgid="4636080349724146638">"Indawo"</item>
+    <item msgid="673510900286463926">"Shayela ifoni"</item>
+    <item msgid="542083422784609790">"Funda i-SMS/MMS"</item>
+    <item msgid="1033780373029588436">"Bhala i-SMS/MMS"</item>
+    <item msgid="5647111115517787488">"Thola i-SMS/MMS"</item>
+    <item msgid="8591105601108455893">"Thola i-SMS/MMS"</item>
+    <item msgid="7730995008517841903">"Thola i-SMS/MMS"</item>
+    <item msgid="2613033109026626086">"Thola i-SMS/MMS"</item>
+    <item msgid="3037159047591081136">"Thumela i-SMS/MMS"</item>
+    <item msgid="4726682243833913568">"Funda i-SMS/MMS"</item>
+    <item msgid="6555678522277865572">"Bhala i-SMS/MMS"</item>
+    <item msgid="6981734935578130884">"Shintsha izilungiselelo"</item>
+    <item msgid="8705854389991425629">"Dweba ngaphezulu"</item>
+    <item msgid="5861356020344153651">"Finyelela kuzaziso"</item>
+    <item msgid="78432174621628659">"Ikhamera"</item>
+    <item msgid="3986116419882154794">"Qopha umsindo"</item>
+    <item msgid="4516840825756409490">"Dlala umsindo"</item>
+    <item msgid="6811712502798183957">"Funda ibhodi lokunamathisela"</item>
+    <item msgid="2780369012602289114">"Shintsha ibhodi lokunamathisela"</item>
+    <item msgid="2331359440170850868">"Izinkinobho zabezindaba"</item>
+    <item msgid="6133599737122751231">"Ukugxila komsindo"</item>
+    <item msgid="6844485713404805301">"Ivolumu kangqo"</item>
+    <item msgid="1600379420669104929">"Ivolumu yezwi"</item>
+    <item msgid="6296768210470214866">"Ivolumu yokukhala"</item>
+    <item msgid="510690696071629241">"Ivolumu yabezindaba"</item>
+    <item msgid="406861638631430109">"Ivolumu ye-alamu"</item>
+    <item msgid="4715864795872233884">"Ivolumu yesaziso"</item>
+    <item msgid="2311478519251301183">"Ivolumu ye-Bluetooth"</item>
+    <item msgid="5133991377896747027">"Gcina kuphapheme"</item>
+    <item msgid="2464189519136248621">"Indawo"</item>
+    <item msgid="2062677934050803037">"Indawo"</item>
+    <item msgid="1735171933192715957">"Thola izibalo zokusebenzisa"</item>
+    <item msgid="1014093788778383554">"Thulisa/yekisa ukuthulisa imakrofoni"</item>
+    <item msgid="4199297950608622850">"Bonisa i-toast"</item>
+    <item msgid="2527962435313398821">"Imidiya yephrojekthi"</item>
+    <item msgid="5117506254221861929">"Sebenzisa i-VPN"</item>
+    <item msgid="8291198322681891160">"Bhala isithombe sangemuva"</item>
+    <item msgid="7106921284621230961">"Ukulekelela ukwakheka"</item>
+    <item msgid="4496533640894624799">"Ukulekelela isithombe-skrini"</item>
+    <item msgid="2598847264853993611">"Funda isimo sefoni"</item>
+    <item msgid="9215610846802973353">"Engeza ivoyisimeyili"</item>
+    <item msgid="9186411956086478261">"Sebenzisa i-sip"</item>
+    <item msgid="6884763100104539558">"Cubungula ikholi ephumayo"</item>
+    <item msgid="125513972170580692">"Izigxivizo zeminwe"</item>
+    <item msgid="2556071024281275619">"Izinzwa zomzimba"</item>
+    <item msgid="617168514928339387">"Funda ukusakaza kweselula"</item>
+    <item msgid="7134693570516523585">"Hlekisa ngendawo"</item>
+    <item msgid="7224489175375229399">"Funda isitoreji"</item>
+    <item msgid="8472735063903258202">"Bhala isitoreji"</item>
+    <item msgid="4069276819909595110">"Vula isikrini"</item>
+    <item msgid="1228338896751121025">"Thola ama-akhawunti"</item>
+    <item msgid="3181581793459233672">"Sebenzisa emuva"</item>
+    <item msgid="2340936043025374076">"Ivolumu yokufinyeleleka"</item>
+  </string-array>
+  <string-array name="long_press_timeout_selector_titles">
+    <item msgid="8950313530602254787">"Kufushane"</item>
+    <item msgid="4816511817309094890">"Okumaphakathi"</item>
+    <item msgid="8305084671259331134">"Kude"</item>
+  </string-array>
+  <string-array name="captioning_typeface_selector_titles">
+    <item msgid="6928465258504250174">"Okuzenzakalelayo"</item>
+    <item msgid="4147246073737933622">"I-Sans Serif"</item>
+    <item msgid="3117680749167407907">"I-Sans-serif ejiyisiwe"</item>
+    <item msgid="6529379119163117545">"Sans-serif monospace"</item>
+    <item msgid="1487203730637617924">"I-Serif"</item>
+    <item msgid="4937790671987480464">"I-Serif monospace"</item>
+    <item msgid="4448481989108928248">"Okuvamile"</item>
+    <item msgid="4627069151979553527">"Ngokutshekile"</item>
+    <item msgid="6896773537705206194">"Izinhlamvukazi ezincane"</item>
+  </string-array>
+    <!-- no translation found for captioning_font_size_selector_titles:1 (5091603983404027034) -->
+    <!-- no translation found for captioning_font_size_selector_titles:2 (176844712416932112) -->
+  <string-array name="captioning_edge_type_selector_titles">
+    <item msgid="3865198759294188069">"Okuzenzakalelayo"</item>
+    <item msgid="6488643537808152001">"Lutho"</item>
+    <item msgid="552332815156010137">"Uhlaka"</item>
+    <item msgid="7187891159463789272">"Yehlisa amafu"</item>
+    <item msgid="8019330250538856521">"Kukhushuliwe"</item>
+    <item msgid="8987385315647049787">"Icindezelwe phansi"</item>
+  </string-array>
+  <string-array name="captioning_opacity_selector_titles">
+    <item msgid="313003243371588365">"25%"</item>
+    <item msgid="4665048002584838262">"50%"</item>
+    <item msgid="1874668269931014581">"75%"</item>
+    <item msgid="6462911487571123954">"100%"</item>
+  </string-array>
+  <string-array name="captioning_preset_selector_titles">
+    <item msgid="326819345272910536">"Sebenzisa okuzenzakalelayo kohlelo lokusebenza"</item>
+    <item msgid="8611890312638868524">"Okumhlophe kokumnyama"</item>
+    <item msgid="5891360837786277638">"Okumnyama kokumhlophe"</item>
+    <item msgid="2798457065945456853">"Okuliphuzi kokumnyama"</item>
+    <item msgid="5799049811524553967">"Okuliphuzi kokuluhlaza"</item>
+    <item msgid="3673930830658169860">"Okwezifiso"</item>
+  </string-array>
+  <string-array name="vpn_types_long">
+    <item msgid="6566768880689730097">"PPTP VPN"</item>
+    <item msgid="1349760781118368659">"i-L2TP/IPSec VPN nokhiye okwabeliswaniwa ngabo"</item>
+    <item msgid="6128519070545038358">"i-L2TP/IPSec VPN ngezitifiketi"</item>
+    <item msgid="312397853907741968">"i-IPSec VPN nokhiye ababelanwe ngabo nokufakazela ubuqiniso be-Xauth"</item>
+    <item msgid="3319427315593649917">"i-IPSec VPN kanye nezitifiketi nokufakazela ubuqiniso be-Xauth"</item>
+    <item msgid="8258927774145391041">"i-IPSec VPN nezitifiketi nokufakazela ubuqiniso nge-hybrid"</item>
+  </string-array>
+  <string-array name="vpn_proxy_settings">
+    <item msgid="2958623927055120839">"Lutho"</item>
+    <item msgid="1157046369795346308">"Ngokulawulwa"</item>
+  </string-array>
+  <string-array name="vpn_states">
+    <item msgid="5408915841694583740">"Ayixhunyiwe kwi-inthanethi"</item>
+    <item msgid="8754480102834556765">"Iyaqalisa..."</item>
+    <item msgid="3351334355574270250">"Iyaxhuma kwi-inthanethi..."</item>
+    <item msgid="8303882153995748352">"Ixhunyiwe"</item>
+    <item msgid="9135049670787351881">"Isikhathi siphelile"</item>
+    <item msgid="2124868417182583926">"Akuphumelelanga"</item>
+  </string-array>
+  <string-array name="security_settings_premium_sms_values">
+    <item msgid="1164265643455394443">"Buza"</item>
+    <item msgid="7718817231348607934">"Ungavumeli"</item>
+    <item msgid="8184570120217958741">"Vumela njalo?"</item>
+  </string-array>
+    <!-- no translation found for ram_states:0 (708247372474061274) -->
+    <!-- no translation found for ram_states:4 (1567326459340152525) -->
+    <!-- no translation found for proc_stats_memory_states:3 (8577246509202964244) -->
+  <string-array name="proc_stats_process_states">
+    <item msgid="7560955722349181440">"Qhubekayo"</item>
+    <item msgid="167418068739176448">"Umsebenzi ophezulu"</item>
+    <item msgid="4760813290195199773">"Kubalulekile (okungaphambili)"</item>
+    <item msgid="2328684826817647595">"Kubalulekile (okungemuva)"</item>
+    <item msgid="7746406490652867365">"Sekela ngokulondoloza"</item>
+    <item msgid="5597404364389196754">"Isisindo esikhulu"</item>
+    <item msgid="1290888779300174556">"Isevisi (iyenzakala)"</item>
+    <item msgid="7241098542073939046">"Isevisi (iqala kabusha)"</item>
+    <item msgid="6610439017684111046">"Isamukeli"</item>
+    <item msgid="7367606086319921117">"Ikhaya"</item>
+    <item msgid="3344660712396741826">"Umsebenzi wokugcina"</item>
+    <item msgid="5006559348883303865">"Kulondoloziwe (umsebenzi)"</item>
+    <item msgid="8633480732468137525">"Kulondoloziwe (iklayenti lomsebenzi)"</item>
+    <item msgid="6248998242443333892">"Kulondoloziwe (lutho)"</item>
+  </string-array>
+  <string-array name="color_picker">
+    <item msgid="3151827842194201728">"Okuluhlaza ngokujiyile"</item>
+    <item msgid="3228505970082457852">"Okuluhlaza okwesibhakabhaka"</item>
+    <item msgid="6590260735734795647">"I-Indigo"</item>
+    <item msgid="3521763377357218577">"Phephuli"</item>
+    <item msgid="5932337981182999919">"Ophinki"</item>
+    <item msgid="5642914536624000094">"Okubomvu"</item>
+  </string-array>
+  <string-array name="automatic_storage_management_days">
+    <item msgid="2860293514533486236">"Ngaphezulu kobudala obuyizinsuku ezingu-30"</item>
+    <item msgid="8699273238891265610">"Ngaphezulu kobudala obuyizinsuku ezingu-60"</item>
+    <item msgid="8346279419423837266">"Ngaphezulu kobudala obuyizinsuku ezingu-90"</item>
+  </string-array>
+    <!-- no translation found for swipe_direction_titles:0 (6583090603341402282) -->
+    <!-- no translation found for swipe_direction_titles:1 (4965730704403236310) -->
+  <string-array name="swipe_direction_values">
+    <item msgid="5298569105095026382">"1"</item>
+    <item msgid="3118234477029486741">"0"</item>
+  </string-array>
+  <string-array name="wifi_metered_entries">
+    <item msgid="4329206416008519163">"Thola ngokuzenzakalela"</item>
+    <item msgid="773943026484148895">"Phatha njengokulinganisiwe"</item>
+    <item msgid="1008268820118852416">"Phatha njengokungalinganisiwe"</item>
+  </string-array>
+  <string-array name="wifi_privacy_entries">
+    <item msgid="6545683814310036454">"Sebenzisa i-MAC engahleliwe (okuzenzakalelayo)"</item>
+    <item msgid="214234417308375326">"Sebenzisa i-MAC yedivayisi"</item>
+  </string-array>
+  <string-array name="wifi_hidden_entries">
+    <item msgid="7426878022650940844">"Cha"</item>
+    <item msgid="1930581185557754880">"Yebo"</item>
+  </string-array>
+  <string-array name="dark_ui_mode_entries">
+    <item msgid="699295711155561081">"Emnyama"</item>
+    <item msgid="5079453644557603349">"Ukukhanya"</item>
+  </string-array>
+  <string-array name="autofill_logging_level_entries">
+    <item msgid="6882729786516723474">"Valiwe"</item>
+    <item msgid="4072198137051566919">"Susa iphutha"</item>
+    <item msgid="2473005316958868509">"I-Verbose"</item>
+  </string-array>
+  <string-array name="cdma_system_select_choices">
+    <item msgid="8444727359525554695">"Ekhaya kuphela"</item>
+    <item msgid="1161026694891024702">"Okuzenzakalelayo"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices">
+    <item msgid="1823884522189328861">"Okukhethwayo kwe-GSM / WCDMA"</item>
+    <item msgid="7581481130337402578">"I-GSM kuphela"</item>
+    <item msgid="8579197487913425819">"I-WCDMA kuphela"</item>
+    <item msgid="8465243227505412498">"Okuzenzakalelayo kwe-GSM /WCDMA"</item>
+    <item msgid="9107479914166352132">"I-CDMA / EvDo ezenzakalelayo"</item>
+    <item msgid="4219607161971472471">"I-CDMA w/o EvDo"</item>
+    <item msgid="7278975240951052041">"I-EvDo kuphela"</item>
+    <item msgid="2295969832276827854">"I-CDMA/EvDo/GSM/WCDMA"</item>
+    <item msgid="9059227943989034424">"I-CDMA + LTE/EvDo"</item>
+    <item msgid="463168068025354541">"I-GSM/WCDMA/LTE"</item>
+    <item msgid="1770755308983338311">"Okomhlaba jikelele"</item>
+    <item msgid="5713723042183940349">"i-LTE"</item>
+    <item msgid="8600184258612405670">"I-LTE / WCDMA"</item>
+    <item msgid="5638632460322750180">"I-TDSCDMA kuphela"</item>
+    <item msgid="4346392996298714633">"I-TDSCDMA/WCDMA"</item>
+    <item msgid="5004811216708487615">"I-LTE/TDSCDMA"</item>
+    <item msgid="9191730167201068525">"I-TDSCDMA/GSM"</item>
+    <item msgid="5874623229495009031">"I-LTE/TDSCDMA/GSM"</item>
+    <item msgid="5096480046347789213">"I-TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2075445917638134012">"I-LTE/TDSCDMA/WCDMA"</item>
+    <item msgid="3353351554070857366">"I-LTE/TDSCDMA/GSM/WCDMA"</item>
+    <item msgid="2067289929099567494">"I-TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+    <item msgid="4959483620561891661">"I-LTE/TDSCDMA/CDMA/EVDO/GSM/WCDMA"</item>
+  </string-array>
+  <string-array name="cdma_subscription_choices">
+    <item msgid="7691437408632563841">"I-RUIM/SIM"</item>
+    <item msgid="6219184455685527822">"NV"</item>
+  </string-array>
+  <string-array name="preferred_network_mode_choices_world_mode">
+    <item msgid="5675987537637081766">"Okomhlaba jikelele"</item>
+    <item msgid="7893851358184700811">"I-LTE / CDMA"</item>
+    <item msgid="1779116915491192719">"I-LTE / GSM / UMTS"</item>
+  </string-array>
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:0 (4760531919194480665) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:1 (7912365765185450743) -->
+    <!-- no translation found for enhanced_4g_lte_mode_title_variant:2 (2104740586531949003) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:0 (852926015619722843) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:1 (3792510685855718883) -->
+    <!-- no translation found for enhanced_4g_lte_mode_sumary_variant:2 (1377977453734193662) -->
+</resources>
diff --git a/tests/EmbeddedKitchenSinkApp/AndroidManifest.xml b/tests/EmbeddedKitchenSinkApp/AndroidManifest.xml
index a8b8356..8997e32 100644
--- a/tests/EmbeddedKitchenSinkApp/AndroidManifest.xml
+++ b/tests/EmbeddedKitchenSinkApp/AndroidManifest.xml
@@ -108,6 +108,8 @@
                  android:exported="false" android:directBootAware="true">
         </service>
 
+        <service android:name=".UserNoiticeDemoUiService" android:directBootAware="true" />
+
         <!-- Content provider for images -->
         <provider android:name=".cluster.ClusterContentProvider"
                   android:authorities="com.google.android.car.kitchensink.cluster.clustercontentprovider"
diff --git a/tests/EmbeddedKitchenSinkApp/res/layout/carapi.xml b/tests/EmbeddedKitchenSinkApp/res/layout/carapi.xml
new file mode 100644
index 0000000..9cb733e
--- /dev/null
+++ b/tests/EmbeddedKitchenSinkApp/res/layout/carapi.xml
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2019 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<LinearLayout
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent"
+    xmlns:android="http://schemas.android.com/apk/res/android">
+    <ScrollView
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content">
+        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent"
+            android:orientation="vertical" >
+            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                          android:layout_width="match_parent"
+                          android:layout_height="match_parent"
+                          android:orientation="horizontal" >
+                <Button
+                    android:id="@+id/button_carapi_createandconnect"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/createandconnect" />
+                <Button
+                    android:id="@+id/button_carapi_disconnect"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/disconnect" />
+                <TextView
+                    android:id="@+id/carapi_createandconnect"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/empty"
+                    android:layout_weight="1" />
+            </LinearLayout>
+            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                          android:layout_width="match_parent"
+                          android:layout_height="match_parent"
+                          android:orientation="horizontal" >
+                <Button
+                    android:id="@+id/button_carapi_createcar"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/createcar" />
+                <TextView
+                    android:id="@+id/carapi_createcar"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/empty"
+                    android:layout_weight="1" />
+            </LinearLayout>
+            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+                          android:layout_width="match_parent"
+                          android:layout_height="match_parent"
+                          android:orientation="horizontal" >
+                <Button
+                    android:id="@+id/button_carapi_createcar_with_status_change"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/createcar_with_status_change" />
+                <TextView
+                    android:id="@+id/carapi_createcar_with_status_change"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/empty"
+                    android:layout_weight="1" />
+            </LinearLayout>
+
+        </LinearLayout>
+     </ScrollView>
+</LinearLayout>
diff --git a/tests/EmbeddedKitchenSinkApp/res/values/strings.xml b/tests/EmbeddedKitchenSinkApp/res/values/strings.xml
index 4efec4d..6575ce1 100644
--- a/tests/EmbeddedKitchenSinkApp/res/values/strings.xml
+++ b/tests/EmbeddedKitchenSinkApp/res/values/strings.xml
@@ -321,4 +321,15 @@
 
     <!-- Users -->
     <string name="users_apply_button" translatable="false">Apply</string>
+
+    <!-- carapi -->
+    <string name="createandconnect" translatable="false">createCarAndConnect</string>
+    <string name="disconnect" translatable="false">disconnect</string>
+    <string name="createcar" translatable="false">createCar</string>
+    <string name="createcar_with_status_change" translatable="false">createCarWithStatusChange</string>
+
+    <!-- UserNoiticeDemoUiService -->
+    <string name="usernotice" translatable="false">This screen is for showing initial user notice and is not for product. Plz change config_userNoticeUiService in CarService before shipping.</string>
+    <string name="dismiss_now" translatable="false">Dismiss for now</string>
+    <string name="dismiss_forever" translatable="false">Do not show again</string>
 </resources>
diff --git a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/CarApiTestFragment.java b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/CarApiTestFragment.java
new file mode 100644
index 0000000..3e594f5
--- /dev/null
+++ b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/CarApiTestFragment.java
@@ -0,0 +1,104 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.google.android.car.kitchensink;
+
+import android.car.Car;
+import android.content.ComponentName;
+import android.content.ServiceConnection;
+import android.os.Bundle;
+import android.os.IBinder;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.TextView;
+
+import androidx.fragment.app.Fragment;
+
+public class CarApiTestFragment extends Fragment {
+
+    private static final String TAG = CarApiTestFragment.class.getSimpleName();
+
+    private Car mCarForCreateAndConnect;
+    private Car mCarForCreateCar;
+    private Car mCarForStatusChange;
+
+    private TextView mTextForCreateAndConnect;
+    private TextView mTextForCreateCar;
+    private TextView mTextForCreateCarWithStatusChangeListener;
+
+    private int mConnectCountForStatusChange = 0;
+
+    private final ServiceConnection mServiceConnectionForCreateAndConnect =
+            new ServiceConnection() {
+
+                private int mConnectCount = 0;
+
+                @Override
+                public void onServiceConnected(ComponentName name, IBinder service) {
+                    mConnectCount++;
+                    mTextForCreateAndConnect.setText("bound service connected, isConnected:"
+                            + mCarForCreateAndConnect.isConnected()
+                            + " connect count:" + mConnectCount);
+                }
+
+                @Override
+                public void onServiceDisconnected(ComponentName name) {
+                    mTextForCreateAndConnect.setText("bound service disconnected, isConnected:"
+                            + mCarForCreateAndConnect.isConnected());
+                }
+            };
+
+    @Override
+    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) {
+        View view = inflater.inflate(R.layout.carapi, container, false);
+        mTextForCreateAndConnect = view.findViewById(R.id.carapi_createandconnect);
+        mTextForCreateCar = view.findViewById(R.id.carapi_createcar);
+        mTextForCreateCarWithStatusChangeListener = view.findViewById(
+                R.id.carapi_createcar_with_status_change);
+        view.findViewById(R.id.button_carapi_createandconnect).setOnClickListener(
+                (View v) -> {
+                    mCarForCreateAndConnect = Car.createCar(getContext(),
+                            mServiceConnectionForCreateAndConnect);
+                    mCarForCreateAndConnect.connect();
+                });
+        view.findViewById(R.id.button_carapi_createcar).setOnClickListener(
+                (View v) -> {
+                    mCarForCreateCar = Car.createCar(getContext());
+                    mTextForCreateCar.setText("isConnected:" + mCarForCreateCar.isConnected());
+                });
+        view.findViewById(R.id.button_carapi_createcar_with_status_change).setOnClickListener(
+                (View v) -> {
+                    mCarForStatusChange = Car.createCar(getContext(), null,
+                            Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER,
+                            (Car car, boolean ready) -> {
+                                if (ready) {
+                                    mConnectCountForStatusChange++;
+                                    mTextForCreateCarWithStatusChangeListener.setText(
+                                            "service ready, isConnected:"
+                                                    + car.isConnected()
+                                                    + " connect count:"
+                                                    + mConnectCountForStatusChange);
+                                } else {
+                                    mTextForCreateCarWithStatusChangeListener.setText(
+                                            "bound service crashed, isConnected:"
+                                                    + car.isConnected());
+                                }
+                            });
+                });
+        return view;
+    }
+}
diff --git a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/KitchenSinkActivity.java b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/KitchenSinkActivity.java
index 1448ede..b4a4d1b 100644
--- a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/KitchenSinkActivity.java
+++ b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/KitchenSinkActivity.java
@@ -23,15 +23,12 @@
 import android.car.hardware.hvac.CarHvacManager;
 import android.car.hardware.power.CarPowerManager;
 import android.car.hardware.property.CarPropertyManager;
-import android.content.ComponentName;
 import android.content.Context;
 import android.content.Intent;
-import android.content.ServiceConnection;
 import android.content.pm.PackageManager;
 import android.os.AsyncTask;
 import android.os.Bundle;
 import android.os.Handler;
-import android.os.IBinder;
 import android.util.Log;
 import android.view.LayoutInflater;
 import android.view.View;
@@ -165,8 +162,10 @@
             new FragmentMenuEntry("alert window", AlertDialogTestFragment.class),
             new FragmentMenuEntry("assistant", CarAssistantFragment.class),
             new FragmentMenuEntry("audio", AudioTestFragment.class),
+
             new FragmentMenuEntry("bluetooth headset", BluetoothHeadsetFragment.class),
             new FragmentMenuEntry("bluetooth messaging test", MapMceTestFragment.class),
+            new FragmentMenuEntry("carapi", CarApiTestFragment.class),
             new FragmentMenuEntry("carboard", KeyboardTestFragment.class),
             new FragmentMenuEntry("connectivity", ConnectivityFragment.class),
             new FragmentMenuEntry("cubes test", CubesTestFragment.class),
@@ -285,8 +284,12 @@
             mCarApi.disconnect();
             mCarApi = null;
         }
-        mCarApi = Car.createCar(this, mServiceConnection);
-        mCarApi.connect();
+        mCarApi = Car.createCar(this, null, Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER,
+                (Car car, boolean ready) -> {
+                    if (ready) {
+                        initManagers(car);
+                    }
+                });
     }
 
     @Override
@@ -340,32 +343,23 @@
                 .commit();
     }
 
-    private final ServiceConnection mServiceConnection = new ServiceConnection() {
-        @Override
-        public void onServiceConnected(ComponentName name, IBinder service) {
-            Log.d(TAG, "Connected to Car Service");
-            synchronized (mPropertyManagerReady) {
-                mHvacManager = (CarHvacManager) mCarApi.getCarManager(
-                        android.car.Car.HVAC_SERVICE);
-                mPowerManager = (CarPowerManager) mCarApi.getCarManager(
-                        android.car.Car.POWER_SERVICE);
-                mPropertyManager = (CarPropertyManager) mCarApi.getCarManager(
-                        android.car.Car.PROPERTY_SERVICE);
-                mSensorManager = (CarSensorManager) mCarApi.getCarManager(
-                        android.car.Car.SENSOR_SERVICE);
-                mCarAppFocusManager =
-                        (CarAppFocusManager) mCarApi.getCarManager(Car.APP_FOCUS_SERVICE);
-                mCarProjectionManager =
-                        (CarProjectionManager) mCarApi.getCarManager(Car.PROJECTION_SERVICE);
-                mPropertyManagerReady.notifyAll();
-            }
+    private void initManagers(Car car) {
+        synchronized (mPropertyManagerReady) {
+            mHvacManager = (CarHvacManager) car.getCarManager(
+                    android.car.Car.HVAC_SERVICE);
+            mPowerManager = (CarPowerManager) car.getCarManager(
+                    android.car.Car.POWER_SERVICE);
+            mPropertyManager = (CarPropertyManager) car.getCarManager(
+                    android.car.Car.PROPERTY_SERVICE);
+            mSensorManager = (CarSensorManager) car.getCarManager(
+                    android.car.Car.SENSOR_SERVICE);
+            mCarAppFocusManager =
+                    (CarAppFocusManager) car.getCarManager(Car.APP_FOCUS_SERVICE);
+            mCarProjectionManager =
+                    (CarProjectionManager) car.getCarManager(Car.PROJECTION_SERVICE);
+            mPropertyManagerReady.notifyAll();
         }
-
-        @Override
-        public void onServiceDisconnected(ComponentName name) {
-            Log.d(TAG, "Disconnect from Car Service");
-        }
-    };
+    }
 
     public Car getCar() {
         return mCarApi;
diff --git a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/UserNoiticeDemoUiService.java b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/UserNoiticeDemoUiService.java
new file mode 100644
index 0000000..dfe18dc
--- /dev/null
+++ b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/UserNoiticeDemoUiService.java
@@ -0,0 +1,173 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.google.android.car.kitchensink;
+
+import android.app.AlertDialog;
+import android.app.Service;
+import android.car.settings.CarSettings;
+import android.content.DialogInterface;
+import android.content.Intent;
+import android.os.Binder;
+import android.os.Handler;
+import android.os.IBinder;
+import android.os.Looper;
+import android.os.Parcel;
+import android.os.RemoteException;
+import android.provider.Settings;
+import android.util.Log;
+import android.view.WindowManager;
+
+import com.android.internal.annotations.GuardedBy;
+
+/**
+ * Example service of implementing UserNoticeUI.
+ * <p>IUserNotice and IUserNoticeUI are intentionally accessed / implemented without using the
+ * generated code from aidl so that this can be done without accessing hidden API.
+ */
+public class UserNoiticeDemoUiService extends Service {
+
+    private static final String TAG = UserNoiticeDemoUiService.class.getSimpleName();
+
+    private static final String IUSER_NOTICE_BINDER_DESCRIPTOR = "android.car.user.IUserNotice";
+    private static final int IUSER_NOTICE_TR_ON_DIALOG_DISMISSED =
+            android.os.IBinder.FIRST_CALL_TRANSACTION;
+
+    private static final String IUSER_NOTICE_UI_BINDER_DESCRIPTOR =
+            "android.car.user.IUserNoticeUI";
+    private static final int IUSER_NOTICE_UI_BINDER_TR_SET_CALLBACK =
+            android.os.IBinder.FIRST_CALL_TRANSACTION;
+
+    private final Handler mMainHandler = new Handler(Looper.getMainLooper());
+
+    private final Object mLock = new Object();
+
+    // Do not use IUserNoticeUI class intentionally to show how it can be
+    // implemented without accessing the hidden API.
+    private IBinder mIUserNoticeUiBinder = new Binder() {
+        @Override
+        protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
+                throws RemoteException {
+            switch (code) {
+                case IUSER_NOTICE_UI_BINDER_TR_SET_CALLBACK:
+                    data.enforceInterface(IUSER_NOTICE_UI_BINDER_DESCRIPTOR);
+                    IBinder binder = data.readStrongBinder();
+                    onSetCallbackBinder(binder);
+                    return true;
+                default:
+                    return super.onTransact(code, data, reply, flags);
+            }
+        }
+    };
+
+    @GuardedBy("mLock")
+    private IBinder mIUserNoticeService;
+
+    @GuardedBy("mLock")
+    private AlertDialog mDialog;
+
+    @Override
+    public IBinder onBind(Intent intent) {
+        return mIUserNoticeUiBinder;
+    }
+
+    @Override
+    public boolean onUnbind(Intent intent) {
+        stopDialog(true);
+        return false;
+    }
+
+    @Override
+    public void onDestroy() {
+        super.onDestroy();
+        stopDialog(true);
+    }
+
+    private void onSetCallbackBinder(IBinder binder) {
+        if (binder == null) {
+            Log.wtf(TAG, "No binder set in onSetCallbackBinder call", new RuntimeException());
+            return;
+        }
+        mMainHandler.post(() -> {
+            synchronized (mLock) {
+                mIUserNoticeService = binder;
+            }
+            startDialog();
+        });
+    }
+
+    private void startDialog() {
+        synchronized (mLock) {
+            if (mDialog != null) {
+                Log.wtf(TAG, "Dialog already created", new RuntimeException());
+                return;
+            }
+            mDialog = createDialog();
+            // Necessary permission is auto-granted by car service before starting this.
+            mDialog.getWindow().setType(WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY);
+            mDialog.setCancelable(false);
+        }
+        mDialog.show();
+    }
+
+    private void stopDialog(boolean dismiss) {
+        IBinder userNotice;
+        AlertDialog dialog;
+        synchronized (mLock) {
+            userNotice = mIUserNoticeService;
+            dialog = mDialog;
+            mDialog = null;
+            mIUserNoticeService = null;
+        }
+        if (userNotice != null) {
+            sendOnDialogDismissedToCarService(userNotice);
+        }
+        if (dialog != null && dismiss) {
+            dialog.dismiss();
+        }
+        stopSelf();
+    }
+
+    private void sendOnDialogDismissedToCarService(IBinder userNotice) {
+        Parcel data = Parcel.obtain();
+        data.writeInterfaceToken(IUSER_NOTICE_BINDER_DESCRIPTOR);
+        try {
+            userNotice.transact(IUSER_NOTICE_TR_ON_DIALOG_DISMISSED, data, null, 0);
+        } catch (RemoteException e) {
+            Log.w(TAG, "CarService crashed, finish now");
+            stopSelf();
+        }
+    }
+
+    private AlertDialog createDialog() {
+        AlertDialog.Builder builder = new AlertDialog.Builder(this);
+        AlertDialog dialog = builder.setMessage(R.string.usernotice)
+                .setPositiveButton(R.string.dismiss_now, (DialogInterface d, int w) -> {
+                    stopDialog(true);
+                })
+                .setNegativeButton(R.string.dismiss_forever, (DialogInterface d, int w) -> {
+                    Settings.Secure.putInt(getContentResolver(),
+                            CarSettings.Secure.KEY_ENABLE_INITIAL_NOTICE_SCREEN_TO_USER,
+                            /* enable= */ 0);
+                    stopDialog(true);
+                })
+                .setOnDismissListener((DialogInterface d) -> {
+                    stopDialog(false);
+                })
+                .create();
+        return dialog;
+    }
+}
diff --git a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/audio/AudioTestFragment.java b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/audio/AudioTestFragment.java
index b03e320..577395f 100644
--- a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/audio/AudioTestFragment.java
+++ b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/audio/AudioTestFragment.java
@@ -21,9 +21,7 @@
 import android.car.CarAppFocusManager.OnAppFocusChangedListener;
 import android.car.CarAppFocusManager.OnAppFocusOwnershipCallback;
 import android.car.media.CarAudioManager;
-import android.content.ComponentName;
 import android.content.Context;
-import android.content.ServiceConnection;
 import android.content.pm.ApplicationInfo;
 import android.content.pm.PackageManager;
 import android.hardware.display.DisplayManager;
@@ -34,7 +32,6 @@
 import android.media.HwAudioSource;
 import android.os.Bundle;
 import android.os.Handler;
-import android.os.IBinder;
 import android.os.Looper;
 import android.util.Log;
 import android.view.Display;
@@ -124,41 +121,39 @@
     private void connectCar() {
         mContext = getContext();
         mHandler = new Handler(Looper.getMainLooper());
-        mCar = Car.createCar(mContext, new ServiceConnection() {
-            @Override
-            public void onServiceConnected(ComponentName name, IBinder service) {
-                mAppFocusManager =
-                        (CarAppFocusManager) mCar.getCarManager(Car.APP_FOCUS_SERVICE);
-                OnAppFocusChangedListener listener = new OnAppFocusChangedListener() {
-                    @Override
-                    public void onAppFocusChanged(int appType, boolean active) {
+        mCar = Car.createCar(mContext, /* handler= */ null,
+                Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, (car, ready) -> {
+                    if (!ready) {
+                        return;
                     }
-                };
-                mAppFocusManager.addFocusListener(listener,
-                        CarAppFocusManager.APP_FOCUS_TYPE_NAVIGATION);
-                mAppFocusManager.addFocusListener(listener,
-                        CarAppFocusManager.APP_FOCUS_TYPE_VOICE_COMMAND);
+                    mAppFocusManager =
+                            (CarAppFocusManager) mCar.getCarManager(Car.APP_FOCUS_SERVICE);
+                    OnAppFocusChangedListener listener = new OnAppFocusChangedListener() {
+                        @Override
+                        public void onAppFocusChanged(int appType, boolean active) {
+                        }
+                    };
+                    mAppFocusManager.addFocusListener(listener,
+                            CarAppFocusManager.APP_FOCUS_TYPE_NAVIGATION);
+                    mAppFocusManager.addFocusListener(listener,
+                            CarAppFocusManager.APP_FOCUS_TYPE_VOICE_COMMAND);
 
-                mCarAudioManager = (CarAudioManager) mCar.getCarManager(Car.AUDIO_SERVICE);
+                    mCarAudioManager = (CarAudioManager) mCar.getCarManager(Car.AUDIO_SERVICE);
 
-                //take care of zone selection
-                int[] zoneList = mCarAudioManager.getAudioZoneIds();
-                Integer[] zoneArray = Arrays.stream(zoneList).boxed().toArray(Integer[]::new);
-                mZoneAdapter = new ArrayAdapter<>(mContext,
-                        android.R.layout.simple_spinner_item, zoneArray);
-                mZoneAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
-                mZoneSpinner.setAdapter(mZoneAdapter);
-                mZoneSpinner.setEnabled(true);
+                    //take care of zone selection
+                    int[] zoneList = mCarAudioManager.getAudioZoneIds();
+                    Integer[] zoneArray = Arrays.stream(zoneList).boxed().toArray(Integer[]::new);
+                    mZoneAdapter = new ArrayAdapter<>(mContext,
+                            android.R.layout.simple_spinner_item, zoneArray);
+                    mZoneAdapter.setDropDownViewResource(
+                            android.R.layout.simple_spinner_dropdown_item);
+                    mZoneSpinner.setAdapter(mZoneAdapter);
+                    mZoneSpinner.setEnabled(true);
 
-                if (mCarAudioManager.isDynamicRoutingEnabled()) {
-                    setUpDisplayPlayer();
-                }
-            }
-            @Override
-            public void onServiceDisconnected(ComponentName name) {
-            }
-            });
-        mCar.connect();
+                    if (mCarAudioManager.isDynamicRoutingEnabled()) {
+                        setUpDisplayPlayer();
+                    }
+                });
     }
 
     private void initializePlayers() {
diff --git a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/InstrumentClusterFragment.java b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/InstrumentClusterFragment.java
index 7657c38..8886913 100644
--- a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/InstrumentClusterFragment.java
+++ b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/InstrumentClusterFragment.java
@@ -17,6 +17,7 @@
 
 import android.annotation.Nullable;
 import android.car.Car;
+import android.car.Car.CarServiceLifecycleListener;
 import android.car.CarAppFocusManager;
 import android.car.CarNotConnectedException;
 import android.car.cluster.navigation.NavigationState;
@@ -33,11 +34,8 @@
 import android.car.cluster.navigation.NavigationState.Step;
 import android.car.cluster.navigation.NavigationState.Timestamp;
 import android.car.navigation.CarNavigationStatusManager;
-import android.content.ComponentName;
-import android.content.ServiceConnection;
 import android.content.pm.PackageManager;
 import android.os.Bundle;
-import android.os.IBinder;
 import android.util.Log;
 import android.view.LayoutInflater;
 import android.view.View;
@@ -73,19 +71,19 @@
     private NavigationStateProto[] mNavStateData;
     private Button mTurnByTurnButton;
 
-    private ServiceConnection mCarServiceConnection = new ServiceConnection() {
-        @Override
-        public void onServiceConnected(ComponentName name, IBinder service) {
-            Log.d(TAG, "Connected to Car Service");
-            mCarNavigationStatusManager = (CarNavigationStatusManager) mCarApi
-                    .getCarManager(Car.CAR_NAVIGATION_SERVICE);
-            mCarAppFocusManager = (CarAppFocusManager) mCarApi
-                    .getCarManager(Car.APP_FOCUS_SERVICE);
-        }
-
-        @Override
-        public void onServiceDisconnected(ComponentName name) {
+    private CarServiceLifecycleListener mCarServiceLifecycleListener = (car, ready) -> {
+        if (!ready) {
             Log.d(TAG, "Disconnect from Car Service");
+            return;
+        }
+        Log.d(TAG, "Connected to Car Service");
+        try {
+            mCarNavigationStatusManager = (CarNavigationStatusManager) car.getCarManager(
+                    Car.CAR_NAVIGATION_SERVICE);
+            mCarAppFocusManager = (CarAppFocusManager) car.getCarManager(
+                    Car.APP_FOCUS_SERVICE);
+        } catch (CarNotConnectedException e) {
+            Log.e(TAG, "Car is not connected!", e);
         }
     };
 
@@ -117,13 +115,8 @@
 
 
     private void initCarApi() {
-        if (mCarApi != null && mCarApi.isConnected()) {
-            mCarApi.disconnect();
-            mCarApi = null;
-        }
-
-        mCarApi = Car.createCar(getContext(), mCarServiceConnection);
-        mCarApi.connect();
+        mCarApi = Car.createCar(getContext(), /* handler= */ null,
+                Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, mCarServiceLifecycleListener);
     }
 
     @NonNull
diff --git a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/VolumeTestFragment.java b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/VolumeTestFragment.java
index 73e3798..df9aa7b 100644
--- a/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/VolumeTestFragment.java
+++ b/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/VolumeTestFragment.java
@@ -16,14 +16,12 @@
 package com.google.android.car.kitchensink.volume;
 
 import android.car.Car;
+import android.car.Car.CarServiceLifecycleListener;
 import android.car.media.CarAudioManager;
-import android.content.ComponentName;
 import android.content.Context;
-import android.content.ServiceConnection;
 import android.media.AudioManager;
 import android.os.Bundle;
 import android.os.Handler;
-import android.os.IBinder;
 import android.os.Message;
 import android.util.Log;
 import android.util.SparseIntArray;
@@ -112,20 +110,15 @@
         public boolean mHasFocus;
     }
 
-    private final ServiceConnection mCarConnectionCallback =
-            new ServiceConnection() {
-                @Override
-                public void onServiceConnected(ComponentName name, IBinder binder) {
-                    Log.d(TAG, "Connected to Car Service");
-                    mCarAudioManager = (CarAudioManager) mCar.getCarManager(Car.AUDIO_SERVICE);
-                    initVolumeInfo();
-                }
-
-                @Override
-                public void onServiceDisconnected(ComponentName name) {
-                    Log.d(TAG, "Disconnect from Car Service");
-                }
-            };
+    private CarServiceLifecycleListener mCarServiceLifecycleListener = (car, ready) -> {
+        if (!ready) {
+            Log.d(TAG, "Disconnect from Car Service");
+            return;
+        }
+        Log.d(TAG, "Connected to Car Service");
+        mCarAudioManager = (CarAudioManager) mCar.getCarManager(Car.AUDIO_SERVICE);
+        initVolumeInfo();
+    };
 
     @Override
     public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
@@ -161,8 +154,8 @@
         mBalance = v.findViewById(R.id.balance_bar);
         mBalance.setOnSeekBarChangeListener(seekListener);
 
-        mCar = Car.createCar(getActivity(), mCarConnectionCallback);
-        mCar.connect();
+        mCar = Car.createCar(getActivity(), /* handler= */ null,
+                Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, mCarServiceLifecycleListener);
         return v;
     }
 
@@ -210,12 +203,4 @@
         }
         mAdapter.refreshVolumes(mVolumeInfos);
     }
-
-    @Override
-    public void onDestroy() {
-        if (mCar != null) {
-            mCar.disconnect();
-        }
-        super.onDestroy();
-    }
 }
diff --git a/tests/MultiDisplayTest/Android.mk b/tests/MultiDisplayTest/Android.mk
index c5c7ce0..779c646 100644
--- a/tests/MultiDisplayTest/Android.mk
+++ b/tests/MultiDisplayTest/Android.mk
@@ -24,10 +24,12 @@
 
 LOCAL_PACKAGE_NAME := MultiDisplayTest
 
-LOCAL_SDK_VERSION := current
-
 LOCAL_DEX_PREOPT := false
 
+LOCAL_JAVA_LIBRARIES += android.car
+
+LOCAL_PRIVATE_PLATFORM_APIS := true
+
 LOCAL_STATIC_ANDROID_LIBRARIES += \
     androidx.lifecycle_lifecycle-livedata \
     androidx.lifecycle_lifecycle-viewmodel \
diff --git a/tests/MultiDisplayTest/src/com/google/android/car/multidisplaytest/MDTest.java b/tests/MultiDisplayTest/src/com/google/android/car/multidisplaytest/MDTest.java
index a665772..b93283e 100644
--- a/tests/MultiDisplayTest/src/com/google/android/car/multidisplaytest/MDTest.java
+++ b/tests/MultiDisplayTest/src/com/google/android/car/multidisplaytest/MDTest.java
@@ -15,6 +15,7 @@
  */
 package com.google.android.car.multidisplaytest;
 
+import android.car.Car;
 import android.content.Context;
 import android.os.Bundle;
 import android.util.Log;
@@ -47,6 +48,7 @@
     private Button mMenuButton;
     private RecyclerView mMenu;
     private View mMenuContent;
+    private Car mCar;
 
     private interface ClickHandler {
         void onClick();
@@ -129,6 +131,14 @@
         Log.i(TAG, "Creating MDTest activity view");
         mFragmentManager = MDTest.this.getSupportFragmentManager();
         onNewIntent(getIntent());
+        mCar = Car.createCar(this, null, Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER,
+                (Car car, boolean ready) -> {
+                    if (ready) {
+                        Log.i(TAG, "car ready");
+                    } else {
+                        Log.i(TAG, "car not ready");
+                    }
+                });
     }
 
     private void toggleMenuVisibility() {
diff --git a/tests/carservice_test/src/com/android/car/CarPowerManagementTest.java b/tests/carservice_test/src/com/android/car/CarPowerManagementTest.java
index 58bf088..0ae1e1f 100644
--- a/tests/carservice_test/src/com/android/car/CarPowerManagementTest.java
+++ b/tests/carservice_test/src/com/android/car/CarPowerManagementTest.java
@@ -246,7 +246,11 @@
         mPowerStateHandler.sendPowerState(
                 VehicleApPowerStateReq.SHUTDOWN_PREPARE,
                 VehicleApPowerStateShutdownParam.CAN_SLEEP);
-        assertResponse(VehicleApPowerStateReport.SHUTDOWN_PREPARE, 0, true);
+        // The state machine should go to SHUTDOWN_PREPARE, but may
+        // quickly transition to SHUTDOWN_POSTPONE. Report success
+        // if we got to SHUTDOWN_PREPARE, even if we're not there now.
+        assertResponseTransient(VehicleApPowerStateReport.SHUTDOWN_PREPARE, 0, true);
+
         mMockDisplayInterface.waitForDisplayState(false);
         assertResponse(VehicleApPowerStateReport.DEEP_SLEEP_ENTRY, 0, false);
         mMockDisplayInterface.waitForDisplayState(false);
@@ -255,6 +259,7 @@
         mMockDisplayInterface.waitForDisplayState(false);
     }
 
+    // Check that 'expectedState' was reached and is the current state.
     private void assertResponse(int expectedState, int expectedParam, boolean checkParam)
             throws Exception {
         LinkedList<int[]> setEvents = mPowerStateHandler.waitForStateSetAndGetAll(
@@ -266,6 +271,21 @@
         }
     }
 
+    // Check that 'expectedState' was reached. (But it's OK if it is not still current.)
+    private void assertResponseTransient(int expectedState, int expectedParam, boolean checkParam)
+            throws Exception {
+        LinkedList<int[]> setEvents = mPowerStateHandler.waitForStateSetAndGetAll(
+                DEFAULT_WAIT_TIMEOUT_MS, expectedState);
+        for (int[] aState : setEvents) {
+            if (expectedState != aState[0]) continue;
+            if (checkParam) {
+                assertEquals(expectedParam, aState[1]);
+            }
+            return; // Success
+        }
+        fail("Did not find expected state: " + expectedState);
+    }
+
     private void assertWaitForVhal() throws Exception {
         mPowerStateHandler.waitForSubscription(DEFAULT_WAIT_TIMEOUT_MS);
         LinkedList<int[]> setEvents = mPowerStateHandler.waitForStateSetAndGetAll(
@@ -373,6 +393,7 @@
                     for (int[] state : mSetStates) {
                         if (state[0] == expectedSet) {
                             found = true;
+                            break;
                         }
                     }
                     if (found) {
diff --git a/tests/carservice_test/src/com/android/car/CarUxRestrictionsManagerServiceTest.java b/tests/carservice_test/src/com/android/car/CarUxRestrictionsManagerServiceTest.java
index aadb6f9..26bd797 100644
--- a/tests/carservice_test/src/com/android/car/CarUxRestrictionsManagerServiceTest.java
+++ b/tests/carservice_test/src/com/android/car/CarUxRestrictionsManagerServiceTest.java
@@ -27,25 +27,32 @@
 import static org.mockito.Mockito.spy;
 import static org.mockito.Mockito.when;
 
+import android.car.VehiclePropertyIds;
 import android.car.drivingstate.CarDrivingStateEvent;
 import android.car.drivingstate.CarUxRestrictions;
 import android.car.drivingstate.CarUxRestrictionsConfiguration;
 import android.car.drivingstate.CarUxRestrictionsConfiguration.Builder;
+import android.car.drivingstate.CarUxRestrictionsManager;
+import android.car.drivingstate.ICarDrivingStateChangeListener;
 import android.car.hardware.CarPropertyValue;
+import android.car.hardware.property.CarPropertyEvent;
 import android.content.Context;
 import android.content.res.Resources;
 import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
+import android.os.RemoteException;
 import android.os.SystemClock;
 import android.util.JsonReader;
 import android.util.JsonWriter;
 
 import androidx.test.InstrumentationRegistry;
 import androidx.test.filters.MediumTest;
+import androidx.test.filters.Suppress;
 import androidx.test.runner.AndroidJUnit4;
 
 import com.android.car.systeminterface.SystemInterface;
 
 import org.junit.After;
+import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
 import org.junit.runner.RunWith;
@@ -220,6 +227,128 @@
         assertTrue(restrictions.toString(), expected.isSameRestrictions(restrictions));
     }
 
+    // TODO(b/142804287): Suppress this test until bug is fixed.
+    @Suppress
+    @Test
+    public void testInitService_NoDeadlockWithCarDrivingStateService()
+            throws Exception {
+
+        CarDrivingStateService drivingStateService = new CarDrivingStateService(mSpyContext,
+                mMockCarPropertyService);
+        CarUxRestrictionsManagerService uxreService = new CarUxRestrictionsManagerService(
+                mSpyContext, drivingStateService, mMockCarPropertyService);
+
+        // A deadlock can exist when the dispatching of a listener is synchronized. For instance,
+        // the CarUxRestrictionsManagerService#init() method registers a callback like this one. The
+        // deadlock risk occurs if:
+        // 1. CarUxRestrictionsManagerService has registered a listener with CarDrivingStateService
+        // 2. A synchronized method of CarUxRestrictionsManagerService starts to run
+        // 3. While the method from (2) is running, a property event occurs on a different thread
+        //    that triggers a drive state event in CarDrivingStateService. If CarDrivingStateService
+        //    handles the property event in a synchronized method, then CarDrivingStateService is
+        //    locked. The listener from (1) will wait until the lock on
+        //    CarUxRestrictionsManagerService is released.
+        // 4. The synchronized method from (2) attempts to access CarDrivingStateService. For
+        //    example, the implementation below attempts to read the restriction mode.
+        //
+        // In the above steps, both CarUxRestrictionsManagerService and CarDrivingStateService are
+        // locked and waiting on each other, hence the deadlock.
+        drivingStateService.registerDrivingStateChangeListener(
+                new ICarDrivingStateChangeListener.Stub() {
+                    @Override
+                    public void onDrivingStateChanged(CarDrivingStateEvent event)
+                            throws RemoteException {
+                        // Sleep long until service.init() starts on another thread
+                        try {
+                            Thread.sleep(2000);
+                        } catch (InterruptedException e) {
+                            Assert.fail("onDrivingStateChanged thread interrupted");
+                        }
+
+                        // Attempt to access CarUxRestrictionsManagerService. If
+                        // CarUxRestrictionsManagerService is locked because it is doing its own
+                        // work, then this will wait.
+                        uxreService.getRestrictionMode();
+                    }
+                });
+
+        // Ideally CarPropertyService would trigger the change event, but since that is mocked
+        // we manually trigger the event. This event is what eventually triggers the dispatch to
+        // ICarDrivingStateChangeListener that was defined above.
+        Runnable propertyChangeEventRunnable =
+                () -> drivingStateService.handlePropertyEvent(
+                        new CarPropertyEvent(CarPropertyEvent.PROPERTY_EVENT_PROPERTY_CHANGE,
+                                new CarPropertyValue<>(
+                                        VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 100f)));
+        Thread thread = new Thread(propertyChangeEventRunnable);
+        thread.start();
+
+        // Sleep to give the propertyChangeEventRunnable time to trigger and the
+        // ICarDrivingStateChangeListener callback declared above start to run.
+        Thread.sleep(500);
+
+        // If init() is synchronized, thereby locking CarUxRestrictionsManagerService, and it
+        // internally attempts to access CarDrivingStateService, and if CarDrivingStateService has
+        // been locked because of the above listener, then both classes are locked and waiting on
+        // each other, so we would encounter a deadlock.
+        uxreService.init();
+    }
+
+    // TODO(b/142804287): Suppress this test until bug is fixed.
+    @Suppress
+    @Test
+    public void testSetRestrictionMode_NoDeadlockWithCarDrivingStateService() throws Exception {
+
+        CarDrivingStateService drivingStateService = new CarDrivingStateService(mSpyContext,
+                mMockCarPropertyService);
+        CarUxRestrictionsManagerService uxreService = new CarUxRestrictionsManagerService(
+                mSpyContext, drivingStateService, mMockCarPropertyService);
+
+        // See testInitService_NoDeadlockWithCarDrivingStateService for details on why a deadlock
+        // may occur. This test could fail for the same reason, except the callback we register here
+        // is purely to introduce a delay, and the deadlock actually happens inside the callback
+        // that CarUxRestrictionsManagerService#init() registers internally.
+        drivingStateService.registerDrivingStateChangeListener(
+                new ICarDrivingStateChangeListener.Stub() {
+                    @Override
+                    public void onDrivingStateChanged(CarDrivingStateEvent event)
+                            throws RemoteException {
+                        // Assuming CarUxRestrictionsManagerService handles registrations as a list
+                        // this will execute before any other listeners are dispatched.
+                        try {
+                            Thread.sleep(2000);
+                        } catch (InterruptedException e) {
+                            Assert.fail("onDrivingStateChanged thread interrupted");
+                        }
+                    }
+                });
+
+        // The init() method internally registers a callback to CarDrivingStateService
+        uxreService.init();
+
+        // Ideally CarPropertyService would trigger the change event, but since that is mocked
+        // we manually trigger the event. This event eventually triggers the dispatch to
+        // ICarDrivingStateChangeListener that was defined above and a dispatch to the registration
+        // that CarUxRestrictionsManagerService internally made to CarDrivingStateService in
+        // CarUxRestrictionsManagerService#init().
+        Runnable propertyChangeEventRunnable =
+                () -> drivingStateService.handlePropertyEvent(
+                        new CarPropertyEvent(CarPropertyEvent.PROPERTY_EVENT_PROPERTY_CHANGE,
+                                new CarPropertyValue<>(
+                                        VehiclePropertyIds.PERF_VEHICLE_SPEED, 0, 100f)));
+        Thread thread = new Thread(propertyChangeEventRunnable);
+        thread.start();
+
+        // Sleep to give the propertyChangeEventRunnable time to trigger and the
+        // ICarDrivingStateChangeListener callbacks.
+        Thread.sleep(500);
+
+        // Any synchronized method that internally accesses CarDrivingStateService could encounter a
+        // deadlock if the above setup locks CarDrivingStateService.
+        uxreService.setRestrictionMode(CarUxRestrictionsManager.UX_RESTRICTION_MODE_PASSENGER);
+    }
+
+
     private CarUxRestrictionsConfiguration createEmptyConfig() {
         return createEmptyConfig(null);
     }
diff --git a/tests/carservice_test/src/com/android/car/MockedCarTestBase.java b/tests/carservice_test/src/com/android/car/MockedCarTestBase.java
index 894c402..5989000 100644
--- a/tests/carservice_test/src/com/android/car/MockedCarTestBase.java
+++ b/tests/carservice_test/src/com/android/car/MockedCarTestBase.java
@@ -261,11 +261,10 @@
         if (mRealCarServiceReleased) {
             return;  // We just want to release it once.
         }
-
         mRealCarServiceReleased = true;  // To make sure it was called once.
 
         Object waitForConnection = new Object();
-        android.car.Car car = android.car.Car.createCar(context, new ServiceConnection() {
+        Car car = android.car.Car.createCar(context, new ServiceConnection() {
             @Override
             public void onServiceConnected(ComponentName name, IBinder service) {
                 synchronized (waitForConnection) {
@@ -287,10 +286,10 @@
         if (car.isConnected()) {
             Log.i(TAG, "Connected to real car service");
             CarTestManagerBinderWrapper binderWrapper =
-                    (CarTestManagerBinderWrapper) car.getCarManager(android.car.Car.TEST_SERVICE);
+                    (CarTestManagerBinderWrapper) car.getCarManager(Car.TEST_SERVICE);
             assertNotNull(binderWrapper);
 
-            CarTestManager mgr = new CarTestManager(binderWrapper.binder);
+            CarTestManager mgr = new CarTestManager(car, binderWrapper.binder);
             mgr.stopCarService(mCarServiceToken);
         }
     }
diff --git a/tests/carservice_test/src/com/android/car/vms/VmsBrokerServiceTest.java b/tests/carservice_test/src/com/android/car/vms/VmsBrokerServiceTest.java
deleted file mode 100644
index 5ce7df5..0000000
--- a/tests/carservice_test/src/com/android/car/vms/VmsBrokerServiceTest.java
+++ /dev/null
@@ -1,197 +0,0 @@
-/*
- * Copyright (C) 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.car.vms;
-
-import static com.google.common.truth.Truth.assertThat;
-
-import static org.mockito.Mockito.mock;
-import static org.mockito.Mockito.times;
-import static org.mockito.Mockito.verify;
-import static org.mockito.Mockito.when;
-
-import android.car.vms.IVmsSubscriberClient;
-import android.car.vms.VmsLayer;
-import android.content.pm.PackageManager;
-import android.os.Binder;
-import android.os.Process;
-
-import androidx.test.filters.MediumTest;
-
-import org.junit.Test;
-
-import java.util.function.IntSupplier;
-
-@MediumTest
-public class VmsBrokerServiceTest {
-
-    class MockIntProvider implements IntSupplier {
-        private int[] mInts;
-        private int mIdx;
-
-        MockIntProvider(int... ints) {
-            mInts = ints;
-            mIdx = 0;
-        }
-
-        public int getAsInt() {
-            int ret = mInts[mIdx];
-            mIdx++;
-            return ret;
-        }
-    }
-
-    /**
-     * Test that adding a subscriber to VmsBrokerService also keeps track of the package name for
-     * a given subscriber. Also checks that if we remove a dead subscriber, we no longer track the
-     * package name associated with it.
-     */
-    @Test
-    public void testAddSubscription() {
-        PackageManager packageManager = mock(PackageManager.class);
-        IVmsSubscriberClient subscriberClient = mock(IVmsSubscriberClient.class);
-        Binder binder = mock(Binder.class);
-        VmsLayer layer = mock(VmsLayer.class);
-        when(packageManager.getNameForUid(0)).thenReturn("test.package1");
-        when(subscriberClient.asBinder()).thenReturn(binder);
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> 200, () -> 0);
-        broker.addSubscription(subscriberClient);
-        assertThat(broker.getPackageName(subscriberClient)).isEqualTo("test.package1");
-        broker.removeDeadSubscriber(subscriberClient);
-        assertThat(broker.getPackageName(subscriberClient)).isNull();
-    }
-
-    @Test
-    public void testAddSubscriptionLayer() {
-        PackageManager packageManager = mock(PackageManager.class);
-        IVmsSubscriberClient subscriberClient = mock(IVmsSubscriberClient.class);
-        Binder binder = mock(Binder.class);
-        VmsLayer layer = mock(VmsLayer.class);
-        when(packageManager.getNameForUid(0)).thenReturn("test.package2");
-        when(subscriberClient.asBinder()).thenReturn(binder);
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> 200, () -> 0);
-        broker.addSubscription(subscriberClient, layer);
-        assertThat(broker.getPackageName(subscriberClient)).isEqualTo("test.package2");
-        broker.removeDeadSubscriber(subscriberClient);
-        assertThat(broker.getPackageName(subscriberClient)).isNull();
-    }
-
-    @Test
-    public void testAddSubscriptionLayerVersion() {
-        PackageManager packageManager = mock(PackageManager.class);
-        IVmsSubscriberClient subscriberClient = mock(IVmsSubscriberClient.class);
-        Binder binder = mock(Binder.class);
-        VmsLayer layer = mock(VmsLayer.class);
-        when(packageManager.getNameForUid(0)).thenReturn("test.package3");
-        when(subscriberClient.asBinder()).thenReturn(binder);
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> 200, () -> 0);
-        broker.addSubscription(subscriberClient, layer, 1234);
-        assertThat(broker.getPackageName(subscriberClient)).isEqualTo("test.package3");
-        broker.removeDeadSubscriber(subscriberClient);
-        assertThat(broker.getPackageName(subscriberClient)).isNull();
-    }
-
-    @Test
-    public void testMultipleSubscriptionsSameClientCallsPackageManagerOnce() {
-        PackageManager packageManager = mock(PackageManager.class);
-        IVmsSubscriberClient subscriberClient = mock(IVmsSubscriberClient.class);
-        Binder binder = mock(Binder.class);
-        when(subscriberClient.asBinder()).thenReturn(binder);
-        when(packageManager.getNameForUid(0)).thenReturn("test.package3");
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> 0, () -> 0);
-        broker.addSubscription(subscriberClient);
-        broker.addSubscription(subscriberClient);
-        // The second argument isn't necessary but is here for clarity.
-        verify(packageManager, times(1)).getNameForUid(0);
-    }
-
-    @Test
-    public void testUnknownPackageName() {
-        PackageManager packageManager = mock(PackageManager.class);
-        IVmsSubscriberClient subscriberClient = mock(IVmsSubscriberClient.class);
-        Binder binder = mock(Binder.class);
-        when(subscriberClient.asBinder()).thenReturn(binder);
-        when(packageManager.getNameForUid(0)).thenReturn(null);
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> 0, () -> 0);
-        broker.addSubscription(subscriberClient);
-        assertThat(broker.getPackageName(subscriberClient)).isEqualTo(
-                VmsBrokerService.UNKNOWN_PACKAGE);
-    }
-
-    /**
-     * Tests that if the HAL is a subscriber, we record its package name as HalClient.
-     */
-    @Test
-    public void testAddingHalSubscriberSavesPackageName() {
-        PackageManager packageManager = mock(PackageManager.class);
-        IVmsSubscriberClient subscriberClient = mock(IVmsSubscriberClient.class);
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> Process.myPid(),
-                () -> Process.SYSTEM_UID);
-        broker.addSubscription(subscriberClient);
-        assertThat(broker.getPackageName(subscriberClient)).isEqualTo(VmsBrokerService.HAL_CLIENT);
-    }
-
-    @Test
-    public void testMultipleSubscriptionsPackageManager() {
-        PackageManager packageManager = mock(PackageManager.class);
-
-        IVmsSubscriberClient subscriberClient1 = mock(IVmsSubscriberClient.class);
-        Binder binder1 = mock(Binder.class);
-        when(subscriberClient1.asBinder()).thenReturn(binder1);
-
-        IVmsSubscriberClient subscriberClient2 = mock(IVmsSubscriberClient.class);
-        Binder binder2 = mock(Binder.class);
-        when(subscriberClient2.asBinder()).thenReturn(binder2);
-
-        IVmsSubscriberClient subscriberClient3 = mock(IVmsSubscriberClient.class);
-        Binder binder3 = mock(Binder.class);
-        when(subscriberClient3.asBinder()).thenReturn(binder3);
-
-        // Tests a client with a different UID but the same package as subscriberClient1
-        IVmsSubscriberClient subscriberClient4 = mock(IVmsSubscriberClient.class);
-        Binder binder4 = mock(Binder.class);
-        when(subscriberClient4.asBinder()).thenReturn(binder4);
-
-        when(packageManager.getNameForUid(0)).thenReturn("test.package0");
-        when(packageManager.getNameForUid(1)).thenReturn("test.package1");
-        when(packageManager.getNameForUid(2)).thenReturn("test.package2");
-        when(packageManager.getNameForUid(3)).thenReturn("test.package0");
-
-        VmsBrokerService broker = new VmsBrokerService(packageManager, () -> 10,
-                new MockIntProvider(0, 1, 2, 3));
-
-        broker.addSubscription(subscriberClient1);
-        broker.addSubscription(subscriberClient2);
-        broker.addSubscription(subscriberClient3);
-        broker.addSubscription(subscriberClient4);
-
-        verify(packageManager).getNameForUid(0);
-        verify(packageManager).getNameForUid(1);
-        verify(packageManager).getNameForUid(2);
-        verify(packageManager).getNameForUid(3);
-
-        assertThat(broker.getPackageName(subscriberClient1)).isEqualTo("test.package0");
-        assertThat(broker.getPackageName(subscriberClient2)).isEqualTo("test.package1");
-        assertThat(broker.getPackageName(subscriberClient3)).isEqualTo("test.package2");
-        assertThat(broker.getPackageName(subscriberClient4)).isEqualTo("test.package0");
-    }
-}
diff --git a/tests/carservice_unit_test/src/android/car/CarTest.java b/tests/carservice_unit_test/src/android/car/CarTest.java
index 91a1ddb..d12334d 100644
--- a/tests/carservice_unit_test/src/android/car/CarTest.java
+++ b/tests/carservice_unit_test/src/android/car/CarTest.java
@@ -22,6 +22,8 @@
 
 import static com.google.common.truth.Truth.assertThat;
 
+import static junit.framework.Assert.fail;
+
 import static org.mockito.ArgumentMatchers.anyInt;
 import static org.mockito.Matchers.anyObject;
 import static org.mockito.Mockito.times;
@@ -32,10 +34,14 @@
 import android.content.ComponentName;
 import android.content.Context;
 import android.os.IBinder;
+import android.os.Looper;
 import android.os.ServiceManager;
+import android.util.Pair;
 
 import androidx.test.ext.junit.runners.AndroidJUnit4;
 
+import com.android.car.CarServiceUtils;
+
 import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
@@ -44,7 +50,8 @@
 import org.mockito.MockitoSession;
 import org.mockito.invocation.InvocationOnMock;
 import org.mockito.quality.Strictness;
-import org.mockito.stubbing.Answer;
+
+import java.util.concurrent.CopyOnWriteArrayList;
 
 /**
  * Unit test for Car API.
@@ -58,6 +65,8 @@
     @Mock
     private Context mContext;
 
+    private int mGetServiceCallCount;
+
     // It is tricky to mock this. So create dummy version instead.
     private ICar.Stub mService = new ICar.Stub() {
         @Override
@@ -83,6 +92,19 @@
         }
     };
 
+    private class LifecycleListener implements Car.CarServiceLifecycleListener {
+        // Use thread safe one to prevent adding another lock for testing
+        private CopyOnWriteArrayList<Pair<Car, Boolean>> mEvents = new CopyOnWriteArrayList<>();
+
+        @Override
+        public void onLifecycleChanged(Car car, boolean ready) {
+            assertThat(Looper.getMainLooper()).isEqualTo(Looper.myLooper());
+            mEvents.add(new Pair<>(car, ready));
+        }
+    }
+
+    private  final LifecycleListener mLifecycleListener = new LifecycleListener();
+
     @Before
     public void setUp() {
         mMockingSession = mockitoSession()
@@ -90,6 +112,7 @@
                 .mockStatic(ServiceManager.class)
                 .strictness(Strictness.LENIENT)
                 .startMocking();
+        mGetServiceCallCount = 0;
     }
 
     @After
@@ -102,6 +125,32 @@
                 () -> ServiceManager.getService(Car.CAR_SERVICE_BINDER_SERVICE_NAME));
     }
 
+    private void expectBindService() {
+        when(mContext.bindServiceAsUser(anyObject(), anyObject(), anyInt(),
+                anyObject())).thenReturn(true);
+    }
+
+    private void returnServiceAfterNSereviceManagerCalls(int returnNonNullAfterThisCall) {
+        doAnswer((InvocationOnMock invocation)  -> {
+            mGetServiceCallCount++;
+            if (mGetServiceCallCount > returnNonNullAfterThisCall) {
+                return mService;
+            } else {
+                return null;
+            }
+        }).when(() -> ServiceManager.getService(Car.CAR_SERVICE_BINDER_SERVICE_NAME));
+    }
+
+    private void assertServiceBoundOnce() {
+        verify(mContext, times(1)).bindServiceAsUser(anyObject(), anyObject(), anyInt(),
+                anyObject());
+    }
+
+    private void assertOneListenerCallAndClear(Car expectedCar, boolean ready) {
+        assertThat(mLifecycleListener.mEvents).containsExactly(new Pair<>(expectedCar, ready));
+        mLifecycleListener.mEvents.clear();
+    }
+
     @Test
     public void testCreateCarSuccessWithCarServiceRunning() {
         expectService(mService);
@@ -118,32 +167,116 @@
 
     @Test
     public void testCreateCarOkWhenCarServiceIsStarted() {
+        returnServiceAfterNSereviceManagerCalls(10);
         // Car service is not running yet and binsService call should start it.
-        when(mContext.bindServiceAsUser(anyObject(), anyObject(), anyInt(),
-                anyObject())).thenReturn(true);
-        final int returnNonNullAfterThisCall = 10;
-        doAnswer(new Answer() {
-
-            private int mCallCount = 0;
-
-            @Override
-            public Object answer(InvocationOnMock invocation) {
-                mCallCount++;
-                if (mCallCount > returnNonNullAfterThisCall) {
-                    return mService;
-                } else {
-                    return null;
-                }
-            }
-        }).when(() -> ServiceManager.getService(Car.CAR_SERVICE_BINDER_SERVICE_NAME));
+        expectBindService();
         Car car = Car.createCar(mContext);
         assertThat(car).isNotNull();
-        verify(mContext, times(1)).bindServiceAsUser(anyObject(), anyObject(),
-                anyInt(), anyObject());
+        assertServiceBoundOnce();
 
         // Just call these to guarantee that nothing crashes when service is connected /
         // disconnected.
-        car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""), mService);
-        car.getServiceConnectionListener().onServiceDisconnected(new ComponentName("", ""));
+        runOnMainSyncSafe(() -> {
+            car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""),
+                    mService);
+            try {
+                car.getServiceConnectionListener().onServiceDisconnected(new ComponentName("", ""));
+            } catch (IllegalStateException e) {
+                // expected
+                return;
+            }
+            fail("onServiceDisconnected should have triggered exception");
+        });
+    }
+
+    @Test
+    public void testCreateCarWithStatusChangeNoServiceConnectionWithCarServiceStarted() {
+        returnServiceAfterNSereviceManagerCalls(10);
+        expectBindService();
+        Car car = Car.createCar(mContext, null,
+                Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, mLifecycleListener);
+        assertThat(car).isNotNull();
+        assertServiceBoundOnce();
+        waitForMainToBeComplete();
+        assertOneListenerCallAndClear(car, true);
+
+        // Just call these to guarantee that nothing crashes with these call.
+        runOnMainSyncSafe(() -> {
+            car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""),
+                    mService);
+            car.getServiceConnectionListener().onServiceDisconnected(new ComponentName("", ""));
+        });
+    }
+
+    @Test
+    public void testCreateCarWithStatusChangeNoServiceHandleCarServiceRestart() {
+        expectService(mService);
+        expectBindService();
+        Car car = Car.createCar(mContext, null,
+                Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, mLifecycleListener);
+        assertThat(car).isNotNull();
+        assertServiceBoundOnce();
+
+        // fake connection
+        runOnMainSyncSafe(() ->
+                car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""),
+                        mService));
+        waitForMainToBeComplete();
+        assertOneListenerCallAndClear(car, true);
+
+        // fake crash
+        runOnMainSyncSafe(() ->
+                car.getServiceConnectionListener().onServiceDisconnected(
+                        new ComponentName("", "")));
+        waitForMainToBeComplete();
+        assertOneListenerCallAndClear(car, false);
+
+
+        // fake restart
+        runOnMainSyncSafe(() ->
+                car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""),
+                        mService));
+        waitForMainToBeComplete();
+        assertOneListenerCallAndClear(car, true);
+    }
+
+    @Test
+    public void testCreateCarWithStatusChangeDirectCallInsideMainForServiceAlreadyReady() {
+        expectService(mService);
+        expectBindService();
+        runOnMainSyncSafe(() -> {
+            Car car = Car.createCar(mContext, null,
+                    Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, mLifecycleListener);
+            assertThat(car).isNotNull();
+            verify(mContext, times(1)).bindServiceAsUser(anyObject(), anyObject(), anyInt(),
+                    anyObject());
+            // mLifecycleListener should have been called as this is main thread.
+            assertOneListenerCallAndClear(car, true);
+        });
+    }
+
+    @Test
+    public void testCreateCarWithStatusChangeDirectCallInsideMainForServiceReadyLater() {
+        returnServiceAfterNSereviceManagerCalls(10);
+        expectBindService();
+        runOnMainSyncSafe(() -> {
+            Car car = Car.createCar(mContext, null,
+                    Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER, mLifecycleListener);
+            assertThat(car).isNotNull();
+            assertServiceBoundOnce();
+            assertOneListenerCallAndClear(car, true);
+        });
+    }
+
+    private void runOnMainSyncSafe(Runnable runnable) {
+        if (Looper.getMainLooper() == Looper.myLooper()) {
+            runnable.run();
+        } else {
+            CarServiceUtils.runOnMainSync(runnable);
+        }
+    }
+    private void waitForMainToBeComplete() {
+        // dispatch dummy runnable and confirm that it is done.
+        runOnMainSyncSafe(() -> { });
     }
 }
diff --git a/tests/carservice_unit_test/src/com/android/car/VmsPublisherServiceTest.java b/tests/carservice_unit_test/src/com/android/car/VmsPublisherServiceTest.java
index d65bc12..866bc8a 100644
--- a/tests/carservice_unit_test/src/com/android/car/VmsPublisherServiceTest.java
+++ b/tests/carservice_unit_test/src/com/android/car/VmsPublisherServiceTest.java
@@ -108,7 +108,7 @@
     @Before
     public void setUp() {
         mPublisherService = new VmsPublisherService(mContext, mBrokerService, mClientManager);
-        verify(mClientManager).registerConnectionListener(mPublisherService);
+        verify(mClientManager).setPublisherService(mPublisherService);
 
         mPublisherClient = new MockPublisherClient();
         mPublisherClient2 = new MockPublisherClient();
@@ -124,8 +124,8 @@
 
     @Test
     public void testOnClientConnected() {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
-        mPublisherService.onClientConnected("SomeOtherClient", mPublisherClient2.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
+        mPublisherService.onClientConnected("SomeOtherClient", mPublisherClient2);
         verify(mBrokerService, times(2)).addPublisherListener(mProxyCaptor.capture());
 
         assertNotNull(mPublisherClient.mPublisherService);
@@ -138,8 +138,8 @@
 
     @Test
     public void testOnClientDisconnected() {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
-        mPublisherService.onClientConnected("SomeOtherClient", mPublisherClient2.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
+        mPublisherService.onClientConnected("SomeOtherClient", mPublisherClient2);
         verify(mBrokerService, times(2)).addPublisherListener(mProxyCaptor.capture());
 
         reset(mClientManager, mBrokerService);
@@ -152,7 +152,7 @@
 
     @Test
     public void testSetLayersOffering() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
 
         mPublisherClient.mPublisherService.setLayersOffering(mPublisherClient.mToken, OFFERING);
         verify(mBrokerService).setPublisherLayersOffering(mPublisherClient.mToken, OFFERING);
@@ -160,14 +160,14 @@
 
     @Test(expected = SecurityException.class)
     public void testSetLayersOffering_InvalidToken() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
 
         mPublisherClient.mPublisherService.setLayersOffering(new Binder(), OFFERING);
     }
 
     @Test(expected = SecurityException.class)
     public void testSetLayersOffering_Disconnected() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         mPublisherService.onClientDisconnected("SomeClient");
 
         mPublisherClient.mPublisherService.setLayersOffering(mPublisherClient.mToken, OFFERING);
@@ -175,7 +175,7 @@
 
     @Test(expected = SecurityException.class)
     public void testSetLayersOffering_PermissionDenied() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         when(mContext.checkCallingOrSelfPermission(Car.PERMISSION_VMS_PUBLISHER)).thenReturn(
                 PackageManager.PERMISSION_DENIED);
 
@@ -184,7 +184,7 @@
 
     @Test
     public void testPublish() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
 
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, LAYER, PUBLISHER_ID,
                 PAYLOAD);
@@ -194,7 +194,7 @@
 
     @Test
     public void testPublishNullLayerAndNullPayload() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
 
         // We just want to ensure that no exceptions are thrown here.
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, null, PUBLISHER_ID,
@@ -203,7 +203,7 @@
 
     @Test
     public void testPublish_ClientError() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         doThrow(new RemoteException()).when(mSubscriberClient).onVmsMessageReceived(LAYER, PAYLOAD);
 
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, LAYER, PUBLISHER_ID,
@@ -214,14 +214,14 @@
 
     @Test(expected = SecurityException.class)
     public void testPublish_InvalidToken() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
 
         mPublisherClient.mPublisherService.publish(new Binder(), LAYER, PUBLISHER_ID, PAYLOAD);
     }
 
     @Test(expected = SecurityException.class)
     public void testPublish_Disconnected() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         mPublisherService.onClientDisconnected("SomeClient");
 
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, LAYER, PUBLISHER_ID,
@@ -230,7 +230,7 @@
 
     @Test(expected = SecurityException.class)
     public void testPublish_PermissionDenied() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         when(mContext.checkCallingOrSelfPermission(Car.PERMISSION_VMS_PUBLISHER)).thenReturn(
                 PackageManager.PERMISSION_DENIED);
 
@@ -240,7 +240,7 @@
 
     @Test
     public void testGetSubscriptions() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         when(mBrokerService.getSubscriptionState()).thenReturn(SUBSCRIPTION_STATE);
 
         assertEquals(SUBSCRIPTION_STATE, mPublisherClient.mPublisherService.getSubscriptions());
@@ -248,7 +248,7 @@
 
     @Test(expected = SecurityException.class)
     public void testGetSubscriptions_Disconnected() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         mPublisherService.onClientDisconnected("SomeClient");
 
         mPublisherClient.mPublisherService.getSubscriptions();
@@ -256,7 +256,7 @@
 
     @Test(expected = SecurityException.class)
     public void testGetSubscriptions_PermissionDenied() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         when(mContext.checkCallingOrSelfPermission(Car.PERMISSION_VMS_PUBLISHER)).thenReturn(
                 PackageManager.PERMISSION_DENIED);
 
@@ -265,7 +265,7 @@
 
     @Test
     public void testGetPublisherId() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         when(mBrokerService.getPublisherId(PAYLOAD)).thenReturn(PUBLISHER_ID);
 
         assertEquals(PUBLISHER_ID, mPublisherClient.mPublisherService.getPublisherId(PAYLOAD));
@@ -273,7 +273,7 @@
 
     @Test(expected = SecurityException.class)
     public void testGetPublisherId_Disconnected() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         mPublisherService.onClientDisconnected("SomeClient");
 
         mPublisherClient.mPublisherService.getPublisherId(PAYLOAD);
@@ -281,7 +281,7 @@
 
     @Test(expected = SecurityException.class)
     public void testGetPublisherId_PermissionDenied() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         when(mContext.checkCallingOrSelfPermission(Car.PERMISSION_VMS_PUBLISHER)).thenReturn(
                 PackageManager.PERMISSION_DENIED);
 
@@ -290,8 +290,8 @@
 
     @Test
     public void testOnSubscriptionChange() {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
-        mPublisherService.onClientConnected("SomeOtherClient", mPublisherClient2.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
+        mPublisherService.onClientConnected("SomeOtherClient", mPublisherClient2);
         verify(mBrokerService, times(2)).addPublisherListener(mProxyCaptor.capture());
 
         mProxyCaptor.getAllValues().get(0).onSubscriptionChange(SUBSCRIPTION_STATE);
@@ -302,7 +302,7 @@
 
     @Test
     public void testDump_getPacketCount() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
         PrintWriter printWriter = new PrintWriter(outputStream);
 
@@ -322,7 +322,7 @@
 
     @Test
     public void testDump_getPacketCounts() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
         PrintWriter printWriter = new PrintWriter(outputStream);
 
@@ -379,7 +379,7 @@
 
     @Test
     public void testDumpNoListeners_getPacketFailureCount() throws Exception {
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
         PrintWriter printWriter = new PrintWriter(outputStream);
 
@@ -410,8 +410,8 @@
         when(mBrokerService.getSubscribersForLayerFromPublisher(LAYER3, PUBLISHER_ID))
                 .thenReturn(new HashSet<>());
 
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
-        mPublisherService.onClientConnected("SomeClient2", mPublisherClient2.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
+        mPublisherService.onClientConnected("SomeClient2", mPublisherClient2);
 
         ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
         PrintWriter printWriter = new PrintWriter(outputStream);
@@ -453,9 +453,9 @@
                 LAYER3, PAYLOAD);
         when(mBrokerService.getSubscribersForLayerFromPublisher(LAYER3, PUBLISHER_ID))
                 .thenReturn(new HashSet<>(Arrays.asList(mThrowingSubscriberClient)));
-        when(mBrokerService.getPackageName(mThrowingSubscriberClient)).thenReturn("Thrower");
+        when(mClientManager.getPackageName(mThrowingSubscriberClient)).thenReturn("Thrower");
 
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
 
         ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
         PrintWriter printWriter = new PrintWriter(outputStream);
@@ -499,11 +499,11 @@
                 .thenReturn(new HashSet<>(
                         Arrays.asList(mThrowingSubscriberClient, mThrowingSubscriberClient2)));
 
-        when(mBrokerService.getPackageName(mThrowingSubscriberClient)).thenReturn("Thrower");
-        when(mBrokerService.getPackageName(mThrowingSubscriberClient2)).thenReturn("Thrower2");
+        when(mClientManager.getPackageName(mThrowingSubscriberClient)).thenReturn("Thrower");
+        when(mClientManager.getPackageName(mThrowingSubscriberClient2)).thenReturn("Thrower2");
 
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
-        mPublisherService.onClientConnected("SomeClient2", mPublisherClient2.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
+        mPublisherService.onClientConnected("SomeClient2", mPublisherClient2);
 
         // Layer 2 has no listeners and should therefore result in a packet failure to be recorded.
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, LAYER3, PUBLISHER_ID,
@@ -590,9 +590,9 @@
                 .thenReturn(new HashSet<>(
                         Arrays.asList(mThrowingSubscriberClient)));
 
-        when(mBrokerService.getPackageName(mThrowingSubscriberClient)).thenReturn("Thrower");
+        when(mClientManager.getPackageName(mThrowingSubscriberClient)).thenReturn("Thrower");
 
-        mPublisherService.onClientConnected("SomeClient", mPublisherClient.asBinder());
+        mPublisherService.onClientConnected("SomeClient", mPublisherClient);
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, LAYER, PUBLISHER_ID,
                 PAYLOAD);
         mPublisherClient.mPublisherService.publish(mPublisherClient.mToken, LAYER, PUBLISHER_ID,
diff --git a/tests/carservice_unit_test/src/com/android/car/VmsSubscriberServiceTest.java b/tests/carservice_unit_test/src/com/android/car/VmsSubscriberServiceTest.java
new file mode 100644
index 0000000..0208515
--- /dev/null
+++ b/tests/carservice_unit_test/src/com/android/car/VmsSubscriberServiceTest.java
@@ -0,0 +1,164 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.car;
+
+import static com.google.common.truth.Truth.assertThat;
+
+import static org.mockito.ArgumentMatchers.eq;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.verifyNoMoreInteractions;
+import static org.mockito.Mockito.when;
+
+import android.car.vms.IVmsSubscriberClient;
+import android.car.vms.VmsAvailableLayers;
+import android.car.vms.VmsLayer;
+import android.content.Context;
+
+import androidx.test.filters.SmallTest;
+
+import com.android.car.hal.VmsHalService;
+import com.android.car.vms.VmsBrokerService;
+import com.android.car.vms.VmsClientManager;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.mockito.Mock;
+import org.mockito.junit.MockitoJUnit;
+import org.mockito.junit.MockitoRule;
+
+import java.util.Arrays;
+import java.util.Collections;
+
+@SmallTest
+public class VmsSubscriberServiceTest {
+    private static final VmsLayer LAYER = new VmsLayer(1, 2, 3);
+    private static final int PUBLISHER_ID = 54321;
+    private static final byte[] PUBLISHER_INFO = new byte[]{1, 2, 3, 4};
+    private static final VmsAvailableLayers AVAILABLE_LAYERS =
+            new VmsAvailableLayers(Collections.emptySet(), 0);
+
+    @Rule
+    public MockitoRule mMockitoRule = MockitoJUnit.rule();
+    @Mock
+    private Context mContext;
+    @Mock
+    private VmsBrokerService mBrokerService;
+    @Mock
+    private VmsClientManager mClientManager;
+    @Mock
+    private VmsHalService mHal;
+
+    @Mock
+    private IVmsSubscriberClient mSubscriberClient;
+    @Mock
+    private IVmsSubscriberClient mSubscriberClient2;
+
+    private VmsSubscriberService mSubscriberService;
+
+    @Before
+    public void setUp() {
+        mSubscriberService = new VmsSubscriberService(mContext, mBrokerService, mClientManager,
+                mHal);
+        verify(mBrokerService).addSubscriberListener(eq(mSubscriberService));
+        verify(mHal).setVmsSubscriberService(eq(mSubscriberService));
+    }
+
+    @After
+    public void tearDown() {
+        verifyNoMoreInteractions(mBrokerService, mClientManager);
+    }
+
+    @Test
+    public void testAddVmsSubscriberToNotifications() {
+        mSubscriberService.addVmsSubscriberToNotifications(mSubscriberClient);
+        verify(mClientManager).addSubscriber(mSubscriberClient);
+    }
+
+    @Test
+    public void testRemoveVmsSubscriberToNotifications() {
+        mSubscriberService.removeVmsSubscriberToNotifications(mSubscriberClient);
+        verify(mClientManager).removeSubscriber(mSubscriberClient);
+    }
+
+    @Test
+    public void testAddVmsSubscriber() {
+        mSubscriberService.addVmsSubscriber(mSubscriberClient, LAYER);
+        verify(mClientManager).addSubscriber(mSubscriberClient);
+        verify(mBrokerService).addSubscription(mSubscriberClient, LAYER);
+    }
+
+    @Test
+    public void testRemoveVmsSubscriber() {
+        mSubscriberService.removeVmsSubscriber(mSubscriberClient, LAYER);
+        verify(mBrokerService).removeSubscription(mSubscriberClient, LAYER);
+    }
+
+
+    @Test
+    public void testAddVmsSubscriberToPublisher() {
+        mSubscriberService.addVmsSubscriberToPublisher(mSubscriberClient, LAYER, PUBLISHER_ID);
+        verify(mClientManager).addSubscriber(mSubscriberClient);
+        verify(mBrokerService).addSubscription(mSubscriberClient, LAYER, PUBLISHER_ID);
+    }
+
+    @Test
+    public void testRemoveVmsSubscriberToPublisher() {
+        testAddVmsSubscriberToPublisher();
+
+        mSubscriberService.removeVmsSubscriberToPublisher(mSubscriberClient, LAYER, PUBLISHER_ID);
+        verify(mBrokerService).removeSubscription(mSubscriberClient, LAYER, PUBLISHER_ID);
+    }
+
+    @Test
+    public void testAddVmsSubscriberPassive() {
+        mSubscriberService.addVmsSubscriberPassive(mSubscriberClient);
+        verify(mClientManager).addSubscriber(mSubscriberClient);
+        verify(mBrokerService).addSubscription(mSubscriberClient);
+    }
+
+    @Test
+    public void testRemoveVmsSubscriberPassive() {
+        mSubscriberService.removeVmsSubscriberPassive(mSubscriberClient);
+        verify(mBrokerService).removeSubscription(mSubscriberClient);
+    }
+
+    @Test
+    public void testGetPublisherInfo() {
+        when(mBrokerService.getPublisherInfo(PUBLISHER_ID)).thenReturn(PUBLISHER_INFO);
+        assertThat(mSubscriberService.getPublisherInfo(PUBLISHER_ID)).isSameAs(PUBLISHER_INFO);
+        verify(mBrokerService).getPublisherInfo(PUBLISHER_ID);
+    }
+
+    @Test
+    public void testGetAvailableLayers() {
+        when(mBrokerService.getAvailableLayers()).thenReturn(AVAILABLE_LAYERS);
+        assertThat(mSubscriberService.getAvailableLayers()).isSameAs(AVAILABLE_LAYERS);
+        verify(mBrokerService).getAvailableLayers();
+    }
+
+    @Test
+    public void testOnLayersAvailabilityChange() throws Exception {
+        when(mClientManager.getAllSubscribers())
+                .thenReturn(Arrays.asList(mSubscriberClient, mSubscriberClient2));
+        mSubscriberService.onLayersAvailabilityChange(AVAILABLE_LAYERS);
+        verify(mClientManager).getAllSubscribers();
+        verify(mSubscriberClient).onLayersAvailabilityChanged(AVAILABLE_LAYERS);
+        verify(mSubscriberClient2).onLayersAvailabilityChanged(AVAILABLE_LAYERS);
+    }
+}
diff --git a/tests/carservice_unit_test/src/com/android/car/hal/PropertyHalServiceTest.java b/tests/carservice_unit_test/src/com/android/car/hal/PropertyHalServiceTest.java
new file mode 100644
index 0000000..6f7fe18
--- /dev/null
+++ b/tests/carservice_unit_test/src/com/android/car/hal/PropertyHalServiceTest.java
@@ -0,0 +1,68 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.car.hal;
+
+import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
+
+import androidx.test.runner.AndroidJUnit4;
+
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mock;
+import org.mockito.junit.MockitoJUnit;
+import org.mockito.junit.MockitoRule;
+
+@RunWith(AndroidJUnit4.class)
+public class PropertyHalServiceTest {
+    @Rule
+    public MockitoRule mMockitoRule = MockitoJUnit.rule();
+
+    @Mock
+    private VehicleHal mVehicleHal;
+
+    private PropertyHalService mPropertyHalService;
+    private static final int[] UNITS_PROPERTY_ID = {
+            VehicleProperty.DISTANCE_DISPLAY_UNITS,
+            VehicleProperty.FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME,
+            VehicleProperty.FUEL_VOLUME_DISPLAY_UNITS,
+            VehicleProperty.TIRE_PRESSURE_DISPLAY_UNITS,
+            VehicleProperty.EV_BATTERY_DISPLAY_UNITS,
+            VehicleProperty.VEHICLE_SPEED_DISPLAY_UNITS};
+
+    @Before
+    public void setUp() {
+        mPropertyHalService = new PropertyHalService(mVehicleHal);
+        mPropertyHalService.init();
+    }
+
+    @After
+    public void tearDown() {
+        mPropertyHalService.release();
+        mPropertyHalService = null;
+    }
+
+    @Test
+    public void checkDisplayUnitsProperty() {
+        for (int propId : UNITS_PROPERTY_ID) {
+            Assert.assertTrue(mPropertyHalService.isDisplayUnitsProperty(propId));
+        }
+    }
+}
diff --git a/tests/carservice_unit_test/src/com/android/car/hal/VmsHalServiceTest.java b/tests/carservice_unit_test/src/com/android/car/hal/VmsHalServiceTest.java
index f42c52a..7571867 100644
--- a/tests/carservice_unit_test/src/com/android/car/hal/VmsHalServiceTest.java
+++ b/tests/carservice_unit_test/src/com/android/car/hal/VmsHalServiceTest.java
@@ -15,9 +15,13 @@
  */
 package com.android.car.hal;
 
+import static org.junit.Assert.assertArrayEquals;
 import static org.junit.Assert.assertEquals;
+import static org.mockito.ArgumentMatchers.anyInt;
+import static org.mockito.Mockito.never;
 import static org.mockito.Mockito.reset;
 import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.verifyZeroInteractions;
 import static org.mockito.Mockito.when;
 
 import android.car.vms.IVmsPublisherClient;
@@ -30,13 +34,22 @@
 import android.car.vms.VmsLayerDependency;
 import android.car.vms.VmsLayersOffering;
 import android.car.vms.VmsSubscriptionState;
+import android.content.Context;
+import android.content.res.Resources;
 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
 import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
+import android.hardware.automotive.vehicle.V2_0.VehiclePropertyGroup;
 import android.hardware.automotive.vehicle.V2_0.VmsMessageType;
 import android.os.Binder;
 import android.os.IBinder;
 
+import androidx.test.filters.RequiresDevice;
+
+import com.android.car.R;
+import com.android.car.test.utils.TemporaryFile;
+import com.android.car.vms.VmsClientManager;
+
 import org.junit.Before;
 import org.junit.Rule;
 import org.junit.Test;
@@ -47,13 +60,15 @@
 import org.mockito.junit.MockitoJUnit;
 import org.mockito.junit.MockitoRule;
 
+import java.io.FileDescriptor;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
 import java.util.Arrays;
 import java.util.Collections;
 import java.util.LinkedHashSet;
 import java.util.List;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.TimeUnit;
-import java.util.function.Consumer;
 
 public class VmsHalServiceTest {
     private static final int LAYER_TYPE = 1;
@@ -69,17 +84,17 @@
     @Rule
     public MockitoRule mockito = MockitoJUnit.rule();
     @Mock
+    private Context mContext;
+    @Mock
+    private Resources mResources;
+    @Mock
     private VehicleHal mVehicleHal;
     @Mock
+    private VmsClientManager mClientManager;
+    @Mock
     private IVmsPublisherService mPublisherService;
     @Mock
     private IVmsSubscriberService mSubscriberService;
-    @Mock
-    private Consumer<IBinder> mPublisherOnHalConnected;
-    @Mock
-    private Runnable mPublisherOnHalDisconnected;
-    @Mock
-    private Consumer<IVmsSubscriberClient> mSubscriberOnHalDisconnected;
 
     private IBinder mToken;
     private VmsHalService mHalService;
@@ -88,10 +103,10 @@
 
     @Before
     public void setUp() throws Exception {
-        mHalService = new VmsHalService(mVehicleHal, () -> (long) CORE_ID);
-        mHalService.setPublisherConnectionCallbacks(
-                mPublisherOnHalConnected, mPublisherOnHalDisconnected);
-        mHalService.setVmsSubscriberService(mSubscriberService, mSubscriberOnHalDisconnected);
+        when(mContext.getResources()).thenReturn(mResources);
+        mHalService = new VmsHalService(mContext, mVehicleHal, () -> (long) CORE_ID);
+        mHalService.setClientManager(mClientManager);
+        mHalService.setVmsSubscriberService(mSubscriberService);
 
         VehiclePropConfig propConfig = new VehiclePropConfig();
         propConfig.prop = VehicleProperty.VEHICLE_MAP_SERVICE;
@@ -104,7 +119,7 @@
 
         // Verify START_SESSION message was sent
         InOrder initOrder =
-                Mockito.inOrder(mPublisherOnHalConnected, mSubscriberService, mVehicleHal);
+                Mockito.inOrder(mClientManager, mSubscriberService, mVehicleHal);
         initOrder.verify(mVehicleHal).subscribeProperty(mHalService,
                 VehicleProperty.VEHICLE_MAP_SERVICE);
         initOrder.verify(mVehicleHal).set(createHalMessage(
@@ -118,25 +133,25 @@
         // Send START_SESSION response from client
         sendHalMessage(createHalMessage(
                 VmsMessageType.START_SESSION,  // Message type
-                0,                             // Core ID (unknown)
+                CORE_ID,                       // Core ID
                 CLIENT_ID                      // Client ID
         ));
         waitForHandlerCompletion();
 
         // Verify client is marked as connected
-        ArgumentCaptor<IBinder> publisherCaptor = ArgumentCaptor.forClass(IBinder.class);
-        initOrder.verify(mPublisherOnHalConnected).accept(publisherCaptor.capture());
-        mPublisherClient = IVmsPublisherClient.Stub.asInterface(publisherCaptor.getValue());
+        ArgumentCaptor<IVmsPublisherClient> publisherCaptor =
+                ArgumentCaptor.forClass(IVmsPublisherClient.class);
+        ArgumentCaptor<IVmsSubscriberClient> subscriberCaptor =
+                ArgumentCaptor.forClass(IVmsSubscriberClient.class);
+        initOrder.verify(mClientManager, never()).onHalDisconnected();
+        initOrder.verify(mClientManager)
+                .onHalConnected(publisherCaptor.capture(), subscriberCaptor.capture());
+        mPublisherClient = publisherCaptor.getValue();
+        mSubscriberClient = subscriberCaptor.getValue();
 
         mToken = new Binder();
         mPublisherClient.setVmsPublisherService(mToken, mPublisherService);
 
-        ArgumentCaptor<IVmsSubscriberClient> subscriberCaptor = ArgumentCaptor.forClass(
-                IVmsSubscriberClient.class);
-        initOrder.verify(mSubscriberService).addVmsSubscriberToNotifications(
-                subscriberCaptor.capture());
-        mSubscriberClient = subscriberCaptor.getValue();
-
         initOrder.verify(mSubscriberService).getAvailableLayers();
         initOrder.verify(mVehicleHal).set(createHalMessage(
                 VmsMessageType.AVAILABILITY_CHANGE, // Message type
@@ -144,12 +159,13 @@
                 0));                                // # of associated layers
 
         initOrder.verifyNoMoreInteractions();
-        reset(mPublisherOnHalConnected, mSubscriberService, mVehicleHal);
+        reset(mClientManager, mSubscriberService, mVehicleHal);
     }
 
     @Test
     public void testCoreId_IntegerOverflow() throws Exception {
-        mHalService = new VmsHalService(mVehicleHal, () -> (long) Integer.MAX_VALUE + CORE_ID);
+        mHalService = new VmsHalService(mContext, mVehicleHal,
+                () -> (long) Integer.MAX_VALUE + CORE_ID);
 
         VehiclePropConfig propConfig = new VehiclePropConfig();
         propConfig.prop = VehicleProperty.VEHICLE_MAP_SERVICE;
@@ -571,13 +587,14 @@
      * </ul>
      */
     @Test
+    @RequiresDevice
     public void testHandleStartSessionEvent() throws Exception {
         when(mSubscriberService.getAvailableLayers()).thenReturn(
                 new VmsAvailableLayers(Collections.emptySet(), 5));
 
         VehiclePropValue request = createHalMessage(
                 VmsMessageType.START_SESSION,  // Message type
-                0,                             // Core ID (unknown)
+                -1,                            // Core ID (unknown)
                 CLIENT_ID                      // Client ID
         );
 
@@ -588,7 +605,8 @@
         );
 
         sendHalMessage(request);
-        InOrder inOrder = Mockito.inOrder(mVehicleHal);
+        InOrder inOrder = Mockito.inOrder(mClientManager, mVehicleHal);
+        inOrder.verify(mClientManager).onHalDisconnected();
         inOrder.verify(mVehicleHal).set(response);
         inOrder.verify(mVehicleHal).set(createHalMessage(
                 VmsMessageType.AVAILABILITY_CHANGE, // Message type
@@ -943,6 +961,80 @@
         verify(mVehicleHal).set(response);
     }
 
+    @Test
+    public void testDumpMetrics_DefaultConfig() {
+        mHalService.dumpMetrics(new FileDescriptor());
+        verifyZeroInteractions(mVehicleHal);
+    }
+
+    @Test
+    public void testDumpMetrics_NonVendorProperty() throws Exception {
+        VehiclePropValue vehicleProp = new VehiclePropValue();
+        vehicleProp.value.bytes.addAll(PAYLOAD_AS_LIST);
+        when(mVehicleHal.get(anyInt())).thenReturn(vehicleProp);
+
+        when(mResources.getInteger(
+                R.integer.vmsHalClientMetricsProperty)).thenReturn(
+                VehicleProperty.VEHICLE_MAP_SERVICE);
+        setUp();
+
+        mHalService.dumpMetrics(new FileDescriptor());
+        verifyZeroInteractions(mVehicleHal);
+    }
+
+    @Test
+    public void testDumpMetrics_VendorProperty() throws Exception {
+        int metricsPropertyId = VehiclePropertyGroup.VENDOR | 1;
+        when(mResources.getInteger(
+                R.integer.vmsHalClientMetricsProperty)).thenReturn(
+                metricsPropertyId);
+        setUp();
+
+        VehiclePropValue metricsProperty = new VehiclePropValue();
+        metricsProperty.value.bytes.addAll(PAYLOAD_AS_LIST);
+        when(mVehicleHal.get(metricsPropertyId)).thenReturn(metricsProperty);
+
+        try (TemporaryFile dumpsysFile = new TemporaryFile("VmsHalServiceTest")) {
+            FileOutputStream outputStream = new FileOutputStream(dumpsysFile.getFile());
+            mHalService.dumpMetrics(outputStream.getFD());
+
+            verify(mVehicleHal).get(metricsPropertyId);
+            FileInputStream inputStream = new FileInputStream(dumpsysFile.getFile());
+            byte[] dumpsysOutput = new byte[PAYLOAD.length];
+            assertEquals(PAYLOAD.length, inputStream.read(dumpsysOutput));
+            assertArrayEquals(PAYLOAD, dumpsysOutput);
+        }
+    }
+
+    @Test
+    public void testDumpMetrics_VendorProperty_Timeout() throws Exception {
+        int metricsPropertyId = VehiclePropertyGroup.VENDOR | 1;
+        when(mResources.getInteger(
+                R.integer.vmsHalClientMetricsProperty)).thenReturn(
+                metricsPropertyId);
+        setUp();
+
+        when(mVehicleHal.get(metricsPropertyId))
+                .thenThrow(new PropertyTimeoutException(metricsPropertyId));
+
+        mHalService.dumpMetrics(new FileDescriptor());
+        verify(mVehicleHal).get(metricsPropertyId);
+    }
+
+    @Test
+    public void testDumpMetrics_VendorProperty_Unavailable() throws Exception {
+        int metricsPropertyId = VehiclePropertyGroup.VENDOR | 1;
+        when(mResources.getInteger(
+                R.integer.vmsHalClientMetricsProperty)).thenReturn(
+                metricsPropertyId);
+        setUp();
+
+        when(mVehicleHal.get(metricsPropertyId)).thenReturn(null);
+
+        mHalService.dumpMetrics(new FileDescriptor());
+        verify(mVehicleHal).get(metricsPropertyId);
+    }
+
     private static VehiclePropValue createHalMessage(Integer... message) {
         VehiclePropValue result = new VehiclePropValue();
         result.prop = VehicleProperty.VEHICLE_MAP_SERVICE;
diff --git a/tests/carservice_unit_test/src/com/android/car/vms/VmsClientManagerTest.java b/tests/carservice_unit_test/src/com/android/car/vms/VmsClientManagerTest.java
index 0bff9d2..73217e7 100644
--- a/tests/carservice_unit_test/src/com/android/car/vms/VmsClientManagerTest.java
+++ b/tests/carservice_unit_test/src/com/android/car/vms/VmsClientManagerTest.java
@@ -17,13 +17,19 @@
 package com.android.car.vms;
 
 import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertSame;
 import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
 import static org.mockito.ArgumentMatchers.any;
 import static org.mockito.ArgumentMatchers.anyInt;
 import static org.mockito.ArgumentMatchers.argThat;
 import static org.mockito.ArgumentMatchers.eq;
 import static org.mockito.ArgumentMatchers.isNull;
+import static org.mockito.ArgumentMatchers.same;
 import static org.mockito.Mockito.atLeast;
+import static org.mockito.Mockito.atMost;
+import static org.mockito.Mockito.never;
 import static org.mockito.Mockito.reset;
 import static org.mockito.Mockito.times;
 import static org.mockito.Mockito.verify;
@@ -33,6 +39,12 @@
 
 import android.car.Car;
 import android.car.userlib.CarUserManagerHelper;
+import android.car.vms.IVmsPublisherClient;
+import android.car.vms.IVmsPublisherService;
+import android.car.vms.IVmsSubscriberClient;
+import android.car.vms.VmsAvailableLayers;
+import android.car.vms.VmsLayer;
+import android.car.vms.VmsSubscriptionState;
 import android.content.ComponentName;
 import android.content.Context;
 import android.content.Intent;
@@ -49,6 +61,7 @@
 
 import androidx.test.filters.SmallTest;
 
+import com.android.car.VmsPublisherService;
 import com.android.car.hal.VmsHalService;
 import com.android.car.user.CarUserService;
 
@@ -59,15 +72,11 @@
 import org.mockito.ArgumentCaptor;
 import org.mockito.Captor;
 import org.mockito.Mock;
-import org.mockito.Mockito;
 import org.mockito.junit.MockitoJUnit;
 import org.mockito.junit.MockitoRule;
 
-import java.util.function.Consumer;
-
 @SmallTest
 public class VmsClientManagerTest {
-    private static final String HAL_CLIENT_NAME = "VmsHalClient";
     private static final String SYSTEM_CLIENT = "com.google.android.apps.vms.test/.VmsSystemClient";
     private static final ComponentName SYSTEM_CLIENT_COMPONENT =
             ComponentName.unflattenFromString(SYSTEM_CLIENT);
@@ -83,6 +92,13 @@
     private static final int USER_ID_U11 = 11;
     private static final String USER_CLIENT_NAME_U11 =
             "com.google.android.apps.vms.test/com.google.android.apps.vms.test.VmsUserClient U=11";
+
+    private static final String TEST_PACKAGE = "test.package1";
+    private static final String HAL_CLIENT_NAME = "HalClient";
+    private static final String UNKNOWN_PACKAGE = "UnknownPackage";
+
+    private static final long MILLIS_BEFORE_REBIND = 100;
+
     @Rule
     public MockitoRule mMockitoRule = MockitoJUnit.rule();
     @Mock
@@ -98,20 +114,43 @@
     private CarUserService mUserService;
     @Mock
     private CarUserManagerHelper mUserManagerHelper;
-    private int mForegroundUserId;
+
+    @Mock
+    private VmsBrokerService mBrokerService;
 
     @Mock
     private VmsHalService mHal;
-    private Consumer<IBinder> mHalClientConnected;
-    private Runnable mHalClientDisconnected;
 
     @Mock
-    private VmsClientManager.ConnectionListener mConnectionListener;
-    private VmsClientManager mClientManager;
+    private Handler mHandler;
+
+    @Captor
+    private ArgumentCaptor<Runnable> mRebindCaptor;
+
+    @Mock
+    private VmsPublisherService mPublisherService;
+
+    @Mock
+    private IVmsSubscriberClient mSubscriberClient1;
+    @Mock
+    private Binder mSubscriberBinder1;
+
+    @Captor
+    private ArgumentCaptor<IBinder.DeathRecipient> mDeathRecipient;
+
+    @Mock
+    private IVmsSubscriberClient mSubscriberClient2;
+    @Mock
+    private Binder mSubscriberBinder2;
 
     @Captor
     private ArgumentCaptor<ServiceConnection> mConnectionCaptor;
 
+    private VmsClientManager mClientManager;
+
+    private int mForegroundUserId;
+    private int mCallingAppUid;
+
     @Before
     public void setUp() throws Exception {
         resetContext();
@@ -121,7 +160,7 @@
 
         when(mResources.getInteger(
                 com.android.car.R.integer.millisecondsBeforeRebindToVmsPublisher)).thenReturn(
-                5);
+                (int) MILLIS_BEFORE_REBIND);
         when(mResources.getStringArray(
                 com.android.car.R.array.vmsPublisherSystemClients)).thenReturn(
                 new String[]{ SYSTEM_CLIENT });
@@ -130,29 +169,29 @@
                 new String[]{ USER_CLIENT });
 
         when(mContext.getSystemService(eq(Context.USER_SERVICE))).thenReturn(mUserManager);
+        when(mUserManagerHelper.getCurrentForegroundUserId())
+                .thenAnswer(invocation -> mForegroundUserId);
 
-        mClientManager = new VmsClientManager(mContext, mUserService, mUserManagerHelper, mHal);
-        mClientManager.registerConnectionListener(mConnectionListener);
+        mForegroundUserId = USER_ID;
+        mCallingAppUid = UserHandle.getUid(USER_ID, 0);
 
-        @SuppressWarnings("unchecked")
-        ArgumentCaptor<Consumer<IBinder>> onClientConnectedCaptor =
-                ArgumentCaptor.forClass(Consumer.class);
-        ArgumentCaptor<Runnable> onClientDisconnectedCaptor =
-                ArgumentCaptor.forClass(Runnable.class);
-        verify(mHal).setPublisherConnectionCallbacks(
-                onClientConnectedCaptor.capture(), onClientDisconnectedCaptor.capture());
-        mHalClientConnected = onClientConnectedCaptor.getValue();
-        mHalClientDisconnected = onClientDisconnectedCaptor.getValue();
+        mClientManager = new VmsClientManager(mContext, mBrokerService, mUserService,
+                mUserManagerHelper, mHal, mHandler, () -> mCallingAppUid);
+        verify(mHal).setClientManager(mClientManager);
+        mClientManager.setPublisherService(mPublisherService);
+
+        when(mSubscriberClient1.asBinder()).thenReturn(mSubscriberBinder1);
+        when(mSubscriberClient2.asBinder()).thenReturn(mSubscriberBinder2);
+
+        when(mPackageManager.getNameForUid(mCallingAppUid)).thenReturn(TEST_PACKAGE);
     }
 
     @After
     public void tearDown() throws Exception {
-        Thread.sleep(10); // Time to allow for delayed rebinds to settle
         verify(mContext, atLeast(0)).getSystemService(eq(Context.USER_SERVICE));
         verify(mContext, atLeast(0)).getResources();
         verify(mContext, atLeast(0)).getPackageManager();
-        verifyNoMoreInteractions(mContext);
-        verifyNoMoreInteractions(mHal);
+        verifyNoMoreInteractions(mContext, mBrokerService, mHal, mPublisherService, mHandler);
     }
 
     @Test
@@ -181,37 +220,6 @@
     }
 
     @Test
-    public void testRegisterConnectionListener() {
-        VmsClientManager.ConnectionListener listener =
-                Mockito.mock(VmsClientManager.ConnectionListener.class);
-        mClientManager.registerConnectionListener(listener);
-    }
-
-    @Test
-    public void testRegisterConnectionListener_AfterHalClientConnected() {
-        IBinder halClient = bindHalClient();
-
-        VmsClientManager.ConnectionListener listener =
-                Mockito.mock(VmsClientManager.ConnectionListener.class);
-        mClientManager.registerConnectionListener(listener);
-        verify(listener).onClientConnected(HAL_CLIENT_NAME, halClient);
-    }
-
-    @Test
-    public void testRegisterConnectionListener_AfterClientsConnected() {
-        IBinder halClient = bindHalClient();
-        IBinder systemBinder = bindSystemClient();
-        IBinder userBinder = bindUserClient();
-
-        VmsClientManager.ConnectionListener listener =
-                Mockito.mock(VmsClientManager.ConnectionListener.class);
-        mClientManager.registerConnectionListener(listener);
-        verify(listener).onClientConnected(HAL_CLIENT_NAME, halClient);
-        verify(listener).onClientConnected(eq(SYSTEM_CLIENT_NAME), eq(systemBinder));
-        verify(listener).onClientConnected(eq(USER_CLIENT_NAME), eq(userBinder));
-    }
-
-    @Test
     public void testSystemUserUnlocked() {
         notifySystemUserUnlocked();
         notifySystemUserUnlocked();
@@ -420,32 +428,9 @@
     }
 
     @Test
-    public void testUnregisterConnectionListener() {
-        mClientManager.unregisterConnectionListener(mConnectionListener);
-        notifySystemUserUnlocked();
-        verifySystemBind(1);
-
-        ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
-        verifyZeroInteractions(mConnectionListener);
-    }
-
-    @Test
-    public void testHalClientConnected() {
-        IBinder binder = bindHalClient();
-        verify(mConnectionListener).onClientConnected(eq(HAL_CLIENT_NAME), eq(binder));
-    }
-
-    private IBinder bindHalClient() {
-        IBinder binder = new Binder();
-        mHalClientConnected.accept(binder);
-        return binder;
-    }
-
-    @Test
     public void testOnSystemServiceConnected() {
         IBinder binder = bindSystemClient();
-        verify(mConnectionListener).onClientConnected(eq(SYSTEM_CLIENT_NAME), eq(binder));
+        verifyOnClientConnected(SYSTEM_CLIENT_NAME, binder);
     }
 
     private IBinder bindSystemClient() {
@@ -453,7 +438,7 @@
         verifySystemBind(1);
         resetContext();
 
-        IBinder binder = new Binder();
+        IBinder binder = createPublisherBinder();
         ServiceConnection connection = mConnectionCaptor.getValue();
         connection.onServiceConnected(null, binder);
         return binder;
@@ -462,7 +447,7 @@
     @Test
     public void testOnUserServiceConnected() {
         IBinder binder = bindUserClient();
-        verify(mConnectionListener).onClientConnected(eq(USER_CLIENT_NAME), eq(binder));
+        verifyOnClientConnected(USER_CLIENT_NAME, binder);
     }
 
     private IBinder bindUserClient() {
@@ -470,33 +455,26 @@
         verifyUserBind(1);
         resetContext();
 
-        IBinder binder = new Binder();
+        IBinder binder = createPublisherBinder();
         ServiceConnection connection = mConnectionCaptor.getValue();
         connection.onServiceConnected(null, binder);
         return binder;
     }
 
     @Test
-    public void testOnHalClientDisconnected() throws Exception {
-        bindHalClient();
-        mHalClientDisconnected.run();
-
-        verify(mConnectionListener).onClientDisconnected(eq(HAL_CLIENT_NAME));
-    }
-
-    @Test
     public void testOnSystemServiceDisconnected() throws Exception {
         notifySystemUserUnlocked();
         verifySystemBind(1);
         resetContext();
 
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
+        reset(mPublisherService);
+
         connection.onServiceDisconnected(null);
+        verify(mPublisherService).onClientDisconnected(eq(SYSTEM_CLIENT_NAME));
 
-        verify(mConnectionListener).onClientDisconnected(eq(SYSTEM_CLIENT_NAME));
-
-        Thread.sleep(10);
+        verifyAndRunRebindTask();
         verify(mContext).unbindService(connection);
         verifySystemBind(1);
     }
@@ -508,14 +486,19 @@
         resetContext();
 
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
-        connection.onServiceDisconnected(null);
-
-        verify(mConnectionListener).onClientDisconnected(eq(SYSTEM_CLIENT_NAME));
-
-        IBinder binder = new Binder();
+        IBinder binder = createPublisherBinder();
         connection.onServiceConnected(null, binder);
-        verify(mConnectionListener).onClientConnected(eq(SYSTEM_CLIENT_NAME), eq(binder));
+        verifyOnClientConnected(SYSTEM_CLIENT_NAME, binder);
+        reset(mPublisherService);
+
+        connection.onServiceDisconnected(null);
+        verify(mPublisherService).onClientDisconnected(eq(SYSTEM_CLIENT_NAME));
+
+        binder = createPublisherBinder();
+        connection.onServiceConnected(null, binder);
+        verifyOnClientConnected(SYSTEM_CLIENT_NAME, binder);
+
+        verifyAndRunRebindTask();
         // No more interactions (verified by tearDown)
     }
 
@@ -527,13 +510,13 @@
         resetContext();
 
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
-        connection.onServiceDisconnected(null);
+        connection.onServiceConnected(null, createPublisherBinder());
+        reset(mPublisherService);
+
         connection.onBindingDied(null);
+        verify(mPublisherService).onClientDisconnected(eq(SYSTEM_CLIENT_NAME));
 
-        verify(mConnectionListener).onClientDisconnected(eq(SYSTEM_CLIENT_NAME));
-
-        Thread.sleep(10);
+        verifyAndRunRebindTask();
         verify(mContext).unbindService(connection);
         verifySystemBind(1);
     }
@@ -547,9 +530,9 @@
         ServiceConnection connection = mConnectionCaptor.getValue();
         connection.onBindingDied(null);
 
-        verifyZeroInteractions(mConnectionListener);
+        verifyZeroInteractions(mPublisherService);
 
-        Thread.sleep(10);
+        verifyAndRunRebindTask();
         verify(mContext).unbindService(connection);
         verifySystemBind(1);
     }
@@ -561,12 +544,13 @@
         resetContext();
 
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
+        reset(mPublisherService);
+
         connection.onServiceDisconnected(null);
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
 
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
-
-        Thread.sleep(10);
+        verifyAndRunRebindTask();
         verify(mContext).unbindService(connection);
         verifyUserBind(1);
     }
@@ -578,14 +562,19 @@
         resetContext();
 
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
-        connection.onServiceDisconnected(null);
-
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
-
-        IBinder binder = new Binder();
+        IBinder binder = createPublisherBinder();
         connection.onServiceConnected(null, binder);
-        verify(mConnectionListener).onClientConnected(eq(USER_CLIENT_NAME), eq(binder));
+        verifyOnClientConnected(USER_CLIENT_NAME, binder);
+        reset(mPublisherService);
+
+        connection.onServiceDisconnected(null);
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
+
+        binder = createPublisherBinder();
+        connection.onServiceConnected(null, binder);
+        verifyOnClientConnected(USER_CLIENT_NAME, binder);
+
+        verifyAndRunRebindTask();
         // No more interactions (verified by tearDown)
     }
 
@@ -596,13 +585,13 @@
         resetContext();
 
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
-        connection.onServiceDisconnected(null);
+        connection.onServiceConnected(null, createPublisherBinder());
+        reset(mPublisherService);
+
         connection.onBindingDied(null);
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
 
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
-
-        Thread.sleep(10);
+        verifyAndRunRebindTask();
         verify(mContext).unbindService(connection);
         verifyUserBind(1);
     }
@@ -616,9 +605,9 @@
         ServiceConnection connection = mConnectionCaptor.getValue();
         connection.onBindingDied(null);
 
-        verifyZeroInteractions(mConnectionListener);
+        verifyZeroInteractions(mPublisherService);
 
-        Thread.sleep(10);
+        verifyAndRunRebindTask();
         verify(mContext).unbindService(connection);
         verifyUserBind(1);
     }
@@ -628,14 +617,14 @@
         notifyUserUnlocked(USER_ID, true);
         verifyUserBind(1);
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
         resetContext();
-        reset(mConnectionListener);
+        reset(mPublisherService);
 
         notifyUserSwitched(USER_ID_U11, true);
 
         verify(mContext).unbindService(connection);
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
         verifyUserBind(1);
     }
 
@@ -644,14 +633,14 @@
         notifyUserUnlocked(USER_ID, true);
         verifyUserBind(1);
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
         resetContext();
-        reset(mConnectionListener);
+        reset(mPublisherService);
 
         notifyUserSwitched(USER_ID_U11, false);
 
         verify(mContext).unbindService(connection);
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
         verifyUserBind(0);
     }
 
@@ -660,14 +649,14 @@
         notifyUserUnlocked(USER_ID, true);
         verifyUserBind(1);
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
         resetContext();
-        reset(mConnectionListener);
+        reset(mPublisherService);
 
         notifyUserSwitched(UserHandle.USER_SYSTEM, true);
 
         verify(mContext).unbindService(connection);
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
         verifyUserBind(0);
     }
 
@@ -702,14 +691,14 @@
         notifyUserUnlocked(USER_ID, true);
         verifyUserBind(1);
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
         resetContext();
-        reset(mConnectionListener);
+        reset(mPublisherService);
 
         notifyUserUnlocked(USER_ID_U11, true);
 
         verify(mContext).unbindService(connection);
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
         verifyUserBind(1);
     }
 
@@ -720,14 +709,14 @@
         notifyUserUnlocked(USER_ID, true);
         verifyUserBind(1);
         ServiceConnection connection = mConnectionCaptor.getValue();
-        connection.onServiceConnected(null, new Binder());
+        connection.onServiceConnected(null, createPublisherBinder());
         resetContext();
-        reset(mConnectionListener);
+        reset(mPublisherService);
 
         notifyUserUnlocked(UserHandle.USER_SYSTEM, true);
 
         verify(mContext).unbindService(connection);
-        verify(mConnectionListener).onClientDisconnected(eq(USER_CLIENT_NAME));
+        verify(mPublisherService).onClientDisconnected(eq(USER_CLIENT_NAME));
         // User processes will not be bound for system user
         verifyUserBind(0);
     }
@@ -745,6 +734,210 @@
         verifyUserBind(1);
     }
 
+    @Test
+    public void testAddSubscriber() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+    @Test
+    public void testAddSubscriber_SystemUser() {
+        mCallingAppUid = UserHandle.getUid(UserHandle.USER_SYSTEM, 0);
+        when(mPackageManager.getNameForUid(mCallingAppUid)).thenReturn(TEST_PACKAGE);
+
+        mClientManager.addSubscriber(mSubscriberClient1);
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+    @Test
+    public void testAddSubscriber_NotForegroundUser() {
+        mCallingAppUid = UserHandle.getUid(USER_ID_U11, 0);
+
+        try {
+            mClientManager.addSubscriber(mSubscriberClient1);
+            fail("Expected client to be rejected");
+        } catch (SecurityException expected) {
+            // expected
+        }
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+    }
+
+    @Test
+    public void testAddSubscriber_MultipleCalls() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+        mClientManager.addSubscriber(mSubscriberClient1);
+        verify(mPackageManager, atMost(1)).getNameForUid(anyInt());
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+    @Test
+    public void testAddSubscriber_MultipleClients_SamePackage() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+        mClientManager.addSubscriber(mSubscriberClient2);
+        verify(mPackageManager, atMost(2)).getNameForUid(anyInt());
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+    @Test
+    public void testAddSubscriber_MultipleClients_ForegroundAndSystemUsers_SamePackage() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+
+        mCallingAppUid = UserHandle.getUid(UserHandle.USER_SYSTEM, 0);
+        when(mPackageManager.getNameForUid(mCallingAppUid)).thenReturn(TEST_PACKAGE);
+        mClientManager.addSubscriber(mSubscriberClient2);
+
+        verify(mPackageManager, atMost(2)).getNameForUid(anyInt());
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+
+    @Test
+    public void testAddSubscriber_MultipleClients_MultiplePackages() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+
+        mCallingAppUid = UserHandle.getUid(mForegroundUserId, 1);
+        when(mPackageManager.getNameForUid(mCallingAppUid)).thenReturn("test.package2");
+        mClientManager.addSubscriber(mSubscriberClient2);
+
+        verify(mPackageManager, times(2)).getNameForUid(anyInt());
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals("test.package2", mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+    @Test
+    public void testRemoveSubscriber() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+        mClientManager.removeSubscriber(mSubscriberClient1);
+        verify(mBrokerService).removeDeadSubscriber(mSubscriberClient1);
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+    }
+
+    @Test
+    public void testRemoveSubscriber_NotRegistered() {
+        mClientManager.removeSubscriber(mSubscriberClient1);
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+    }
+
+    @Test
+    public void testRemoveSubscriber_OnDeath() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+
+        verify(mSubscriberBinder1).linkToDeath(mDeathRecipient.capture(), eq(0));
+        mDeathRecipient.getValue().binderDied();
+
+        verify(mBrokerService).removeDeadSubscriber(mSubscriberClient1);
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+    }
+
+    @Test
+    public void testOnUserSwitch_RemoveSubscriber() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+
+        mForegroundUserId = USER_ID_U11;
+        mClientManager.mUserSwitchReceiver.onReceive(mContext, new Intent());
+
+        verify(mBrokerService).removeDeadSubscriber(mSubscriberClient1);
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertTrue(mClientManager.getAllSubscribers().isEmpty());
+    }
+
+    @Test
+    public void testOnUserSwitch_RemoveSubscriber_AddNewSubscriber() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+
+        mForegroundUserId = USER_ID_U11;
+        mClientManager.mUserSwitchReceiver.onReceive(mContext, new Intent());
+        verify(mBrokerService).removeDeadSubscriber(mSubscriberClient1);
+
+        mCallingAppUid = UserHandle.getUid(USER_ID_U11, 0);
+        when(mPackageManager.getNameForUid(mCallingAppUid)).thenReturn(TEST_PACKAGE);
+        mClientManager.addSubscriber(mSubscriberClient2);
+
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+        assertFalse(mClientManager.getAllSubscribers().contains(mSubscriberClient1));
+        assertTrue(mClientManager.getAllSubscribers().contains(mSubscriberClient2));
+    }
+
+    @Test
+    public void testOnUserSwitch_RemoveSubscriber_RetainSystemClient() {
+        mClientManager.addSubscriber(mSubscriberClient1);
+
+        mCallingAppUid = UserHandle.getUid(UserHandle.USER_SYSTEM, 0);
+        when(mPackageManager.getNameForUid(mCallingAppUid)).thenReturn(TEST_PACKAGE);
+
+        mClientManager.addSubscriber(mSubscriberClient2);
+
+        mForegroundUserId = USER_ID_U11;
+        mClientManager.mUserSwitchReceiver.onReceive(mContext, new Intent());
+
+        verify(mBrokerService).removeDeadSubscriber(mSubscriberClient1);
+        verify(mBrokerService, never()).removeDeadSubscriber(mSubscriberClient2);
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(mSubscriberClient1));
+        assertEquals(TEST_PACKAGE, mClientManager.getPackageName(mSubscriberClient2));
+    }
+
+    @Test
+    public void testOnUserSwitch_RemoveSubscriber_RetainHalClient() {
+        IVmsPublisherClient publisherClient = createPublisherClient();
+        IVmsSubscriberClient subscriberClient = createSubscriberClient();
+        mClientManager.onHalConnected(publisherClient, subscriberClient);
+        reset(mPublisherService);
+
+        mForegroundUserId = USER_ID_U11;
+        mClientManager.mUserSwitchReceiver.onReceive(mContext, new Intent());
+
+        verify(mBrokerService, never()).removeDeadSubscriber(subscriberClient);
+        assertEquals(HAL_CLIENT_NAME, mClientManager.getPackageName(subscriberClient));
+    }
+
+    @Test
+    public void testHalClientConnected() {
+        IVmsPublisherClient publisherClient = createPublisherClient();
+        IVmsSubscriberClient subscriberClient = createSubscriberClient();
+        mClientManager.onHalConnected(publisherClient, subscriberClient);
+        verify(mPublisherService).onClientConnected(eq(HAL_CLIENT_NAME), same(publisherClient));
+        assertTrue(mClientManager.getAllSubscribers().contains(subscriberClient));
+        assertEquals(HAL_CLIENT_NAME, mClientManager.getPackageName(subscriberClient));
+    }
+
+    @Test
+    public void testHalClientConnected_AfterAddSubscriber() {
+        IVmsPublisherClient publisherClient = createPublisherClient();
+        IVmsSubscriberClient subscriberClient = createSubscriberClient();
+        mClientManager.addSubscriber(subscriberClient);
+
+        mClientManager.onHalConnected(publisherClient, subscriberClient);
+        verify(mPublisherService).onClientConnected(eq(HAL_CLIENT_NAME), same(publisherClient));
+        assertTrue(mClientManager.getAllSubscribers().contains(subscriberClient));
+        assertEquals(HAL_CLIENT_NAME, mClientManager.getPackageName(subscriberClient));
+    }
+
+    @Test
+    public void testOnHalClientDisconnected() {
+        IVmsPublisherClient publisherClient = createPublisherClient();
+        IVmsSubscriberClient subscriberClient = createSubscriberClient();
+        mClientManager.onHalConnected(publisherClient, subscriberClient);
+        reset(mPublisherService);
+
+        mClientManager.onHalDisconnected();
+        verify(mPublisherService).onClientDisconnected(eq(HAL_CLIENT_NAME));
+        verify(mBrokerService).removeDeadSubscriber(eq(subscriberClient));
+        assertFalse(mClientManager.getAllSubscribers().contains(subscriberClient));
+        assertEquals(UNKNOWN_PACKAGE, mClientManager.getPackageName(subscriberClient));
+    }
+
+    @Test
+    public void testOnHalClientDisconnected_NotConnected() {
+        mClientManager.onHalDisconnected();
+        verify(mPublisherService, never()).onClientDisconnected(eq(HAL_CLIENT_NAME));
+        assertTrue(mClientManager.getAllSubscribers().isEmpty());
+    }
+
     private void resetContext() {
         reset(mContext);
         when(mContext.getPackageManager()).thenReturn(mPackageManager);
@@ -792,4 +985,48 @@
                 mConnectionCaptor.capture(),
                 eq(Context.BIND_AUTO_CREATE), any(Handler.class), eq(user));
     }
+
+    private void verifyAndRunRebindTask() {
+        verify(mHandler).postDelayed(mRebindCaptor.capture(), eq(MILLIS_BEFORE_REBIND));
+        mRebindCaptor.getValue().run();
+    }
+
+    private void verifyOnClientConnected(String publisherName, IBinder binder) {
+        ArgumentCaptor<IVmsPublisherClient> clientCaptor =
+                ArgumentCaptor.forClass(IVmsPublisherClient.class);
+        verify(mPublisherService).onClientConnected(eq(publisherName), clientCaptor.capture());
+        assertSame(binder, clientCaptor.getValue().asBinder());
+    }
+
+    private IBinder createPublisherBinder() {
+        return createPublisherClient().asBinder();
+    }
+
+    private IVmsPublisherClient createPublisherClient() {
+        return new IVmsPublisherClient.Stub() {
+            @Override
+            public void setVmsPublisherService(IBinder token, IVmsPublisherService service) {
+                throw new RuntimeException("Unexpected call");
+            }
+
+            @Override
+            public void onVmsSubscriptionChange(VmsSubscriptionState subscriptionState) {
+                throw new RuntimeException("Unexpected call");
+            }
+        };
+    }
+
+    private IVmsSubscriberClient createSubscriberClient() {
+        return new IVmsSubscriberClient.Stub() {
+            @Override
+            public void onVmsMessageReceived(VmsLayer layer, byte[] payload) {
+                throw new RuntimeException("Unexpected call");
+            }
+
+            @Override
+            public void onLayersAvailabilityChanged(VmsAvailableLayers availableLayers) {
+                throw new RuntimeException("Unexpected call");
+            }
+        };
+    }
 }
diff --git a/user/car-user-lib/src/android/car/userlib/CarUserManagerHelper.java b/user/car-user-lib/src/android/car/userlib/CarUserManagerHelper.java
index 0745945..72332d9 100644
--- a/user/car-user-lib/src/android/car/userlib/CarUserManagerHelper.java
+++ b/user/car-user-lib/src/android/car/userlib/CarUserManagerHelper.java
@@ -238,10 +238,8 @@
         // If an override user is present and a real user, return it
         if (bootUserOverride != BOOT_USER_NOT_FOUND
                 && allUsers.contains(bootUserOverride)) {
-            if (Log.isLoggable(TAG, Log.DEBUG)) {
-                Log.d(TAG, "Boot user id override found for initial user, user id: "
-                        + bootUserOverride);
-            }
+            Log.i(TAG, "Boot user id override found for initial user, user id: "
+                    + bootUserOverride);
             return bootUserOverride;
         }
 
@@ -249,19 +247,15 @@
         int lastActiveUser = getLastActiveUser();
         if (lastActiveUser != UserHandle.USER_SYSTEM
                 && allUsers.contains(lastActiveUser)) {
-            if (Log.isLoggable(TAG, Log.DEBUG)) {
-                Log.d(TAG, "Last active user loaded for initial user, user id: "
-                        + lastActiveUser);
-            }
+            Log.i(TAG, "Last active user loaded for initial user, user id: "
+                    + lastActiveUser);
             return lastActiveUser;
         }
 
         // If all else fails, return the smallest user id
         int returnId = Collections.min(allUsers);
-        if (Log.isLoggable(TAG, Log.DEBUG)) {
-            Log.d(TAG, "Saved ids were invalid. Returning smallest user id, user id: "
-                    + returnId);
-        }
+        Log.i(TAG, "Saved ids were invalid. Returning smallest user id, user id: "
+                + returnId);
         return returnId;
     }