diff options
282 files changed, 2860 insertions, 1327 deletions
diff --git a/api/current.txt b/api/current.txt index 56b608c1a962..2f95e5c5bd30 100644 --- a/api/current.txt +++ b/api/current.txt @@ -39853,6 +39853,14 @@ package android.telephony {      field public static final int STATUS_UNKNOWN_ERROR = 4; // 0x4    } +  public class MbmsStreamingManager { +    method public static android.telephony.MbmsStreamingManager create(android.content.Context, android.telephony.mbms.MbmsStreamingManagerCallback, int) throws android.telephony.mbms.MbmsException; +    method public static android.telephony.MbmsStreamingManager create(android.content.Context, android.telephony.mbms.MbmsStreamingManagerCallback) throws android.telephony.mbms.MbmsException; +    method public void dispose(); +    method public void getStreamingServices(java.util.List<java.lang.String>) throws android.telephony.mbms.MbmsException; +    method public android.telephony.mbms.StreamingService startStreaming(android.telephony.mbms.StreamingServiceInfo, android.telephony.mbms.StreamingServiceCallback) throws android.telephony.mbms.MbmsException; +  } +    public class NeighboringCellInfo implements android.os.Parcelable {      ctor public deprecated NeighboringCellInfo();      ctor public deprecated NeighboringCellInfo(int, int); @@ -40479,6 +40487,95 @@ package android.telephony.gsm {  } +package android.telephony.mbms { + +  public class MbmsException extends java.lang.Exception { +    method public int getErrorCode(); +    field public static final int ERROR_MIDDLEWARE_LOST = 3; // 0x3 +    field public static final int ERROR_MIDDLEWARE_NOT_BOUND = 2; // 0x2 +    field public static final int ERROR_NO_UNIQUE_MIDDLEWARE = 1; // 0x1 +    field public static final int SUCCESS = 0; // 0x0 +  } + +  public static class MbmsException.GeneralErrors { +    ctor public MbmsException.GeneralErrors(); +    field public static final int ERROR_CARRIER_CHANGE_NOT_ALLOWED = 207; // 0xcf +    field public static final int ERROR_IN_E911 = 204; // 0xcc +    field public static final int ERROR_MIDDLEWARE_NOT_YET_READY = 201; // 0xc9 +    field public static final int ERROR_MIDDLEWARE_TEMPORARILY_UNAVAILABLE = 203; // 0xcb +    field public static final int ERROR_NOT_CONNECTED_TO_HOME_CARRIER_LTE = 205; // 0xcd +    field public static final int ERROR_OUT_OF_MEMORY = 202; // 0xca +    field public static final int ERROR_UNABLE_TO_READ_SIM = 206; // 0xce +  } + +  public static class MbmsException.InitializationErrors { +    ctor public MbmsException.InitializationErrors(); +    field public static final int ERROR_APP_PERMISSIONS_NOT_GRANTED = 102; // 0x66 +    field public static final int ERROR_DUPLICATE_INITIALIZE = 101; // 0x65 +    field public static final int ERROR_UNABLE_TO_INITIALIZE = 103; // 0x67 +  } + +  public static class MbmsException.StreamingErrors { +    ctor public MbmsException.StreamingErrors(); +    field public static final int ERROR_CONCURRENT_SERVICE_LIMIT_REACHED = 301; // 0x12d +    field public static final int ERROR_DUPLICATE_START_STREAM = 303; // 0x12f +    field public static final int ERROR_UNABLE_TO_START_SERVICE = 302; // 0x12e +  } + +  public class MbmsStreamingManagerCallback extends android.os.Binder { +    ctor public MbmsStreamingManagerCallback(); +    method public void error(int, java.lang.String) throws android.os.RemoteException; +    method public void middlewareReady() throws android.os.RemoteException; +    method public void streamingServicesUpdated(java.util.List<android.telephony.mbms.StreamingServiceInfo>) throws android.os.RemoteException; +  } + +  public class ServiceInfo implements android.os.Parcelable { +    method public int describeContents(); +    method public java.lang.String getClassName(); +    method public java.util.List<java.util.Locale> getLocales(); +    method public java.util.Map<java.util.Locale, java.lang.String> getNames(); +    method public java.lang.String getServiceId(); +    method public java.util.Date getSessionEndTime(); +    method public java.util.Date getSessionStartTime(); +    method public void writeToParcel(android.os.Parcel, int); +    field public static final android.os.Parcelable.Creator<android.telephony.mbms.ServiceInfo> CREATOR; +  } + +  public class StreamingService { +    method public void dispose() throws android.telephony.mbms.MbmsException; +    method public android.telephony.mbms.StreamingServiceInfo getInfo(); +    method public android.net.Uri getPlaybackUri() throws android.telephony.mbms.MbmsException; +    method public void stopStreaming() throws android.telephony.mbms.MbmsException; +    field public static final int BROADCAST_METHOD = 1; // 0x1 +    field public static final int REASON_BY_USER_REQUEST = 1; // 0x1 +    field public static final int REASON_END_OF_SESSION = 2; // 0x2 +    field public static final int REASON_FREQUENCY_CONFLICT = 3; // 0x3 +    field public static final int REASON_LEFT_MBMS_BROADCAST_AREA = 5; // 0x5 +    field public static final int REASON_NONE = 0; // 0x0 +    field public static final int REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE = 5; // 0x5 +    field public static final int REASON_OUT_OF_MEMORY = 4; // 0x4 +    field public static final int STATE_STALLED = 3; // 0x3 +    field public static final int STATE_STARTED = 2; // 0x2 +    field public static final int STATE_STOPPED = 1; // 0x1 +    field public static final int UNICAST_METHOD = 2; // 0x2 +  } + +  public class StreamingServiceCallback extends android.os.Binder { +    ctor public StreamingServiceCallback(); +    method public void broadcastSignalStrengthUpdated(int) throws android.os.RemoteException; +    method public void error(int, java.lang.String) throws android.os.RemoteException; +    method public void mediaDescriptionUpdated() throws android.os.RemoteException; +    method public void streamMethodUpdated(int) throws android.os.RemoteException; +    method public void streamStateUpdated(int, int) throws android.os.RemoteException; +    field public static final int SIGNAL_STRENGTH_UNAVAILABLE = -1; // 0xffffffff +  } + +  public class StreamingServiceInfo extends android.telephony.mbms.ServiceInfo implements android.os.Parcelable { +    field public static final android.os.Parcelable.Creator<android.telephony.mbms.StreamingServiceInfo> CREATOR; +  } + +} +  package android.test {    public abstract deprecated class ActivityInstrumentationTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase { diff --git a/api/system-current.txt b/api/system-current.txt index cb80b170ea35..284c17483d9b 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -43405,6 +43405,15 @@ package android.telephony {      field public static final int STATUS_UNKNOWN_ERROR = 4; // 0x4    } +  public class MbmsStreamingManager { +    method public static android.telephony.MbmsStreamingManager create(android.content.Context, android.telephony.mbms.MbmsStreamingManagerCallback, int) throws android.telephony.mbms.MbmsException; +    method public static android.telephony.MbmsStreamingManager create(android.content.Context, android.telephony.mbms.MbmsStreamingManagerCallback) throws android.telephony.mbms.MbmsException; +    method public void dispose(); +    method public void getStreamingServices(java.util.List<java.lang.String>) throws android.telephony.mbms.MbmsException; +    method public android.telephony.mbms.StreamingService startStreaming(android.telephony.mbms.StreamingServiceInfo, android.telephony.mbms.StreamingServiceCallback) throws android.telephony.mbms.MbmsException; +    field public static final java.lang.String MBMS_STREAMING_SERVICE_ACTION = "android.telephony.action.EmbmsStreaming"; +  } +    public class NeighboringCellInfo implements android.os.Parcelable {      ctor public deprecated NeighboringCellInfo();      ctor public deprecated NeighboringCellInfo(int, int); @@ -44148,6 +44157,111 @@ package android.telephony.ims {  } +package android.telephony.mbms { + +  public class MbmsException extends java.lang.Exception { +    method public int getErrorCode(); +    field public static final int ERROR_MIDDLEWARE_LOST = 3; // 0x3 +    field public static final int ERROR_MIDDLEWARE_NOT_BOUND = 2; // 0x2 +    field public static final int ERROR_NO_UNIQUE_MIDDLEWARE = 1; // 0x1 +    field public static final int SUCCESS = 0; // 0x0 +  } + +  public static class MbmsException.GeneralErrors { +    ctor public MbmsException.GeneralErrors(); +    field public static final int ERROR_CARRIER_CHANGE_NOT_ALLOWED = 207; // 0xcf +    field public static final int ERROR_IN_E911 = 204; // 0xcc +    field public static final int ERROR_MIDDLEWARE_NOT_YET_READY = 201; // 0xc9 +    field public static final int ERROR_MIDDLEWARE_TEMPORARILY_UNAVAILABLE = 203; // 0xcb +    field public static final int ERROR_NOT_CONNECTED_TO_HOME_CARRIER_LTE = 205; // 0xcd +    field public static final int ERROR_OUT_OF_MEMORY = 202; // 0xca +    field public static final int ERROR_UNABLE_TO_READ_SIM = 206; // 0xce +  } + +  public static class MbmsException.InitializationErrors { +    ctor public MbmsException.InitializationErrors(); +    field public static final int ERROR_APP_PERMISSIONS_NOT_GRANTED = 102; // 0x66 +    field public static final int ERROR_DUPLICATE_INITIALIZE = 101; // 0x65 +    field public static final int ERROR_UNABLE_TO_INITIALIZE = 103; // 0x67 +  } + +  public static class MbmsException.StreamingErrors { +    ctor public MbmsException.StreamingErrors(); +    field public static final int ERROR_CONCURRENT_SERVICE_LIMIT_REACHED = 301; // 0x12d +    field public static final int ERROR_DUPLICATE_START_STREAM = 303; // 0x12f +    field public static final int ERROR_UNABLE_TO_START_SERVICE = 302; // 0x12e +  } + +  public class MbmsStreamingManagerCallback extends android.os.Binder { +    ctor public MbmsStreamingManagerCallback(); +    method public void error(int, java.lang.String) throws android.os.RemoteException; +    method public void middlewareReady() throws android.os.RemoteException; +    method public void streamingServicesUpdated(java.util.List<android.telephony.mbms.StreamingServiceInfo>) throws android.os.RemoteException; +  } + +  public class ServiceInfo implements android.os.Parcelable { +    method public int describeContents(); +    method public java.lang.String getClassName(); +    method public java.util.List<java.util.Locale> getLocales(); +    method public java.util.Map<java.util.Locale, java.lang.String> getNames(); +    method public java.lang.String getServiceId(); +    method public java.util.Date getSessionEndTime(); +    method public java.util.Date getSessionStartTime(); +    method public void writeToParcel(android.os.Parcel, int); +    field public static final android.os.Parcelable.Creator<android.telephony.mbms.ServiceInfo> CREATOR; +  } + +  public class StreamingService { +    method public void dispose() throws android.telephony.mbms.MbmsException; +    method public android.telephony.mbms.StreamingServiceInfo getInfo(); +    method public android.net.Uri getPlaybackUri() throws android.telephony.mbms.MbmsException; +    method public void stopStreaming() throws android.telephony.mbms.MbmsException; +    field public static final int BROADCAST_METHOD = 1; // 0x1 +    field public static final int REASON_BY_USER_REQUEST = 1; // 0x1 +    field public static final int REASON_END_OF_SESSION = 2; // 0x2 +    field public static final int REASON_FREQUENCY_CONFLICT = 3; // 0x3 +    field public static final int REASON_LEFT_MBMS_BROADCAST_AREA = 5; // 0x5 +    field public static final int REASON_NONE = 0; // 0x0 +    field public static final int REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE = 5; // 0x5 +    field public static final int REASON_OUT_OF_MEMORY = 4; // 0x4 +    field public static final int STATE_STALLED = 3; // 0x3 +    field public static final int STATE_STARTED = 2; // 0x2 +    field public static final int STATE_STOPPED = 1; // 0x1 +    field public static final int UNICAST_METHOD = 2; // 0x2 +  } + +  public class StreamingServiceCallback extends android.os.Binder { +    ctor public StreamingServiceCallback(); +    method public void broadcastSignalStrengthUpdated(int) throws android.os.RemoteException; +    method public void error(int, java.lang.String) throws android.os.RemoteException; +    method public void mediaDescriptionUpdated() throws android.os.RemoteException; +    method public void streamMethodUpdated(int) throws android.os.RemoteException; +    method public void streamStateUpdated(int, int) throws android.os.RemoteException; +    field public static final int SIGNAL_STRENGTH_UNAVAILABLE = -1; // 0xffffffff +  } + +  public class StreamingServiceInfo extends android.telephony.mbms.ServiceInfo implements android.os.Parcelable { +    ctor public StreamingServiceInfo(java.util.Map<java.util.Locale, java.lang.String>, java.lang.String, java.util.List<java.util.Locale>, java.lang.String, java.util.Date, java.util.Date); +    field public static final android.os.Parcelable.Creator<android.telephony.mbms.StreamingServiceInfo> CREATOR; +  } + +} + +package android.telephony.mbms.vendor { + +  public class MbmsStreamingServiceBase extends android.os.Binder { +    ctor public MbmsStreamingServiceBase(); +    method public void dispose(int) throws android.os.RemoteException; +    method public void disposeStream(int, java.lang.String) throws android.os.RemoteException; +    method public android.net.Uri getPlaybackUri(int, java.lang.String) throws android.os.RemoteException; +    method public int getStreamingServices(int, java.util.List<java.lang.String>) throws android.os.RemoteException; +    method public int initialize(android.telephony.mbms.MbmsStreamingManagerCallback, int) throws android.os.RemoteException; +    method public int startStreaming(int, java.lang.String, android.telephony.mbms.StreamingServiceCallback) throws android.os.RemoteException; +    method public void stopStreaming(int, java.lang.String) throws android.os.RemoteException; +  } + +} +  package android.test {    public abstract deprecated class ActivityInstrumentationTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase { diff --git a/api/test-current.txt b/api/test-current.txt index 84eea3692959..985cd26a76d3 100644 --- a/api/test-current.txt +++ b/api/test-current.txt @@ -40104,6 +40104,14 @@ package android.telephony {      field public static final int STATUS_UNKNOWN_ERROR = 4; // 0x4    } +  public class MbmsStreamingManager { +    method public static android.telephony.MbmsStreamingManager create(android.content.Context, android.telephony.mbms.MbmsStreamingManagerCallback, int) throws android.telephony.mbms.MbmsException; +    method public static android.telephony.MbmsStreamingManager create(android.content.Context, android.telephony.mbms.MbmsStreamingManagerCallback) throws android.telephony.mbms.MbmsException; +    method public void dispose(); +    method public void getStreamingServices(java.util.List<java.lang.String>) throws android.telephony.mbms.MbmsException; +    method public android.telephony.mbms.StreamingService startStreaming(android.telephony.mbms.StreamingServiceInfo, android.telephony.mbms.StreamingServiceCallback) throws android.telephony.mbms.MbmsException; +  } +    public class NeighboringCellInfo implements android.os.Parcelable {      ctor public deprecated NeighboringCellInfo();      ctor public deprecated NeighboringCellInfo(int, int); @@ -40730,6 +40738,95 @@ package android.telephony.gsm {  } +package android.telephony.mbms { + +  public class MbmsException extends java.lang.Exception { +    method public int getErrorCode(); +    field public static final int ERROR_MIDDLEWARE_LOST = 3; // 0x3 +    field public static final int ERROR_MIDDLEWARE_NOT_BOUND = 2; // 0x2 +    field public static final int ERROR_NO_UNIQUE_MIDDLEWARE = 1; // 0x1 +    field public static final int SUCCESS = 0; // 0x0 +  } + +  public static class MbmsException.GeneralErrors { +    ctor public MbmsException.GeneralErrors(); +    field public static final int ERROR_CARRIER_CHANGE_NOT_ALLOWED = 207; // 0xcf +    field public static final int ERROR_IN_E911 = 204; // 0xcc +    field public static final int ERROR_MIDDLEWARE_NOT_YET_READY = 201; // 0xc9 +    field public static final int ERROR_MIDDLEWARE_TEMPORARILY_UNAVAILABLE = 203; // 0xcb +    field public static final int ERROR_NOT_CONNECTED_TO_HOME_CARRIER_LTE = 205; // 0xcd +    field public static final int ERROR_OUT_OF_MEMORY = 202; // 0xca +    field public static final int ERROR_UNABLE_TO_READ_SIM = 206; // 0xce +  } + +  public static class MbmsException.InitializationErrors { +    ctor public MbmsException.InitializationErrors(); +    field public static final int ERROR_APP_PERMISSIONS_NOT_GRANTED = 102; // 0x66 +    field public static final int ERROR_DUPLICATE_INITIALIZE = 101; // 0x65 +    field public static final int ERROR_UNABLE_TO_INITIALIZE = 103; // 0x67 +  } + +  public static class MbmsException.StreamingErrors { +    ctor public MbmsException.StreamingErrors(); +    field public static final int ERROR_CONCURRENT_SERVICE_LIMIT_REACHED = 301; // 0x12d +    field public static final int ERROR_DUPLICATE_START_STREAM = 303; // 0x12f +    field public static final int ERROR_UNABLE_TO_START_SERVICE = 302; // 0x12e +  } + +  public class MbmsStreamingManagerCallback extends android.os.Binder { +    ctor public MbmsStreamingManagerCallback(); +    method public void error(int, java.lang.String) throws android.os.RemoteException; +    method public void middlewareReady() throws android.os.RemoteException; +    method public void streamingServicesUpdated(java.util.List<android.telephony.mbms.StreamingServiceInfo>) throws android.os.RemoteException; +  } + +  public class ServiceInfo implements android.os.Parcelable { +    method public int describeContents(); +    method public java.lang.String getClassName(); +    method public java.util.List<java.util.Locale> getLocales(); +    method public java.util.Map<java.util.Locale, java.lang.String> getNames(); +    method public java.lang.String getServiceId(); +    method public java.util.Date getSessionEndTime(); +    method public java.util.Date getSessionStartTime(); +    method public void writeToParcel(android.os.Parcel, int); +    field public static final android.os.Parcelable.Creator<android.telephony.mbms.ServiceInfo> CREATOR; +  } + +  public class StreamingService { +    method public void dispose() throws android.telephony.mbms.MbmsException; +    method public android.telephony.mbms.StreamingServiceInfo getInfo(); +    method public android.net.Uri getPlaybackUri() throws android.telephony.mbms.MbmsException; +    method public void stopStreaming() throws android.telephony.mbms.MbmsException; +    field public static final int BROADCAST_METHOD = 1; // 0x1 +    field public static final int REASON_BY_USER_REQUEST = 1; // 0x1 +    field public static final int REASON_END_OF_SESSION = 2; // 0x2 +    field public static final int REASON_FREQUENCY_CONFLICT = 3; // 0x3 +    field public static final int REASON_LEFT_MBMS_BROADCAST_AREA = 5; // 0x5 +    field public static final int REASON_NONE = 0; // 0x0 +    field public static final int REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE = 5; // 0x5 +    field public static final int REASON_OUT_OF_MEMORY = 4; // 0x4 +    field public static final int STATE_STALLED = 3; // 0x3 +    field public static final int STATE_STARTED = 2; // 0x2 +    field public static final int STATE_STOPPED = 1; // 0x1 +    field public static final int UNICAST_METHOD = 2; // 0x2 +  } + +  public class StreamingServiceCallback extends android.os.Binder { +    ctor public StreamingServiceCallback(); +    method public void broadcastSignalStrengthUpdated(int) throws android.os.RemoteException; +    method public void error(int, java.lang.String) throws android.os.RemoteException; +    method public void mediaDescriptionUpdated() throws android.os.RemoteException; +    method public void streamMethodUpdated(int) throws android.os.RemoteException; +    method public void streamStateUpdated(int, int) throws android.os.RemoteException; +    field public static final int SIGNAL_STRENGTH_UNAVAILABLE = -1; // 0xffffffff +  } + +  public class StreamingServiceInfo extends android.telephony.mbms.ServiceInfo implements android.os.Parcelable { +    field public static final android.os.Parcelable.Creator<android.telephony.mbms.StreamingServiceInfo> CREATOR; +  } + +} +  package android.test {    public abstract deprecated class ActivityInstrumentationTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase { diff --git a/core/java/android/net/IpSecAlgorithm.java b/core/java/android/net/IpSecAlgorithm.java index 48b095d9b77b..5ae340036147 100644 --- a/core/java/android/net/IpSecAlgorithm.java +++ b/core/java/android/net/IpSecAlgorithm.java @@ -16,8 +16,10 @@  package android.net;  import android.annotation.StringDef; +import android.os.Build;  import android.os.Parcel;  import android.os.Parcelable; +import com.android.internal.util.HexDump;  import java.lang.annotation.Retention;  import java.lang.annotation.RetentionPolicy; @@ -182,4 +184,17 @@ public final class IpSecAlgorithm implements Parcelable {                  return false;          }      } + +    @Override +    public String toString() { +        return new StringBuilder() +                .append("{mName=") +                .append(mName) +                .append(", mKey=") +                .append(Build.IS_DEBUGGABLE ? HexDump.toHexString(mKey) : "<hidden>") +                .append(", mTruncLenBits=") +                .append(mTruncLenBits) +                .append("}") +                .toString(); +    }  }; diff --git a/core/java/android/net/IpSecConfig.java b/core/java/android/net/IpSecConfig.java index 8b80f2ba504d..5a5c740c7aa8 100644 --- a/core/java/android/net/IpSecConfig.java +++ b/core/java/android/net/IpSecConfig.java @@ -47,9 +47,22 @@ public final class IpSecConfig implements Parcelable {          // Authentication Algorithm          IpSecAlgorithm authentication; + +        @Override +        public String toString() { +            return new StringBuilder() +                    .append("{spiResourceId=") +                    .append(spiResourceId) +                    .append(", encryption=") +                    .append(encryption) +                    .append(", authentication=") +                    .append(authentication) +                    .append("}") +                    .toString(); +        }      } -    Flow[] flow = new Flow[] {new Flow(), new Flow()}; +    final Flow[] flow = new Flow[] {new Flow(), new Flow()};      // For tunnel mode IPv4 UDP Encapsulation      // IpSecTransform#ENCAP_ESP_*, such as ENCAP_ESP_OVER_UDP_IKE @@ -166,6 +179,35 @@ public final class IpSecConfig implements Parcelable {          encapRemotePort = in.readInt();      } +    @Override +    public String toString() { +        StringBuilder strBuilder = new StringBuilder(); +        strBuilder +                .append("{mode=") +                .append(mode == IpSecTransform.MODE_TUNNEL ? "TUNNEL" : "TRANSPORT") +                .append(", localAddress=") +                .append(localAddress) +                .append(", remoteAddress=") +                .append(remoteAddress) +                .append(", network=") +                .append(network) +                .append(", encapType=") +                .append(encapType) +                .append(", encapLocalPortResourceId=") +                .append(encapLocalPortResourceId) +                .append(", encapRemotePort=") +                .append(encapRemotePort) +                .append(", nattKeepaliveInterval=") +                .append(nattKeepaliveInterval) +                .append(", flow[OUT]=") +                .append(flow[IpSecTransform.DIRECTION_OUT]) +                .append(", flow[IN]=") +                .append(flow[IpSecTransform.DIRECTION_IN]) +                .append("}"); + +        return strBuilder.toString(); +    } +      public static final Parcelable.Creator<IpSecConfig> CREATOR =              new Parcelable.Creator<IpSecConfig>() {                  public IpSecConfig createFromParcel(Parcel in) { diff --git a/core/java/android/net/IpSecTransform.java b/core/java/android/net/IpSecTransform.java index e65f534f3dc6..cfbac58bbd1f 100644 --- a/core/java/android/net/IpSecTransform.java +++ b/core/java/android/net/IpSecTransform.java @@ -26,6 +26,7 @@ import android.os.IBinder;  import android.os.RemoteException;  import android.os.ServiceManager;  import android.util.Log; +import com.android.internal.annotations.VisibleForTesting;  import com.android.internal.util.Preconditions;  import dalvik.system.CloseGuard;  import java.io.IOException; @@ -66,10 +67,10 @@ public final class IpSecTransform implements AutoCloseable {      public @interface TransformDirection {}      /** @hide */ -    private static final int MODE_TUNNEL = 0; +    public static final int MODE_TUNNEL = 0;      /** @hide */ -    private static final int MODE_TRANSPORT = 1; +    public static final int MODE_TRANSPORT = 1;      /** @hide */      public static final int ENCAP_NONE = 0; @@ -487,5 +488,14 @@ public final class IpSecTransform implements AutoCloseable {              mContext = context;              mConfig = new IpSecConfig();          } + +        /** +         * Return an {@link IpSecConfig} object for testing purposes. +         * @hide +         */ +        @VisibleForTesting +        public IpSecConfig getIpSecConfig() { +            return mConfig; +        }      }  } diff --git a/core/java/android/net/nsd/NsdManager.java b/core/java/android/net/nsd/NsdManager.java index 1e41eea925a5..ace37486647c 100644 --- a/core/java/android/net/nsd/NsdManager.java +++ b/core/java/android/net/nsd/NsdManager.java @@ -16,10 +16,6 @@  package android.net.nsd; -import static com.android.internal.util.Preconditions.checkArgument; -import static com.android.internal.util.Preconditions.checkNotNull; -import static com.android.internal.util.Preconditions.checkStringNotEmpty; -  import android.annotation.SdkConstant;  import android.annotation.SystemService;  import android.annotation.SdkConstant.SdkConstantType; @@ -244,12 +240,12 @@ public final class NsdManager {          return name;      } -    private static int FIRST_LISTENER_KEY = 1; -      private final INsdManager mService;      private final Context mContext; -    private int mListenerKey = FIRST_LISTENER_KEY; +    private static final int INVALID_LISTENER_KEY = 0; +    private static final int BUSY_LISTENER_KEY = -1; +    private int mListenerKey = 1;      private final SparseArray mListenerMap = new SparseArray();      private final SparseArray<NsdServiceInfo> mServiceMap = new SparseArray<>();      private final Object mMapLock = new Object(); @@ -315,6 +311,7 @@ public final class NsdManager {          public void onServiceFound(NsdServiceInfo serviceInfo);          public void onServiceLost(NsdServiceInfo serviceInfo); +      }      /** Interface for callback invocation for service registration */ @@ -345,9 +342,8 @@ public final class NsdManager {          @Override          public void handleMessage(Message message) { -            final int what = message.what; -            final int key = message.arg2; -            switch (what) { +            if (DBG) Log.d(TAG, "received " + nameOf(message.what)); +            switch (message.what) {                  case AsyncChannel.CMD_CHANNEL_HALF_CONNECTED:                      mAsyncChannel.sendMessage(AsyncChannel.CMD_CHANNEL_FULL_CONNECTION);                      return; @@ -360,26 +356,19 @@ public final class NsdManager {                  default:                      break;              } -            final Object listener; -            final NsdServiceInfo ns; -            synchronized (mMapLock) { -                listener = mListenerMap.get(key); -                ns = mServiceMap.get(key); -            } +            Object listener = getListener(message.arg2);              if (listener == null) {                  Log.d(TAG, "Stale key " + message.arg2);                  return;              } -            if (DBG) { -                Log.d(TAG, "received " + nameOf(what) + " for key " + key + ", service " + ns); -            } -            switch (what) { +            NsdServiceInfo ns = getNsdService(message.arg2); +            switch (message.what) {                  case DISCOVER_SERVICES_STARTED:                      String s = getNsdServiceInfoType((NsdServiceInfo) message.obj);                      ((DiscoveryListener) listener).onDiscoveryStarted(s);                      break;                  case DISCOVER_SERVICES_FAILED: -                    removeListener(key); +                    removeListener(message.arg2);                      ((DiscoveryListener) listener).onStartDiscoveryFailed(getNsdServiceInfoType(ns),                              message.arg1);                      break; @@ -392,16 +381,16 @@ public final class NsdManager {                  case STOP_DISCOVERY_FAILED:                      // TODO: failure to stop discovery should be internal and retried internally, as                      // the effect for the client is indistinguishable from STOP_DISCOVERY_SUCCEEDED -                    removeListener(key); +                    removeListener(message.arg2);                      ((DiscoveryListener) listener).onStopDiscoveryFailed(getNsdServiceInfoType(ns),                              message.arg1);                      break;                  case STOP_DISCOVERY_SUCCEEDED: -                    removeListener(key); +                    removeListener(message.arg2);                      ((DiscoveryListener) listener).onDiscoveryStopped(getNsdServiceInfoType(ns));                      break;                  case REGISTER_SERVICE_FAILED: -                    removeListener(key); +                    removeListener(message.arg2);                      ((RegistrationListener) listener).onRegistrationFailed(ns, message.arg1);                      break;                  case REGISTER_SERVICE_SUCCEEDED: @@ -409,7 +398,7 @@ public final class NsdManager {                              (NsdServiceInfo) message.obj);                      break;                  case UNREGISTER_SERVICE_FAILED: -                    removeListener(key); +                    removeListener(message.arg2);                      ((RegistrationListener) listener).onUnregistrationFailed(ns, message.arg1);                      break;                  case UNREGISTER_SERVICE_SUCCEEDED: @@ -419,11 +408,11 @@ public final class NsdManager {                      ((RegistrationListener) listener).onServiceUnregistered(ns);                      break;                  case RESOLVE_SERVICE_FAILED: -                    removeListener(key); +                    removeListener(message.arg2);                      ((ResolveListener) listener).onResolveFailed(ns, message.arg1);                      break;                  case RESOLVE_SERVICE_SUCCEEDED: -                    removeListener(key); +                    removeListener(message.arg2);                      ((ResolveListener) listener).onServiceResolved((NsdServiceInfo) message.obj);                      break;                  default: @@ -433,27 +422,40 @@ public final class NsdManager {          }      } -    private int nextListenerKey() { -        // Ensure mListenerKey >= FIRST_LISTENER_KEY; -        mListenerKey = Math.max(FIRST_LISTENER_KEY, mListenerKey + 1); -        return mListenerKey; -    } - -    // Assert that the listener is not in the map, then add it and returns its key +    // if the listener is already in the map, reject it.  Otherwise, add it and +    // return its key.      private int putListener(Object listener, NsdServiceInfo s) { -        checkListener(listener); -        final int key; +        if (listener == null) return INVALID_LISTENER_KEY; +        int key;          synchronized (mMapLock) {              int valueIndex = mListenerMap.indexOfValue(listener); -            checkArgument(valueIndex == -1, "listener already in use"); -            key = nextListenerKey(); +            if (valueIndex != -1) { +                return BUSY_LISTENER_KEY; +            } +            do { +                key = mListenerKey++; +            } while (key == INVALID_LISTENER_KEY);              mListenerMap.put(key, listener);              mServiceMap.put(key, s);          }          return key;      } +    private Object getListener(int key) { +        if (key == INVALID_LISTENER_KEY) return null; +        synchronized (mMapLock) { +            return mListenerMap.get(key); +        } +    } + +    private NsdServiceInfo getNsdService(int key) { +        synchronized (mMapLock) { +            return mServiceMap.get(key); +        } +    } +      private void removeListener(int key) { +        if (key == INVALID_LISTENER_KEY) return;          synchronized (mMapLock) {              mListenerMap.remove(key);              mServiceMap.remove(key); @@ -461,15 +463,16 @@ public final class NsdManager {      }      private int getListenerKey(Object listener) { -        checkListener(listener);          synchronized (mMapLock) {              int valueIndex = mListenerMap.indexOfValue(listener); -            checkArgument(valueIndex != -1, "listener not registered"); -            return mListenerMap.keyAt(valueIndex); +            if (valueIndex != -1) { +                return mListenerMap.keyAt(valueIndex); +            }          } +        return INVALID_LISTENER_KEY;      } -    private static String getNsdServiceInfoType(NsdServiceInfo s) { +    private String getNsdServiceInfoType(NsdServiceInfo s) {          if (s == null) return "?";          return s.getServiceType();      } @@ -479,9 +482,7 @@ public final class NsdManager {       */      private void init() {          final Messenger messenger = getMessenger(); -        if (messenger == null) { -            fatal("Failed to obtain service Messenger"); -        } +        if (messenger == null) throw new RuntimeException("Failed to initialize");          HandlerThread t = new HandlerThread("NsdManager");          t.start();          mHandler = new ServiceHandler(t.getLooper()); @@ -489,15 +490,10 @@ public final class NsdManager {          try {              mConnected.await();          } catch (InterruptedException e) { -            fatal("Interrupted wait at init"); +            Log.e(TAG, "interrupted wait at init");          }      } -    private static void fatal(String msg) { -        Log.e(TAG, msg); -        throw new RuntimeException(msg); -    } -      /**       * Register a service to be discovered by other services.       * @@ -517,10 +513,23 @@ public final class NsdManager {       */      public void registerService(NsdServiceInfo serviceInfo, int protocolType,              RegistrationListener listener) { -        checkArgument(serviceInfo.getPort() > 0, "Invalid port number"); -        checkServiceInfo(serviceInfo); -        checkProtocol(protocolType); +        if (TextUtils.isEmpty(serviceInfo.getServiceName()) || +                TextUtils.isEmpty(serviceInfo.getServiceType())) { +            throw new IllegalArgumentException("Service name or type cannot be empty"); +        } +        if (serviceInfo.getPort() <= 0) { +            throw new IllegalArgumentException("Invalid port number"); +        } +        if (listener == null) { +            throw new IllegalArgumentException("listener cannot be null"); +        } +        if (protocolType != PROTOCOL_DNS_SD) { +            throw new IllegalArgumentException("Unsupported protocol"); +        }          int key = putListener(listener, serviceInfo); +        if (key == BUSY_LISTENER_KEY) { +            throw new IllegalArgumentException("listener already in use"); +        }          mAsyncChannel.sendMessage(REGISTER_SERVICE, 0, key, serviceInfo);      } @@ -539,6 +548,12 @@ public final class NsdManager {       */      public void unregisterService(RegistrationListener listener) {          int id = getListenerKey(listener); +        if (id == INVALID_LISTENER_KEY) { +            throw new IllegalArgumentException("listener not registered"); +        } +        if (listener == null) { +            throw new IllegalArgumentException("listener cannot be null"); +        }          mAsyncChannel.sendMessage(UNREGISTER_SERVICE, 0, id);      } @@ -571,13 +586,25 @@ public final class NsdManager {       * Cannot be null. Cannot be in use for an active service discovery.       */      public void discoverServices(String serviceType, int protocolType, DiscoveryListener listener) { -        checkStringNotEmpty(serviceType, "Service type cannot be empty"); -        checkProtocol(protocolType); +        if (listener == null) { +            throw new IllegalArgumentException("listener cannot be null"); +        } +        if (TextUtils.isEmpty(serviceType)) { +            throw new IllegalArgumentException("Service type cannot be empty"); +        } + +        if (protocolType != PROTOCOL_DNS_SD) { +            throw new IllegalArgumentException("Unsupported protocol"); +        }          NsdServiceInfo s = new NsdServiceInfo();          s.setServiceType(serviceType);          int key = putListener(listener, s); +        if (key == BUSY_LISTENER_KEY) { +            throw new IllegalArgumentException("listener already in use"); +        } +          mAsyncChannel.sendMessage(DISCOVER_SERVICES, 0, key, s);      } @@ -599,6 +626,12 @@ public final class NsdManager {       */      public void stopServiceDiscovery(DiscoveryListener listener) {          int id = getListenerKey(listener); +        if (id == INVALID_LISTENER_KEY) { +            throw new IllegalArgumentException("service discovery not active on listener"); +        } +        if (listener == null) { +            throw new IllegalArgumentException("listener cannot be null"); +        }          mAsyncChannel.sendMessage(STOP_DISCOVERY, 0, id);      } @@ -612,8 +645,19 @@ public final class NsdManager {       * Cannot be in use for an active service resolution.       */      public void resolveService(NsdServiceInfo serviceInfo, ResolveListener listener) { -        checkServiceInfo(serviceInfo); +        if (TextUtils.isEmpty(serviceInfo.getServiceName()) || +                TextUtils.isEmpty(serviceInfo.getServiceType())) { +            throw new IllegalArgumentException("Service name or type cannot be empty"); +        } +        if (listener == null) { +            throw new IllegalArgumentException("listener cannot be null"); +        } +          int key = putListener(listener, serviceInfo); + +        if (key == BUSY_LISTENER_KEY) { +            throw new IllegalArgumentException("listener already in use"); +        }          mAsyncChannel.sendMessage(RESOLVE_SERVICE, 0, key, serviceInfo);      } @@ -627,10 +671,10 @@ public final class NsdManager {      }      /** -     * Get a reference to NsdService handler. This is used to establish +     * Get a reference to NetworkService handler. This is used to establish       * an AsyncChannel communication with the service       * -     * @return Messenger pointing to the NsdService handler +     * @return Messenger pointing to the NetworkService handler       */      private Messenger getMessenger() {          try { @@ -639,18 +683,4 @@ public final class NsdManager {              throw e.rethrowFromSystemServer();          }      } - -    private static void checkListener(Object listener) { -        checkNotNull(listener, "listener cannot be null"); -    } - -    private static void checkProtocol(int protocolType) { -        checkArgument(protocolType == PROTOCOL_DNS_SD, "Unsupported protocol"); -    } - -    private static void checkServiceInfo(NsdServiceInfo serviceInfo) { -        checkNotNull(serviceInfo, "NsdServiceInfo cannot be null"); -        checkStringNotEmpty(serviceInfo.getServiceName(),"Service name cannot be empty"); -        checkStringNotEmpty(serviceInfo.getServiceType(), "Service type cannot be empty"); -    }  } diff --git a/core/jni/android/graphics/SurfaceTexture.cpp b/core/jni/android/graphics/SurfaceTexture.cpp index 9242b70a7e9a..d098a355085e 100644 --- a/core/jni/android/graphics/SurfaceTexture.cpp +++ b/core/jni/android/graphics/SurfaceTexture.cpp @@ -34,8 +34,8 @@  #include <utils/misc.h>  #include "jni.h" -#include "JNIHelp.h" -#include "ScopedLocalRef.h" +#include <nativehelper/JNIHelp.h> +#include <nativehelper/ScopedLocalRef.h>  // ---------------------------------------------------------------------------- diff --git a/core/jni/android_os_SharedMemory.cpp b/core/jni/android_os_SharedMemory.cpp index 24d08112275e..1d29908ad3df 100644 --- a/core/jni/android_os_SharedMemory.cpp +++ b/core/jni/android_os_SharedMemory.cpp @@ -21,8 +21,8 @@  #include <cutils/ashmem.h>  #include <utils/Log.h>  #include "JNIHelp.h" -#include "JniConstants.h" -#include "ScopedLocalRef.h" +#include <nativehelper/JniConstants.h> +#include <nativehelper/ScopedLocalRef.h>  #include <algorithm>  #include <errno.h> diff --git a/core/res/res/values-af/strings.xml b/core/res/res/values-af/strings.xml index 9da6a9232786..a35d61d544bd 100644 --- a/core/res/res/values-af/strings.xml +++ b/core/res/res/values-af/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Titelloos>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Stembystand"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Sluit nou"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nuwe kennisgewing"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Inhoud versteek"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Inhoud word versteek volgens beleid"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuele sleutelbord"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fisieke sleutelbord"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sekuriteit"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Ontspeld"</string>      <string name="app_info" msgid="6856026610594615344">"Programinligting"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Stel toestel terug?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tik om toestel terug te stel"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Begin tans demonstrasie …"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Stel toestel tans terug …"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Stel toestel terug?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Jy sal enige veranderinge verloor en die demonstrasie sal oor <xliff:g id="TIMEOUT">%1$s</xliff:g> sekondes weer begin …"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Kanselleer"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Stel nou terug"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Het <xliff:g id="LABEL">%1$s</xliff:g> gedeaktiveer"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferensie-oproep"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Nutswenk"</string> diff --git a/core/res/res/values-am/strings.xml b/core/res/res/values-am/strings.xml index 8c11d6adf7c7..9f67ea29c20d 100644 --- a/core/res/res/values-am/strings.xml +++ b/core/res/res/values-am/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"ኪባ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ርዕስ አልባ>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"የድምጽ እርዳታ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"አሁን ቆልፍ"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"አዲስ ማሳወቂያ"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"ይዘቶች ተደብቀዋል"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"ይዘቶች በመመሪያ ተደብቀዋል"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ምናባዊ የቁልፍ ሰሌዳ"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"አካላዊ ቁልፍ ሰሌዳ"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"ደህንነት"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ንቀል"</string>      <string name="app_info" msgid="6856026610594615344">"የመተግበሪያ መረጃ"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"መሣሪያ ዳግም ይጀመር?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"መሣሪያን ዳግም ለማስጀመር መታ ያድርጉ"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ማሳያን በማስጀመር ላይ…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"መሣሪያን ዳግም በማስጀመር ላይ…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"መሣሪያ ዳግም ይጀመር?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ማንኛቸውም ለውጦች ይጠፋሉ፣ እና ማሳያው በ<xliff:g id="TIMEOUT">%1$s</xliff:g> ሰከንዶች ውስጥ እንደገና ይጀምራል…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ይቅር"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"አሁን ዳግም አስጀምር"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> ተሰናክሏል"</string>      <string name="conference_call" msgid="3751093130790472426">"የስብሰባ ጥሪ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"የመሣሪያ ጥቆማ"</string> diff --git a/core/res/res/values-ar/strings.xml b/core/res/res/values-ar/strings.xml index d1c8de8c7e20..cc277561dec6 100644 --- a/core/res/res/values-ar/strings.xml +++ b/core/res/res/values-ar/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"بايت"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"كيلوبايت"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"ميغابايت"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"غيغابايت"</string> +    <string name="terabyteShort" msgid="231613018159186962">"تيرابايت"</string>      <string name="petabyteShort" msgid="5637816680144990219">"بيتابايت"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<بلا عنوان>"</string> @@ -242,7 +246,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"المساعد الصوتي"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"قفل الآن"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"إشعار جديد"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"المحتويات مخفية"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"تم إخفاء المحتويات بواسطة السياسة"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"لوحة المفاتيح الافتراضية"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"لوحة المفاتيح الفعلية"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"الأمان"</string> @@ -1845,8 +1850,14 @@      <string name="unpin_target" msgid="3556545602439143442">"إزالة تثبيت"</string>      <string name="app_info" msgid="6856026610594615344">"معلومات عن التطبيق"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"هل تريد إعادة تعيين الجهاز؟"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"انقر لإعادة تعيين الجهاز"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"جارٍ بدء العرض التوضيحي…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"جارٍ إعادة تعيين الجهاز…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"هل تريد إعادة تعيين الجهاز؟"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ستفقد أي تغييرات وسيبدأ العرض التوضيحي مرة أخرى خلال <xliff:g id="TIMEOUT">%1$s</xliff:g> من الثواني…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"إلغاء"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"إعادة التعيين الآن"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"تم تعطيل <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"مكالمة جماعية"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"تلميح"</string> diff --git a/core/res/res/values-az/strings.xml b/core/res/res/values-az/strings.xml index 9593f8ef05cd..dad5802ec0c6 100644 --- a/core/res/res/values-az/strings.xml +++ b/core/res/res/values-az/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"Başlıqsız"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Səs Yardımçısı"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"İndi kilidləyin"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Yeni bildiriş"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Məzmun gizlidir"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Məzmun siyasət tərəfindən gizlədilib"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtual klaviatura"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fiziki klaviatura"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Təhlükəsizlik"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Çıxarın"</string>      <string name="app_info" msgid="6856026610594615344">"Tətbiq məlumatı"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Cihaz sıfırlansın?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Cihazı sıfırlamaq üçün tıklayın"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo başlayır…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Cihaz sıfırlanır…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Cihaz sıfırlansın?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Hər hansı dəyişikliyi itirəcəksiniz və demo <xliff:g id="TIMEOUT">%1$s</xliff:g> saniyəyə yenidən başlayacaq…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Ləğv edin"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"İndi sıfırlayın"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> deaktiv edildi"</string>      <string name="conference_call" msgid="3751093130790472426">"Konfrans Zəngi"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Tooltip"</string> diff --git a/core/res/res/values-b+sr+Latn/strings.xml b/core/res/res/values-b+sr+Latn/strings.xml index 98c8f792af34..5f1ca49c6105 100644 --- a/core/res/res/values-b+sr+Latn/strings.xml +++ b/core/res/res/values-b+sr+Latn/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez naslova>"</string> @@ -233,7 +237,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Glasovna pomoć"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zaključaj odmah"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Novo obaveštenje"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Sadržaj je sakriven"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Sadržaj je sakriven smernicama"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuelna tastatura"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fizička tastatura"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Bezbednost"</string> @@ -1746,8 +1751,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Otkači"</string>      <string name="app_info" msgid="6856026610594615344">"Informacije o aplikaciji"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Želite li da resetujete uređaj?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Dodirnite da biste resetovali uređaj"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Pokrećemo demonstraciju..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetujemo uređaj..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Želite li da resetujete uređaj?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Izgubićete sve promene i demonstracija će ponovo početi za <xliff:g id="TIMEOUT">%1$s</xliff:g> sek…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Otkaži"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Resetuj"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Vidžet <xliff:g id="LABEL">%1$s</xliff:g> je onemogućen"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferencijski poziv"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Objašnjenje"</string> diff --git a/core/res/res/values-be/strings.xml b/core/res/res/values-be/strings.xml index 3c13f4a6bcab..7ec47510e490 100644 --- a/core/res/res/values-be/strings.xml +++ b/core/res/res/values-be/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"КБ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Мб"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ГБ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"Тб"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Пб"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Без назвы>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Галас. дапамога"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Заблакір. зараз"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Новае апавяшчэнне"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Змесціва схавана"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Змесціва, схаванае ў адпаведнасці з палітыкай"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Віртуальная клавіятура"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Фізічная клавіятура"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Бяспека"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Адмацаваць"</string>      <string name="app_info" msgid="6856026610594615344">"Інфармацыя пра праграму"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Скінуць налады прылады?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Дакраніцеся, каб скінуць налады прылады"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Ідзе запуск дэманстрацыі…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Ідзе скід налад прылады…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Скінуць налады прылады?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Усе змены будуць страчаны, і дэманстрацыя пачнецца зноў праз <xliff:g id="TIMEOUT">%1$s</xliff:g> с…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Скасаваць"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Выканаць скід"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Адключаны <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Канферэнц-выклік"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Падказка"</string> diff --git a/core/res/res/values-bg/strings.xml b/core/res/res/values-bg/strings.xml index 3e89353958ff..e61e49c981db 100644 --- a/core/res/res/values-bg/strings.xml +++ b/core/res/res/values-bg/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"Б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"КБ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"МБ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ГБ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"ТБ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"ПБ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Без заглавие>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Гласова помощ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Заключване сега"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Ново известие"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Скрито съдържание"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Съдържанието е скрито чрез правило"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуална клавиатура"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Физическа клавиатура"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Сигурност"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Освобождаване"</string>      <string name="app_info" msgid="6856026610594615344">"Информация за приложението"</string>      <string name="negative_duration" msgid="5688706061127375131">"-<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Да се нулира ли устройството?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Докоснете, за да нулирате устройството"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Демонстрацията се стартира…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Устройството се нулира…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Да се нулира ли устройството?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Ще загубите всички промени и демонстрацията ще започне отново след <xliff:g id="TIMEOUT">%1$s</xliff:g> секунди…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Отказ"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Нулиране сега"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g>: Деактивирано"</string>      <string name="conference_call" msgid="3751093130790472426">"Конферентно обаждане"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Подсказка"</string> diff --git a/core/res/res/values-bn/strings.xml b/core/res/res/values-bn/strings.xml index 5e46d00d5df5..939a45ca4b7a 100644 --- a/core/res/res/values-bn/strings.xml +++ b/core/res/res/values-bn/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"বাইট"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<শিরোনামহীন>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ভয়েস সহায়তা"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"এখনই লক করুন"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"৯৯৯+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"নতুন বিজ্ঞপ্তি"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"লুকানো বিষয়বস্তু"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"নীতির কারণে সামগ্রী লুকানো আছে"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ভার্চুয়াল কীবোর্ড"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ফিজিক্যাল কীবোর্ড"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"নিরাপত্তা"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"আরও তথ্যের জন্য ট্যাপ করুন"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB ডিবাগিং সংযুক্ত হয়েছে"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ডিবাগিং অক্ষম করতে আলতো চাপুন৷"</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ডিবাগিং অক্ষম করতে বেছে নিন।"</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"ত্রুটির প্রতিবেদন নেওয়া হচ্ছে..."</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"ত্রুটির প্রতিবেদন শেয়ার করবেন?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"ত্রুটির প্রতিবেদন শেয়ার করা হচ্ছে..."</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"আনপিন করুন"</string>      <string name="app_info" msgid="6856026610594615344">"অ্যাপ্লিকেশানের তথ্য"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"ডিভাইস আবার সেট করবেন?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ডিভাইসটিকে আবার সেট করতে আলতো চাপুন"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ডেমো শুরু করা হচ্ছে…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"ডিভাইস আবার সেট করা হচ্ছে…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"ডিভাইস আবার সেট করবেন?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"আপনার করা যে কোনো পরিবর্তন মুছে যাবে এবং <xliff:g id="TIMEOUT">%1$s</xliff:g> সেকেন্ডের মধ্যে ডেমো আবার শুরু হবে…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"বাতিল করুন"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"এখনই আবার সেট করুন"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"অক্ষম করা <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"কনফারেন্স কল"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"টুলটিপ"</string> diff --git a/core/res/res/values-bs/strings.xml b/core/res/res/values-bs/strings.xml index 6bf8dd6ff2e8..1c1ec2565254 100644 --- a/core/res/res/values-bs/strings.xml +++ b/core/res/res/values-bs/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez naslova>"</string> @@ -233,7 +237,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Glasovna pomoć"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zaključaj odmah"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Novo obavještenje"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Sadržaj je sakriven"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Sadržaj skriven u skladu sa pravilima"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuelna tastatura"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fizička tastatura"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sigurnost"</string> @@ -1205,7 +1210,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Dodirnite za više informacija"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"Otklanjanje grešaka putem uređaja spojenog na USB je uspostavljeno"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Dodirnite da onemogućite otklanjanje grešaka putem uređaja spojenog na USB."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"Odaberite da onemogućite ispravljanje grešaka koristeći USB"</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Prijem izvještaja o grešci..."</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Podijeliti izvještaj o grešci?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Dijeljenje izvještaja o grešci..."</string> @@ -1422,7 +1428,7 @@      <string name="fingerprints" msgid="4516019619850763049">"Otisci prstiju:"</string>      <string name="sha256_fingerprint" msgid="4391271286477279263">"SHA-256 otisak prsta:"</string>      <string name="sha1_fingerprint" msgid="7930330235269404581">"SHA-1 otisak prsta:"</string> -    <string name="activity_chooser_view_see_all" msgid="4292569383976636200">"Prikaži sve"</string> +    <string name="activity_chooser_view_see_all" msgid="4292569383976636200">"Vidi sve"</string>      <string name="activity_chooser_view_dialog_title_default" msgid="4710013864974040615">"Odaberite aktivnost"</string>      <string name="share_action_provider_share_with" msgid="5247684435979149216">"Podijeliti sa"</string>      <string name="sending" msgid="3245653681008218030">"Slanje..."</string> @@ -1751,8 +1757,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Otkači"</string>      <string name="app_info" msgid="6856026610594615344">"Informacije o aplikaciji"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Želite li vratiti na početne postavke?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Dodirnite da vratite uređaj na početne postavke"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Pokretanje demonstracije…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Vraćanje uređaja na početne postavke…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Želite li vratiti na početne postavke?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Nestat će sve izmjene, a demonstracija će početi ponovo za <xliff:g id="TIMEOUT">%1$s</xliff:g> sek…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Otkaži"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Vrati sada na početne postavke"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Onemogućen <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferencijski poziv"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Savjet za alat"</string> diff --git a/core/res/res/values-ca/strings.xml b/core/res/res/values-ca/strings.xml index 98308193f985..0dbae8b3973c 100644 --- a/core/res/res/values-ca/strings.xml +++ b/core/res/res/values-ca/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sense títol>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Assist. per veu"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloqueja ara"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"+999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Notificació nova"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contingut amagat"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contingut amagat de conformitat amb la política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclat virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclat físic"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Seguretat"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"No fixis"</string>      <string name="app_info" msgid="6856026610594615344">"Informació de l\'aplicació"</string>      <string name="negative_duration" msgid="5688706061127375131">"-<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Vols restablir el dispositiu?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Toca per restablir el dispositiu"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"S\'està iniciant la demostració…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"S\'està restablint el dispositiu…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Vols restablir el dispositiu?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Perdràs els canvis, i la demostració tornarà a començar d\'aquí a <xliff:g id="TIMEOUT">%1$s</xliff:g> segons…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancel·la"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Restableix ara"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> s\'ha desactivat"</string>      <string name="conference_call" msgid="3751093130790472426">"Conferència"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Descripció emergent"</string> diff --git a/core/res/res/values-cs/strings.xml b/core/res/res/values-cs/strings.xml index 07254ff983b8..a3072dcf603f 100644 --- a/core/res/res/values-cs/strings.xml +++ b/core/res/res/values-cs/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez názvu>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Hlas. asistence"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zamknout"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nové oznámení"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Skrytý obsah"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Obsah skrytý zásadami"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuální klávesnice"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fyzická klávesnice"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Zabezpečení"</string> @@ -834,7 +839,7 @@      <string name="permlab_writeGeolocationPermissions" msgid="5962224158955273932">"změna oprávnění prohlížeče poskytovat informace o zeměpisné poloze"</string>      <string name="permdesc_writeGeolocationPermissions" msgid="1083743234522638747">"Umožňuje aplikaci upravit oprávnění funkce geolokace v prohlížeči. Škodlivé aplikace toho mohou využít k odeslání údajů o poloze na libovolné webové stránky."</string>      <string name="save_password_message" msgid="767344687139195790">"Chcete, aby si prohlížeč zapamatoval toto heslo?"</string> -    <string name="save_password_notnow" msgid="6389675316706699758">"Teď ne"</string> +    <string name="save_password_notnow" msgid="6389675316706699758">"Nyní ne"</string>      <string name="save_password_remember" msgid="6491879678996749466">"Zapamatovat"</string>      <string name="save_password_never" msgid="8274330296785855105">"Nikdy"</string>      <string name="open_permission_deny" msgid="7374036708316629800">"Nemáte povolení otevřít tuto stránku."</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Odepnout"</string>      <string name="app_info" msgid="6856026610594615344">"Informace o aplikaci"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Resetovat zařízení?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Zařízení resetujete klepnutím"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Spouštění ukázky…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetování zařízení…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Resetovat zařízení?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Ztratíte všechny provedené změny a ukázka se za <xliff:g id="TIMEOUT">%1$s</xliff:g> s spustí znovu…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Zrušit"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Resetovat"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> – zakázáno"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferenční hovor"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Popisek"</string> diff --git a/core/res/res/values-da/strings.xml b/core/res/res/values-da/strings.xml index 62d3e449a9d7..22d4c3af1df5 100644 --- a/core/res/res/values-da/strings.xml +++ b/core/res/res/values-da/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"b"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Mb"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"Tb"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Pb"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Uden titel>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Taleassistent"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lås nu"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Ny underretning"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Indholdet er skjult"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Indholdet er skjult af politikken"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuelt tastatur"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fysisk tastatur"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sikkerhed"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Frigør"</string>      <string name="app_info" msgid="6856026610594615344">"Oplysninger om appen"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Vil du nulstille enheden?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tryk for at nulstille enheden"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Starter demoen…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Nulstiller enheden…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Vil du nulstille enheden?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Du mister alle ændringer, og demoen starter igen om <xliff:g id="TIMEOUT">%1$s</xliff:g> sekunder…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Annuller"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Nulstil nu"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> – deaktiveret"</string>      <string name="conference_call" msgid="3751093130790472426">"Telefonmøde"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Værktøjstip"</string> diff --git a/core/res/res/values-de/strings.xml b/core/res/res/values-de/strings.xml index 2fc4540884a6..b22322430af4 100644 --- a/core/res/res/values-de/strings.xml +++ b/core/res/res/values-de/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Unbenannt>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Sprachassistent"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Jetzt sperren"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Neue Benachrichtigung"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Inhalte ausgeblendet"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Inhalte aufgrund der Richtlinien ausgeblendet"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Bildschirmtastatur"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Physische Tastatur"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sicherheit"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Markierung entfernen"</string>      <string name="app_info" msgid="6856026610594615344">"App-Informationen"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Gerät zurücksetzen?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Zum Zurücksetzen des Geräts tippen"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo wird gestartet…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Gerät wird zurückgesetzt…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Gerät zurücksetzen?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Alle Änderungen gehen verloren und Demo wird in <xliff:g id="TIMEOUT">%1$s</xliff:g> Sekunden neu gestartet…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Abbrechen"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Jetzt zurücksetzen"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> deaktiviert"</string>      <string name="conference_call" msgid="3751093130790472426">"Telefonkonferenz"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Kurzinfo"</string> diff --git a/core/res/res/values-el/strings.xml b/core/res/res/values-el/strings.xml index b64a26f8f33b..88440cb1dfbf 100644 --- a/core/res/res/values-el/strings.xml +++ b/core/res/res/values-el/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Χωρίς τίτλο>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Φων.υποβοηθ."</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Κλείδωμα τώρα"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Νέα ειδοποίηση"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Κρυφό περιεχόμενο"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Το περιεχόμενο είναι κρυφό βάσει πολιτικής"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Εικονικό πληκτρολόγιο"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Φυσικό πληκτρολόγιο"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Ασφάλεια"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Ξεκαρφίτσωμα"</string>      <string name="app_info" msgid="6856026610594615344">"Πληροφορίες εφαρμογής"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Να γίνει επαναφορά της συσκευής;"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Πατήστε για επαναφορά της συσκευής"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Έναρξη επίδειξης…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Επαναφορά συσκευής…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Να γίνει επαναφορά της συσκευής;"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Τυχόν αλλαγές που πραγματοποιήσατε θα χαθούν και η επίδειξη θα ξεκινήσει ξανά σε <xliff:g id="TIMEOUT">%1$s</xliff:g> δευτερόλεπτα…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Ακύρωση"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Επαναφορά τώρα"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Απενεργοποιημένο <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Κλήση συνδιάσκεψης"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Επεξήγηση εργαλείου"</string> diff --git a/core/res/res/values-en-rAU/strings.xml b/core/res/res/values-en-rAU/strings.xml index 47ca78cc9878..9b5528c32e1f 100644 --- a/core/res/res/values-en-rAU/strings.xml +++ b/core/res/res/values-en-rAU/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Untitled>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lock now"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"New notification"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contents hidden"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contents hidden by policy"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtual keyboard"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Physical keyboard"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Security"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Unpin"</string>      <string name="app_info" msgid="6856026610594615344">"App info"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Reset device?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tap to reset device"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Starting demo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetting device…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Reset device?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"You\'ll lose any changes and the demo will start again in <xliff:g id="TIMEOUT">%1$s</xliff:g> seconds…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancel"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Reset now"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Disabled <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conference Call"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Tooltip"</string> diff --git a/core/res/res/values-en-rGB/strings.xml b/core/res/res/values-en-rGB/strings.xml index 47ca78cc9878..9b5528c32e1f 100644 --- a/core/res/res/values-en-rGB/strings.xml +++ b/core/res/res/values-en-rGB/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Untitled>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lock now"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"New notification"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contents hidden"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contents hidden by policy"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtual keyboard"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Physical keyboard"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Security"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Unpin"</string>      <string name="app_info" msgid="6856026610594615344">"App info"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Reset device?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tap to reset device"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Starting demo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetting device…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Reset device?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"You\'ll lose any changes and the demo will start again in <xliff:g id="TIMEOUT">%1$s</xliff:g> seconds…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancel"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Reset now"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Disabled <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conference Call"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Tooltip"</string> diff --git a/core/res/res/values-en-rIN/strings.xml b/core/res/res/values-en-rIN/strings.xml index 47ca78cc9878..9b5528c32e1f 100644 --- a/core/res/res/values-en-rIN/strings.xml +++ b/core/res/res/values-en-rIN/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Untitled>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lock now"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"New notification"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contents hidden"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contents hidden by policy"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtual keyboard"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Physical keyboard"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Security"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Unpin"</string>      <string name="app_info" msgid="6856026610594615344">"App info"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Reset device?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tap to reset device"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Starting demo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetting device…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Reset device?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"You\'ll lose any changes and the demo will start again in <xliff:g id="TIMEOUT">%1$s</xliff:g> seconds…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancel"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Reset now"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Disabled <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conference Call"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Tooltip"</string> diff --git a/core/res/res/values-es-rUS/strings.xml b/core/res/res/values-es-rUS/strings.xml index 7463842de950..5bf170bc4bbc 100644 --- a/core/res/res/values-es-rUS/strings.xml +++ b/core/res/res/values-es-rUS/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sin título>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Asistente voz"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloquear ahora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Notificación nueva"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contenidos ocultos"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contenido oculto debido a la política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclado virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclado físico"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Seguridad"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"No fijar"</string>      <string name="app_info" msgid="6856026610594615344">"Información de apps"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"¿Deseas restablecer el dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Presiona para restablecer el dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Iniciando demostración…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Restableciendo dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"¿Deseas restablecer el dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Se perderán los cambios y la demostración volverá a iniciarse en <xliff:g id="TIMEOUT">%1$s</xliff:g> segundos…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancelar"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Restablecer ahora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Se inhabilitó <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conferencia"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Información sobre la herramienta"</string> diff --git a/core/res/res/values-es/strings.xml b/core/res/res/values-es/strings.xml index ef92fdcb72cd..6c5e7e566398 100644 --- a/core/res/res/values-es/strings.xml +++ b/core/res/res/values-es/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sin título>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Asistente voz"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloquear ahora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"> 999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Notificación nueva"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contenidos ocultos"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contenidos ocultos por política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclado virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclado físico"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Seguridad"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"No fijar"</string>      <string name="app_info" msgid="6856026610594615344">"Información de la aplicación"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"¿Restablecer el dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Toca para restablecer el dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Iniciando demostración…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Restableciendo dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"¿Restablecer el dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Se perderán todos los cambios y la demostración volverá a empezar en <xliff:g id="TIMEOUT">%1$s</xliff:g> segundos…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancelar"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Restablecer ahora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> inhabilitado"</string>      <string name="conference_call" msgid="3751093130790472426">"Conferencia"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Descripción emergente"</string> diff --git a/core/res/res/values-et/strings.xml b/core/res/res/values-et/strings.xml index 3d44d89f6609..b4d4cff5c4c4 100644 --- a/core/res/res/values-et/strings.xml +++ b/core/res/res/values-et/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Pealkirjata>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Häälabi"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lukusta kohe"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Uus märguanne"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Sisu on peidetud"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Sisu on eeskirjadega peidetud"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuaalne klaviatuur"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Füüsiline klaviatuur"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Turvalisus"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Vabasta"</string>      <string name="app_info" msgid="6856026610594615344">"Rakenduse teave"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Kas soovite seadme lähtestada?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Puudutage seadme lähtestamiseks"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo käivitamine …"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Seadme lähtestamine …"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Kas soovite seadme lähtestada?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Kõik muudatused lähevad kaotsi ja demo käivitub uuesti <xliff:g id="TIMEOUT">%1$s</xliff:g> sekundi möödudes …"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Tühista"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Lähtesta kohe"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Keelatud <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Konverentskõne"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Tööriistavihje"</string> diff --git a/core/res/res/values-eu/strings.xml b/core/res/res/values-eu/strings.xml index a9839d8b2f6b..b5234a8e3154 100644 --- a/core/res/res/values-eu/strings.xml +++ b/core/res/res/values-eu/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Izengabea>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ahots-laguntza"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Blokeatu"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Jakinarazpen berria"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Edukiak ezkutatuta daude"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Gidalerro batzuk ezkutatu dira, gidalerroei jarraiki"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teklatu birtuala"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teklatu fisikoa"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Segurtasuna"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Informazio gehiago lortzeko, sakatu hau"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB arazketa konektatuta"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Sakatu USB arazketa desgaitzeko."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"Hautatu USB arazketa desgaitzeko."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Akatsen txostena sortzen…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Akatsen txostena partekatu nahi duzu?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Akatsen txostena partekatzen…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Kendu aingura"</string>      <string name="app_info" msgid="6856026610594615344">"Aplikazioari buruzko informazioa"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Gailua berrezarri nahi duzu?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Gailua berrezartzeko, sakatu hau"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demoa abiarazten…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Gailua berrezartzen…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Gailua berrezarri nahi duzu?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Aldaketak galduko dituzu eta <xliff:g id="TIMEOUT">%1$s</xliff:g> segundo barru hasiko da berriro demoa…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Utzi"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Berrezarri"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> desgaituta dago"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferentzia-deia"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Aholkua"</string> diff --git a/core/res/res/values-fa/strings.xml b/core/res/res/values-fa/strings.xml index a2e8b83df00b..9aeae4aff957 100644 --- a/core/res/res/values-fa/strings.xml +++ b/core/res/res/values-fa/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"بایت"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"کیلوبایت"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"مگابایت"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"گیگابایت"</string> +    <string name="terabyteShort" msgid="231613018159186962">"ترابایت"</string>      <string name="petabyteShort" msgid="5637816680144990219">"پتابایت"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<بدون عنوان>"</string> @@ -229,8 +233,9 @@      <string name="global_action_assist" msgid="3892832961594295030">"دستیار"</string>      <string name="global_action_voice_assist" msgid="7751191495200504480">"دستیار صوتی"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"اکنون قفل شود"</string> -    <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"۹۹۹+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"اعلان جدید"</string> +    <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"بیشتر از 999"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"محتواها پنهان هستند"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"محتوا بر اساس خطمشی پنهان شده است"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"صفحهکلید مجازی"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"صفحهکلید فیزیکی"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"امنیت"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"برداشتن پین"</string>      <string name="app_info" msgid="6856026610594615344">"اطلاعات برنامه"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"دستگاه بازنشانی شود؟"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"برای بازنشانی دستگاه، ضربه بزنید"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"در حال شروع نسخه نمایشی…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"در حال بازنشانی دستگاه…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"دستگاه بازنشانی شود؟"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"همه تغییرات را از دست خواهید داد و نسخه نمایشی دوباره تا <xliff:g id="TIMEOUT">%1$s</xliff:g> ثانیه دیگر شروع میشود…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"لغو"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"بازنشانی در این لحظه"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> غیرفعال شد"</string>      <string name="conference_call" msgid="3751093130790472426">"تماس کنفرانسی"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"نکتهابزار"</string> diff --git a/core/res/res/values-fi/strings.xml b/core/res/res/values-fi/strings.xml index ac7da3d8753e..44c5efa6c50b 100644 --- a/core/res/res/values-fi/strings.xml +++ b/core/res/res/values-fi/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"t"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kt"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Mt"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"Gt"</string> +    <string name="terabyteShort" msgid="231613018159186962">"Tt"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Pt"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Nimetön>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ääniapuri"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lukitse nyt"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Uusi ilmoitus"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Sisältö piilotettu"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Sisältö on piilotettu käytännön perusteella."</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuaalinen näppäimistö"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fyysinen näppäimistö"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Tietosuoja"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Irrota"</string>      <string name="app_info" msgid="6856026610594615344">"Sovelluksen tiedot"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Palautetaanko laitteen tehdasasetukset?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Palauta laite napauttamalla"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Aloitetaan esittelyä…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Palautetaan asetuksia…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Palautetaanko laitteen tehdasasetukset?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Muutokset poistetaan ja esittely aloitetaan uudelleen <xliff:g id="TIMEOUT">%1$s</xliff:g> sekunnin kuluttua…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Peruuta"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Palauta nyt"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> ei ole käytössä."</string>      <string name="conference_call" msgid="3751093130790472426">"Puhelinneuvottelu"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Työkaluvinkki"</string> diff --git a/core/res/res/values-fr-rCA/strings.xml b/core/res/res/values-fr-rCA/strings.xml index dfb37fb80f39..c6881825bfe1 100644 --- a/core/res/res/values-fr-rCA/strings.xml +++ b/core/res/res/values-fr-rCA/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"o"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"ko"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Mo"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"Go"</string> +    <string name="terabyteShort" msgid="231613018159186962">"To"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Po"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sans_titre>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Assist. vocale"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Verrouiller"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nouvelle notification"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contenus masqués"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contenu masqué conformément aux politiques"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Clavier virtuel"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Clavier physique"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sécurité"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Annuler l\'épinglage"</string>      <string name="app_info" msgid="6856026610594615344">"Détails de l\'application"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Réinitialiser l\'appareil?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Touchez pour réinitialiser l\'appareil"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Démarrage de la démonstration en cours…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Réinitialisation de l\'appareil en cours…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Réinitialiser l\'appareil?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Vous perdrez vos modifications, et la démo recommencera dans <xliff:g id="TIMEOUT">%1$s</xliff:g> secondes…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Annuler"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Réinitialiser maintenant"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Désactivé : <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conférence téléphonique"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Infobulle"</string> diff --git a/core/res/res/values-fr/strings.xml b/core/res/res/values-fr/strings.xml index 31d4627f5ddf..a5c9b0f9c4fb 100644 --- a/core/res/res/values-fr/strings.xml +++ b/core/res/res/values-fr/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"octet(s)"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"Ko"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Mo"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"Go"</string> +    <string name="terabyteShort" msgid="231613018159186962">"To"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Po"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sans nom>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Assistance vocale"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Verrouiller"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nouvelle notification"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contenus masqués"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contenu masqué conformément aux règles"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Clavier virtuel"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Clavier physique"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sécurité"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Retirer"</string>      <string name="app_info" msgid="6856026610594615344">"Infos sur l\'appli"</string>      <string name="negative_duration" msgid="5688706061127375131">"− <xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Réinitialiser l\'appareil ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Appuyer pour réinitialiser l\'appareil"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Lancement de la démo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Réinitialisation…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Réinitialiser l\'appareil ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Vous perdrez vos modifications, et la démo recommencera dans <xliff:g id="TIMEOUT">%1$s</xliff:g> secondes…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Annuler"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Réinitialiser maintenant"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Élément \"<xliff:g id="LABEL">%1$s</xliff:g>\" désactivé"</string>      <string name="conference_call" msgid="3751093130790472426">"Conférence téléphonique"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Info-bulle"</string> diff --git a/core/res/res/values-gl/strings.xml b/core/res/res/values-gl/strings.xml index a8b4df902e35..8db169b0276e 100644 --- a/core/res/res/values-gl/strings.xml +++ b/core/res/res/values-gl/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sen título>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Asistente voz"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloquear agora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Notificación nova"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contido oculto"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Ocultouse contido por causa da política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclado virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclado físico"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Seguranza"</string> @@ -454,7 +459,7 @@      <string name="permlab_nfc" msgid="4423351274757876953">"controlar Near Field Communication"</string>      <string name="permdesc_nfc" msgid="7120611819401789907">"Permite á aplicación comunicarse con etiquetas, tarxetas e lectores Near Field Communication (NFC)."</string>      <string name="permlab_disableKeyguard" msgid="3598496301486439258">"desactivar o bloqueo da pantalla"</string> -    <string name="permdesc_disableKeyguard" msgid="6034203065077122992">"Permite á aplicación desactivar o bloqueo do teclado e calquera seguranza dos contrasinais asociada. Por exemplo, o teléfono desactiva o bloqueo do teclado ao recibir unha chamada telefónica entrante e, a continuación, volve activar o bloqueo do teclado unha vez finalizada a chamada."</string> +    <string name="permdesc_disableKeyguard" msgid="6034203065077122992">"Permite á aplicación desactivar o bloqueo do teclado e calquera seguridade dos contrasinais asociada. Por exemplo, o teléfono desactiva o bloqueo do teclado ao recibir unha chamada telefónica entrante e, a continuación, volve activar o bloqueo do teclado unha vez finalizada a chamada."</string>      <string name="permlab_manageFingerprint" msgid="5640858826254575638">"xestionar hardware de impresión dixital"</string>      <string name="permdesc_manageFingerprint" msgid="178208705828055464">"Permite que a aplicación invoque métodos para engadir e eliminar modelos de uso de impresión dixital."</string>      <string name="permlab_useFingerprint" msgid="3150478619915124905">"usar hardware de impresión dixital"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Toca para obter máis información"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"Depuración USB conectada"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Toca para desactivar a depuración de erros de USB."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"Selecciona a opción para desactivar a depuración de USB."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Creando informe de erros…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Queres compartir o informe de erros?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Compartindo informe de erros..."</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Soltar"</string>      <string name="app_info" msgid="6856026610594615344">"Información de aplicacións"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Queres restablecer o dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Toca aquí para restablecer o dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Iniciando demostración…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Restablecendo dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Queres restablecer o dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Perderás os cambios que fixeses e a demostración volverá comezar en <xliff:g id="TIMEOUT">%1$s</xliff:g> segundos…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancelar"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Restablecer agora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Desactivouse <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conferencia telefónica"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Cadro de información"</string> diff --git a/core/res/res/values-gu/strings.xml b/core/res/res/values-gu/strings.xml index 6ee7c65ac73c..8745c647816c 100644 --- a/core/res/res/values-gu/strings.xml +++ b/core/res/res/values-gu/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<અનામાંકિત>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"વૉઇસ સહાય"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"હવે લૉક કરો"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"નવું નોટિફિકેશન"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"સામગ્રીઓ છુપાવેલ છે"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"નીતિ દ્વારા સામગ્રી છુપાવાઈ"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"વર્ચ્યુઅલ કીબોર્ડ"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ભૌતિક કીબોર્ડ"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"સુરક્ષા"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"વધુ માહિતી માટે ટૅપ કરો"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB ડીબગિંગ કનેક્ટ થયું."</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ડીબગિંગ અક્ષમ કરવા માટે ટૅપ કરો."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ડિબગીંગને અક્ષમ કરવા માટે પસંદ કરો."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"બગ રિપોર્ટ લઈ રહ્યાં છે…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"બગ રિપોર્ટ શેર કરીએ?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"બગ રિપોર્ટ શેર કરી રહ્યાં છે…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"અનપિન કરો"</string>      <string name="app_info" msgid="6856026610594615344">"ઍપ્લિકેશન માહિતી"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"ઉપકરણ ફરીથી સેટ કરીએ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ઉપકરણને ફરીથી સેટ કરવા માટે ટૅપ કરો"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ડેમો પ્રારંભ કરી રહ્યાં છે…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"ઉપકરણ ફરીથી સેટ કરી રહ્યાં છે…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"ઉપકરણ ફરીથી સેટ કરીએ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"તમે કોઈપણ ફેરફારો ગુમાવશો અને ડેમો <xliff:g id="TIMEOUT">%1$s</xliff:g> સેકન્ડમાં ફરી શરૂ થશે…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"રદ કરો"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"હમણાં ફરીથી સેટ કરો"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> અક્ષમ કર્યું"</string>      <string name="conference_call" msgid="3751093130790472426">"કોન્ફરન્સ કૉલ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ટૂલટિપ"</string> diff --git a/core/res/res/values-hi/strings.xml b/core/res/res/values-hi/strings.xml index a8999aedf381..bffede48084f 100644 --- a/core/res/res/values-hi/strings.xml +++ b/core/res/res/values-hi/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<शीर्षक-रहित>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"वॉइस सहायक"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"अभी लॉक करें"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"नया नोटिफ़िकेशन"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"छिपी हुई सामग्री"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"सामग्री पॉलिसी के द्वारा छिपी हुई है"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"वर्चुअल कीबोर्ड"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"भौतिक कीबोर्ड"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"सुरक्षा"</string> @@ -511,10 +516,10 @@      <string name="permdesc_manageNetworkPolicy" msgid="7537586771559370668">"ऐप्स को नेटवर्क नीतियां प्रबंधित करने और ऐप्स-विशिष्ट नियमों को परिभाषित करने देता है."</string>      <string name="permlab_modifyNetworkAccounting" msgid="5088217309088729650">"नेटवर्क उपयोग हिसाब बदलें"</string>      <string name="permdesc_modifyNetworkAccounting" msgid="5443412866746198123">"ऐप्स  को यह संशोधित करने देता है कि ऐप्स की तुलना में नेटवर्क उपयोग का मूल्यांकन कैसे किया जाता है. सामान्य ऐप्स द्वारा उपयोग करने के लिए नहीं."</string> -    <string name="permlab_accessNotifications" msgid="7673416487873432268">"नोटिफ़िकेशन तक पहुंचें"</string> -    <string name="permdesc_accessNotifications" msgid="458457742683431387">"ऐप्स  को नोटिफ़िकेशन को प्राप्त करने, जांच करने, और साफ़ करने देता है, जिनमें अन्य ऐप्स  के द्वारा पोस्ट की गई सूचनाएं भी शामिल हैं."</string> -    <string name="permlab_bindNotificationListenerService" msgid="7057764742211656654">"नोटिफ़िकेशन श्रवणकर्ता सेवा से जुड़ें"</string> -    <string name="permdesc_bindNotificationListenerService" msgid="985697918576902986">"धारक को नोटिफ़िकेशन श्रवणकर्ता सेवा के शीर्ष स्तरीय इंटरफ़ेस से जुड़ने देती है. सामान्य ऐप्स  के लिए कभी भी आवश्यक नहीं होनी चाहिए."</string> +    <string name="permlab_accessNotifications" msgid="7673416487873432268">"नोटिफिकेशन तक पहुंचें"</string> +    <string name="permdesc_accessNotifications" msgid="458457742683431387">"ऐप्स  को नोटिफिकेशन को प्राप्त करने, जांच करने, और साफ़ करने देता है, जिनमें अन्य ऐप्स  के द्वारा पोस्ट की गई सूचनाएं भी शामिल हैं."</string> +    <string name="permlab_bindNotificationListenerService" msgid="7057764742211656654">"नोटिफिकेशन श्रवणकर्ता सेवा से जुड़ें"</string> +    <string name="permdesc_bindNotificationListenerService" msgid="985697918576902986">"धारक को नोटिफिकेशन श्रवणकर्ता सेवा के शीर्ष स्तरीय इंटरफ़ेस से जुड़ने देती है. सामान्य ऐप्स  के लिए कभी भी आवश्यक नहीं होनी चाहिए."</string>      <string name="permlab_bindConditionProviderService" msgid="1180107672332704641">"किसी स्थिति प्रदाता सेवा से आबद्ध हों"</string>      <string name="permdesc_bindConditionProviderService" msgid="1680513931165058425">"धारक को किसी स्थिति प्रदाता सेवा के शीर्ष-स्तर के इंटरफ़ेस से आबद्ध होने देती है. सामान्य ऐप्स के लिए कभी भी आवश्यक नहीं होना चाहिए."</string>      <string name="permlab_bindDreamService" msgid="4153646965978563462">"भावी सेवा से आबद्ध करें"</string> @@ -1067,13 +1072,13 @@      <string name="volume_call" msgid="3941680041282788711">"कॉल के दौरान वॉल्यूम"</string>      <string name="volume_bluetooth_call" msgid="2002891926351151534">"ब्लूटूथ कॉल के दौरान वॉल्यूम"</string>      <string name="volume_alarm" msgid="1985191616042689100">"अलार्म वॉल्यूम"</string> -    <string name="volume_notification" msgid="2422265656744276715">"नोटिफ़िकेशन वॉल्यूम"</string> +    <string name="volume_notification" msgid="2422265656744276715">"नोटिफिकेशन वॉल्यूम"</string>      <string name="volume_unknown" msgid="1400219669770445902">"आवाज़"</string>      <string name="volume_icon_description_bluetooth" msgid="6538894177255964340">"ब्लूटूथ वॉल्यूम"</string>      <string name="volume_icon_description_ringer" msgid="3326003847006162496">"रिंगटोन वॉल्यूम"</string>      <string name="volume_icon_description_incall" msgid="8890073218154543397">"कॉल वॉल्यूम"</string>      <string name="volume_icon_description_media" msgid="4217311719665194215">"मीडिया वॉल्यूम"</string> -    <string name="volume_icon_description_notification" msgid="7044986546477282274">"नोटिफ़िकेशन वॉल्यूम"</string> +    <string name="volume_icon_description_notification" msgid="7044986546477282274">"नोटिफिकेशन वॉल्यूम"</string>      <string name="ringtone_default" msgid="3789758980357696936">"डिफ़ॉल्ट रिंगटोन"</string>      <string name="ringtone_default_with_actual" msgid="1767304850491060581">"डिफ़ॉल्ट (<xliff:g id="ACTUAL_RINGTONE">%1$s</xliff:g>)"</string>      <string name="ringtone_silent" msgid="7937634392408977062">"कोई नहीं"</string> @@ -1272,7 +1277,7 @@      <string name="accessibility_binding_label" msgid="4148120742096474641">"सरल उपयोग"</string>      <string name="wallpaper_binding_label" msgid="1240087844304687662">"वॉलपेपर"</string>      <string name="chooser_wallpaper" msgid="7873476199295190279">"वॉलपेपर बदलें"</string> -    <string name="notification_listener_binding_label" msgid="2014162835481906429">"नोटिफ़िकेशन श्रवणकर्ता"</string> +    <string name="notification_listener_binding_label" msgid="2014162835481906429">"नोटिफिकेशन श्रवणकर्ता"</string>      <string name="vr_listener_binding_label" msgid="4316591939343607306">"VR श्रोता"</string>      <string name="condition_provider_service_binding_label" msgid="1321343352906524564">"स्थिति प्रदाता"</string>      <string name="notification_ranker_binding_label" msgid="774540592299064747">"नोटिफ़िकेशन रैंकर सेवा"</string> @@ -1686,7 +1691,7 @@        <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> चयनित</item>      </plurals>      <string name="default_notification_channel_label" msgid="5929663562028088222">"अवर्गीकृत"</string> -    <string name="importance_from_user" msgid="7318955817386549931">"आपने इन नोटिफ़िकेशन का महत्व सेट किया है."</string> +    <string name="importance_from_user" msgid="7318955817386549931">"आपने इन नोटिफिकेशन का महत्व सेट किया है."</string>      <string name="importance_from_person" msgid="9160133597262938296">"यह मौजूद व्यक्तियों के कारण महत्वपूर्ण है."</string>      <string name="user_creation_account_exists" msgid="1942606193570143289">"<xliff:g id="APP">%1$s</xliff:g> को <xliff:g id="ACCOUNT">%2$s</xliff:g> के द्वारा एक नया उपयोगकर्ता बनाने दें?"</string>      <string name="user_creation_adding" msgid="4482658054622099197">"<xliff:g id="APP">%1$s</xliff:g> को <xliff:g id="ACCOUNT">%2$s</xliff:g> के द्वारा एक नया उपयोगकर्ता बनाने दें (इस खाते वाला एक उपयोगकर्ता पहले से मौजूद है) ?"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"अनपिन करें"</string>      <string name="app_info" msgid="6856026610594615344">"ऐप की जानकारी"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"डिवाइस रीसेट करें?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"डिवाइस को रीसेट करने के लिए टैप करें"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"डेमो प्रारंभ हो रहा है…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"डिवाइस पुन: रीसेट कर रहा है…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"डिवाइस रीसेट करें?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"आपके सभी बदलाव खो जाएंगे और डेमो <xliff:g id="TIMEOUT">%1$s</xliff:g> सेकंड में फिर से शुरू हो जाएगा…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"अभी नहीं"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"अभी रीसेट करें"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"अक्षम <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"कॉन्फ़्रेंस कॉल"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"टूलटिप"</string> diff --git a/core/res/res/values-hr/strings.xml b/core/res/res/values-hr/strings.xml index 0b689fd00bd4..094af8d8110a 100644 --- a/core/res/res/values-hr/strings.xml +++ b/core/res/res/values-hr/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez naslova>"</string> @@ -233,7 +237,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Glasovna pomoć"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zaključaj sada"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nova obavijest"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Sadržaj je skriven"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Sadržaj je skriven prema pravilima"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtualna tipkovnica"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fizička tipkovnica"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sigurnost"</string> @@ -1746,8 +1751,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Otkvači"</string>      <string name="app_info" msgid="6856026610594615344">"Informacije o aplikaciji"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Želite li vratiti uređaj na zadano?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Dodirnite za vraćanje uređaja na zadano"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Pokretanje demo-načina..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Vraćanje uređaja na zadano…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Želite li vratiti uređaj na zadano?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Sve će se promjene izbrisati, a demonstracija će se ponovo pokrenuti za <xliff:g id="TIMEOUT">%1$s</xliff:g> s…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Odustani"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Vrati na zadano sada"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> – onemogućeno"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferencijski poziv"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Opis"</string> diff --git a/core/res/res/values-hu/strings.xml b/core/res/res/values-hu/strings.xml index 32235870e96d..29a79e54c890 100644 --- a/core/res/res/values-hu/strings.xml +++ b/core/res/res/values-hu/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Névtelen>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Hangsegéd"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zárolás most"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Új értesítés"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Tartalom elrejtve"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"A tartalom irányelv miatt elrejtve"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuális billentyűzet"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fizikai billentyűzet"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Biztonság"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Feloldás"</string>      <string name="app_info" msgid="6856026610594615344">"Alkalmazásinformáció"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Visszaállítja eszközét?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Koppintson az eszköz visszaállítása érdekében"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Bemutató indítása…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Eszköz visszaállítása…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Visszaállítja eszközét?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"A módosítások elvesznek, és a bemutató újra elindul <xliff:g id="TIMEOUT">%1$s</xliff:g> másodperc múlva…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Mégse"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Visszaállítás most"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"A(z) <xliff:g id="LABEL">%1$s</xliff:g> letiltva"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferenciahívás"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Elemleírás"</string> diff --git a/core/res/res/values-hy/strings.xml b/core/res/res/values-hy/strings.xml index e6c45c1451a9..7cf7507e9100 100644 --- a/core/res/res/values-hy/strings.xml +++ b/core/res/res/values-hy/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"Բ"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"կԲ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"ՄԲ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ԳԲ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"ՏԲ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Պբ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Անանուն>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ձայնային օգնութ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Կողպել հիմա"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Նոր ծանուցում"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Բովանդակությունը թաքցված է"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Բովանդակությունը թաքցվել է ըստ քաղաքականության"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Վիրտուալ ստեղնաշար"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Ֆիզիկական ստեղնաշար"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Անվտանգություն"</string> @@ -263,7 +268,7 @@      <string name="permgroupdesc_calendar" msgid="3889615280211184106">"օգտագործել օրացույցը"</string>      <string name="permgrouplab_sms" msgid="228308803364967808">"SMS"</string>      <string name="permgroupdesc_sms" msgid="4656988620100940350">"ուղարկել և դիտել SMS-ները"</string> -    <string name="permgrouplab_storage" msgid="1971118770546336966">"Տարածք"</string> +    <string name="permgrouplab_storage" msgid="1971118770546336966">"Հիշողություն"</string>      <string name="permgroupdesc_storage" msgid="637758554581589203">"օգտագործել լուսանկարները, մեդիա ֆայլերը և ձեր սարքում պահվող մյուս ֆայլերը"</string>      <string name="permgrouplab_microphone" msgid="171539900250043464">"Խոսափող"</string>      <string name="permgroupdesc_microphone" msgid="4988812113943554584">"ձայնագրել"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Ապամրացնել"</string>      <string name="app_info" msgid="6856026610594615344">"Հավելվածի տվյալներ"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Վերակայե՞լ սարքը:"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Հպեք՝ սարքը վերակայելու համար"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Ցուցադրական օգտատերը գործարկվում է…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Սարաքը վերակայվում է…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Վերակայե՞լ սարքը:"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Կատարված փոփոխությունները չեն պահվի, իսկ ցուցադրական նյութը կրկին կգործարկվի <xliff:g id="TIMEOUT">%1$s</xliff:g> վայրկյանից…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Չեղարկել"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Վերակայել հիմա"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Անջատած <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Կոնֆերանս զանգ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Հուշակ"</string> diff --git a/core/res/res/values-in/strings.xml b/core/res/res/values-in/strings.xml index 3f34b7bca948..81fe2471a59e 100644 --- a/core/res/res/values-in/strings.xml +++ b/core/res/res/values-in/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Tanpa judul>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Bantuan Suara"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Kunci sekarang"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Notifikasi baru"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Konten tersembunyi"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Konten disembunyikan menurut kebijakan"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Keyboard virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Keyboard fisik"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Keamanan"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Lepas pin"</string>      <string name="app_info" msgid="6856026610594615344">"Info aplikasi"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Setel ulang perangkat?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Ketuk untuk menyetel ulang perangkat"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Memulai demo..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Menyetel ulang perangkat..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Setel ulang perangkat?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Perubahan yang dibuat akan hilang dan demo akan dimulai lagi dalam <xliff:g id="TIMEOUT">%1$s</xliff:g> detik…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Batal"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Setel ulang sekarang"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> dinonaktifkan"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferensi Telepon"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Keterangan alat"</string> diff --git a/core/res/res/values-is/strings.xml b/core/res/res/values-is/strings.xml index 15cd73d3fa72..2ce334e187d9 100644 --- a/core/res/res/values-is/strings.xml +++ b/core/res/res/values-is/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Ónefnt>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Raddaðstoð"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Læsa núna"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Ný tilkynning"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Innihald falið"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Efni falið með reglu"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Sýndarlyklaborð"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Vélbúnaðarlyklaborð"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Öryggi"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Ýttu til að fá frekari upplýsingar"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB-villuleit tengd"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Ýttu til að slökkva á USB-villuleit."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"Veldu til að gera USB-villuleit óvirka."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Tekur við villutilkynningu…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Deila villutilkynningu?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Deilir villutilkynningu..."</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Losa"</string>      <string name="app_info" msgid="6856026610594615344">"Forritsupplýsingar"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Endurstilla tækið?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Ýttu til að endurstilla tækið"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Byrjar kynningu…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Endurstillir tækið…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Endurstilla tækið?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Þú glatar öllum breytingum og kynningin byrjar aftur eftir <xliff:g id="TIMEOUT">%1$s</xliff:g> sekúndur…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Hætta við"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Endurstilla núna"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Slökkt <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Símafundur"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Ábending"</string> diff --git a/core/res/res/values-it/strings.xml b/core/res/res/values-it/strings.xml index 0313df848a83..29ebdd8b4f3b 100644 --- a/core/res/res/values-it/strings.xml +++ b/core/res/res/values-it/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Senza nome>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Blocca ora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nuova notifica"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Contenuti nascosti"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Contenuti nascosti in base alle norme"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Tastiera virtuale"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Tastiera fisica"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sicurezza"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Sblocca"</string>      <string name="app_info" msgid="6856026610594615344">"Informazioni app"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Ripristinare il dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tocca per ripristinare il dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Avvio della demo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Ripristino del dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Ripristinare il dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Perderai tutte le modifiche e la demo verrà riavviata tra <xliff:g id="TIMEOUT">%1$s</xliff:g> secondi…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Annulla"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Ripristina ora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Widget <xliff:g id="LABEL">%1$s</xliff:g> disattivato"</string>      <string name="conference_call" msgid="3751093130790472426">"Audioconferenza"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Descrizione comando"</string> diff --git a/core/res/res/values-iw/strings.xml b/core/res/res/values-iw/strings.xml index 1cf1bde58809..426442c0734c 100644 --- a/core/res/res/values-iw/strings.xml +++ b/core/res/res/values-iw/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">">ללא כותרת<"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"נעל עכשיו"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"הודעה חדשה"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"התוכן מוסתר"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"התוכן מוסתר על ידי המדיניות"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"מקלדת וירטואלית"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"מקלדת פיזית"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"אבטחה"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"בטל הצמדה"</string>      <string name="app_info" msgid="6856026610594615344">"פרטי אפליקציה"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"האם לאפס את המכשיר?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"הקש כדי לאפס את המכשיר"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"מתחיל בהדגמה…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"מאפס את המכשיר…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"האם לאפס את המכשיר?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"תאבד את כל השינויים וההדגמה תתחיל שוב בעוד <xliff:g id="TIMEOUT">%1$s</xliff:g> שניות…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ביטול"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"אפס עכשיו"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> הושבת"</string>      <string name="conference_call" msgid="3751093130790472426">"שיחת ועידה"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"הסבר קצר"</string> diff --git a/core/res/res/values-ja/strings.xml b/core/res/res/values-ja/strings.xml index e483c1fdc594..0dcc4e013a1c 100644 --- a/core/res/res/values-ja/strings.xml +++ b/core/res/res/values-ja/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g><xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<新規>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"音声アシスト"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"今すぐロック"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"新しい通知"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"コンテンツが非表示"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"ポリシーによって非表示になっているコンテンツ"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"仮想キーボード"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"物理キーボード"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"セキュリティ"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"固定を解除"</string>      <string name="app_info" msgid="6856026610594615344">"アプリ情報"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"端末をリセットしますか?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"端末をリセットするにはタップしてください"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"デモを開始しています…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"端末をリセットしています…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"端末をリセットしますか?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"変更が失われ、<xliff:g id="TIMEOUT">%1$s</xliff:g> 秒後にデモがもう一度開始されます…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"キャンセル"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"今すぐリセット"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"停止済みの「<xliff:g id="LABEL">%1$s</xliff:g>」"</string>      <string name="conference_call" msgid="3751093130790472426">"グループ通話"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ツールチップ"</string> diff --git a/core/res/res/values-ka/strings.xml b/core/res/res/values-ka/strings.xml index 26a3811d9c75..0ff01ab2100f 100644 --- a/core/res/res/values-ka/strings.xml +++ b/core/res/res/values-ka/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"ბაიტი"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"კბაიტი"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"მბაიტი"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"გბაიტი"</string> +    <string name="terabyteShort" msgid="231613018159186962">"ტბაიტი"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"უსათაურო"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ხმოვანი ასისტ."</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ახლა ჩაკეტვა"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"ახალი შეტყობინება"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"შიგთავსი დამალულია"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"შიგთავსი დამალულია წესების შესაბამისად"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ვირტუალური კლავიატურა"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ფიზიკური კლავიატურა"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"უსაფრთხოება"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ჩამაგრების მოხსნა"</string>      <string name="app_info" msgid="6856026610594615344">"აპის შესახებ"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"გსურთ მოწყობილობის გადაყენება?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"შეეხეთ მოწყობილობის გადასაყენებლად"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"მიმდინარეობს დემონსტრაციის დაწყება…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"მიმდინარეობს მოწყობილობის გადაყენება…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"გსურთ მოწყობილობის გადაყენება?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"შეტანილი ცვლილებები დაიკარგება, ხოლო დემონსტრაცია ხელახლა <xliff:g id="TIMEOUT">%1$s</xliff:g> წამში დაიწყება…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"გაუქმება"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ახლავე გადაყენება"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"გათიშული <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"საკონფერენციო ზარი"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"მინიშნება"</string> diff --git a/core/res/res/values-kk/strings.xml b/core/res/res/values-kk/strings.xml index 5c9322a69b74..08e1e912391b 100644 --- a/core/res/res/values-kk/strings.xml +++ b/core/res/res/values-kk/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"Б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"КБ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MБ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ГБ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TБ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"ПБ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Атаусыз>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Дауыс көмекшісі"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Қазір бекіту"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Жаңа хабарландыру"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Мазмұн жасырылған"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Мазмұн саясатқа сай жасырылған"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуалды пернетақта"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Қатты пернетақта"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Қауіпсіздік"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Қосымша ақпарат алу үшін түртіңіз"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB жөндеу қосылған"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB түзетуін өшіру үшін түртіңіз."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB түзетуін өшіру үшін таңдаңыз."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Қате туралы есеп алынуда…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Қате туралы есепті бөлісу керек пе?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Қате туралы есеп бөлісілуде…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Босату"</string>      <string name="app_info" msgid="6856026610594615344">"Қолданба ақпараты"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Құрылғыны бастапқы күйге қайтару керек пе?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Құрылғыны бастапқы күйге келтіру үшін түртіңіз"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Демо нұсқасы іске қосылуда..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Құрылғы бастапқы күйге қайтарылуда..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Құрылғыны басқапқы күйге қайтару керек пе?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Барлық өзгеріс жоғалады және демо нұсқасы <xliff:g id="TIMEOUT">%1$s</xliff:g> секундтан кейін қайта қосылады…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Бас тарту"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Қазір бастапқы күйге қайтару"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> өшірулі"</string>      <string name="conference_call" msgid="3751093130790472426">"Конференциялық қоңырау"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Қалқыма сөзкөмек"</string> diff --git a/core/res/res/values-km/strings.xml b/core/res/res/values-km/strings.xml index c0e1f50d4ec3..f841721562d4 100644 --- a/core/res/res/values-km/strings.xml +++ b/core/res/res/values-km/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"មេកាបៃ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ជីកាបៃ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"តេរ៉ាបៃ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<គ្មានចំណងជើង>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ជំនួយសម្លេង"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ចាក់សោឥឡូវនេះ"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"ការជូនដំណឹងថ្មី"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"បានលាក់មាតិកា"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"មាតិកាត្រូវបានលាក់ដោយផ្អែកលើគោលការណ៍"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ក្ដារចុចនិម្មិត"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ក្ដារចុចរូបវន្ត"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"សុវត្ថិភាព"</string> @@ -1715,8 +1720,14 @@      <string name="unpin_target" msgid="3556545602439143442">"មិនខ្ទាស់"</string>      <string name="app_info" msgid="6856026610594615344">"ព័ត៌មានកម្មវិធី"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"កំណត់ឧបករណ៍ឡើងវិញឬ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ប៉ះដើម្បីកំណត់ឧបករណ៍ឡើងវិញ"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"កំពុងចាប់ផ្តើមការបង្ហាញសាកល្បង…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"កំពុងកំណត់ឧបករណ៍ឡើងវិញ…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"កំណត់ឧបករណ៍ឡើងវិញឬ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"អ្នកនឹងបាត់បង់ការផ្លាស់ប្តូរណាមួយ ហើយការបង្ហាញសាកល្បងនឹងចាប់ផ្តើមម្តងទៀតក្នុងរយៈពេល <xliff:g id="TIMEOUT">%1$s</xliff:g> វិនាទីទៀត…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"បោះបង់"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"កំណត់ឡើងវិញឥឡូវនេះ"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> ដែលបានបិទដំណើរការ"</string>      <string name="conference_call" msgid="3751093130790472426">"ការហៅជាក្រុម"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ផ្ទាំងលោត"</string> diff --git a/core/res/res/values-kn/strings.xml b/core/res/res/values-kn/strings.xml index 8bde8d96741a..7527362f7aad 100644 --- a/core/res/res/values-kn/strings.xml +++ b/core/res/res/values-kn/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ಶೀರ್ಷಿಕೆ ರಹಿತ>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ಧ್ವನಿ ಸಹಾಯಕ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ಈಗ ಲಾಕ್ ಮಾಡಿ"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"ಹೊಸ ಅಧಿಸೂಚನೆ"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"ವಿಷಯಗಳನ್ನು ಮರೆಮಾಡಲಾಗಿದೆ"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"ನೀತಿಯಿಂದ ಮರೆಮಾಡಲಾಗಿರುವ ವಿಷಯಗಳು"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ವರ್ಚುಯಲ್ ಕೀಬೋರ್ಡ್"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ಭೌತಿಕ ಕೀಬೋರ್ಡ್"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"ಭದ್ರತೆ"</string> @@ -1089,7 +1094,7 @@        <item quantity="one">ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ</item>        <item quantity="other">ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ</item>      </plurals> -    <string name="wifi_available_title" msgid="3817100557900599505">"ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸಂಪರ್ಕಿಸಿ"</string> +    <string name="wifi_available_title" msgid="3817100557900599505">"ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸಂಪರ್ಕಪಡಿಸಿ"</string>      <string name="wifi_available_title_connecting" msgid="1557292688310330032">"ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸಂಪರ್ಕಪಡಿಸಲಾಗುತ್ತಿದೆ"</string>      <string name="wifi_available_title_connected" msgid="7542672851522241548">"ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸಂಪರ್ಕಪಡಿಸಲಾಗಿದೆ"</string>      <string name="wifi_available_title_failed_to_connect" msgid="6861772233582618132">"ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಟ್ಯಾಪ್ ಮಾಡಿ"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB ಡೀಬಗಿಂಗ್ ಸಂಪರ್ಕ"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ಡೀಬಗ್ ಮಾಡುವಿಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ಡೀಬಗ್ ಮಾಡುವಿಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಆಯ್ಕೆ ಮಾಡಿ."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"ದೋಷದ ವರದಿಯನ್ನು ತೆಗೆದುಕೊಳ್ಳಲಾಗುತ್ತಿದೆ…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"ಬಗ್ ವರದಿಯನ್ನು ಹಂಚುವುದೇ?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"ಬಗ್ ವರದಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳಲಾಗುತ್ತಿದೆ…"</string> @@ -1413,7 +1419,7 @@      <string name="bluetooth_a2dp_audio_route_name" msgid="8575624030406771015">"ಬ್ಲೂಟೂತ್ ಆಡಿಯೊ"</string>      <string name="wireless_display_route_description" msgid="9070346425023979651">"ವಯರ್ಲೆಸ್ ಪ್ರದರ್ಶನ"</string>      <string name="media_route_button_content_description" msgid="591703006349356016">"ಪಾತ್ರ"</string> -    <string name="media_route_chooser_title" msgid="1751618554539087622">"ಸಾಧನಕ್ಕೆ ಸಂಪರ್ಕಿಸಿ"</string> +    <string name="media_route_chooser_title" msgid="1751618554539087622">"ಸಾಧನಕ್ಕೆ ಸಂಪರ್ಕಪಡಿಸಿ"</string>      <string name="media_route_chooser_title_for_remote_display" msgid="3395541745872017583">"ಸಾಧನಕ್ಕೆ ಬಿತ್ತರಿಸುವ ಪರದೆ"</string>      <string name="media_route_chooser_searching" msgid="4776236202610828706">"ಸಾಧನಗಳನ್ನು ಹುಡುಕಲಾಗುತ್ತಿದೆ…"</string>      <string name="media_route_chooser_extended_settings" msgid="87015534236701604">"ಸೆಟ್ಟಿಂಗ್ಗಳು"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ಅನ್ಪಿನ್"</string>      <string name="app_info" msgid="6856026610594615344">"ಅಪ್ಲಿಕೇಶನ್ ಮಾಹಿತಿ"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"ಸಾಧನವನ್ನು ಮರುಹೊಂದಿಸುವುದೇ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ಸಾಧನ ಮರುಹೊಂದಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ಡೆಮೋ ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"ಸಾಧನ ಮರುಹೊಂದಿಸಲಾಗುತ್ತಿದೆ..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"ಸಾಧನವನ್ನು ಮರುಹೊಂದಿಸುವುದೇ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ನೀವು ಯಾವುದೇ ಬದಲಾವಣೆಗಳನ್ನು ಕಳೆದುಕೊಳ್ಳುತ್ತೀರಿ ಮತ್ತು <xliff:g id="TIMEOUT">%1$s</xliff:g> ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಡೆಮೋ ಮತ್ತೆ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ..."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ರದ್ದುಮಾಡಿ"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ಈಗಲೇ ಮರುಹೊಂದಿಸು"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"</string>      <string name="conference_call" msgid="3751093130790472426">"ಕಾನ್ಫರೆನ್ಸ್ ಕರೆ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ಟೂಲ್ಟಿಪ್"</string> diff --git a/core/res/res/values-ko/strings.xml b/core/res/res/values-ko/strings.xml index 99aa4d9a9100..bab45194f54f 100644 --- a/core/res/res/values-ko/strings.xml +++ b/core/res/res/values-ko/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g><xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<제목 없음>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"음성 지원"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"지금 잠그기"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"새 알림"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"숨겨진 콘텐츠"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"콘텐츠가 정책에 의해 숨겨졌습니다."</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"가상 키보드"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"물리적 키보드"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"보안"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"고정 해제"</string>      <string name="app_info" msgid="6856026610594615344">"앱 정보"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"기기를 초기화하시겠습니까?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"기기를 초기화하려면 탭하세요."</string>      <string name="demo_starting_message" msgid="5268556852031489931">"데모 시작 중..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"기기 초기화 중..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"기기를 초기화하시겠습니까?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"변경사항이 사라지며 데모가 <xliff:g id="TIMEOUT">%1$s</xliff:g>초 후에 시작됩니다."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"취소"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"지금 초기화"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> 사용 중지됨"</string>      <string name="conference_call" msgid="3751093130790472426">"다자간 통화"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"도움말"</string> diff --git a/core/res/res/values-ky/strings.xml b/core/res/res/values-ky/strings.xml index 62a82cd88db0..284253760f97 100644 --- a/core/res/res/values-ky/strings.xml +++ b/core/res/res/values-ky/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"Б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"Кб"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Мб"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"Гб"</string> +    <string name="terabyteShort" msgid="231613018159186962">"ТБ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"ПБ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Баш аты жок>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Үн жардамчысы"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Азыр кулпулоо"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Жаңы эскертме"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Мазмундар жашырылган"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Тийиштүү саясат боюнча жашырылган мазмундар"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуалдык баскычтоп"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Аппараттык баскычтоп"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Коопсуздук"</string> @@ -1714,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Кадоодон алып коюу"</string>      <string name="app_info" msgid="6856026610594615344">"Колдонмо тууралуу"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Түзмөк баштапкы абалга келтирилсинби?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Түзмөктү баштапкы абалга келтирүү үчүн таптап коюңуз"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Демо режим башталууда…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Түзмөк баштапкы абалга келтирилүүдө…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Түзмөк баштапкы абалга келтирилсинби?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Бардык өзгөртүүлөр жоголуп, демо режим <xliff:g id="TIMEOUT">%1$s</xliff:g> секунддан кийин кайра башталат…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Жокко чыгаруу"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Баштапкы абалга келтирүү"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> өчүрүлдү"</string>      <string name="conference_call" msgid="3751093130790472426">"Конференц чалуу"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Калкып чыгуучу кеңеш"</string> diff --git a/core/res/res/values-lo/strings.xml b/core/res/res/values-lo/strings.xml index 86e55e4d63d5..52d5b0b4b8cf 100644 --- a/core/res/res/values-lo/strings.xml +++ b/core/res/res/values-lo/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ບໍ່ມີຊື່>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ຊ່ວຍເຫຼືອທາງສຽງ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ລັອກດຽວນີ້"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"ການແຈ້ງເຕືອນໃໝ່"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"ເນື້ອຫາຖືກເຊື່ອງໄວ້"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"ເນື້ອຫາຖືກເຊື່ອງຕາມນະໂຍບາຍ"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ແປ້ນພິມສະເໝືອນ"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ແປ້ນພິມພາຍນອກ"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"ຄວາມປອດໄພ"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ຖອນປັກໝຸດ"</string>      <string name="app_info" msgid="6856026610594615344">"ຂໍ້ມູນແອັບ"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"ຣີເຊັດອຸປະກອນບໍ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ແຕະເພື່ອຣີເຊັດອຸປະກອນ"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ກຳລັງເລີ່ມເດໂມ…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"ກຳລັງຣີເຊັດອຸປະກອນ…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"ຣີເຊັດອຸປະກອນບໍ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ທ່ານຈະສູນເສຍການປ່ຽນແປງ ແລະ ເດໂມຈະເລີ່ມອີກຄັ້ງໃນອີກ <xliff:g id="TIMEOUT">%1$s</xliff:g> ວິນາທີ…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ຍົກເລີກ"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ຣີເຊັດດຽວນີ້"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"ປິດການນຳໃຊ້ <xliff:g id="LABEL">%1$s</xliff:g> ແລ້ວ"</string>      <string name="conference_call" msgid="3751093130790472426">"ການປະຊຸມສາຍ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ຄຳອະທິບາຍເຄື່ອງມື"</string> diff --git a/core/res/res/values-lt/strings.xml b/core/res/res/values-lt/strings.xml index fc13820df5c7..a31dcc7e831e 100644 --- a/core/res/res/values-lt/strings.xml +++ b/core/res/res/values-lt/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Be pavadinimo>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Užrakinti dabar"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Naujas pranešimas"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Turinys paslėptas"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Turinys paslėptas vadovaujantis politika"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtualioji klaviatūra"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fizinė klaviatūra"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sauga"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Atsegti"</string>      <string name="app_info" msgid="6856026610594615344">"Programos informacija"</string>      <string name="negative_duration" msgid="5688706061127375131">"–<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Iš naujo nustatyti įrenginį?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Palieskite, kad iš naujo nustatytumėte įrenginį"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Paleidžiama demonstracinė versija…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Įrenginys nustatomas iš naujo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Iš naujo nustatyti įrenginį?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Prarasite visus pakeitimus, o demonstracinė versija bus paleista iš naujo po <xliff:g id="TIMEOUT">%1$s</xliff:g> sek…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Atšaukti"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Nustatyti iš naujo dabar"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Išj. valdiklis „<xliff:g id="LABEL">%1$s</xliff:g>“"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferencinis skambutis"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Patarimas"</string> diff --git a/core/res/res/values-lv/strings.xml b/core/res/res/values-lv/strings.xml index 2edce3baf03e..8cc3d909cb62 100644 --- a/core/res/res/values-lv/strings.xml +++ b/core/res/res/values-lv/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez nosaukuma>"</string> @@ -233,7 +237,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Balss palīgs"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloķēt tūlīt"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"Pārsniedz"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Jauns paziņojums"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Saturs paslēpts"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Saskaņā ar politiku saturs ir paslēpts."</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuālā tastatūra"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fiziskā tastatūra"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Drošība"</string> @@ -1746,8 +1751,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Atspraust"</string>      <string name="app_info" msgid="6856026610594615344">"Lietotnes informācija"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Vai atiestatīt ierīci?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Pieskarieties, lai atiestatītu ierīci"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Notiek demonstrācijas palaišana..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Notiek ierīces atiestatīšana..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Vai atiestatīt ierīci?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Pēc <xliff:g id="TIMEOUT">%1$s</xliff:g> sekundēm zaudēsiet visas izmaiņas un tiks atkārtoti palaista demonstrācija..."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Atcelt"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Atiestatīt tūlīt"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> atspējots"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferences zvans"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Rīka padoms"</string> diff --git a/core/res/res/values-mk/strings.xml b/core/res/res/values-mk/strings.xml index a8a103c99dd4..efac04215fe9 100644 --- a/core/res/res/values-mk/strings.xml +++ b/core/res/res/values-mk/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"Б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"КБ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"МБ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ГБ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"ТБ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"ПБ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Без наслов>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Гласовна помош"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Заклучи сега"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Ново известување"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Содржините се скриени"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Содржините се скриени поради политиката"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуелна тастатура"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Физичка тастатура"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Безбедност"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Допрете за повеќе информации"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"Поврзано е отстранување грешки преку USB"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Допрете за да се оневозможи отстранувањето грешки преку USB."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"Изберете за да се оневозможи отстранување грешки на USB."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Се зема извештајот за грешки…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Да се сподели извештајот за грешки?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Се споделува извештај за грешки…"</string> @@ -1715,8 +1721,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Откачете"</string>      <string name="app_info" msgid="6856026610594615344">"Информации за апликација"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Да се ресетира уредот?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Допрете за да го ресетирате уредот"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Се вклучува демонстрацијата…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Се ресетира уредот…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Да се ресетира уредот?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Ќе ги изгубите измените и демонстрацијата ќе започне повторно по <xliff:g id="TIMEOUT">%1$s</xliff:g> секунди…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Откажи"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Ресетирај сега"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Оневозможен <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Конференциски повик"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Совет за алатка"</string> diff --git a/core/res/res/values-ml/strings.xml b/core/res/res/values-ml/strings.xml index 535fa1ef94ad..4f8d39dd6c3f 100644 --- a/core/res/res/values-ml/strings.xml +++ b/core/res/res/values-ml/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ശീർഷകമില്ലാത്ത>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"വോയ്സ് സഹായം"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ഇപ്പോൾ ലോക്കുചെയ്യുക"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"പുതിയ അറിയിപ്പ്"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"കോൺടാക്റ്റുകൾ മറച്ചു"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"നയം അനുസരിച്ച് ഉള്ളടക്കം മറച്ചിരിക്കുന്നു"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"വെർച്വൽ കീബോർഡ്"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"കീബോർഡ്"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"സുരക്ഷ"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"കൂടുതൽ വിവരങ്ങൾക്ക് ടാപ്പുചെയ്യുക"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB ഡീബഗ്ഗിംഗ് കണക്റ്റുചെയ്തു"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ഡീബഗ്ഗിംഗ് പ്രവർത്തനരഹിതമാക്കാൻ ടാപ്പുചെയ്യുക."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ഡീബഗ്ഗുചെയ്യൽ പ്രവർത്തനരഹിതമാക്കാൻ തിരഞ്ഞെടുക്കുക."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"ബഗ് റിപ്പോർട്ട് എടുക്കുന്നു…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"ബഗ് റിപ്പോർട്ട് പങ്കിടണോ?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"ബഗ് റിപ്പോർട്ട് പങ്കിടുന്നു…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"അൺപിൻ ചെയ്യുക"</string>      <string name="app_info" msgid="6856026610594615344">"ആപ്പ് വിവരം"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"ഉപകരണം പുനക്രമീകരിക്കണോ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ഉപകരണം പുനക്രമീകരിക്കാൻ ടാപ്പുചെയ്യുക"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ഡെമോ ആരംഭിക്കുന്നു…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"ഉപകരണം പുനക്രമീകരിക്കുന്നു…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"ഉപകരണം പുനക്രമീകരിക്കണോ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"മാറ്റങ്ങളെല്ലാം നിങ്ങൾക്ക് നഷ്ടപ്പെടും, <xliff:g id="TIMEOUT">%1$s</xliff:g> സെക്കൻഡിൽ ഡെമോ വീണ്ടും തുടങ്ങും…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"റദ്ദാക്കുക"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ഇപ്പോൾ പുനക്രമീകരിക്കുക"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> പ്രവർത്തനരഹിതമാക്കി"</string>      <string name="conference_call" msgid="3751093130790472426">"കോൺഫറൻസ് കോൾ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ടൂൾ ടിപ്പ്"</string> diff --git a/core/res/res/values-mn/strings.xml b/core/res/res/values-mn/strings.xml index c5ff0121da8a..65b6b5b0a869 100644 --- a/core/res/res/values-mn/strings.xml +++ b/core/res/res/values-mn/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"килобайт"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"МБ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ГБ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TБ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"ПБ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Гарчиггүй>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Дуут туслах"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Одоо түгжих"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Шинэ мэдэгдэл"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Контентыг нуусан"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Удирдамжийн дагуу нуусан агуулга"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуал гар"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Бодит гар"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Аюулгүй байдал"</string> @@ -1711,8 +1716,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Unpin"</string>      <string name="app_info" msgid="6856026610594615344">"Апп-н мэдээлэл"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Төхөөрөмжийг шинэчлэх үү?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Төхөөрөмжийг шинэчлэхийн тулд товшино уу"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Жишээг эхлүүлж байна…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Төхөөрөмжийг шинэчилж байна…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Төхөөрөмжийг шинэчлэх үү?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Таны хийсэн өөрчлөлтийг хадгалахгүй бөгөөд жишээ <xliff:g id="TIMEOUT">%1$s</xliff:g> секундын дотор дахин эхлэх болно..."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Цуцлах"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Одоо шинэчлэх"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g>-г цуцалсан"</string>      <string name="conference_call" msgid="3751093130790472426">"Хурлын дуудлага"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Зөвлөмж"</string> diff --git a/core/res/res/values-mr/strings.xml b/core/res/res/values-mr/strings.xml index 5c6622fd9cdd..ea3705fae574 100644 --- a/core/res/res/values-mr/strings.xml +++ b/core/res/res/values-mr/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<अशीर्षकांकित>"</string> @@ -187,7 +191,7 @@      <string name="silent_mode_vibrate" msgid="7072043388581551395">"रिंगर कंपन"</string>      <string name="silent_mode_ring" msgid="8592241816194074353">"रिंगर चालू"</string>      <string name="reboot_to_update_title" msgid="6212636802536823850">"Android सिस्टीम अद्यतन"</string> -    <string name="reboot_to_update_prepare" msgid="6305853831955310890">"अपडेट करण्याची तयारी करत आहे…"</string> +    <string name="reboot_to_update_prepare" msgid="6305853831955310890">"अद्यतनित करण्यासाठी तयार करीत आहे…"</string>      <string name="reboot_to_update_package" msgid="3871302324500927291">"अद्यतन पॅकेजची प्रक्रिया करीत आहे…"</string>      <string name="reboot_to_update_reboot" msgid="6428441000951565185">"रीस्टार्ट करीत आहे..."</string>      <string name="reboot_to_reset_title" msgid="4142355915340627490">"फॅक्टरी डेटा रीसेट"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"व्हॉइस सहाय्य"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"आता लॉक करा"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"नवीन सूचना"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"लपविलेली सामग्री"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"धोरणाद्वारे सामग्री लपविली"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"व्हर्च्युअल कीबोर्ड"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"वास्तविक कीबोर्ड"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"सुरक्षितता"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"आणखी माहितीसाठी येथे टॅप करा"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB डीबग करणे कनेक्ट केले"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB डीबग करणे अक्षम करण्यासाठी टॅप करा."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB डीबगिंग बंद करण्यासाठी निवडा."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"दोष अहवाल घेत आहे..."</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"बग अहवाल सामायिक करायचा?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"दोष अहवाल सामायिक करीत आहे..."</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"अनपिन करा"</string>      <string name="app_info" msgid="6856026610594615344">"अॅप माहिती"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"डिव्हाइस रीसेट करायचे?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"डिव्हाइस रीसेट करण्यासाठी टॅप करा"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"डेमो प्रारंभ करत आहे..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"डिव्हाइस रीसेट करत आहे..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"डिव्हाइस रीसेट करायचे?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"आपण कोणतेही बदल गमवाल आणि डेमो पुन्हा <xliff:g id="TIMEOUT">%1$s</xliff:g> सेकंदांमध्ये प्रारंभ होईल..."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"रद्द करा"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"आता रीसेट करा"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> अक्षम केले"</string>      <string name="conference_call" msgid="3751093130790472426">"परिषद कॉल"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"टूलटिप"</string> diff --git a/core/res/res/values-ms/strings.xml b/core/res/res/values-ms/strings.xml index 3954b8014b49..f322d4ee581b 100644 --- a/core/res/res/values-ms/strings.xml +++ b/core/res/res/values-ms/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B."</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Tidak bertajuk>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Bantuan Suara"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Kunci sekarang"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Pemberitahuan baharu"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Kandungan tersembunyi"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Kandungan disembunyikan oleh dasar"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Papan kekunci maya"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Papan kekunci fizikal"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Keselamatan"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Nyahsemat"</string>      <string name="app_info" msgid="6856026610594615344">"Maklumat apl"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Tetapkan semula peranti?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Ketik untuk menetapkan semula peranti"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Memulakan tunjuk cara…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Menetapkan semula peranti…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Tetapkan semula peranti?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Anda akan kehilangan sebarang perubahan yang dibuat dan tunjuk cara akan dimulakan sekali lagi dalam masa <xliff:g id="TIMEOUT">%1$s</xliff:g> saat…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Batal"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Tetapkan semula sekarang"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> dilumpuhkan"</string>      <string name="conference_call" msgid="3751093130790472426">"Panggilan Sidang"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Keterangan item"</string> diff --git a/core/res/res/values-my/strings.xml b/core/res/res/values-my/strings.xml index 2f649fc3f907..7234cd955f32 100644 --- a/core/res/res/values-my/strings.xml +++ b/core/res/res/values-my/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ခေါင်းစဉ်မဲ့>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"အသံ အကူအညီ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ယခု သော့ပိတ်ရန်"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"၉၉၉+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"အကြောင်းကြားချက်အသစ်"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"အကြောင်းအရာများ ဝှက်ထား"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"မူဝါဒမှ အကြောင်းအရာများကို ဝှက်ထားသည်"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ပကတိအသွင်ကီးဘုတ်"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ကီးဘုတ် ခလုတ်ခုံ"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"လုံခြုံရေး"</string> @@ -1156,7 +1161,7 @@      <string name="sim_restart_button" msgid="4722407842815232347">"အစက ပြန်စရန်"</string>      <string name="carrier_app_dialog_message" msgid="7066156088266319533">"သင့် SIM အသစ်ပုံမှန် အလုပ်လုပ်ရန်၊ သင်အသုံးပြုသည့် မိုဘိုင်းဝန်ဆောင်မှုမှ အက်ပ်တစ်ခုထည့်သွင်း၍ ဖွင့်ရန်လိုအပ်ပါသည်။"</string>      <string name="carrier_app_dialog_button" msgid="7900235513678617329">"အက်ပ်ကို ရယူပါ"</string> -    <string name="carrier_app_dialog_not_now" msgid="6361378684292268027">"ယခုမလုပ်ပါ"</string> +    <string name="carrier_app_dialog_not_now" msgid="6361378684292268027">"ယခုမဟုတ်သေးပါ"</string>      <string name="carrier_app_notification_title" msgid="8921767385872554621">"SIM အသစ်ထည့်သွင်းလိုက်ပါသည်"</string>      <string name="carrier_app_notification_text" msgid="1132487343346050225">"၎င်းကိုတပ်ဆင်ရန် တို့ပါ"</string>      <string name="time_picker_dialog_title" msgid="8349362623068819295">"အချိန်သတ်မှတ်ရန်"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"နောက်ထပ် အချက်အလက်များအတွက် တို့ပါ"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB အမှားစစ်ခြင်းအား ချိတ်ဆက်ထားသည်"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ဆက်သွယ်ရေးစနစ်ကို ပိတ်ရန် တို့ပါ။"</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ဖြင့် အမှားရှာပြင်ခြင်းကို ပိတ်ရန် ရွေးပါ။"</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"ချွတ်ယွင်းချက် အစီရင်ခံစာပြုစုနေသည်..."</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"ချွတ်ယွင်းချက် အစီရင်ခံစာကို မျှဝေမလား။"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"ချွတ်ယွင်းမှုအစီရင်ခံစာ မျှဝေနေသည်…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ဖြုတ်ပါ"</string>      <string name="app_info" msgid="6856026610594615344">"အက်ပ်အချက်အလက်"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"စက်ပစ္စည်းကို ပြန်လည်သတ်မှတ်မလား။"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"စက်ပစ္စည်းကို ပြန်လည်သတ်မှတ်ရန် တို့ပါ"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"သရုပ်ပြချက်ကို စတင်နေသည်…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"စက်ပစ္စည်းကို ပြန်လည်သတ်မှတ်နေသည်…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"စက်ပစ္စည်းကို ပြန်လည်သတ်မှတ်မလား။"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ပြောင်းလဲမှုများကို ဆုံးရှုံးသွားမည်ဖြစ်ပြီး သရုပ်ပြချက်သည် <xliff:g id="TIMEOUT">%1$s</xliff:g> စက္ကန့်အတွင်း ပြန်လည်စတင်ပါမည်…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"မလုပ်တော့"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ယခုပြန်လည်သတ်မှတ်ပါ"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"ပိတ်ထားသည့် <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"လူအမြောက်အမြားတပြိုင်နက် ခေါ်ဆိုမှု"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"အကြံပြုချက်ပြ ပေါ့အပ် ဝင်းဒိုး"</string> diff --git a/core/res/res/values-nb/strings.xml b/core/res/res/values-nb/strings.xml index bdf812cbae13..dabe298900b2 100644 --- a/core/res/res/values-nb/strings.xml +++ b/core/res/res/values-nb/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Uten navn>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Talehjelp"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lås nå"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nytt varsel"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Innholdet er skjult"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Innholdet er skjult i henhold til retningslinjene"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuelt tastatur"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fysisk tastatur"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Sikkerhet"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Løsne"</string>      <string name="app_info" msgid="6856026610594615344">"Info om appen"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Tilbakestille enheten?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Trykk for å tilbakestille enheten"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Starter demo …"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Tilbakestiller enheten …"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Tilbakestille enheten?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Du mister eventuelle endringer, og demoen starter på nytt om <xliff:g id="TIMEOUT">%1$s</xliff:g> sekunder."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Avbryt"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Tilbakestill nå"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> er slått av"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferansesamtale"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Verktøytips"</string> diff --git a/core/res/res/values-ne/strings.xml b/core/res/res/values-ne/strings.xml index a0acb8e5fd52..44f17bcb3b23 100644 --- a/core/res/res/values-ne/strings.xml +++ b/core/res/res/values-ne/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"के.बि."</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<बिना शीर्षक>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"आवाज सहायता"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"अब बन्द गर्नुहोस्"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"९९९+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"नयाँ सूचना"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"लुकेका सामाग्रीहरू"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"नीतिद्वारा लुकाइएका सामग्री"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"भर्चुअल किबोर्ड"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"वास्तविक किबोर्ड"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"सुरक्षा"</string> @@ -1185,7 +1190,7 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"थप जानकारीका लागि ट्याप गर्नुहोस्"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB डिबग गर्ने जडित छ"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB डिबगिङलाई असक्षम गर्न ट्याप गर्नुहोस्।"</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB डिबगिङलाई असक्षम पार्न ट्याप गर्नुहोस्।"</string> +    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB डिबगिङ असक्षम पार्न चयन गर्नुहोस्।"</string>      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"बग रिपोर्ट लिँदै..."</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"बग रिपोर्टलाई साझेदारी गर्ने हो?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"बग रिपोर्टलाई साझेदारी गर्दै ..."</string> @@ -1719,8 +1724,14 @@      <string name="unpin_target" msgid="3556545602439143442">"अनपिन गर्नुहोस्"</string>      <string name="app_info" msgid="6856026610594615344">"अनुप्रयोगका बारे जानकारी"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"यन्त्रलाई रिसेट गर्ने हो?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"यन्त्रलाई रिसेट गर्न ट्याप गर्नुहोस्"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"डेमो सुरु गर्दै…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"यन्त्रलाई रिसेट गर्दै…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"यन्त्रलाई रिसेट गर्ने हो?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"तपाईं सबै परिवर्तनहरू गुमाउनु हुनेछ र <xliff:g id="TIMEOUT">%1$s</xliff:g> सेकेन्डमा डेमो फेरि सुरु हुनेछ…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"रद्द गर्नुहोस्"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"अहिले रिसेट गर्नुहोस्"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> लाई असक्षम गरियो"</string>      <string name="conference_call" msgid="3751093130790472426">"सम्मेलन कल"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"उपकरणको वर्णन"</string> diff --git a/core/res/res/values-nl/strings.xml b/core/res/res/values-nl/strings.xml index 24b54f6332b2..3c1f06775fbf 100644 --- a/core/res/res/values-nl/strings.xml +++ b/core/res/res/values-nl/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">" KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Naamloos>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Spraakassistent"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Nu vergrendelen"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999 +"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nieuwe melding"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Content verborgen"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Content verborgen op basis van beleid"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtueel toetsenbord"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fysiek toetsenbord"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Beveiliging"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Losmaken"</string>      <string name="app_info" msgid="6856026610594615344">"App-info"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Apparaat resetten?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tik om apparaat te resetten"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo starten…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Apparaat resetten…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Apparaat resetten?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Je wijzigingen gaan verloren. De demo wordt opnieuw gestart over <xliff:g id="TIMEOUT">%1$s</xliff:g> seconden…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Annuleren"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Nu resetten"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> uitgeschakeld"</string>      <string name="conference_call" msgid="3751093130790472426">"Telefonische vergadering"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Knopinfo"</string> diff --git a/core/res/res/values-pa/strings.xml b/core/res/res/values-pa/strings.xml index be145422509d..64d267ee8e27 100644 --- a/core/res/res/values-pa/strings.xml +++ b/core/res/res/values-pa/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ਬਿਨਾਂ ਸਿਰਲੇਖ>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ਵੌਇਸ ਅਸਿਸਟ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ਹੁਣ ਲੌਕ ਕਰੋ"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"ਨਵੀਂ ਸੂਚਨਾ"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"ਸਮੱਗਰੀਆਂ ਲੁਕਾਈਆਂ ਗਈਆਂ"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"ਨੀਤੀ ਦੁਆਰਾ ਸਮੱਗਰੀ ਲੁਕਾਈ ਗਈ"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ਆਭਾਸੀ ਕੀ-ਬੋਰਡ"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"ਭੌਤਿਕ ਕੀ-ਬੋਰਡ"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"ਸੁਰੱਖਿਆ"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਟੈਪ ਕਰੋ"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB ਡੀਬਗਿੰਗ ਕਨੈਕਟ ਕੀਤੀ"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ਡੀਬੱਗਿੰਗ ਨੂੰ ਅਯੋਗ ਬਣਾਉਣ ਲਈ ਟੈਪ ਕਰੋ।"</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ਡੀਬੱਗਿੰਗ ਅਯੋਗ ਬਣਾਉਣ ਲਈ ਚੁਣੋ।"</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"ਬੱਗ ਰਿਪਰੋਟ ਪ੍ਰਾਪਤ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ..."</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"ਕੀ ਬੱਗ ਰਿਪੋਰਟ ਸਾਂਝੀ ਕਰਨੀ ਹੈ?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"ਬੱਗ ਰਿਪੋਰਟ ਸਾਂਝੀ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ਅਨਪਿੰਨ ਕਰੋ"</string>      <string name="app_info" msgid="6856026610594615344">"ਐਪ ਜਾਣਕਾਰੀ"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"ਕੀ ਡੀਵਾਈਸ ਮੁੜ-ਸੈੱਟ ਕਰਨੀ ਹੈ?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"ਡੀਵਾਈਸ ਮੁੜ-ਸੈੱਟ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ਡੈਮੋ ਚਾਲੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"ਡੀਵਾਈਸ ਮੁੜ-ਸੈੱਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"ਕੀ ਡੀਵਾਈਸ ਮੁੜ-ਸੈੱਟ ਕਰਨੀ ਹੈ?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ਤੁਸੀਂ ਕਿਸੇ ਵੀ ਤਬਦੀਲੀਆਂ ਨੂੰ ਗੁਆ ਬੈਠੋਂਗੇ ਅਤੇ ਡੈਮੋ <xliff:g id="TIMEOUT">%1$s</xliff:g> ਸਕਿੰਟਾਂ ਵਿੱਚ ਦੁਬਾਰਾ ਚਾਲੂ ਕੀਤਾ ਜਾਵੇਗਾ…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ਰੱਦ ਕਰੋ"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ਹੁਣੇ ਮੁੜ-ਸੈੱਟ ਕਰੋ"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"ਅਯੋਗ ਬਣਾਇਆ ਗਿਆ <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"ਕਾਨਫਰੰਸ ਕਾਲ"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ਟੂਲਟਿਪ"</string> diff --git a/core/res/res/values-pl/strings.xml b/core/res/res/values-pl/strings.xml index e66847f428f8..1747f2759d6d 100644 --- a/core/res/res/values-pl/strings.xml +++ b/core/res/res/values-pl/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez nazwy>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Asystent głosowy"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zablokuj teraz"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nowe powiadomienie"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Treści ukryte"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Treść ukryta z powodu zasad"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Klawiatura wirtualna"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Klawiatura fizyczna"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Bezpieczeństwo"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Odepnij"</string>      <string name="app_info" msgid="6856026610594615344">"O aplikacji"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Zresetować urządzenie?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Kliknij, by zresetować urządzenie"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Uruchamiam tryb demo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetuję urządzenie…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Zresetować urządzenie?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Stracisz wszystkie wprowadzone zmiany, a tryb demo uruchomi się ponownie za <xliff:g id="TIMEOUT">%1$s</xliff:g> s…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Anuluj"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Resetuj teraz"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Wyłączono: <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Połączenie konferencyjne"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Etykietka"</string> diff --git a/core/res/res/values-pt-rBR/strings.xml b/core/res/res/values-pt-rBR/strings.xml index ad38a41c543b..05af3261c9ea 100644 --- a/core/res/res/values-pt-rBR/strings.xml +++ b/core/res/res/values-pt-rBR/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sem título>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ajuda de voz"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloquear agora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nova notificação"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Conteúdo oculto"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Conteúdo ocultado pela política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclado virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclado físico"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Segurança"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Liberar guia"</string>      <string name="app_info" msgid="6856026610594615344">"Informações do app"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Redefinir dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Toque para redefinir o dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Iniciando demonstração…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Redefinindo dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Redefinir dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Você perderá todas as alterações. A demonstração será iniciada novamente em <xliff:g id="TIMEOUT">%1$s</xliff:g> segundos…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancelar"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Reiniciar agora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Widget <xliff:g id="LABEL">%1$s</xliff:g> desativado"</string>      <string name="conference_call" msgid="3751093130790472426">"Teleconferência"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Dica"</string> diff --git a/core/res/res/values-pt-rPT/strings.xml b/core/res/res/values-pt-rPT/strings.xml index 8e69af9f753c..04a78cab1a17 100644 --- a/core/res/res/values-pt-rPT/strings.xml +++ b/core/res/res/values-pt-rPT/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sem nome>"</string> @@ -47,7 +51,7 @@      <string name="needPuk2" msgid="4526033371987193070">"Introduza o PUK2 para desbloquear o cartão SIM."</string>      <string name="enablePin" msgid="209412020907207950">"Ação sem êxito. Ative o bloqueio do SIM/RUIM."</string>      <plurals name="pinpuk_attempts" formatted="false" msgid="1251012001539225582"> -      <item quantity="one">Tem mais <xliff:g id="NUMBER_0">%d</xliff:g> tentativa antes de o cartão SIM ficar bloqueado.</item> +      <item quantity="one">You have <xliff:g id="NUMBER_1">%d</xliff:g> remaining attempts before SIM is locked.</item>        <item quantity="other">Tem mais <xliff:g id="NUMBER_1">%d</xliff:g> tentativas antes de o cartão SIM ficar bloqueado.</item>      </plurals>      <string name="imei" msgid="2625429890869005782">"IMEI"</string> @@ -160,7 +164,7 @@      <string name="low_memory" product="tv" msgid="516619861191025923">"O armazenamento da TV está cheio. Elimine alguns ficheiros para libertar espaço."</string>      <string name="low_memory" product="default" msgid="3475999286680000541">"O armazenamento do telemóvel está cheio. Elimine alguns ficheiros para libertar espaço."</string>      <plurals name="ssl_ca_cert_warning" formatted="false" msgid="5106721205300213569"> -      <item quantity="one">Autoridade de certificação instalada</item> +      <item quantity="one">Certificate authorities installed</item>        <item quantity="other">Autoridades de certificação instaladas</item>      </plurals>      <string name="ssl_ca_cert_noti_by_unknown" msgid="4475437862189850602">"Por um terceiro desconhecido"</string> @@ -216,7 +220,7 @@      <string name="bugreport_option_full_title" msgid="6354382025840076439">"Relatório completo"</string>      <string name="bugreport_option_full_summary" msgid="7210859858969115745">"Utilize esta opção para uma interferência mínima do sistema quando o dispositivo não responder ou estiver demasiado lento, ou quando precisar de todas as secções de relatório. Não permite introduzir mais detalhes ou tirar capturas de ecrã adicionais."</string>      <plurals name="bugreport_countdown" formatted="false" msgid="6878900193900090368"> -      <item quantity="one">A tirar uma captura de ecrã do relatório de erro dentro de <xliff:g id="NUMBER_0">%d</xliff:g> segundo…</item> +      <item quantity="one">Taking screenshot for bug report in <xliff:g id="NUMBER_1">%d</xliff:g> seconds.</item>        <item quantity="other">A tirar uma captura de ecrã do relatório de erro dentro de <xliff:g id="NUMBER_1">%d</xliff:g> segundos.</item>      </plurals>      <string name="global_action_toggle_silent_mode" msgid="8219525344246810925">"Modo silencioso"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Assist. de voz"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloquear agora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nova notificação"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Conteúdo oculto"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Conteúdo ocultado pela política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclado virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclado físico"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Segurança"</string> @@ -851,7 +856,7 @@      <string name="oneMonthDurationPast" msgid="7396384508953779925">"Há 1 mês"</string>      <string name="beforeOneMonthDurationPast" msgid="909134546836499826">"Há mais de 1 mês"</string>      <plurals name="last_num_days" formatted="false" msgid="5104533550723932025"> -      <item quantity="one">Último <xliff:g id="COUNT_0">%d</xliff:g> dia</item> +      <item quantity="one">Last <xliff:g id="COUNT_1">%d</xliff:g> days</item>        <item quantity="other">Últimos <xliff:g id="COUNT_1">%d</xliff:g> dias</item>      </plurals>      <string name="last_month" msgid="3959346739979055432">"Último mês"</string> @@ -873,67 +878,67 @@      <string name="years" msgid="6881577717993213522">"anos"</string>      <string name="now_string_shortest" msgid="8912796667087856402">"agora"</string>      <plurals name="duration_minutes_shortest" formatted="false" msgid="3957499975064245495"> -      <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> m</item> -      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> m</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g>m</item> +      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g>m</item>      </plurals>      <plurals name="duration_hours_shortest" formatted="false" msgid="3552182110578602356"> -      <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> h</item> -      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> h</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g>h</item> +      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g>h</item>      </plurals>      <plurals name="duration_days_shortest" formatted="false" msgid="5213655532597081640"> -      <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> d</item> -      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> d</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g>d</item> +      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g>d</item>      </plurals>      <plurals name="duration_years_shortest" formatted="false" msgid="7848711145196397042"> -      <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> a</item> -      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> a</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g>y</item> +      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g>a</item>      </plurals>      <plurals name="duration_minutes_shortest_future" formatted="false" msgid="3277614521231489951"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> min</item> -      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> min</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g>m</item> +      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g>m</item>      </plurals>      <plurals name="duration_hours_shortest_future" formatted="false" msgid="2152452368397489370"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> h</item> -      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> h</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g>h</item> +      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g>h</item>      </plurals>      <plurals name="duration_days_shortest_future" formatted="false" msgid="8088331502820295701"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> d</item> -      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> d</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g>d</item> +      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g>d</item>      </plurals>      <plurals name="duration_years_shortest_future" formatted="false" msgid="2317006667145250301"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> a</item> -      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> a</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g>y</item> +      <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g>a</item>      </plurals>      <plurals name="duration_minutes_relative" formatted="false" msgid="3178131706192980192"> -      <item quantity="one">há <xliff:g id="COUNT_0">%d</xliff:g> minuto</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> minutes ago</item>        <item quantity="other">há <xliff:g id="COUNT_1">%d</xliff:g> minutos</item>      </plurals>      <plurals name="duration_hours_relative" formatted="false" msgid="676894109982008411"> -      <item quantity="one">há <xliff:g id="COUNT_0">%d</xliff:g> hora</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> hours ago</item>        <item quantity="other">há <xliff:g id="COUNT_1">%d</xliff:g> horas</item>      </plurals>      <plurals name="duration_days_relative" formatted="false" msgid="2203515825765397130"> -      <item quantity="one">há <xliff:g id="COUNT_0">%d</xliff:g> dia</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> days ago</item>        <item quantity="other">há <xliff:g id="COUNT_1">%d</xliff:g> dias</item>      </plurals>      <plurals name="duration_years_relative" formatted="false" msgid="4820062134188885734"> -      <item quantity="one">há <xliff:g id="COUNT_0">%d</xliff:g> ano</item> +      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> years ago</item>        <item quantity="other">há <xliff:g id="COUNT_1">%d</xliff:g> anos</item>      </plurals>      <plurals name="duration_minutes_relative_future" formatted="false" msgid="4655043589817680966"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> minuto</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g> minutes</item>        <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> minutos</item>      </plurals>      <plurals name="duration_hours_relative_future" formatted="false" msgid="8084579714205223891"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> hora</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g> hours</item>        <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> horas</item>      </plurals>      <plurals name="duration_days_relative_future" formatted="false" msgid="333215369363433992"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> dia</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g> days</item>        <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> dias</item>      </plurals>      <plurals name="duration_years_relative_future" formatted="false" msgid="8644862986413104011"> -      <item quantity="one">dentro de <xliff:g id="COUNT_0">%d</xliff:g> ano</item> +      <item quantity="one">in <xliff:g id="COUNT_1">%d</xliff:g> years</item>        <item quantity="other">dentro de <xliff:g id="COUNT_1">%d</xliff:g> anos</item>      </plurals>      <string name="VideoView_error_title" msgid="3534509135438353077">"Problema com o vídeo"</string> @@ -1082,11 +1087,11 @@      <string name="ringtone_picker_title_notification" msgid="4837740874822788802">"Sons de notificação"</string>      <string name="ringtone_unknown" msgid="3914515995813061520">"Desconhecido"</string>      <plurals name="wifi_available" formatted="false" msgid="7900333017752027322"> -      <item quantity="one">Rede Wi-Fi disponível</item> +      <item quantity="one">Wi-Fi networks available</item>        <item quantity="other">Redes Wi-Fi disponíveis</item>      </plurals>      <plurals name="wifi_available_detailed" formatted="false" msgid="1140699367193975606"> -      <item quantity="one">Rede Wi-Fi aberta disponível</item> +      <item quantity="one">Open Wi-Fi networks available</item>        <item quantity="other">Redes Wi-Fi abertas disponíveis</item>      </plurals>      <string name="wifi_available_title" msgid="3817100557900599505">"Ligar à rede Wi-Fi aberta"</string> @@ -1299,7 +1304,7 @@      <string name="no_matches" msgid="8129421908915840737">"Sem correspondências"</string>      <string name="find_on_page" msgid="1946799233822820384">"Localizar na página"</string>      <plurals name="matches_found" formatted="false" msgid="1210884353962081884"> -      <item quantity="one">1 correspondência</item> +      <item quantity="one"><xliff:g id="INDEX">%d</xliff:g> of <xliff:g id="TOTAL">%d</xliff:g></item>        <item quantity="other"><xliff:g id="INDEX">%d</xliff:g> de <xliff:g id="TOTAL">%d</xliff:g></item>      </plurals>      <string name="action_mode_done" msgid="7217581640461922289">"Concluído"</string> @@ -1585,7 +1590,7 @@      <string name="restr_pin_error_doesnt_match" msgid="2224214190906994548">"Os PINs não correspondem. Tente novamente."</string>      <string name="restr_pin_error_too_short" msgid="8173982756265777792">"O PIN é demasiado pequeno. Deve ter, no mínimo, 4 dígitos."</string>      <plurals name="restr_pin_countdown" formatted="false" msgid="9061246974881224688"> -      <item quantity="one">Tente novamente dentro de 1 segundo</item> +      <item quantity="one">Try again in <xliff:g id="COUNT">%d</xliff:g> seconds</item>        <item quantity="other">Tente novamente dentro de <xliff:g id="COUNT">%d</xliff:g> segundos</item>      </plurals>      <string name="restr_pin_try_later" msgid="973144472490532377">"Tente novamente mais tarde"</string> @@ -1618,35 +1623,35 @@      <string name="data_saver_enable_title" msgid="4674073932722787417">"Ativar a Poupança de dados?"</string>      <string name="data_saver_enable_button" msgid="7147735965247211818">"Ativar"</string>      <plurals name="zen_mode_duration_minutes_summary" formatted="false" msgid="4367877408072000848"> -      <item quantity="one">Durante um minuto (até à(s) <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> -      <item quantity="other">Durante %1$d minutos (até à(s) <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="one">For %1$d minutes (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="other">Durante %1$d minutos (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item>      </plurals>      <plurals name="zen_mode_duration_minutes_summary_short" formatted="false" msgid="6830154222366042597"> -      <item quantity="one">Durante 1 min (até à(s) <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> -      <item quantity="other">Durante %1$d min (até à(s) <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="one">For %1$d min (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="other">Durante %1$d min (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item>      </plurals>      <plurals name="zen_mode_duration_hours_summary" formatted="false" msgid="8152974162096743862"> -      <item quantity="one">Durante uma hora (até à(s) <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> -      <item quantity="other">Durante %1$d horas (até à(s) <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="one">For %1$d hours (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="other">Durante %1$d horas (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item>      </plurals>      <plurals name="zen_mode_duration_hours_summary_short" formatted="false" msgid="4787552595253082371"> -      <item quantity="one">Durante 1 h (até à(s) <xliff:g id="FORMATTEDTIME_0">%2$s</xliff:g>)</item> -      <item quantity="other">Durante %1$d h (até à(s) <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="one">For %1$d hr (until <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item> +      <item quantity="other">Durante %1$d h (até às <xliff:g id="FORMATTEDTIME_1">%2$s</xliff:g>)</item>      </plurals>      <plurals name="zen_mode_duration_minutes" formatted="false" msgid="5127407202506485571"> -      <item quantity="one">Durante um minuto</item> +      <item quantity="one">For %d minutes</item>        <item quantity="other">Durante %d minutos</item>      </plurals>      <plurals name="zen_mode_duration_minutes_short" formatted="false" msgid="2199350154433426128"> -      <item quantity="one">Durante 1 min</item> +      <item quantity="one">For %d min</item>        <item quantity="other">Durante %d min</item>      </plurals>      <plurals name="zen_mode_duration_hours" formatted="false" msgid="3938821308277433854"> -      <item quantity="one">Durante uma hora</item> +      <item quantity="one">For %d hours</item>        <item quantity="other">Durante %d horas</item>      </plurals>      <plurals name="zen_mode_duration_hours_short" formatted="false" msgid="6748277774662434217"> -      <item quantity="one">Durante 1 h</item> +      <item quantity="one">For %d hr</item>        <item quantity="other">Durante %d h</item>      </plurals>      <string name="zen_mode_until" msgid="7336308492289875088">"Até às <xliff:g id="FORMATTEDTIME">%1$s</xliff:g>"</string> @@ -1682,7 +1687,7 @@      <string name="close_button_text" msgid="3937902162644062866">"Fechar"</string>      <string name="notification_messaging_title_template" msgid="3452480118762691020">"<xliff:g id="CONVERSATION_TITLE">%1$s</xliff:g>: <xliff:g id="SENDER_NAME">%2$s</xliff:g>"</string>      <plurals name="selected_count" formatted="false" msgid="7187339492915744615"> -      <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> selecionado</item> +      <item quantity="one"><xliff:g id="COUNT_1">%1$d</xliff:g> selected</item>        <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> selecionados</item>      </plurals>      <string name="default_notification_channel_label" msgid="5929663562028088222">"Sem categoria"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Soltar"</string>      <string name="app_info" msgid="6856026610594615344">"Informações da aplicação"</string>      <string name="negative_duration" msgid="5688706061127375131">"-<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Pretende repor o dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Toque para repor o dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"A iniciar a demonstração…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"A repor o dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Pretende repor o dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Perderá todas as alterações e a demonstração começará novamente dentro de <xliff:g id="TIMEOUT">%1$s</xliff:g> segundos…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancelar"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Repor agora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> desativado"</string>      <string name="conference_call" msgid="3751093130790472426">"Conferência"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Sugestão"</string> @@ -1740,7 +1751,7 @@      <string name="autofill_error_cannot_autofill" msgid="7402758580060110371">"Não é possível preencher automaticamente o conteúdo"</string>      <string name="autofill_picker_no_suggestions" msgid="3908514303773350735">"Sem sugestões do preenchimento automático"</string>      <plurals name="autofill_picker_some_suggestions" formatted="false" msgid="5506565809835815274"> -      <item quantity="one">Uma sugestão do preenchimento automático</item> +      <item quantity="one"><xliff:g id="COUNT">%1$s</xliff:g> autofill suggestions</item>        <item quantity="other"><xliff:g id="COUNT">%1$s</xliff:g> sugestões do preenchimento automático</item>      </plurals>      <string name="autofill_save_title" msgid="3345527308992082601">"Pretende guardar no <b><xliff:g id="LABEL">%1$s</xliff:g></b>?"</string> diff --git a/core/res/res/values-pt/strings.xml b/core/res/res/values-pt/strings.xml index ad38a41c543b..05af3261c9ea 100644 --- a/core/res/res/values-pt/strings.xml +++ b/core/res/res/values-pt/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Sem título>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ajuda de voz"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Bloquear agora"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nova notificação"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Conteúdo oculto"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Conteúdo ocultado pela política"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Teclado virtual"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Teclado físico"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Segurança"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Liberar guia"</string>      <string name="app_info" msgid="6856026610594615344">"Informações do app"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Redefinir dispositivo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Toque para redefinir o dispositivo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Iniciando demonstração…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Redefinindo dispositivo…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Redefinir dispositivo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Você perderá todas as alterações. A demonstração será iniciada novamente em <xliff:g id="TIMEOUT">%1$s</xliff:g> segundos…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Cancelar"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Reiniciar agora"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Widget <xliff:g id="LABEL">%1$s</xliff:g> desativado"</string>      <string name="conference_call" msgid="3751093130790472426">"Teleconferência"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Dica"</string> diff --git a/core/res/res/values-ro/strings.xml b/core/res/res/values-ro/strings.xml index 1ccda3340569..795b71be31f4 100644 --- a/core/res/res/values-ro/strings.xml +++ b/core/res/res/values-ro/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TO"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PO"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Fără titlu>"</string> @@ -233,7 +237,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Asistent vocal"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Blocați acum"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"˃999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Notificare nouă"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Conținutul este ascuns"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Conținutul este ascuns conform politicii"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Tastatură virtuală"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Tastatură fizică"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Securitate"</string> @@ -1746,8 +1751,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Anulați fixarea"</string>      <string name="app_info" msgid="6856026610594615344">"Informații despre aplicație"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Resetați dispozitivul?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Atingeți pentru a reseta dispozitivul"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Se pornește demonstrația…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Se resetează dispozitivul…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Resetați dispozitivul?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Veți pierde toate modificările, iar demonstrația va începe din nou peste <xliff:g id="TIMEOUT">%1$s</xliff:g> secunde…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Anulați"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Resetați acum"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> a fost dezactivat"</string>      <string name="conference_call" msgid="3751093130790472426">"Conferință telefonică"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Balon explicativ"</string> diff --git a/core/res/res/values-ru/strings.xml b/core/res/res/values-ru/strings.xml index 8fd38b598629..d22022d88b4d 100644 --- a/core/res/res/values-ru/strings.xml +++ b/core/res/res/values-ru/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"Б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"КБ"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"МБ"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ГБ"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TБ"</string>      <string name="petabyteShort" msgid="5637816680144990219">"ПБ"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Без названия>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Аудиоподсказки"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Заблокировать"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">">999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Новое уведомление"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Содержимое скрыто"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Содержимое скрыто в соответствии с заданными правилами"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуальная клавиатура"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Физическая клавиатура"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Безопасность"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Открепить"</string>      <string name="app_info" msgid="6856026610594615344">"О приложении"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Сбросить настройки устройства?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Нажмите здесь, чтобы сбросить настройки"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Запуск деморежима…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Сброс данных…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Сбросить настройки устройства?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Все изменения будут утеряны. Деморежим будет перезапущен через <xliff:g id="TIMEOUT">%1$s</xliff:g> сек."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Отмена"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Сбросить"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Виджет <xliff:g id="LABEL">%1$s</xliff:g> отключен"</string>      <string name="conference_call" msgid="3751093130790472426">"Конференц-связь"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Подсказка"</string> diff --git a/core/res/res/values-si/strings.xml b/core/res/res/values-si/strings.xml index 8984cc9615f4..0292f82bf37c 100644 --- a/core/res/res/values-si/strings.xml +++ b/core/res/res/values-si/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<නම් යොදා නැත>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"හඬ සහායක"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"දැන් අගුළු දමන්න"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"නව දැනුම්දීම"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"සැඟවුණු සම්බන්ධතා"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"ප්රතිපත්තිය විසින් අන්තර්ගතය සඟවන ලදී"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"අතථ්ය යතුරු පුවරුව"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"භෞතික යතුරු පුවරුව"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"ආරක්ෂාව"</string> @@ -1715,8 +1720,14 @@      <string name="unpin_target" msgid="3556545602439143442">"ගලවන්න"</string>      <string name="app_info" msgid="6856026610594615344">"යෙදුම් තොරතුරු"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"උපාංගය යළි සකසන්නද?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"උපාංගය යළි සැකසීමට තට්ටු කරන්න"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ආදර්ශනය ආරම්භ කරමින්..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"උපාංගය යළි සකසමින්..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"උපාංගය යළි සකසන්නද?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"ඔබට යම් වෙනස් කිරීම් අහිමි වනු ඇති අතර ආදර්ශනය තත්පර <xliff:g id="TIMEOUT">%1$s</xliff:g>කින් නැවත ආරම්භ වනු ඇත…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"අවලංගු කරන්න"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"දැන් යළි සකසන්න"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"අබල කළ <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"සම්මන්ත්රණ ඇමතුම"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"මෙවලම් ඉඟිය"</string> diff --git a/core/res/res/values-sk/strings.xml b/core/res/res/values-sk/strings.xml index f43ab8a58720..4c22ae7ea01d 100644 --- a/core/res/res/values-sk/strings.xml +++ b/core/res/res/values-sk/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Bez mena>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Hlasový asistent"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Uzamknúť"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Nové upozornenie"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Skrytý obsah"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Obsah je na základe pravidiel skrytý"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuálna klávesnica"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fyzická klávesnica"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Zabezpečenie"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Uvoľniť"</string>      <string name="app_info" msgid="6856026610594615344">"Info o aplikácii"</string>      <string name="negative_duration" msgid="5688706061127375131">"-<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Resetovať zariadenie?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Klepnutím resetujete zariadenie"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Spúšťa sa ukážka…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Resetuje sa zariadenie…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Resetovať zariadenie?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Prídete o všetky zmeny a ukážka sa znova spustí o <xliff:g id="TIMEOUT">%1$s</xliff:g> s…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Zrušiť"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Resetovať"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Deaktivovaná miniaplikácia <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferenčný hovor"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Popis"</string> diff --git a/core/res/res/values-sl/strings.xml b/core/res/res/values-sl/strings.xml index d748ba7de2b6..ac24366aadc1 100644 --- a/core/res/res/values-sl/strings.xml +++ b/core/res/res/values-sl/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Brez naslova>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Glas. pomočnik"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Zakleni zdaj"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999 +"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Novo obvestilo"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Vsebina je skrita"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Pravilnik je skril vsebino"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Navidezna tipkovnica"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fizična tipkovnica"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Varnost"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Odpenjanje"</string>      <string name="app_info" msgid="6856026610594615344">"Podatki o aplikaciji"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Želite ponastaviti napravo?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Dotaknite se, če želite ponastaviti napravo"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Začenjanje predstavitve …"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Ponastavljanje naprave …"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Želite ponastaviti napravo?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Morebitne spremembe bodo izgubljene in predstavitev se bo začela znova čez <xliff:g id="TIMEOUT">%1$s</xliff:g> s …"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Prekliči"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Ponastavi"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> – onemogočeno"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferenčni klic"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Opis orodja"</string> diff --git a/core/res/res/values-sq/strings.xml b/core/res/res/values-sq/strings.xml index 9a25c7d98897..c31c8a4b9d88 100644 --- a/core/res/res/values-sq/strings.xml +++ b/core/res/res/values-sq/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"terabajt"</string>      <string name="petabyteShort" msgid="5637816680144990219">"petabajt"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Pa titull>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ndihma zanore"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Kyç tani"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Njoftim i ri"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Përmbajtjet janë të fshehura"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Përmbajtja është e fshehur për shkak të politikës"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Tastiera virtuale"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Tastiera fizike"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Siguria"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Trokit për më shumë informacion"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"Korrigjuesi i USB-së i lidhur"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Trokit për të çaktivizuar korrigjimin e gabimeve të USB-së."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"Përzgjidhe për të çaktivizuar korrigjimin e gabimeve të USB-së"</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Po merret raporti i defekteve në kod…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Të ndahet raporti i defektit në kod?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Po ndan raportin e defekteve në kod..."</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Zhgozhdo"</string>      <string name="app_info" msgid="6856026610594615344">"Informacioni mbi aplikacionin"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Do ta rivendosësh pajisjen?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Trokit për ta rivendosur pajisjen"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Po nis demonstrimin..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Po rivendos pajisjen…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Do ta rivendosësh pajisjen?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Do të humbasësh çdo ndryshim dhe demonstrimi do të niset përsëri për <xliff:g id="TIMEOUT">%1$s</xliff:g> sekonda…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Anulo"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Rivendos tani"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> u çaktivizua"</string>      <string name="conference_call" msgid="3751093130790472426">"Telefonatë konferencë"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Këshilla për veglën"</string> diff --git a/core/res/res/values-sr/strings.xml b/core/res/res/values-sr/strings.xml index 8c3bbcc09b35..02dddb882bd7 100644 --- a/core/res/res/values-sr/strings.xml +++ b/core/res/res/values-sr/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Без наслова>"</string> @@ -233,7 +237,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Гласовна помоћ"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Закључај одмах"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Ново обавештење"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Садржај је сакривен"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Садржај је сакривен смерницама"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Виртуелна тастатура"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Физичка тастатура"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Безбедност"</string> @@ -1746,8 +1751,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Откачи"</string>      <string name="app_info" msgid="6856026610594615344">"Информације о апликацији"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Желите ли да ресетујете уређај?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Додирните да бисте ресетовали уређај"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Покрећемо демонстрацију..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Ресетујемо уређај..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Желите ли да ресетујете уређај?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Изгубићете све промене и демонстрација ће поново почети за <xliff:g id="TIMEOUT">%1$s</xliff:g> сек…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Откажи"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Ресетуј"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Виџет <xliff:g id="LABEL">%1$s</xliff:g> је онемогућен"</string>      <string name="conference_call" msgid="3751093130790472426">"Конференцијски позив"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Објашњење"</string> diff --git a/core/res/res/values-sv/strings.xml b/core/res/res/values-sv/strings.xml index 5458b2b5d407..b1a13511ecd7 100644 --- a/core/res/res/values-sv/strings.xml +++ b/core/res/res/values-sv/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Okänd>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Lås nu"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Ny avisering"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Innehåll har dolts"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Innehåll har dolts p.g.a. en policy"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtuellt tangentbord"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fysiskt tangentbord"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Säkerhet"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Lossa"</string>      <string name="app_info" msgid="6856026610594615344">"Info om appen"</string>      <string name="negative_duration" msgid="5688706061127375131">"-<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Vill du återställa enheten?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Tryck om du vill återställa enheten"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo startas …"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Enheten återställs …"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Vill du återställa enheten?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Ändringar som du har gjort sparas inte och demon börjar om om <xliff:g id="TIMEOUT">%1$s</xliff:g> sekunder …"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Avbryt"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Återställ nu"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> har inaktiverats"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferenssamtal"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Beskrivning"</string> diff --git a/core/res/res/values-sw/strings.xml b/core/res/res/values-sw/strings.xml index 4c9a3bf6d621..2eb17206205d 100644 --- a/core/res/res/values-sw/strings.xml +++ b/core/res/res/values-sw/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Haina jina>"</string> @@ -228,7 +232,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Usaidizi wa Sauti"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Funga sasa"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Arifa mpya"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Maudhui yamefichwa"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Maudhui yamefichwa kulingana na sera"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Kibodi pepe"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Kibodi halisi"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Usalama"</string> @@ -1373,7 +1378,7 @@      <string name="data_usage_limit_body" msgid="291731708279614081">"Data imesitishwa kwa mzunguko uliosalia"</string>      <string name="data_usage_3g_limit_snoozed_title" msgid="7026739121138005231">"Kikomo cha data ya 2G-3G kimezidishwa"</string>      <string name="data_usage_4g_limit_snoozed_title" msgid="1106562779311209039">"Kikomo cha data cha 4G kimezidishwa"</string> -    <string name="data_usage_mobile_limit_snoozed_title" msgid="279240572165412168">"Umepitisha kiwango cha data ulichoweka"</string> +    <string name="data_usage_mobile_limit_snoozed_title" msgid="279240572165412168">"Kikomo cha data ya ya kifaa cha mkononi kimezidishwa"</string>      <string name="data_usage_wifi_limit_snoozed_title" msgid="8743856006384825974">"Taarifa za Wi-fi zimevuka kiwanga"</string>      <string name="data_usage_limit_snoozed_body" msgid="7035490278298441767">"<xliff:g id="SIZE">%s</xliff:g> juu ya kikomo kilichobainishwa."</string>      <string name="data_usage_restricted_title" msgid="5965157361036321914">"Data ya mandhari nyuma imezuiwa"</string> @@ -1711,8 +1716,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Bandua"</string>      <string name="app_info" msgid="6856026610594615344">"Maelezo ya programu"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Ungependa kuweka upya mipangilio ya kifaa?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Gonga ili uweke upya kifaa"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Inaanzisha onyesho..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Inaweka upya kifaa..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Ungependa kuweka upya mipangilio ya kifaa?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Mabadiliko yoyote hayatahifadhiwa. Onyesho litaanza tena baada ya sekunde <xliff:g id="TIMEOUT">%1$s</xliff:g>..."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Ghairi"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Weka upya sasa"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> imezimwa"</string>      <string name="conference_call" msgid="3751093130790472426">"Simu ya Kongamano"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Kidirisha cha vidokezo"</string> diff --git a/core/res/res/values-ta/strings.xml b/core/res/res/values-ta/strings.xml index b737af07057f..714602ffe568 100644 --- a/core/res/res/values-ta/strings.xml +++ b/core/res/res/values-ta/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"பை."</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"கி.பை."</string> +    <string name="megabyteShort" msgid="6355851576770428922">"மெ.பை."</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"ஜி.பை."</string> +    <string name="terabyteShort" msgid="231613018159186962">"டெ.பை."</string>      <string name="petabyteShort" msgid="5637816680144990219">"பெ.பை."</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<பெயரிடப்படாதது>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"குரல் உதவி"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"இப்போது பூட்டு"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"புதிய அறிவிப்பு"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"மறைந்துள்ள உள்ளடக்கம்"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"கொள்கையின்படி உள்ளடக்கம் மறைக்கப்பட்டது"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"விர்ச்சுவல் விசைப்பலகை"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"கைமுறை விசைப்பலகை"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"பாதுகாப்பு"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"மேலும் தகவலுக்கு, தட்டவும்"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB பிழைதிருத்தம் இணைக்கப்பட்டது"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB பிழை திருத்தத்தை முடக்க, தட்டவும்."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB பிழைத்திருத்தத்தை முடக்க, தேர்ந்தெடுக்கவும்."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"பிழை அறிக்கையை எடுக்கிறது…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"பிழை அறிக்கையைப் பகிரவா?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"பிழை அறிக்கையைப் பகிர்கிறது…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"பின்னை அகற்று"</string>      <string name="app_info" msgid="6856026610594615344">"பயன்பாட்டுத் தகவல்"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"சாதனத்தை மீட்டமைக்கவா?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"சாதனத்தை மீட்டமைக்க, தட்டவும்"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"டெமோவைத் தொடங்குகிறது…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"சாதனத்தை மீட்டமைக்கிறது…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"சாதனத்தை மீட்டமைக்கவா?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"மாற்றங்கள் சேமிக்கப்படாது, <xliff:g id="TIMEOUT">%1$s</xliff:g> வினாடிகளில் டெமோ மீண்டும் தொடங்கும்…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ரத்துசெய்"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"இப்போதே மீட்டமை"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"முடக்கப்பட்டது: <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"குழு அழைப்பு"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"உதவிக்குறிப்பு"</string> diff --git a/core/res/res/values-te/strings.xml b/core/res/res/values-te/strings.xml index b440b9169198..92fba6ea1f5a 100644 --- a/core/res/res/values-te/strings.xml +++ b/core/res/res/values-te/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<శీర్షిక లేనిది>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"వాయిస్ సహాయకం"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ఇప్పుడు లాక్ చేయండి"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"కొత్త నోటిఫికేషన్"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"కంటెంట్లు దాచబడ్డాయి"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"విధానం ద్వారా కంటెంట్లు దాచబడ్డాయి"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"వర్చువల్ కీబోర్డ్"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"భౌతిక కీబోర్డ్"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"భద్రత"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"మరింత సమాచారం కోసం నొక్కండి"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB డీబగ్గింగ్ కనెక్ట్ చేయబడింది"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB డీబగ్గింగ్ను నిలిపివేయడానికి నొక్కండి."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"డీబగ్గింగ్ని నిలిపివేయడానికి ఎంచుకోండి."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"బగ్ నివేదికను తీస్తోంది…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"బగ్ నివేదికను భాగస్వామ్యం చేయాలా?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"బగ్ నివేదికను భాగస్వామ్యం చేస్తోంది..."</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"అన్పిన్ చేయి"</string>      <string name="app_info" msgid="6856026610594615344">"అనువర్తన సమాచారం"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"పరికరాన్ని రీసెట్ చేయాలా?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"పరికరాన్ని రీసెట్ చేయడానికి నొక్కండి"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"డెమోను ప్రారంభిస్తోంది..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"పరికరాన్ని రీసెట్ చేస్తోంది..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"పరికరాన్ని రీసెట్ చేయాలా?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"మీరు చేసిన ఏవైనా మార్పులను కోల్పోతారు మరియు డెమో <xliff:g id="TIMEOUT">%1$s</xliff:g> సెకన్లలో మళ్లీ ప్రారంభమవుతుంది…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"రద్దు చేయి"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ఇప్పుడే రీసెట్ చేయి"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> నిలిపివేయబడింది"</string>      <string name="conference_call" msgid="3751093130790472426">"కాన్ఫరెన్స్ కాల్"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"సాధనం చిట్కా"</string> diff --git a/core/res/res/values-th/strings.xml b/core/res/res/values-th/strings.xml index ee9b50df72fe..3c33686d1a85 100644 --- a/core/res/res/values-th/strings.xml +++ b/core/res/res/values-th/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<ไม่มีชื่อ>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"ตัวช่วยเสียง"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ล็อกเลย"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"การแจ้งเตือนใหม่"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"เนื้อหาถูกซ่อนไว้"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"มีการซ่อนเนื้อหาโดยนโยบาย"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"แป้นพิมพ์เสมือน"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"แป้นพิมพ์บนเครื่อง"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"ความปลอดภัย"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"เลิกปักหมุด"</string>      <string name="app_info" msgid="6856026610594615344">"ข้อมูลแอป"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"รีเซ็ตอุปกรณ์ไหม"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"แตะเพื่อรีเซ็ตอุปกรณ์"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"กำลังเริ่มการสาธิต…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"กำลังรีเซ็ตอุปกรณ์…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"รีเซ็ตอุปกรณ์ไหม"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"การเปลี่ยนแปลงของคุณจะหายไปและการสาธิตจะเริ่มต้นอีกครั้งใน <xliff:g id="TIMEOUT">%1$s</xliff:g> วินาที…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"ยกเลิก"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"รีเซ็ตทันที"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"ปิดใช้ <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"การประชุมสาย"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"เคล็ดลับเครื่องมือ"</string> diff --git a/core/res/res/values-tl/strings.xml b/core/res/res/values-tl/strings.xml index ebf689e41087..2976911b3a73 100644 --- a/core/res/res/values-tl/strings.xml +++ b/core/res/res/values-tl/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Walang pamagat>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"I-lock ngayon"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Bagong notification"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Nakatago ang mga content"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Itinago ang mga content alinsunod sa patakaran"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtual na keyboard"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Pisikal na keyboard"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Seguridad"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"I-unpin"</string>      <string name="app_info" msgid="6856026610594615344">"Impormasyon ng app"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Gusto mo bang i-reset ang device?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Mag-tap upang i-reset ang device"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Sinisimulan ang demo…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Nire-reset ang device…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Gusto mo bang i-reset ang device?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Mawawala mo ang anumang mga pagbabago at magsisimulang muli ang demo pagkalipas ng <xliff:g id="TIMEOUT">%1$s</xliff:g> (na) segundo…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Kanselahin"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"I-reset ngayon"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Na-disable ang <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Conference Call"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Tooltip"</string> diff --git a/core/res/res/values-tr/strings.xml b/core/res/res/values-tr/strings.xml index ab6365d77ef9..48c714b64658 100644 --- a/core/res/res/values-tr/strings.xml +++ b/core/res/res/values-tr/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Adsız>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Sesli Yardım"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Şimdi kilitle"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Yeni bildirim"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"İçerik gizlendi"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"İçerikler politika nedeniyle gizlendi"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Sanal klavye"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Fiziksel klavye"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Güvenlik"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Sabitlemeyi kaldır"</string>      <string name="app_info" msgid="6856026610594615344">"Uygulama bilgileri"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Cihaz sıfırlansın mı?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Cihazı sıfırlamak için dokunun"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo başlatılıyor…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Cihaz sıfırlanıyor…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Cihaz sıfırlansın mı?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Değişiklikleri kaybedeceksiniz ve demo <xliff:g id="TIMEOUT">%1$s</xliff:g> saniye içinde tekrar başlayacak…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"İptal"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Şimdi sıfırla"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> devre dışı"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferans Çağrısı"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"İpucu"</string> diff --git a/core/res/res/values-uk/strings.xml b/core/res/res/values-uk/strings.xml index 4eafbe21e3cf..715a019d85d7 100644 --- a/core/res/res/values-uk/strings.xml +++ b/core/res/res/values-uk/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"б"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"Кб"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"Мб"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"Гб"</string> +    <string name="terabyteShort" msgid="231613018159186962">"Тб"</string>      <string name="petabyteShort" msgid="5637816680144990219">"Пб"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Без назви>"</string> @@ -236,7 +240,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Голос. підказки"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Блокувати зараз"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Нове сповіщення"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Вміст сховано"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Вміст сховано згідно з правилом"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Віртуальна клавіатура"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Фізична клавіатура"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Безпека"</string> @@ -1010,7 +1015,7 @@      <string name="browse" msgid="6993590095938149861">"Веб-переглядач"</string>      <string name="low_internal_storage_view_title" msgid="5576272496365684834">"Закінчується пам’ять"</string>      <string name="low_internal_storage_view_text" msgid="6640505817617414371">"Деякі системні функції можуть не працювати"</string> -    <string name="low_internal_storage_view_text_no_boot" msgid="6935190099204693424">"Недостатньо місця для системи. Переконайтесь, що на пристрої є 250 МБ вільного місця, і повторіть спробу."</string> +    <string name="low_internal_storage_view_text_no_boot" msgid="6935190099204693424">"Недостатньо місця для системи. Переконайтесь, що на пристрої є 250 Мб вільного місця, і повторіть спробу."</string>      <string name="app_running_notification_title" msgid="8718335121060787914">"<xliff:g id="APP_NAME">%1$s</xliff:g> працює"</string>      <string name="app_running_notification_text" msgid="1197581823314971177">"Торкніться, щоб дізнатися більше або зупинити додаток."</string>      <string name="ok" msgid="5970060430562524910">"OK"</string> @@ -1779,8 +1784,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Відкріпити"</string>      <string name="app_info" msgid="6856026610594615344">"Про додаток"</string>      <string name="negative_duration" msgid="5688706061127375131">"-<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Скинути налаштування пристрою?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Торкніться, щоб скинути налаштування пристрою"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Запуск демонстрації…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Скидання налаштувань пристрою…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Скинути налаштування пристрою?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Ви втратите всі зміни, а демонстрація знову почнеться через <xliff:g id="TIMEOUT">%1$s</xliff:g> с…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Скасувати"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Скинути"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> вимкнено"</string>      <string name="conference_call" msgid="3751093130790472426">"Конференц-виклик"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Спливаюча підказка"</string> diff --git a/core/res/res/values-ur/strings.xml b/core/res/res/values-ur/strings.xml index a51cf95f0eb3..ca753697142e 100644 --- a/core/res/res/values-ur/strings.xml +++ b/core/res/res/values-ur/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"بائٹس"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">">بلا عنوان<"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Voice Assist"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"ابھی مقفل کریں"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"نئی اطلاع"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"مواد مخفی ہیں"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"مواد پالیسی کے تحت مخفی ہے"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"ورچوئل کی بورڈ"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"فزیکل کی بورڈ"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"سیکیورٹی"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"مزید معلومات کے لیے تھپتھپائيں"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB ڈیبگ کرنا مربوط ہو گیا"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"USB ڈیبگنگ کو غیر فعال کرنے کیلئے تھپتھپائیں۔"</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB ڈیبگ کرنے کو غیر فعال کرنے کیلئے منتخب کریں۔"</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"بگ رپورٹ لی جا رہی ہے…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"بگ رپورٹ کا اشتراک کریں؟"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"بگ رپورٹ کا اشتراک ہو رہا ہے…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"پن ہٹائیں"</string>      <string name="app_info" msgid="6856026610594615344">"ایپ کی معلومات"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"آلہ ری سیٹ کریں؟"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"آلہ ری سیٹ کرنے کیلئے تھپتھپائیں"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"ڈیمو شروع ہو رہا ہے…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"آلہ ری سیٹ ہو رہا ہے…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"آلہ ری سیٹ کریں؟"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"آپ کی تمام تبدیلیاں ضائع ہو جائیں گی اور ڈیمو <xliff:g id="TIMEOUT">%1$s</xliff:g> سیکنڈز میں دوبارہ شروع ہوگا…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"منسوخ کریں"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"ابھی ری سیٹ کریں"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"غیر فعال کردہ <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"کانفرنس کال"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"ٹول ٹپ"</string> diff --git a/core/res/res/values-uz/strings.xml b/core/res/res/values-uz/strings.xml index a448a18770ea..e26289386e2e 100644 --- a/core/res/res/values-uz/strings.xml +++ b/core/res/res/values-uz/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Nomsiz>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Ovozli yordam"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Qulflash"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Yangi bildirishnoma"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Kontent yashirildi"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Qoidaga muvofiq kontent yashirilgan"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Virtual klaviatura"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Tashqi klaviatura"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Xavfsizlik"</string> @@ -1179,7 +1184,8 @@      <string name="usb_unsupported_audio_accessory_message" msgid="7811865061127547035">"Tafsilotlar uchun bosing"</string>      <string name="adb_active_notification_title" msgid="6729044778949189918">"USB orqali nosozliklarni tuzatish"</string>      <string name="adb_active_notification_message" msgid="4948470599328424059">"Faolsizlantirish uchun bu yerga bosing."</string> -    <string name="adb_active_notification_message" product="tv" msgid="8470296818270110396">"USB orqali nosozliklarni tuzatishni o‘chirib qo‘yish uchun bosing."</string> +    <!-- no translation found for adb_active_notification_message (8470296818270110396) --> +    <skip />      <string name="taking_remote_bugreport_notification_title" msgid="6742483073875060934">"Xatoliklar hisoboti olinmoqda…"</string>      <string name="share_remote_bugreport_notification_title" msgid="4987095013583691873">"Xatoliklar hisoboti yuborilsinmi?"</string>      <string name="sharing_remote_bugreport_notification_title" msgid="7572089031496651372">"Xatoliklar hisoboti yuborilmoqda…"</string> @@ -1713,8 +1719,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Olib tashlash"</string>      <string name="app_info" msgid="6856026610594615344">"Ilova haqida"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Qurilma asl holatga qaytarilsinmi?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Qurilmani asl holatga qaytarish uchun bosing"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Demo boshlanmoqda…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Qurilma asl holatga qaytarilmoqda…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Qurilma asl holatga qaytarilsinmi?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Har qanday o‘zgarishlar o‘chib ketadi va demo <xliff:g id="TIMEOUT">%1$s</xliff:g> soniyadan so‘ng yana qayta ishga tushadi…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Bekor qilish"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Asl holatga qaytarish"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"<xliff:g id="LABEL">%1$s</xliff:g> vidjeti o‘chirilgan"</string>      <string name="conference_call" msgid="3751093130790472426">"Konferens-aloqa"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Maslahat oynasi"</string> diff --git a/core/res/res/values-vi/strings.xml b/core/res/res/values-vi/strings.xml index 9395b4ffd511..73a65b727e6d 100644 --- a/core/res/res/values-vi/strings.xml +++ b/core/res/res/values-vi/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Không có tiêu đề>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Trợ lý thoại"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Khóa ngay"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Thông báo mới"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Nội dung bị ẩn"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Nội dung bị ẩn theo chính sách"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Bàn phím ảo"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Bàn phím thực"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Bảo mật"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Bỏ ghim"</string>      <string name="app_info" msgid="6856026610594615344">"Thông tin ứng dụng"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Đặt lại thiết bị?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Nhấn để đặt lại thiết bị"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Đang bắt đầu bản trình diễn..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Đang đặt lại thiết bị..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Đặt lại thiết bị?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Bạn sẽ bị mất mọi thay đổi và bản trình diễn sẽ bắt đầu lại sau <xliff:g id="TIMEOUT">%1$s</xliff:g> giây…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Hủy"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Đặt lại ngay bây giờ"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"Đã tắt <xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"Cuộc gọi nhiều bên"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Chú giải công cụ"</string> diff --git a/core/res/res/values-zh-rCN/strings.xml b/core/res/res/values-zh-rCN/strings.xml index 8d0b18d8d08c..dc0395adf6dd 100644 --- a/core/res/res/values-zh-rCN/strings.xml +++ b/core/res/res/values-zh-rCN/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<未命名>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"语音助理"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"立即锁定"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"新通知"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"内容已隐藏"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"内容已隐藏(根据政策规定)"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"虚拟键盘"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"实体键盘"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"安全性"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"取消固定"</string>      <string name="app_info" msgid="6856026610594615344">"应用信息"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"要重置设备吗?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"点按即可重置设备"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"正在启动演示模式…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"正在重置设备…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"要重置设备吗?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"您将丢失所有更改,而且演示模式将在 <xliff:g id="TIMEOUT">%1$s</xliff:g> 秒后重新启动…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"取消"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"立即重置"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"已停用的<xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"电话会议"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"提示"</string> diff --git a/core/res/res/values-zh-rHK/strings.xml b/core/res/res/values-zh-rHK/strings.xml index 69fb98bc440c..57798ee01ad6 100644 --- a/core/res/res/values-zh-rHK/strings.xml +++ b/core/res/res/values-zh-rHK/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<未命名>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"語音助手"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"立即鎖定"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"新通知"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"內容已隱藏"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"已根據政策隱藏內容"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"虛擬鍵盤"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"實體鍵盤"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"安全性"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"取消固定"</string>      <string name="app_info" msgid="6856026610594615344">"應用程式資料"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"要重設裝置嗎?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"輕按即可重設裝置"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"正在開始示範…"</string>      <string name="demo_restarting_message" msgid="952118052531642451">"正在重設裝置…"</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"要重設裝置嗎?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"系統將不會儲存變更,示範將於 <xliff:g id="TIMEOUT">%1$s</xliff:g> 秒後重新開始…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"取消"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"立即重設"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"「<xliff:g id="LABEL">%1$s</xliff:g>」已停用"</string>      <string name="conference_call" msgid="3751093130790472426">"會議通話"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"提示"</string> diff --git a/core/res/res/values-zh-rTW/strings.xml b/core/res/res/values-zh-rTW/strings.xml index 39dd04ab7acd..39564ea543fc 100644 --- a/core/res/res/values-zh-rTW/strings.xml +++ b/core/res/res/values-zh-rTW/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"位元組"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"KB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<未命名>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"語音小幫手"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"立即鎖定"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"超過 999"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"新通知"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"內容已隱藏"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"內容已依據政策隱藏"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"虛擬鍵盤"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"實體鍵盤"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"安全性"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"取消固定"</string>      <string name="app_info" msgid="6856026610594615344">"應用程式資訊"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"要重設裝置嗎?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"輕觸即可重設裝置"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"正在啟動示範模式..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"正在重設裝置..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"要重設裝置嗎?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"系統不會儲存你所做的變更,示範模式將於 <xliff:g id="TIMEOUT">%1$s</xliff:g> 秒後重新開始…"</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"取消"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"立即重設"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"已停用的<xliff:g id="LABEL">%1$s</xliff:g>"</string>      <string name="conference_call" msgid="3751093130790472426">"電話會議"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"工具提示"</string> diff --git a/core/res/res/values-zu/strings.xml b/core/res/res/values-zu/strings.xml index 6f2b441bf52c..85180965d084 100644 --- a/core/res/res/values-zu/strings.xml +++ b/core/res/res/values-zu/strings.xml @@ -21,6 +21,10 @@  <resources xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">      <string name="byteShort" msgid="8340973892742019101">"B"</string> +    <string name="kilobyteShort" msgid="7542884022844556968">"kB"</string> +    <string name="megabyteShort" msgid="6355851576770428922">"MB"</string> +    <string name="gigabyteShort" msgid="3259882455212193214">"GB"</string> +    <string name="terabyteShort" msgid="231613018159186962">"TB"</string>      <string name="petabyteShort" msgid="5637816680144990219">"PB"</string>      <string name="fileSizeSuffix" msgid="8897567456150907538">"<xliff:g id="NUMBER">%1$s</xliff:g> <xliff:g id="UNIT">%2$s</xliff:g>"</string>      <string name="untitled" msgid="4638956954852782576">"<Akunasihloko>"</string> @@ -230,7 +234,8 @@      <string name="global_action_voice_assist" msgid="7751191495200504480">"Isisekeli sezwi"</string>      <string name="global_action_lockdown" msgid="8751542514724332873">"Khiya manje"</string>      <string name="status_bar_notification_info_overflow" msgid="5301981741705354993">"999+"</string> -    <string name="notification_hidden_text" msgid="6351207030447943784">"Isaziso esisha"</string> +    <string name="notification_hidden_text" msgid="1135169301897151909">"Okuqukethwe kufihliwe"</string> +    <string name="notification_hidden_by_policy_text" msgid="9004631276932584600">"Okuqukethwe kufihlwe inqubomgomo"</string>      <string name="notification_channel_virtual_keyboard" msgid="6969925135507955575">"Ikhibhodi ebonakalayo"</string>      <string name="notification_channel_physical_keyboard" msgid="7297661826966861459">"Ikhibhodi ephathekayo"</string>      <string name="notification_channel_security" msgid="7345516133431326347">"Ukuphepha"</string> @@ -1713,8 +1718,14 @@      <string name="unpin_target" msgid="3556545602439143442">"Susa ukuphina"</string>      <string name="app_info" msgid="6856026610594615344">"Ulwazi lohlelo lokusebenza"</string>      <string name="negative_duration" msgid="5688706061127375131">"−<xliff:g id="TIME">%1$s</xliff:g>"</string> +    <string name="reset_retail_demo_mode_title" msgid="2370249087943803584">"Setha kabusha idivayisi?"</string> +    <string name="reset_retail_demo_mode_text" msgid="5481925817590883246">"Thepha ukuze usethe kabusha idivayisi"</string>      <string name="demo_starting_message" msgid="5268556852031489931">"Iqalisa i-demo..."</string>      <string name="demo_restarting_message" msgid="952118052531642451">"Isetha kabusha idivayisi..."</string> +    <string name="demo_user_inactivity_timeout_title" msgid="6596109959002331334">"Setha kabusha idivayisi?"</string> +    <string name="demo_user_inactivity_timeout_countdown" msgid="5675588824402569506">"Uzolahlekelwa inoma iluphi ushintsho futhi idemo izoqala futhi kumasekhondi angu-<xliff:g id="TIMEOUT">%1$s</xliff:g>..."</string> +    <string name="demo_user_inactivity_timeout_left_button" msgid="5314271347014802475">"Khansela"</string> +    <string name="demo_user_inactivity_timeout_right_button" msgid="5019306703066964808">"Setha kabusha manje"</string>      <string name="suspended_widget_accessibility" msgid="6712143096475264190">"I-<xliff:g id="LABEL">%1$s</xliff:g> ekhutshaziwe"</string>      <string name="conference_call" msgid="3751093130790472426">"Ikholi yengqungquthela"</string>      <string name="tooltip_popup_title" msgid="5253721848739260181">"Ithulithiphu"</string> diff --git a/core/res/res/xml/sms_short_codes.xml b/core/res/res/xml/sms_short_codes.xml index dbc9e517eef1..7e9f561e68d5 100644 --- a/core/res/res/xml/sms_short_codes.xml +++ b/core/res/res/xml/sms_short_codes.xml @@ -67,7 +67,7 @@      <shortcode country="by" pattern="\\d{4}" premium="3336|4161|444[4689]|501[34]|7781" />      <!-- Canada: 5-6 digits --> -    <shortcode country="ca" pattern="\\d{5,6}" premium="60999|88188|43030" /> +    <shortcode country="ca" pattern="\\d{5,6}" premium="60999|88188|43030" standard="244444" />      <!-- Switzerland: 3-5 digits: http://www.swisscom.ch/fxres/kmu/thirdpartybusiness_code_of_conduct_en.pdf -->      <shortcode country="ch" pattern="[2-9]\\d{2,4}" premium="543|83111|30118" free="98765" /> @@ -221,7 +221,7 @@      <shortcode country="ro" pattern="\\d{4}" premium="12(?:63|66|88)|13(?:14|80)" free="116\\d{3}|3654|8360" />      <!-- Russia: 4 digits, known premium codes listed: http://smscoin.net/info/pricing-russia/ --> -    <shortcode country="ru" pattern="\\d{4}" premium="1(?:1[56]1|899)|2(?:09[57]|322|47[46]|880|990)|3[589]33|4161|44(?:4[3-9]|81)|77(?:33|81)|8424" free="6954,8501"/> +    <shortcode country="ru" pattern="\\d{4}" premium="1(?:1[56]1|899)|2(?:09[57]|322|47[46]|880|990)|3[589]33|4161|44(?:4[3-9]|81)|77(?:33|81)|8424" free="6954|8501" standard="2037|2044"/>      <!-- Saudi Arabia -->      <shortcode country="sa" free="8145" /> @@ -253,7 +253,7 @@      <!-- USA: 5-6 digits (premium codes from https://www.premiumsmsrefunds.com/ShortCodes.htm),           visual voicemail code for T-Mobile: 122 --> -    <shortcode country="us" pattern="\\d{5,6}" premium="20433|21(?:344|472)|22715|23(?:333|847)|24(?:15|28)0|25209|27(?:449|606|663)|28498|305(?:00|83)|32(?:340|941)|33(?:166|786|849)|34746|35(?:182|564)|37975|38(?:135|146|254)|41(?:366|463)|42335|43(?:355|500)|44(?:578|711|811)|45814|46(?:157|173|327)|46666|47553|48(?:221|277|669)|50(?:844|920)|51(?:062|368)|52944|54(?:723|892)|55928|56483|57370|59(?:182|187|252|342)|60339|61(?:266|982)|62478|64(?:219|898)|65(?:108|500)|69(?:208|388)|70877|71851|72(?:078|087|465)|73(?:288|588|882|909|997)|74(?:034|332|815)|76426|79213|81946|83177|84(?:103|685)|85797|86(?:234|236|666)|89616|90(?:715|842|938)|91(?:362|958)|94719|95297|96(?:040|666|835|969)|97(?:142|294|688)|99(?:689|796|807)" standard="44567" free="122|87902|21696|24614|28003|30356|33669|40196|41064|41270|43753|44034|46645|52413|56139|57969|61785|66975|75136|76227|81398|83952|85140|86566|86799|95737|96684|99245" /> +    <shortcode country="us" pattern="\\d{5,6}" premium="20433|21(?:344|472)|22715|23(?:333|847)|24(?:15|28)0|25209|27(?:449|606|663)|28498|305(?:00|83)|32(?:340|941)|33(?:166|786|849)|34746|35(?:182|564)|37975|38(?:135|146|254)|41(?:366|463)|42335|43(?:355|500)|44(?:578|711|811)|45814|46(?:157|173|327)|46666|47553|48(?:221|277|669)|50(?:844|920)|51(?:062|368)|52944|54(?:723|892)|55928|56483|57370|59(?:182|187|252|342)|60339|61(?:266|982)|62478|64(?:219|898)|65(?:108|500)|69(?:208|388)|70877|71851|72(?:078|087|465)|73(?:288|588|882|909|997)|74(?:034|332|815)|76426|79213|81946|83177|84(?:103|685)|85797|86(?:234|236|666)|89616|90(?:715|842|938)|91(?:362|958)|94719|95297|96(?:040|666|835|969)|97(?:142|294|688)|99(?:689|796|807)" standard="44567|244444" free="122|87902|21696|24614|28003|30356|33669|40196|41064|41270|43753|44034|46645|52413|56139|57969|61785|66975|75136|76227|81398|83952|85140|86566|86799|95737|96684|99245" />      <!-- Vietnam: 1-5 digits (standard system default, not country specific) -->      <shortcode country="vn" pattern="\\d{1,5}" free="5001|9055" /> diff --git a/libs/hwui/TessellationCache.cpp b/libs/hwui/TessellationCache.cpp index 91e7ac39af90..9adf0538203e 100644 --- a/libs/hwui/TessellationCache.cpp +++ b/libs/hwui/TessellationCache.cpp @@ -400,7 +400,9 @@ TessellationCache::Buffer* TessellationCache::getOrCreateBuffer(              mProcessor = new TessellationProcessor(Caches::getInstance());          }          mProcessor->add(task); -        mCache.put(entry, buffer); +        bool inserted = mCache.put(entry, buffer); +        // Note to the static analyzer that this insert should always succeed. +        LOG_ALWAYS_FATAL_IF(!inserted, "buffers shouldn't spontaneously appear in the cache");      }      return buffer;  } diff --git a/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java b/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java index be87ed2ed887..e13aba7e5fe6 100644 --- a/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java +++ b/packages/CaptivePortalLogin/src/com/android/captiveportallogin/CaptivePortalLoginActivity.java @@ -37,6 +37,7 @@ import android.provider.Settings;  import android.util.ArrayMap;  import android.util.Log;  import android.util.TypedValue; +import android.util.SparseArray;  import android.view.Menu;  import android.view.MenuItem;  import android.view.View; @@ -44,6 +45,7 @@ import android.webkit.SslErrorHandler;  import android.webkit.WebChromeClient;  import android.webkit.WebSettings;  import android.webkit.WebView; +import android.webkit.WebView;  import android.webkit.WebViewClient;  import android.widget.ProgressBar;  import android.widget.TextView; @@ -375,7 +377,7 @@ public class CaptivePortalLoginActivity extends Activity {                  return;              }              final URL url = makeURL(urlString); -            Log.d(TAG, "onPageSarted: " + sanitizeURL(url)); +            Log.d(TAG, "onPageStarted: " + sanitizeURL(url));              mHostname = host(url);              // For internally generated pages, leave URL bar listing prior URL as this is the URL              // the page refers to. @@ -426,7 +428,7 @@ public class CaptivePortalLoginActivity extends Activity {              final URL url = makeURL(error.getUrl());              final String host = host(url);              Log.d(TAG, String.format("SSL error: %s, url: %s, certificate: %s", -                    error.getPrimaryError(), sanitizeURL(url), error.getCertificate())); +                    sslErrorName(error), sanitizeURL(url), error.getCertificate()));              if (url == null || !Objects.equals(host, mHostname)) {                  // Ignore ssl errors for resources coming from a different hostname than the page                  // that we are currently loading, and only cancel the request. @@ -539,4 +541,18 @@ public class CaptivePortalLoginActivity extends Activity {      private void logMetricsEvent(int event) {          MetricsLogger.action(this, event, getPackageName());      } + +    private static final SparseArray<String> SSL_ERRORS = new SparseArray<>(); +    static { +        SSL_ERRORS.put(SslError.SSL_NOTYETVALID,  "SSL_NOTYETVALID"); +        SSL_ERRORS.put(SslError.SSL_EXPIRED,      "SSL_EXPIRED"); +        SSL_ERRORS.put(SslError.SSL_IDMISMATCH,   "SSL_IDMISMATCH"); +        SSL_ERRORS.put(SslError.SSL_UNTRUSTED,    "SSL_UNTRUSTED"); +        SSL_ERRORS.put(SslError.SSL_DATE_INVALID, "SSL_DATE_INVALID"); +        SSL_ERRORS.put(SslError.SSL_INVALID,      "SSL_INVALID"); +    } + +    private static String sslErrorName(SslError error) { +        return SSL_ERRORS.get(error.getPrimaryError(), "UNKNOWN"); +    }  } diff --git a/packages/PrintSpooler/res/values-pt-rPT/strings.xml b/packages/PrintSpooler/res/values-pt-rPT/strings.xml index eac6d36164da..174789f43229 100644 --- a/packages/PrintSpooler/res/values-pt-rPT/strings.xml +++ b/packages/PrintSpooler/res/values-pt-rPT/strings.xml @@ -56,7 +56,7 @@      <string name="print_select_printer" msgid="7388760939873368698">"Selecionar impressora"</string>      <string name="print_forget_printer" msgid="5035287497291910766">"Esquecer impressora"</string>      <plurals name="print_search_result_count_utterance" formatted="false" msgid="6997663738361080868"> -      <item quantity="one"><xliff:g id="COUNT_0">%1$s</xliff:g> impressora encontrada</item> +      <item quantity="one"><xliff:g id="COUNT_1">%1$s</xliff:g> printers found</item>        <item quantity="other"><xliff:g id="COUNT_1">%1$s</xliff:g> impressoras encontradas</item>      </plurals>      <string name="printer_extended_description_template" msgid="1366699227703381874">"<xliff:g id="PRINT_SERVICE_LABEL">%1$s</xliff:g> – <xliff:g id="PRINTER_DESCRIPTION">%2$s</xliff:g>"</string> @@ -76,7 +76,7 @@      <string name="disabled_services_title" msgid="7313253167968363211">"Serviços desativados"</string>      <string name="all_services_title" msgid="5578662754874906455">"Todos os serviços"</string>      <plurals name="print_services_recommendation_subtitle" formatted="false" msgid="5678487708807185138"> -      <item quantity="one">Instale para detetar <xliff:g id="COUNT_0">%1$s</xliff:g> impressora</item> +      <item quantity="one">Install to discover <xliff:g id="COUNT_1">%1$s</xliff:g> printers</item>        <item quantity="other">Instale para detetar <xliff:g id="COUNT_1">%1$s</xliff:g> impressoras</item>      </plurals>      <string name="printing_notification_title_template" msgid="295903957762447362">"A imprimir <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> diff --git a/packages/SettingsLib/res/values-af/strings.xml b/packages/SettingsLib/res/values-af/strings.xml index c174d5cc1d41..5d04cf6974b9 100644 --- a/packages/SettingsLib/res/values-af/strings.xml +++ b/packages/SettingsLib/res/values-af/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Gekoppel via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Beskikbaar via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Gekoppel, geen internet nie"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Toegangspunt is tydelik vol"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Baie stadig"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Stadig"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Middelmatig"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Vinnig"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Baie vinnig"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ontkoppel"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ontkoppel tans…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Verbind tans…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi twee stawe."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi drie stawe."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi-sein vol."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Oop netwerk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Veilige netwerk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android-bedryfstelsel"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Verwyderde programme"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Verwyderde programme en gebruikers"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Gepasmaak (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Hulp en terugvoer"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Kieslys"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"MGT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Voer wagwoord in om fabriekterugstelling in demonstrasiemodus uit te voer"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Volgende"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Wagwoord word benodig"</string> diff --git a/packages/SettingsLib/res/values-am/strings.xml b/packages/SettingsLib/res/values-am/strings.xml index e1f61079c3c7..b42d26ac3225 100644 --- a/packages/SettingsLib/res/values-am/strings.xml +++ b/packages/SettingsLib/res/values-am/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"በ%1$s በኩል መገናኘት"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"በ%1$s በኩል የሚገኝ"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"ተገናኝቷል፣ ምንም በይነመረብ የለም"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"የመዳረሻ ነጥብ ለጊዜው ሞልቷል"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"በጣም ቀርፋፋ"</string>      <string name="speed_label_slow" msgid="813109590815810235">"አዘግይ"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"እሺ"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"መካከለኛ"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"ፈጣን"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"እጅግ በጣም ፈጣን"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ተለያይቷል"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"በመለያየት ላይ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"በማገናኘት ላይ…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"ሁለት የWiFi አሞሌዎች።"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"ሦስት የWiFi አሞሌዎች።"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"የWiFi ምልክት ሙሉ ነው።"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"አውታረ መረብ ክፈት"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"ደህንነቱ የተጠበቀ አውታረ መረብ"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android  ስርዓተ ክወና"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"የተወገዱ መተግበሪያዎች"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"የተወገዱ መተግበሪያዎች እና ተጠቃሚዎች"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"ብጁ (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"እገዛ እና ግብረመልስ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"ምናሌ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"ጂኤምቲ"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"የፋብሪካ ዳግም ማስጀመር በማሳያ ሁነታ ውስጥ ለማከናወን የይለፍ ቃል ያስገቡ"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ቀጣይ"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"የይለፍ ቃል ያስፈልጋል"</string> diff --git a/packages/SettingsLib/res/values-ar/strings.xml b/packages/SettingsLib/res/values-ar/strings.xml index c7d825047cb5..2ac6bb502fff 100644 --- a/packages/SettingsLib/res/values-ar/strings.xml +++ b/packages/SettingsLib/res/values-ar/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"تم الاتصال عبر %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"متوفرة عبر %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"متصلة، ولا يتوفر إنترنت"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"نقطة الدخول ممتلئة مؤقتًا"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"بطيئة جدًا"</string>      <string name="speed_label_slow" msgid="813109590815810235">"بطيئة"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"موافق"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"متوسطة"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"سريعة"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"سريعة جدًا"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"غير متصل"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"جارٍ قطع الاتصال..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"جارٍ الاتصال…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"إشارة Wi-Fi تتكون من شريطين."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"إشارة Wi-Fi تتكون من ثلاثة أشرطة."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"إشارة Wi-Fi كاملة."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"شبكة مفتوحة"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"شبكة محمية بكلمة مرور"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"نظام التشغيل Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"التطبيقات المزالة"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"التطبيقات والمستخدمون الذين تمت إزالتهم"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"مخصص (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"المساعدة والتعليقات"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"القائمة"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"غرينيتش"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"إدخال كلمة المرور لإعادة الضبط بحسب بيانات المصنع في الوضع التجريبي"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"التالي"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"يلزم توفر كلمة مرور"</string> diff --git a/packages/SettingsLib/res/values-az/strings.xml b/packages/SettingsLib/res/values-az/strings.xml index 34736c649ba8..494ae00bc966 100644 --- a/packages/SettingsLib/res/values-az/strings.xml +++ b/packages/SettingsLib/res/values-az/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s vasitəsilə qoşuludur"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s vasitəsilə əlçatandır"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Qoşuludur, internet yoxdur"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Giriş nöqtəsi müvəqqəti olaraq doludur"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Çox Yavaş"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Yavaş"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Orta"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Sürətli"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Çox Sürətli"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ayrıldı"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ayrılır..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Qoşulur..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi iki xətdir."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi üç xətdir."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi siqnalı tamdır."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Açıq şəbəkə"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Təhlükəsiz şəbəkə"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Silinmiş tətbiqlər"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Tətbiqləri və istifadəçiləri silin"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Fərdi (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Yardım və rəy"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menyu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Demo rejimində sıfırlamaq üçün parol daxil edin"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Növbəti"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Parol tələb olunur"</string> diff --git a/packages/SettingsLib/res/values-b+sr+Latn/strings.xml b/packages/SettingsLib/res/values-b+sr+Latn/strings.xml index bbffe8f94e17..fb06a8233c7a 100644 --- a/packages/SettingsLib/res/values-b+sr+Latn/strings.xml +++ b/packages/SettingsLib/res/values-b+sr+Latn/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Veza je uspostavljena preko pristupne tačke %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Dostupna je preko pristupne tačke %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Veza je uspostavljena, nema interneta"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Pristupna tačka je privremeno zauzeta"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Veoma spora"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Spora"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Potvrdi"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Srednja"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Brza"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Veoma brza"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Veza je prekinuta"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Prekidanje veze..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Povezivanje…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi signal ima dve crte."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi signal ima tri crte."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi signal je najjači."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Otvorena mreža"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Bezbedna mreža"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Uklonjene aplikacije"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Uklonjene aplikacije i korisnici"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Prilagođeni (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pomoć i povratne informacije"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meni"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Unesite lozinku da biste obavili resetovanje na fabrička podešavanja u režimu demonstracije"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Dalje"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Potrebna je lozinka"</string> diff --git a/packages/SettingsLib/res/values-be/strings.xml b/packages/SettingsLib/res/values-be/strings.xml index aaf7e9a2f0ca..f73fd39f61f4 100644 --- a/packages/SettingsLib/res/values-be/strings.xml +++ b/packages/SettingsLib/res/values-be/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Падлучана праз %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Даступна праз %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Падлучана, няма інтэрнэту"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Пункт доступу часова заняты"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Вельмі павольная"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Павольная"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ОК"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Сярэдняя"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Хуткая"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Вельмі хуткая"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Адключана"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Адключэнне..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Злучэнне..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Два слупкi Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Тры слупкi Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Поўны сігнал Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Адкрытая сетка"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Бяспечная сетка"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"АС Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Выдаленыя прыкладанні"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Выдаленыя прыкладанні і карыстальнiкi"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Карыстальніцкі (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Даведка і водгукі"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Меню"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Каб выканаць скід да заводскіх налад у дэманстрацыйным рэжыме, увядзіце пароль"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Далей"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Патрабуецца пароль"</string> diff --git a/packages/SettingsLib/res/values-bg/strings.xml b/packages/SettingsLib/res/values-bg/strings.xml index 628234cea488..aa42ccea3c2a 100644 --- a/packages/SettingsLib/res/values-bg/strings.xml +++ b/packages/SettingsLib/res/values-bg/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Установена е връзка през „%1$s“"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Мрежата е достъпна през „%1$s“"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Установена е връзка – няма достъп до интернет"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Точката за достъп временно е пълна"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Много бавна"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Бавна"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ОK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Средна"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Бърза"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Много бърза"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Изкл."</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Изключва се..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Установява се връзка…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi е с две чертички."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi е с три чертички."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Сигналът за Wi-Fi е пълен."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Отворена мрежа"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Защитена мрежа"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android (ОС)"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Премахнати приложения"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Премахнати приложения и потребители"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Персонализирано (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Помощ и отзиви"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Меню"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"Средно време по Гринуич (GMT)"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Въведете парола за възст. на фабр. настройки в демонстр. режим"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Напред"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Изисква се парола"</string> diff --git a/packages/SettingsLib/res/values-bn/strings.xml b/packages/SettingsLib/res/values-bn/strings.xml index 6c8ff8ceb9dd..62deb12fbf94 100644 --- a/packages/SettingsLib/res/values-bn/strings.xml +++ b/packages/SettingsLib/res/values-bn/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s মাধ্যমে সংযুক্ত হয়েছে"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s এর মাধ্যমে উপলব্ধ"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"সংযুক্ত, ইন্টারনেট নেই"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"এই মুহূর্তে অ্যাক্সেস পয়েন্টের কোনও কানেকশন ফাঁকা নেই"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"খুব ধীরে"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ধীরে"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ঠিক আছে"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"মাঝারি"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"দ্রুত"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"খুব দ্রুত"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"সংযোগ বিচ্ছিন্ন করা হয়েছে"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"সংযোগ বিচ্ছিন্ন হচ্ছে..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"সংযুক্ত হচ্ছে..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"ওয়াই ফাই এ দুইটি দণ্ড৷"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"ওয়াই ফাই এ তিনটি দণ্ড৷"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"ওয়াই ফাই এ সম্পূর্ণ সিগন্যাল৷"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"খোলা নেটওয়ার্ক"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"সুরক্ষিত নেটওয়ার্ক"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"সরানো অ্যাপ্লিকেশানগুলি"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"সরানো অ্যাপ্লিকেশানগুলি এবং ব্যবহারকারীগণ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"কাস্টম (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"সহায়তা ও মতামত"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"মেনু"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ডেমো মোডে ফ্যাক্টরি রিসেট করতে পাসওয়ার্ড দিন"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"পরবর্তী"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"পাসওয়ার্ড আবশ্যক"</string> diff --git a/packages/SettingsLib/res/values-bs/strings.xml b/packages/SettingsLib/res/values-bs/strings.xml index e6d62d3d41e8..ca187ab573db 100644 --- a/packages/SettingsLib/res/values-bs/strings.xml +++ b/packages/SettingsLib/res/values-bs/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Povezani preko %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Dostupan preko %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Povezano. Nema interneta"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Pristupna tačka je privremeno puna"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Veoma sporo"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Sporo"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"UREDU"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Srednja brzina"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Brzo"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Veoma brzo"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Isključen"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Prekidanje veze…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Povezivanje…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi dvije crtice."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi tri crtice."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi puni signal."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Otvorena mreža"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sigurna mreža"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Uklonjene aplikacije"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Uklonjene aplikacije i korisnici"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Prilagodi (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pomoć i povratne informacije"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meni"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Unesite lozinku da izvršite vraćanje na fabričke postavke u načinu demonstracije"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Naprijed"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Potrebna je lozinka"</string> diff --git a/packages/SettingsLib/res/values-ca/strings.xml b/packages/SettingsLib/res/values-ca/strings.xml index 75f464d78bf9..00bb4a98a5ef 100644 --- a/packages/SettingsLib/res/values-ca/strings.xml +++ b/packages/SettingsLib/res/values-ca/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Connectada mitjançant %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponible mitjançant %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connectada, sense Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"El punt d\'accés està temporalment ple"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Molt lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Correcta"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Mitjana"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Ràpida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Molt ràpida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconnectat"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"S\'està desconnectant..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"S\'està connectant…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Senyal Wi-Fi: dues barres."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Senyal Wi-Fi: tres barres."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Senyal Wi-Fi: complet."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Xarxa oberta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Xarxa segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplicacions eliminades"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplicacions i usuaris eliminats"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalitzat (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ajuda i suggeriments"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menú"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Introdueix la contrasenya per restablir les dades de fàbrica en mode de demostració"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Següent"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Contrasenya obligatòria"</string> diff --git a/packages/SettingsLib/res/values-cs/strings.xml b/packages/SettingsLib/res/values-cs/strings.xml index 7af97e18ca0d..8dd1c324d08a 100644 --- a/packages/SettingsLib/res/values-cs/strings.xml +++ b/packages/SettingsLib/res/values-cs/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Připojeno prostřednictvím %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Dostupné prostřednictvím %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Připojeno, není k dispozici internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Přístupový bod je dočasně zaplněn"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Velmi pomalá"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Pomalá"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Střední"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rychlá"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Velmi rychlá"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Odpojeno"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Odpojování..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Připojování..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi – dvě čárky."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi – tři čárky."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi – plný signál."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Nezabezpečená síť"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Zabezpečená síť"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"OS Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Odebrané aplikace"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Odebrané aplikace a odebraní uživatelé"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Vlastní (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Nápověda a zpětná vazba"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Nabídka"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Chcete-li v ukázkovém režimu obnovit zařízení do továrního nastavení, zadejte heslo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Další"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Je třeba zadat heslo"</string> diff --git a/packages/SettingsLib/res/values-da/strings.xml b/packages/SettingsLib/res/values-da/strings.xml index 948096c11505..143ad9238e9e 100644 --- a/packages/SettingsLib/res/values-da/strings.xml +++ b/packages/SettingsLib/res/values-da/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Tilsluttet via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Tilgængelig via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Tilsluttet – intet internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Adgangspunktet er midlertidigt fuldt"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Meget langsom"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Langsom"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Middel"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Hurtig"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Meget hurtig"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> – <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Afbrudt"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Afbryder ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Opretter forbindelse..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi har to bjælker."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi har tre bjælker."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi har fuldt signal."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Åbent netværk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sikkert netværk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Fjernede apps"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Fjernede apps og brugere"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Tilpasset (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Hjælp og feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Angiv adgangskode for at gendanne fabriksdata i demotilstand"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Næste"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Angiv en adgangskode"</string> diff --git a/packages/SettingsLib/res/values-de/strings.xml b/packages/SettingsLib/res/values-de/strings.xml index 40c5e7abd90f..fda1aa496fe2 100644 --- a/packages/SettingsLib/res/values-de/strings.xml +++ b/packages/SettingsLib/res/values-de/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Über %1$s verbunden"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Verfügbar über %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Verbunden, kein Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Zugangspunkt vorübergehend voll belegt"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Sehr langsam"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Langsam"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Mittel"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Schnell"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Sehr schnell"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> – <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Nicht verbunden"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Verbindung wird getrennt..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Verbindung wird hergestellt..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"WLAN: zwei Balken"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"WLAN: drei Balken"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"WLAN: volle Signalstärke"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Offenes Netzwerk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sicheres Netzwerk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Entfernte Apps"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Entfernte Apps und Nutzer"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Benutzerdefiniert (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Hilfe & Feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menü"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Passwort eingeben, um Gerät im Demomodus auf Werkseinstellungen zurückzusetzen"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Weiter"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Passwort erforderlich"</string> diff --git a/packages/SettingsLib/res/values-el/strings.xml b/packages/SettingsLib/res/values-el/strings.xml index 13072def68ba..244af422292e 100644 --- a/packages/SettingsLib/res/values-el/strings.xml +++ b/packages/SettingsLib/res/values-el/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Συνδέθηκε μέσω %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Διαθέσιμο μέσω %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Συνδέθηκε, χωρίς διαδίκτυο"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Το σημείο πρόσβασης είναι προσωρινά πλήρες"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Πολύ αργή"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Αργή"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ΟΚ"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Μέτρια"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Γρήγορη"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Πολύ γρήγορη"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Αποσυνδέθηκε"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Αποσύνδεση..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Σύνδεση..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Δύο γραμμές Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Τρεις γραμμές Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Άριστο σήμα Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Ανοικτό δίκτυο"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Ασφαλές δίκτυο"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Λειτουργικό σύστημα Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Εφαρμογές που καταργήθηκαν"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Εφαρμογές και χρήστες που έχουν καταργηθεί"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Προσαρμοσμένη (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Βοήθεια και σχόλια"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Μενού"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Εισαγάγετε κωδικό πρόσβασης για επαναφορά εργοστασιακών ρυθμίσεων στη λειτουργία επίδειξης"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Επόμενο"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Απαιτείται κωδικός πρόσβασης"</string> diff --git a/packages/SettingsLib/res/values-en-rAU/strings.xml b/packages/SettingsLib/res/values-en-rAU/strings.xml index 768dc8dfb1a9..09ad05cc7a71 100644 --- a/packages/SettingsLib/res/values-en-rAU/strings.xml +++ b/packages/SettingsLib/res/values-en-rAU/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Connected via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Available via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connected, no Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Access point temporarily full"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Very slow"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Slow"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Medium"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Fast"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Very fast"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi two bars."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi three bars."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi signal full."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Open network"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Secure network"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Removed apps"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Removed apps and users"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Custom (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Help & feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Enter password to perform factory reset in demo mode"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Next"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Password required"</string> diff --git a/packages/SettingsLib/res/values-en-rGB/strings.xml b/packages/SettingsLib/res/values-en-rGB/strings.xml index 768dc8dfb1a9..09ad05cc7a71 100644 --- a/packages/SettingsLib/res/values-en-rGB/strings.xml +++ b/packages/SettingsLib/res/values-en-rGB/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Connected via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Available via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connected, no Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Access point temporarily full"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Very slow"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Slow"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Medium"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Fast"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Very fast"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi two bars."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi three bars."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi signal full."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Open network"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Secure network"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Removed apps"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Removed apps and users"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Custom (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Help & feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Enter password to perform factory reset in demo mode"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Next"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Password required"</string> diff --git a/packages/SettingsLib/res/values-en-rIN/strings.xml b/packages/SettingsLib/res/values-en-rIN/strings.xml index 768dc8dfb1a9..09ad05cc7a71 100644 --- a/packages/SettingsLib/res/values-en-rIN/strings.xml +++ b/packages/SettingsLib/res/values-en-rIN/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Connected via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Available via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connected, no Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Access point temporarily full"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Very slow"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Slow"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Medium"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Fast"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Very fast"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi two bars."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi three bars."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi signal full."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Open network"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Secure network"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Removed apps"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Removed apps and users"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Custom (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Help & feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Enter password to perform factory reset in demo mode"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Next"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Password required"</string> diff --git a/packages/SettingsLib/res/values-es-rUS/strings.xml b/packages/SettingsLib/res/values-es-rUS/strings.xml index 6f990ae544f2..7e21d6c9ba28 100644 --- a/packages/SettingsLib/res/values-es-rUS/strings.xml +++ b/packages/SettingsLib/res/values-es-rUS/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Conexión a través de %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponible a través de %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Conectado a Wi-Fi, sin conexión a Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"El punto de acceso está completo temporalmente"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Muy lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Aceptar"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Media"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rápida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Muy rápida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Dos barras de Wi-Fi"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Tres barras de Wi-Fi"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Señal de Wi-Fi excelente"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Red abierta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Red segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"SO Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplicaciones eliminadas"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplicaciones y usuarios eliminados"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizado (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ayuda y comentarios"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menú"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Ingresa contraseña y restablece en demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Siguiente"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Contraseña obligatoria"</string> diff --git a/packages/SettingsLib/res/values-es/strings.xml b/packages/SettingsLib/res/values-es/strings.xml index 6d60362c740e..4a6f12d75f73 100644 --- a/packages/SettingsLib/res/values-es/strings.xml +++ b/packages/SettingsLib/res/values-es/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Conectado a través de %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponible a través de %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Conexión sin Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Punto de acceso temporalmente lleno"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Muy lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Aceptar"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Media"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rápida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Muy rápida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Estableciendo conexión…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Dos barras de Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Tres barras de Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Señal de Wi-Fi al máximo."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Red abierta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Red segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"SO Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplicaciones eliminadas"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Usuarios y aplicaciones eliminados"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizado (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ayuda y sugerencias"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menú"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Escribe una contraseña para restablecer datos de fábrica en modo demostración"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Siguiente"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Contraseña obligatoria"</string> diff --git a/packages/SettingsLib/res/values-et/strings.xml b/packages/SettingsLib/res/values-et/strings.xml index cee443bff8a5..f3748f81a797 100644 --- a/packages/SettingsLib/res/values-et/strings.xml +++ b/packages/SettingsLib/res/values-et/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Ühendatud üksuse %1$s kaudu"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Saadaval üksuse %1$s kaudu"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Ühendatud, Interneti-ühendus puudub"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Pääsupunkt on ajutiselt täis"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Väga aeglane"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Aeglane"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Hea"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Keskmine"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Kiire"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Väga kiire"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ühendus katkestatud"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ühenduse katkestamine ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Ühendamine ..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"WiFi: kaks pulka."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"WiFi: kolm pulka."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"WiFi-signaal on tugev."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Avatud võrk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Turvaline võrk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Eemaldatud rakendused"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Eemaldatud rakendused ja kasutajad"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Kohandatud (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Abi ja tagasiside"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menüü"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Sisestage parool, et demorežiimis tehaseseadetele lähtestada"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Järgmine"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Parool on kohustuslik"</string> diff --git a/packages/SettingsLib/res/values-eu/strings.xml b/packages/SettingsLib/res/values-eu/strings.xml index d0aa89f08b5b..9fd8ad84f7f8 100644 --- a/packages/SettingsLib/res/values-eu/strings.xml +++ b/packages/SettingsLib/res/values-eu/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s bidez konektatuta"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s bidez erabilgarri"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Konektatuta, ez dago Interneteko konexiorik"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Sarbide-puntua beteta dago aldi baterako"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Oso motela"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Motela"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Ados"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Tartekoa"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Bizkorra"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Oso bizkorra"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Deskonektatuta"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Deskonektatzen…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Konektatzen…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi sarearen bi barra."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi sarearen hiru barra."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi sarearen seinalea osoa."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Sare irekia"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sare segurua"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android sistema eragilea"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Kendutako aplikazioak"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Kendutako aplikazioak eta erabiltzaileak"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Pertsonalizatua (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Laguntza eta iritziak"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menua"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Idatzi pasahitza jatorrizko ezarpenak demo moduan berrezartzeko"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Hurrengoa"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Pasahitza behar da"</string> diff --git a/packages/SettingsLib/res/values-fa/strings.xml b/packages/SettingsLib/res/values-fa/strings.xml index 266b8ce56113..0430592a47dd 100644 --- a/packages/SettingsLib/res/values-fa/strings.xml +++ b/packages/SettingsLib/res/values-fa/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"متصل از طریق %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"در دسترس از طریق %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"متصل، بدون اینترنت"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ظرفیت نقطه دسترسی موقتاً تکمیل شده است"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"بسیار آهسته"</string>      <string name="speed_label_slow" msgid="813109590815810235">"آهسته"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"تأیید"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"متوسط"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"سریع"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"خیلی سریع"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"اتصال قطع شد"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"در حال قطع اتصال..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"در حال اتصال…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"دو نوار برای Wi‑Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"سه نوار برای Wi‑Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"قدرت سیگنال Wi‑Fi کامل است."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"شبکه باز"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"شبکه ایمن"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"سیستم عامل Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"برنامههای حذف شده"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"برنامهها و کاربران حذف شده"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"سفارشی (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"راهنما و بازخورد"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"منو"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"برای انجام بازنشانی کارخانهای در حالت نمایشی، گذرواژه را وارد کنید"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"بعدی"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"وارد کردن گذرواژه الزامی است"</string> diff --git a/packages/SettingsLib/res/values-fi/strings.xml b/packages/SettingsLib/res/values-fi/strings.xml index 185f56ada1fa..e3a92e6ad0fa 100644 --- a/packages/SettingsLib/res/values-fi/strings.xml +++ b/packages/SettingsLib/res/values-fi/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Yhdistetty seuraavan kautta: %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Käytettävissä seuraavan kautta: %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Yhdistetty, ei internetyhteyttä."</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Yhteyspiste tilapäisesti täynnä"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Hyvin hidas"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Hidas"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Kohtuullinen"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Nopea"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Hyvin nopea"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Yhteys katkaistu"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Katkaistaan yhteyttä..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Yhdistetään…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi-signaali – kaksi palkkia"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi-signaali – kolme palkkia"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Vahva Wi-Fi-signaali"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Avoin verkko"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Suojattu verkko"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android-käyttöjärjestelmä"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Poistetut sovellukset"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Poistetut sovellukset ja käyttäjät"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Muokattu (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ohje ja palaute"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Valikko"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Palauta tehdasasetukset antamalla salasana"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Seuraava"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Salasana vaaditaan"</string> diff --git a/packages/SettingsLib/res/values-fr-rCA/strings.xml b/packages/SettingsLib/res/values-fr-rCA/strings.xml index 8dc8ead6ba36..99692a65bd70 100644 --- a/packages/SettingsLib/res/values-fr-rCA/strings.xml +++ b/packages/SettingsLib/res/values-fr-rCA/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Connecté par %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Accessible par %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connecté, aucun accès à Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Le point d\'accès est temporairement plein"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Très lente"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lente"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Moyenne"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Élevée"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Très rapide"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> : <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Déconnecté"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Déconnexion…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Connexion en cours…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi : deux barres."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi : trois barres."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi : signal complet."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Réseau ouvert"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Réseau sécurisé"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Système d\'exploitation Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Applications supprimées"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Applications et utilisateurs supprimés"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personnalisée (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Aide et commentaires"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Entrez m. passe pour réinit. en mode démo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Suivant"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Mot de passe obligatoire"</string> diff --git a/packages/SettingsLib/res/values-fr/strings.xml b/packages/SettingsLib/res/values-fr/strings.xml index 7fdc7165f9f3..2593c16f1242 100644 --- a/packages/SettingsLib/res/values-fr/strings.xml +++ b/packages/SettingsLib/res/values-fr/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Connecté via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponible via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connecté, aucun accès à Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Point d\'accès temporairement plein"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Très lente"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lente"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Correct"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Moyenne"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Élevée"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Très élevée"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Déconnecté"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Déconnexion…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Connexion…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Signal Wi-Fi moyen"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Signal Wi-Fi bon"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Signal Wi-Fi excellent"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Réseau ouvert"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Réseau sécurisé"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Plate-forme Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Applications supprimées"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Applications et utilisateurs supprimés"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personnalisé (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Aide et commentaires"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Saisir mot de passe pour rétablir conf. d\'usine en mode démo."</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Suivant"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Veuillez saisir le mot de passe"</string> diff --git a/packages/SettingsLib/res/values-gl/strings.xml b/packages/SettingsLib/res/values-gl/strings.xml index 3ae0d6f8c0ac..1a6fd39d22fc 100644 --- a/packages/SettingsLib/res/values-gl/strings.xml +++ b/packages/SettingsLib/res/values-gl/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Conectado a través de %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Dispoñible a través de %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Conectado, pero sen Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"O punto de acceso está temporalmente cheo"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Moi lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Aceptar"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Media"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rápida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Moi rápida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Dúas barras de wifi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Tres barras de wifi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Sinal completo de wifi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rede aberta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rede segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"SO Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplicacións eliminadas"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplicacións e usuarios eliminados"</string> @@ -300,7 +296,7 @@      <string name="enable_freeform_support" msgid="1461893351278940416">"Activar ventás de forma libre"</string>      <string name="enable_freeform_support_summary" msgid="8247310463288834487">"Activa a compatibilidade con ventás de forma libre experimentais."</string>      <string name="local_backup_password_title" msgid="3860471654439418822">"Contrasinal para copias"</string> -    <string name="local_backup_password_summary_none" msgid="6951095485537767956">"As copias de seguranza de ordenador completas non están protexidas"</string> +    <string name="local_backup_password_summary_none" msgid="6951095485537767956">"As copias de seguridade de ordenador completas non están protexidas"</string>      <string name="local_backup_password_summary_change" msgid="5376206246809190364">"Toca para cambiar ou eliminar o contrasinal para as copias de seguranza completas do escritorio"</string>      <string name="local_backup_password_toast_success" msgid="582016086228434290">"Novo contrasinal da copia de seguranza definido"</string>      <string name="local_backup_password_toast_confirmation_mismatch" msgid="7805892532752708288">"O contrasinal novo e a confirmación non coinciden"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizado (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Axuda e comentarios"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menú"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Insire contrasinal para restablec. en demostración"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Seguinte"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"O contrasinal é obrigatorio"</string> diff --git a/packages/SettingsLib/res/values-gu/strings.xml b/packages/SettingsLib/res/values-gu/strings.xml index 9d6c1e827ad9..674d4c914d7f 100644 --- a/packages/SettingsLib/res/values-gu/strings.xml +++ b/packages/SettingsLib/res/values-gu/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s દ્વારા કનેક્ટ થયેલ"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s દ્વારા ઉપલબ્ધ"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"કનેક્ટ કર્યું, કોઈ ઇન્ટરનેટ નથી"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ઍક્સેસ પૉઇન્ટ અસ્થાયીરૂપે ભરાયેલ છે"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ખૂબ જ ધીમી"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ધીમી"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ઓકે"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"મધ્યમ"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"ઝડપી"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"ખૂબ ઝડપી"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ડિસ્કનેક્ટ કર્યું"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ડિસ્કનેક્ટ થઈ રહ્યું છે..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"કનેક્ટ થઈ રહ્યું છે…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi બે બાર."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi ત્રણ બાર."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"પૂર્ણ Wifi સિગ્નલ."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"નેટવર્ક ખોલો"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"સુરક્ષિત નેટવર્ક"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"દૂર કરેલી ઍપ્લિકેશનો"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"દૂર કરેલી ઍપ્લિકેશનો અને વપરાશકર્તાઓ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"કસ્ટમ (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"સહાય અને પ્રતિસાદ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"મેનુ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ડેમો મોડમાં ફેક્ટરી રીસેટ પાસવર્ડ દાખલ કરો"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"આગલું"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"પાસવર્ડ આવશ્યક છે"</string> diff --git a/packages/SettingsLib/res/values-hi/strings.xml b/packages/SettingsLib/res/values-hi/strings.xml index 704a312c1714..dd9ad33dc8bf 100644 --- a/packages/SettingsLib/res/values-hi/strings.xml +++ b/packages/SettingsLib/res/values-hi/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s के द्वारा उपलब्ध"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s के द्वारा उपलब्ध"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"कनेक्ट किया गया, इंटरनेट नहीं"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"एक्सेस पॉइंट फ़िलहाल भरा हुआ है"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"अत्यधिक धीमी"</string>      <string name="speed_label_slow" msgid="813109590815810235">"धीमी"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ठीक"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"मध्यम"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"तेज़"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"अत्यधिक तेज़"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"डिस्कनेक्ट किया गया"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"डिस्कनेक्ट हो रहा है..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"कनेक्ट हो रहा है..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"वाई-फ़ाई की दो पट्टी मिल रही हैं."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"वाई-फ़ाई की एक पट्टी मिल रही है."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"पूरे वाई-फ़ाई सिग्नल मिल रहे हैं."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"खुला नेटवर्क"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"सुरक्षित नेटवर्क"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"निकाले गए ऐप्स"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"ऐप्स  और उपयोगकर्ताओं को निकालें"</string> @@ -224,7 +220,7 @@      <string name="mobile_data_always_on_summary" msgid="8149773901431697910">"वाई-फ़ाई के सक्रिय रहने पर भी, हमेशा मोबाइल डेटा सक्रिय रखें (तेज़ी से नेटवर्क स्विच करने के लिए)."</string>      <string name="tethering_hardware_offload_summary" msgid="7726082075333346982">"हार्डवेयर त्वरण को टेदर करना उपलब्ध होने पर उसका उपयोग करें"</string>      <string name="adb_warning_title" msgid="6234463310896563253">"USB डीबग करने की अनुमति दें?"</string> -    <string name="adb_warning_message" msgid="7316799925425402244">"USB डीबग करने का उद्देश्य केवल विकास है. इसका इस्तेमाल आपके कंप्यूटर और आपके डिवाइस के बीच डेटा को कॉपी करने, बिना नोटिफ़िकेशन के आपके डिवाइस पर ऐप इंस्टॉल करने और लॉग डेटा पढ़ने के लिए करें."</string> +    <string name="adb_warning_message" msgid="7316799925425402244">"USB डीबग डीबग करने का उद्देश्य केवल विकास है. इसका उपयोग आपके कंप्यूटर और आपके डिवाइस के बीच डेटा की प्रतिलिपि बनाने, बिना नोटिफिकेशन के आपके डिवाइस पर ऐप्स इंस्टॉल करने और लॉग डेटा पढ़ने के लिए करें."</string>      <string name="adb_keys_warning_message" msgid="5659849457135841625">"आपके द्वारा पूर्व में प्राधिकृत सभी कंप्यूटर से USB डीबगिंग की पहुंच निरस्त करें?"</string>      <string name="dev_settings_warning_title" msgid="7244607768088540165">"विकास सेटिंग की अनुमति दें?"</string>      <string name="dev_settings_warning_message" msgid="2298337781139097964">"ये सेटिंग केवल विकास संबंधी उपयोग के प्रयोजन से हैं. वे आपके डिवाइस और उस पर स्थित ऐप्स  को खराब कर सकती हैं या उनके दुर्व्यवहार का कारण हो सकती हैं."</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"कस्टम (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"सहायता और फ़ीडबैक"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"मेनू"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"डेमो मोड में फ़ैक्टरी रीसेट के लिए पासवर्ड डालें"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"आगे"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"पासवर्ड आवश्यक"</string> diff --git a/packages/SettingsLib/res/values-hr/strings.xml b/packages/SettingsLib/res/values-hr/strings.xml index 123d9969e1f3..8ba4034477fb 100644 --- a/packages/SettingsLib/res/values-hr/strings.xml +++ b/packages/SettingsLib/res/values-hr/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Povezano putem %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Dostupno putem %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Povezano, bez interneta"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Pristupna je točka privremeno puna"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Vrlo sporo"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Sporo"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"U redu"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Srednje"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Brzo"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Vrlo brzo"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Niste povezani"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Isključivanje…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Povezivanje…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi signal ima dva stupca."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi signal ima tri stupca."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi signal je pun."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Otvorena mreža"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sigurna mreža"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Uklonjene aplikacije"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Uklonjene aplikacije i korisnici"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Prilagođeno (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pomoć i povratne informacije"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Izbornik"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Unesite zaporku za resetiranje u demo načinu"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Dalje"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Potrebna je zaporka"</string> diff --git a/packages/SettingsLib/res/values-hu/strings.xml b/packages/SettingsLib/res/values-hu/strings.xml index ff700d9bf737..a544125b98e3 100644 --- a/packages/SettingsLib/res/values-hu/strings.xml +++ b/packages/SettingsLib/res/values-hu/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Csatlakozva a következőn keresztül: %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Elérhető a következőn keresztül: %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Csatlakozva, nincs internetelérés"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"A hozzáférési pont átmenetileg megtelt"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Nagyon lassú"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lassú"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Rendben"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Közepes"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Gyors"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Nagyon gyors"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Szétkapcsolva"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Szétkapcsolás..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Csatlakozás…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi-jel: két sáv."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi-jel: három sáv."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi-jel: teljes."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Nyílt hálózat"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Biztonságos hálózat"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Eltávolított alkalmazások"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Eltávolított alkalmazások és felhasználók"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Egyéni (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Súgó és visszajelzés"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menü"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Írja be a jelszót a visszaállításhoz"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Következő"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Jelszó szükséges"</string> diff --git a/packages/SettingsLib/res/values-hy/strings.xml b/packages/SettingsLib/res/values-hy/strings.xml index 63fe5abebaa7..cb042344b8a8 100644 --- a/packages/SettingsLib/res/values-hy/strings.xml +++ b/packages/SettingsLib/res/values-hy/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Կապակցված է %1$s-ի միջոցով"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Հասանելի է %1$s-ի միջոցով"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Կապակցված է առանց համացանցի"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Հասանելիության կետը ժամանակավորապես լիքն է"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Շատ դանդաղ"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Դանդաղ"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Հաստատել"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Միջին"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Արագ"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Շատ արագ"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Անջատված է"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Անջատվում է..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Միանում է..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi-ի ուժգնությունը՝ երկու գիծ:"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi-ի ուժգնությունը՝ երեք գիծ:"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi-ի ազդանշանը ուժեղ է:"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Բաց ցանց"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Անվտանգ ցանց"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Հեռացված ծրագրեր"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Հեռացված հավելվածներն ու օգտատերերը"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Հատուկ (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Օգնություն և հետադարձ կապ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Ընտրացանկ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Մուտքագրեք գաղտնաբառը՝ ցուցադրական ռեժիմում գործարանային վերակայում կատարելու համար"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Հաջորդը"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Պահանջվում է գաղտնաբառ"</string> diff --git a/packages/SettingsLib/res/values-in/strings.xml b/packages/SettingsLib/res/values-in/strings.xml index 267bbf9ba046..a8dd4c2383c2 100644 --- a/packages/SettingsLib/res/values-in/strings.xml +++ b/packages/SettingsLib/res/values-in/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Terhubung melalui %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Tersedia melalui %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Tersambung, tidak ada internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Titik akses penuh untuk sementara"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Sangat Lambat"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lambat"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Oke"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Sedang"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Cepat"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Sangat Cepat"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Sambungan terputus"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Memutus sambungan..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Menyambung…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi dua baris"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi tiga baris."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Sinyal Wi-Fi penuh."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Jaringan terbuka"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Jaringan aman"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"OS Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplikasi dihapus"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplikasi dan pengguna yang dihapus"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"(<xliff:g id="DENSITYDPI">%d</xliff:g>) khusus"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Bantuan & masukan"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Masukkan sandi untuk mengembalikan ke setelan pabrik dalam mode demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Berikutnya"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Perlu sandi"</string> diff --git a/packages/SettingsLib/res/values-is/strings.xml b/packages/SettingsLib/res/values-is/strings.xml index ae5f72718b29..7f541ce8bcfa 100644 --- a/packages/SettingsLib/res/values-is/strings.xml +++ b/packages/SettingsLib/res/values-is/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Tengt í gegnum %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Í boði í gegnum %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Tengt, enginn internetaðgangur"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Aðgangsstaður tímabundið fullur"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Mjög hægt"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Hægt"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Í lagi"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Miðlungshratt"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Hratt"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Mjög hratt"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Aftengt"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Aftengist…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Tengist…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: Tvö strik."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: Þrjú strik."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Fullur Wi-Fi sendistyrkur."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Opið net"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Öruggt net"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android stýrikerfið"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Fjarlægð forrit"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Fjarlægð forrit og notendur"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Sérsniðið (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Hjálp og ábendingar"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Valmynd"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Sláðu inn aðgangsorð til að framkvæma núllstillingu í sýnisútgáfu"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Áfram"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Aðgangsorðs krafist"</string> diff --git a/packages/SettingsLib/res/values-it/strings.xml b/packages/SettingsLib/res/values-it/strings.xml index 4a2d3cb69e2a..5598d87d5a24 100644 --- a/packages/SettingsLib/res/values-it/strings.xml +++ b/packages/SettingsLib/res/values-it/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Collegato tramite %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponibile tramite %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connesso senza Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Punto di accesso momentaneamente al completo"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Molto lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Media"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Veloce"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Molto veloce"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnesso"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnessione..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Connessione..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: due barre."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: tre barre."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Segnale Wi-Fi completo."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rete aperta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rete protetta"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Sistema operativo Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Applicazioni rimosse"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"App e utenti rimossi"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizzato (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Guida e feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Inserisci la password per eseguire il ripristino dei dati di fabbrica in modalità demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Avanti"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Password obbligatoria"</string> diff --git a/packages/SettingsLib/res/values-iw/strings.xml b/packages/SettingsLib/res/values-iw/strings.xml index 7f6f8f50c5a3..26ce32ebc51f 100644 --- a/packages/SettingsLib/res/values-iw/strings.xml +++ b/packages/SettingsLib/res/values-iw/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"מחובר דרך %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"זמינה דרך %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"מחובר. אין אינטרנט"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"נקודת הגישה מלאה באופן זמני"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"איטית מאוד"</string>      <string name="speed_label_slow" msgid="813109590815810235">"איטית"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"אישור"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"בינונית"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"מהירה"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"מהירה מאוד"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"מנותק"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"מתנתק..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"מתחבר ..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"שני פסים של Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"שלושה פסים של Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"אות Wi-Fi מלא."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"רשת פתוחה"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"רשת מאובטחת"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"אפליקציות שהוסרו"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"אפליקציות ומשתמשים שהוסרו"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"מותאם אישית (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"עזרה ומשוב"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"תפריט"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"הזן סיסמה כדי לבצע איפוס להגדרות היצרן במצב הדגמה"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"הבא"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"דרושה סיסמה"</string> diff --git a/packages/SettingsLib/res/values-ja/strings.xml b/packages/SettingsLib/res/values-ja/strings.xml index feb80e9595a6..30c72672adbf 100644 --- a/packages/SettingsLib/res/values-ja/strings.xml +++ b/packages/SettingsLib/res/values-ja/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s経由で接続"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s経由で使用可能"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"接続済み、インターネットは利用できません"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"アクセス ポイントが一時的にいっぱいです"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"とても遅い"</string>      <string name="speed_label_slow" msgid="813109590815810235">"遅い"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"普通"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"速い"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"とても速い"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"切断"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"切断中..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"接続中..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fiはレベル2です。"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fiはレベル3です。"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fiの電波はフルです。"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"オープンネットワーク"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"保護されたネットワーク"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"削除したアプリケーション"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"削除されたアプリとユーザー"</string> @@ -381,6 +377,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"カスタム(<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"ヘルプとフィードバック"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"メニュー"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"デモモードで初期状態にリセットするには、パスワードを入力してください"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"次へ"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"パスワード必須"</string> diff --git a/packages/SettingsLib/res/values-ka/strings.xml b/packages/SettingsLib/res/values-ka/strings.xml index 4d12fa7989a9..553c4a0408cc 100644 --- a/packages/SettingsLib/res/values-ka/strings.xml +++ b/packages/SettingsLib/res/values-ka/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s-ით დაკავშირებული"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"ხელმისაწვდომია %1$s-ით"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"დაკავშირებულია, ინტერნეტის გარეშე"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"წვდომის წერტილი დროებით გადატვირთულია"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ძალიან ნელი"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ნელი"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"კარგი"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"საშუალო"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"სწრაფი"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"ძალიან სწრაფი"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"კავშირი გაწყვეტილია"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"მიმდინარეობს გათიშვა…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"მიმდინარეობს დაკავშირება…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"WiFi სიგნალი ორ ზოლზეა."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"WiFi სიგნალი სამ ზოლზეა."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"WiFi სიგნალი სრულია."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"ღია ქსელი"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"დაცული ქსელი"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"აპების წაშლა"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"წაშლილი აპები და მომხმარებლები"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"მორგებული (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"დახმარება და გამოხმაურება"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"მენიუ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"შეიყვანეთ პაროლი დემო-რეჟიმში ქარხნულ მდგომარეობაზე დასაბრუნებლად"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"შემდეგი"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"საჭიროა პაროლი"</string> diff --git a/packages/SettingsLib/res/values-kk/strings.xml b/packages/SettingsLib/res/values-kk/strings.xml index 0c7b4ac1fad5..27622a1c6492 100644 --- a/packages/SettingsLib/res/values-kk/strings.xml +++ b/packages/SettingsLib/res/values-kk/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s арқылы қосылған"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s арқылы қолжетімді"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Қосылған, интернет жоқ"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Кіру нүктесі уақытша бос емес"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Өте баяу"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Баяу"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Жарайды"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Орташа"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Жылдам"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Өте жылдам"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ажыратылған"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ажыратылуда…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Жалғауда..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi сигналы — екі жолақ."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi сигналы — үш жолақ."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi сигналы толық."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Ашық желі"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Қауіпсіз желі"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android операциялық жүйесі"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Алынған қолданбалар"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Алынған қолданбалар және пайдаланушылар"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Арнаулы (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Анықтама және пікір"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Mәзір"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Демо режимде зауыттық мәндерге қайтару үшін құпия сөзді енгізу"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Келесі"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Құпия сөз қажет"</string> diff --git a/packages/SettingsLib/res/values-km/strings.xml b/packages/SettingsLib/res/values-km/strings.xml index 755859cfafec..5f614f64502e 100644 --- a/packages/SettingsLib/res/values-km/strings.xml +++ b/packages/SettingsLib/res/values-km/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"បានភ្ជាប់តាមរយៈ %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"មានតាមរយៈ %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"បានភ្ជាប់ ប៉ុន្តែគ្មានអ៊ីនធឺណិតទេ"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ចំណុចចូលប្រើពេញជាបណ្តោះអាសន្ន"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"យឺតណាស់"</string>      <string name="speed_label_slow" msgid="813109590815810235">"យឺត"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"យល់ព្រម"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"មធ្យម"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"លឿន"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"លឿនណាស់"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"បានផ្ដាច់"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"កំពុងផ្ដាច់…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"កំពុងតភ្ជាប់…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi ពីរកាំ"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi បីកាំ"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"សេវា Wifi ពេញ"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"បើកបណ្ដាញ"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"បណ្តាញដែលមានសុវត្ថិភាព"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"ប្រព័ន្ធប្រតិបត្តិការ Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"កម្មវិធីដែលបានលុប"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"បានលុបកម្មវិធី និងអ្នកប្រើ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"ផ្ទាល់ខ្លួន (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"ជំនួយ និងមតិស្ថាបនា"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"ម៉ឺនុយ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"បញ្ចូលពាក្យសម្ងាត់ ដើម្បីកំណត់ឧបករណ៍ឡើងវិញដូចពេលចេញពីរោងចក្រ នៅក្នុងមុខងារសាកល្បង"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"បន្ទាប់"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"តម្រូវឲ្យមានពាក្យសម្ងាត់"</string> diff --git a/packages/SettingsLib/res/values-kn/strings.xml b/packages/SettingsLib/res/values-kn/strings.xml index 939e2a98761a..c74b7bea73e6 100644 --- a/packages/SettingsLib/res/values-kn/strings.xml +++ b/packages/SettingsLib/res/values-kn/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s ಮೂಲಕ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s ಮೂಲಕ ಲಭ್ಯವಿದೆ"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"ಸಂಪರ್ಕಪಡಿಸಲಾಗಿದೆ, ಇಂಟರ್ನೆಟ್ ಇಲ್ಲ"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ಪ್ರವೇಶ ಕೇಂದ್ರ ತಾತ್ಕಾಲಿಕವಾಗಿ ಭರ್ತಿಯಾಗಿದೆ"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ತುಂಬಾ ನಿಧಾನವಾಗಿದೆ"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ನಿಧಾನ"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ಸರಿ"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"ಮಧ್ಯಮ"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"ವೇಗ"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"ತುಂಬಾ ವೇಗವಾಗಿದೆ"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗಿದೆ"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗುತ್ತಿದೆ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"ಸಂಪರ್ಕಗೊಳಿಸಲಾಗುತ್ತಿದೆ..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"ವೈಫೈ ಎರಡು ಪಟ್ಟಿಗಳು."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"ವೈಫೈ ಮೂರು ಪಟ್ಟಿಗಳು."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"ವೈಫೈ ಸಿಗ್ನಲ್ ಪೂರ್ತಿ ಇದೆ."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"ನೆಟ್ವರ್ಕ್ ತೆರೆಯಿರಿ"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"ಸುರಕ್ಷಿತ ನೆಟ್ವರ್ಕ್"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"ತೆಗೆದುಹಾಕಲಾದ ಅಪ್ಲಿಕೇಶನ್ಗಳು"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"ಅಪ್ಲಿಕೇಶನ್ಗಳು ಮತ್ತು ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"ಕಸ್ಟಮ್ (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"ಸಹಾಯ ಮತ್ತು ಪ್ರತಿಕ್ರಿಯೆ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"ಮೆನು"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ಫ್ಯಾಕ್ಟರಿ ರಿಸೆಟ್ಗೆ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ಮುಂದೆ"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ"</string> diff --git a/packages/SettingsLib/res/values-ko/strings.xml b/packages/SettingsLib/res/values-ko/strings.xml index 972fef191a3b..b7cf51577f4f 100644 --- a/packages/SettingsLib/res/values-ko/strings.xml +++ b/packages/SettingsLib/res/values-ko/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s을(를) 통해 연결됨"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s을(를) 통해 사용 가능"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"인터넷을 사용하지 않고 연결됨"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"액세스 포인트가 일시적으로 가득 참"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"매우 느림"</string>      <string name="speed_label_slow" msgid="813109590815810235">"느림"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"확인"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"보통"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"빠름"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"매우 빠름"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"연결 끊김"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"연결을 끊는 중…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"연결 중…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi 신호 막대가 두 개입니다."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi 신호 막대가 세 개입니다."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi 신호가 강합니다."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"개방형 네트워크"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"보안 네트워크"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"삭제된 앱"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"삭제된 앱 및 사용자"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"맞춤(<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"고객센터"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"메뉴"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"데모 모드에서 초기화하려면 비밀번호 입력"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"다음"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"비밀번호 입력 필요"</string> diff --git a/packages/SettingsLib/res/values-ky/strings.xml b/packages/SettingsLib/res/values-ky/strings.xml index cff25ddd1952..1fb4b48959c2 100644 --- a/packages/SettingsLib/res/values-ky/strings.xml +++ b/packages/SettingsLib/res/values-ky/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s аркылуу жеткиликтүү"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s аркылуу жеткиликтүү"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Туташып турат, Интернет жок"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Туташуу түйүнү убактылуу толуп калды"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Өтө жай"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Жай"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Жарайт"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Орто"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Ылдам"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Абдан ылдам"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ажыратылган"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ажыратылууда…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Туташууда…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi: эки таякча."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi: үч таякча."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi: күчтүү сигнал."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Ачык тармак"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Коопсуз тармак"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Алынып салынган колдонмолор"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Өчүрүлгөн колдонмолор жана колдонуучулар"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Ыңгайлаштырылган (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Жардам жана пикир билдирүү"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Меню"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Демо режиминде демейки жөндөөлөргө кайтаруу үчүн сырсөздү киргизиңиз"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Кийинки"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Сырсөз талап кылынат"</string> diff --git a/packages/SettingsLib/res/values-lo/strings.xml b/packages/SettingsLib/res/values-lo/strings.xml index 2460154b5b62..88bdc41002d0 100644 --- a/packages/SettingsLib/res/values-lo/strings.xml +++ b/packages/SettingsLib/res/values-lo/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"ເຊື່ອມຕໍ່ຜ່ານ %1$s ແລ້ວ"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"ມີໃຫ້ຜ່ານ %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"ເຊື່ອມຕໍ່ແລ້ວ, ບໍ່ມີອິນເຕີເນັດ"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ຈຸດການເຂົ້າເຖິງເຕັມຊົ່ວຄາວ"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ຊ້າຫຼາຍ"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ຊ້າ"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ຕົກລົງ"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"ປານກາງ"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"ໄວ"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"ໄວຫຼາຍ"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ຕັດການເຊື່ອມຕໍ່ແລ້ວ"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ກຳລັງຢຸດການເຊື່ອມຕໍ່..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"ກຳລັງເຊື່ອມຕໍ່..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"ສັນຍານ Wi-Fi ສອງຂີດ."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi ສາມຂີດ."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"ສັນຍານ Wi-Fi ເຕັມ"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"ເຄືອຂ່າຍເປີດ"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"ເຄືອຂ່າຍເຂົ້າລະຫັດ"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"ແອັບຯທີ່ຖືກລຶບອອກແລ້ວ"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"ລຶບແອັບຯ ແລະຜູ່ໃຊ້ແລ້ວ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"ປັບແຕ່ງເອງ (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"ຊ່ວຍເຫຼືອ & ຄຳຕິຊົມ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"ເມນູ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Enter password to perform factory reset in demo mode"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ຕໍ່ໄປ"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"ຕ້ອງໃສ່ລະຫັດຜ່ານ"</string> diff --git a/packages/SettingsLib/res/values-lt/strings.xml b/packages/SettingsLib/res/values-lt/strings.xml index c5a035f60653..8ca0d369cf8f 100644 --- a/packages/SettingsLib/res/values-lt/strings.xml +++ b/packages/SettingsLib/res/values-lt/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Prisijungta naudojant „%1$s“"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Pasiekiama naudojant „%1$s“"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Prisijungta, nėra interneto"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Prieigos taškas laikinai visiškai užimtas"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Labai lėtas"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lėtas"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Gerai"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Vidutinis"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Greitas"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Labai greitas"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Atsijungęs (-usi)"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Atjungiama..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Prisijungiama..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Dvi „Wi-Fi“ signalo juostos."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Trys „Wi-Fi“ signalo juostos."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Stiprus „Wi-Fi“ signalas."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Atviras tinklas"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Saugus tinklas"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"„Android“ OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Pašalintos programos"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Pašalintos programos ir naudotojai"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Tinkintas (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pagalba ir atsiliepimai"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meniu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Įv. slapt. ir atk. gam. nust. dem. rež."</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Kitas"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Būtina nurodyti slaptažodį"</string> diff --git a/packages/SettingsLib/res/values-lv/strings.xml b/packages/SettingsLib/res/values-lv/strings.xml index 89cc9580ceed..518eb33753e1 100644 --- a/packages/SettingsLib/res/values-lv/strings.xml +++ b/packages/SettingsLib/res/values-lv/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Savienots, izmantojot %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Pieejams, izmantojot %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Savienots, nav piekļuves internetam"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Piekļuves punkts īslaicīgi ir pilns"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Ļoti lēns"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lēns"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Labi"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Vidējs"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Ātrs"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Ļoti ātrs"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Atvienots"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Notiek atvienošana..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Notiek savienojuma izveide…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: divas joslas"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: trīs joslas"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Pilna piekļuve Wi-Fi signālam"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Atvērts tīkls"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Drošs tīkls"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Noņemtās lietotnes"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Noņemtās lietotnes un lietotāji"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Pielāgots (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Palīdzība un atsauksmes"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Izvēlne"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Iev. paroli, lai atiest. rūpnīcas iest. dem. režīmā"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Tālāk"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Nepieciešama parole"</string> diff --git a/packages/SettingsLib/res/values-mk/strings.xml b/packages/SettingsLib/res/values-mk/strings.xml index 6bd9c5f9fc25..3f7ab8c5d0b4 100644 --- a/packages/SettingsLib/res/values-mk/strings.xml +++ b/packages/SettingsLib/res/values-mk/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Поврзано преку %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Достапно преку %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Поврзана, нема интернет"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Пристапната точка привремено е преоптоварена"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Многу бавна"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Бавна"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Во ред"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Средна"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Брза"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Многу брза"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Исклучено"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Се исклучува..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Се поврзува..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Две црти на Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Три црти на Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Полн сигнал на Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Отворена мрежа"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Заклучена мрежа"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Оперативен систем Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Отстранети апликации"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Отстранети апликации и корисници"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Приспособен (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Помош и повратни информации"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Мени"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Внесете лозинка за фаб. ресет. во демо"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Следно"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Потребна е лозинка"</string> diff --git a/packages/SettingsLib/res/values-ml/strings.xml b/packages/SettingsLib/res/values-ml/strings.xml index 5e0c25c221c8..635d8a44dbb4 100644 --- a/packages/SettingsLib/res/values-ml/strings.xml +++ b/packages/SettingsLib/res/values-ml/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s വഴി ബന്ധിപ്പിച്ചു"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s വഴി ലഭ്യം"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"കണക്റ്റുചെയ്തിരിക്കുന്നു, ഇന്റർനെറ്റില്ല"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ആക്സസ് പോയിന്റ് താൽക്കാലികമായി നിറഞ്ഞിരിക്കുന്നു"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"വളരെ കുറഞ്ഞ വേഗത്തിൽ"</string>      <string name="speed_label_slow" msgid="813109590815810235">"കുറഞ്ഞ വേഗത്തിൽ"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ശരി"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"ഇടത്തരം"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"വേഗത്തിൽ"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"വളരെ വേഗത്തിൽ"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"വിച്ഛേദിച്ചു"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"വിച്ഛേദിക്കുന്നു..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"കണക്റ്റുചെയ്യുന്നു..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"വൈഫൈ സിഗ്നൽ രണ്ട് ബാറുകൾ."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"വൈഫൈ സിഗ്നൽ മൂന്ന് ബാറുകൾ."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"വൈഫൈ മികച്ച സിഗ്നൽ."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"ഓപ്പൺ നെറ്റ്വര്ക്ക്"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"സുരക്ഷിത നെറ്റ്വര്ക്ക്"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"നീക്കംചെയ്ത അപ്ലിക്കേഷനുകൾ"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"നീക്കംചെയ്ത അപ്ലിക്കേഷനുകളും ഉപയോക്താക്കളും"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"ഇഷ്ടാനുസൃതം ( <xliff:g id="DENSITYDPI">%d</xliff:g> )"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"സഹായവും പ്രതികരണവും"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"മെനു"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ഡെമോ മോഡിൽ ഫാക്ടറി റീസെറ്റിന് പാസ്വേഡ് നൽകുക"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"അടുത്തത്"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"പാസ്വേഡ് ആവശ്യമാണ്"</string> diff --git a/packages/SettingsLib/res/values-mn/strings.xml b/packages/SettingsLib/res/values-mn/strings.xml index f0020fe8cbae..1e864da60a04 100644 --- a/packages/SettingsLib/res/values-mn/strings.xml +++ b/packages/SettingsLib/res/values-mn/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s-р холбогдсон"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s-р боломжтой"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Холбогдсон, интернэт байхгүй байна"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Хандах цэг түр хугацаанд дүүрсэн байна"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Маш удаан"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Удаан"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ЗА"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Дунд"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Хурдан"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Маш хурдан"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Салгагдсан"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Салгаж байна…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Холбогдож байна..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi сүлжээний дохио хоёр баганатай байна."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi сүлжээний дохио гурван баганатай байна."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi-н дохио дүүрэн байна."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Нээлттэй сүлжээ"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Аюулгүй сүлжээ"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Андройд OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Арилгасан апп-ууд"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Арилгасан апп-ууд болон хэрэглэгчид"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Тогтмол утга (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Тусламж, санал хүсэлт"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Цэс"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"Гринвичийн цаг"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Үйлдвэрийн тохиргоог демо горимд ажиллуулахын тулд нууц үг оруулна уу"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Дараагийн"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Нууц үг шаардлагатай"</string> diff --git a/packages/SettingsLib/res/values-mr/strings.xml b/packages/SettingsLib/res/values-mr/strings.xml index c056d8ea324f..0d5f90b8fb83 100644 --- a/packages/SettingsLib/res/values-mr/strings.xml +++ b/packages/SettingsLib/res/values-mr/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s द्वारे कनेक्ट केले"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s द्वारे उपलब्ध"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"कनेक्ट केले, इंटरनेट नाही"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"अॅक्सेस पॉइंट तात्पुरते भरलेले"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"खूप हळू"</string>      <string name="speed_label_slow" msgid="813109590815810235">"हळू"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ठीक आहे"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"मध्यम"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"जलद"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"खूप जलद"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"डिस्कनेक्ट केले"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"डिस्कनेक्ट करत आहे..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"कनेक्ट करीत आहे..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"वाय फाय दोन बार."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"वाय फाय तीन बार."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"वाय फाय सिग्नल संपूर्ण आहे."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"नेटवर्क उघडा"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"सुरक्षित नेटवर्क"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"काढलेले अॅप्स"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"काढलेले अॅप्स आणि वापरकर्ते"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"सानुकूल करा (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"मदत आणि अभिप्राय"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"मेनू"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"डेमो मोडमध्ये फॅक्टरी रीसेट करण्यासाठी संकेतशब्द प्रविष्ट करा"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"पुढील"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"संकेतशब्द आवश्यक"</string> diff --git a/packages/SettingsLib/res/values-ms/strings.xml b/packages/SettingsLib/res/values-ms/strings.xml index a8424ff0e04d..caa07f941fb9 100644 --- a/packages/SettingsLib/res/values-ms/strings.xml +++ b/packages/SettingsLib/res/values-ms/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Disambungkan melalui %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Tersedia melalui %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Disambungkan, tiada Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Titik akses penuh buat sementara waktu"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Sangat Perlahan"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Perlahan"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Sederhana"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Laju"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Sangat Laju"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Diputuskan sambungan"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Memutuskan sambungan..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Menyambung..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi dua bar."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi tiga bar."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Isyarat Wi-Fi penuh."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rangkaian terbuka"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rangkaian selamat"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"OS Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Apl dialih keluar"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Apl dan pengguna yang dialih keluar"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Tersuai (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Bantuan & maklum balas"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Mskkn kta laluan utk ttpn sml kilang dlm mod demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Seterusnya"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Kata laluan diperlukan"</string> diff --git a/packages/SettingsLib/res/values-my/strings.xml b/packages/SettingsLib/res/values-my/strings.xml index 40cd3e921eb2..e1f008500135 100644 --- a/packages/SettingsLib/res/values-my/strings.xml +++ b/packages/SettingsLib/res/values-my/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s မှတစ်ဆင့် ချိတ်ဆက်ထားသည်"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s မှတစ်ဆင့်ရနိုင်သည်"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"ချိတ်ဆက်ထားသည်၊ အင်တာနက်မရှိ"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ကွန်ရက်ချိတ်ဆက်မှု ယာယီပြည့်နေသည်"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"အလွန်နှေး"</string>      <string name="speed_label_slow" msgid="813109590815810235">"နှေး"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"အတော်အသင့်"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"မြန်"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"အလွန်မြန်"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ချိတ်ဆက်မှုပြတ်တောက်သည်"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"အဆက်အသွယ်ဖြတ်တောက်သည်"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"ချိတ်ဆက်နေသည်"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi  ၂ ဘား"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi  ၃ ဘား"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi  အပြည့်ရှိ"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"အများသုံး ကွန်ရက်"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"လုံခြုံသည့် ကွန်ရက်"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android စနစ်"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"ဖယ်ရှားထားသော အက်ပ်များ"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"ဖယ်ရှားထားသော အပလီကေးရှင်းနှင့် သုံးစွဲသူများ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"စိတ်ကြိုက် (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"အကူအညီနှင့် အကြံပြုချက်"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"မီနူး"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"ဂရင်းနစ်စံတော်ချိန်"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ဒီမိုမုဒ်၌မူလဆက်တင်ထားရန် စကားဝှက်ထည့်ပါ"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ရှေ့သို့"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"စကားဝှက် လိုအပ်သည်"</string> diff --git a/packages/SettingsLib/res/values-nb/strings.xml b/packages/SettingsLib/res/values-nb/strings.xml index b125a9ca658c..004fcf1ed804 100644 --- a/packages/SettingsLib/res/values-nb/strings.xml +++ b/packages/SettingsLib/res/values-nb/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Tilkoblet via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Tilgjengelig via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Tilkoblet – ingen Internett-forbindelse"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Tilgangspunktet er midlertidig fullt"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Veldig treg"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Treg"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Ok"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Middels"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rask"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Veldig rask"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Frakoblet"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Kobler fra…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Kobler til…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi-signal med to stolper."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi-signal med tre stolper."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi-signalet er ved full styrke."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Åpent nettverk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sikkert nettverk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android-operativsystem"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Fjernede apper"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Fjernede apper og brukere"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Egendefinert (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Hjelp og tilbakemelding"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meny"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Skriv inn passordet for å tilbakestille til fabrikkstandard i demomodus"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Neste"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Passord er obligatorisk"</string> diff --git a/packages/SettingsLib/res/values-ne/strings.xml b/packages/SettingsLib/res/values-ne/strings.xml index 2870d2e4c306..eac1e24384dc 100644 --- a/packages/SettingsLib/res/values-ne/strings.xml +++ b/packages/SettingsLib/res/values-ne/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s मार्फत जडित"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s मार्फत उपलब्ध"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"जडित, इन्टरनेट चलेको छैन"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"पहुँचसम्बन्धी स्थान अस्थायी रूपमा भरिएको छ"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"धेरै ढिलो"</string>      <string name="speed_label_slow" msgid="813109590815810235">"बिस्तारै"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ठीक छ"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"मध्यम"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"छिटो"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"धेरै छिटो"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"विच्छेदन गरियो"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"जडान हटाइँदै ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"जडान हुँदै..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi दुई पट्टि।"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi तीन बारहरू।"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"पूर्ण Wi-Fi सिंग्नल।"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"खुला नेटवर्क"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"सुरक्षित नेटवर्क"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"एन्ड्रोइड OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"हटाइएका अनुप्रयोगहरू"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"अनुप्रयोगहरू र प्रयोगकर्ताहरू हटाइयो।"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"आफू अनुकूल (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"मद्दत र प्रतिक्रिया"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"मेनु"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"डेमो मोडमा फ्याक्ट्री रिसेट गर्न पासवर्ड प्रविष्ट गर्नुहोस्"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"अर्को"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"पासवर्ड आवश्यक छ"</string> diff --git a/packages/SettingsLib/res/values-nl/strings.xml b/packages/SettingsLib/res/values-nl/strings.xml index b021680d15e8..9ca3bfd0d7be 100644 --- a/packages/SettingsLib/res/values-nl/strings.xml +++ b/packages/SettingsLib/res/values-nl/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Verbonden via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Beschikbaar via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Verbonden, geen internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Toegangspunt tijdelijk vol"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Zeer langzaam"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Langzaam"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Redelijk"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Gemiddeld"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Snel"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Zeer snel"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Verbinding verbroken"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Verbinding verbreken..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Verbinding maken..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi: twee streepjes."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi: drie streepjes."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifii-signaal is op volledige sterkte."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Open netwerk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Beveiligd netwerk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android-besturingssysteem"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Verwijderde apps"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Verwijderde apps en gebruikers"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Aangepast (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Help en feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Geef wachtwoord op om terug te zetten op fabrieksinstellingen in demomodus"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Volgende"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Wachtwoord vereist"</string> diff --git a/packages/SettingsLib/res/values-pa/strings.xml b/packages/SettingsLib/res/values-pa/strings.xml index e1c1a4a45e8c..084b9ed84b24 100644 --- a/packages/SettingsLib/res/values-pa/strings.xml +++ b/packages/SettingsLib/res/values-pa/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s ਰਾਹੀਂ ਕਨੈਕਟ ਕੀਤਾ"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s ਰਾਹੀਂ ਉਪਲਬਧ"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"ਕਨੈਕਟ ਕੀਤਾ, ਕੋਈ ਇੰਟਰਨੈਟ ਨਹੀਂ"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ਪਹੁੰਚ ਪੁਆਇੰਟ ਅਸਥਾਈ ਤੌਰ \'ਤੇ ਸੰਪੂਰਨ ਰੁਝੇਂਵੇਂ ਵਿੱਚ ਹੈ"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ਬਹੁਤ ਹੌਲੀ"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ਹੌਲੀ"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ਠੀਕ ਹੈ"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"ਔਸਤ"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"ਤੇਜ਼"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"ਬਹੁਤ ਤੇਜ਼"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ਡਿਸਕਨੈਕਟ ਕੀਤਾ"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ਡਿਸਕਨੈਕਟ ਕਰ ਰਿਹਾ ਹੈ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"ਕਨੈਕਟ ਕਰ ਰਿਹਾ ਹੈ…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi ਦੋ ਬਾਰ।"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi ਤਿੰਨ ਬਾਰ।"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi ਸਿਗਨਲ ਪੂਰਾ।"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"ਖੁੱਲ੍ਹਾ ਨੈੱਟਵਰਕ"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"ਸੁਰੱਖਿਅਤ ਨੈੱਟਵਰਕ"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"ਹਟਾਏ ਗਏ ਐਪਸ"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"ਹਟਾਏ ਗਏ ਐਪਸ ਅਤੇ ਉਪਭੋਗਤਾ"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"ਵਿਸ਼ੇਸ਼-ਵਿਉਂਤਬੱਧ (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"ਮਦਦ ਅਤੇ ਪ੍ਰਤੀਕਰਮ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"ਮੀਨੂ"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ਡੈਮੋ ਮੋਡ \'ਚ ਫੈਕਟਰੀ ਰੀਸੈੱਟ ਲਈ ਪਾਸਵਰਡ ਦਿਓ"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ਅੱਗੇ"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"ਪਾਸਵਰਡ ਦੀ ਲੋੜ ਹੈ"</string> diff --git a/packages/SettingsLib/res/values-pl/strings.xml b/packages/SettingsLib/res/values-pl/strings.xml index e4c74503ecea..58454b47a77d 100644 --- a/packages/SettingsLib/res/values-pl/strings.xml +++ b/packages/SettingsLib/res/values-pl/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Połączono przez %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Dostępne przez %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Połączono, brak internetu"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Punkt dostępu jest tymczasowo zajęty"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Bardzo wolna"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Wolna"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Średnia"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Szybka"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Bardzo szybka"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Rozłączona"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Rozłączanie..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Łączenie..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: dwa paski."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: trzy paski."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi: pełna moc sygnału."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Sieć otwarta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Sieć zabezpieczona"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"System operacyjny Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Usunięte aplikacje"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Usunięte aplikacje i użytkownicy"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Niestandardowe (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pomoc i opinie"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Wpisz hasło, by przywrócić ustawienia fabryczne w trybie demonstracyjnym"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Dalej"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Wymagane hasło"</string> diff --git a/packages/SettingsLib/res/values-pt-rBR/arrays.xml b/packages/SettingsLib/res/values-pt-rBR/arrays.xml index e3f287bb3829..a444b59be6b1 100644 --- a/packages/SettingsLib/res/values-pt-rBR/arrays.xml +++ b/packages/SettingsLib/res/values-pt-rBR/arrays.xml @@ -190,9 +190,9 @@    </string-array>    <string-array name="animator_duration_scale_entries">      <item msgid="6039901060648228241">"Animação desativada"</item> -    <item msgid="1138649021950863198">"Escala de animação 0,5x"</item> +    <item msgid="1138649021950863198">"Escala de animação 5x"</item>      <item msgid="4394388961370833040">"Escala de animação 1x"</item> -    <item msgid="8125427921655194973">"Escala de animação 1,5x"</item> +    <item msgid="8125427921655194973">"Escala de animação 1.5 x"</item>      <item msgid="3334024790739189573">"Escala de animação 2x"</item>      <item msgid="3170120558236848008">"Escala de animação 5x"</item>      <item msgid="1069584980746680398">"Escala de animação 10x"</item> diff --git a/packages/SettingsLib/res/values-pt-rBR/strings.xml b/packages/SettingsLib/res/values-pt-rBR/strings.xml index 7e6e2dc48990..3b97a7f8e2a7 100644 --- a/packages/SettingsLib/res/values-pt-rBR/strings.xml +++ b/packages/SettingsLib/res/values-pt-rBR/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Conectado via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponível via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Conectada, sem Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Ponto de acesso temporariamente cheio"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Muito lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Ok"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Média"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rápida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Muito rápida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Duas barras de Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Três barras de Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Sinal Wi-Fi cheio."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rede aberta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rede segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Sistema operacional Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Apps removidos"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Apps e usuários removidos"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizada (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ajuda e feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Digite a senha para redef. p/ configuração original em modo demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Próxima"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Senha necessária"</string> diff --git a/packages/SettingsLib/res/values-pt-rPT/strings.xml b/packages/SettingsLib/res/values-pt-rPT/strings.xml index 514dfd1e94fc..e2c6b2fe7b48 100644 --- a/packages/SettingsLib/res/values-pt-rPT/strings.xml +++ b/packages/SettingsLib/res/values-pt-rPT/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Ligado através de %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponível através de %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Ligado, sem Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Ponto de acesso temporariamente cheio"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Muito lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Média"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rápida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Muito rápida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desligado"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"A desligar..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"A ligar..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Duas barras de Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Três barras de Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Sinal de Wi-Fi completo."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rede aberta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rede segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"SO Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplicações removidas"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplicações e utilizadores removidos"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizado (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ajuda e comentários"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Introduzir palavra-passe para efetuar a reposição de fábrica no modo demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Próximo"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Palavra-passe obrigatória"</string> diff --git a/packages/SettingsLib/res/values-pt/strings.xml b/packages/SettingsLib/res/values-pt/strings.xml index 7e6e2dc48990..3b97a7f8e2a7 100644 --- a/packages/SettingsLib/res/values-pt/strings.xml +++ b/packages/SettingsLib/res/values-pt/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Conectado via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponível via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Conectada, sem Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Ponto de acesso temporariamente cheio"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Muito lenta"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lenta"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Ok"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Média"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rápida"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Muito rápida"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Duas barras de Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Três barras de Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Sinal Wi-Fi cheio."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rede aberta"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rede segura"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Sistema operacional Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Apps removidos"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Apps e usuários removidos"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizada (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ajuda e feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Digite a senha para redef. p/ configuração original em modo demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Próxima"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Senha necessária"</string> diff --git a/packages/SettingsLib/res/values-ro/strings.xml b/packages/SettingsLib/res/values-ro/strings.xml index c81673dbd964..a3a2b47cabf6 100644 --- a/packages/SettingsLib/res/values-ro/strings.xml +++ b/packages/SettingsLib/res/values-ro/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Conectată prin %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Disponibilă prin %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Conectată, fără internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Punctul de acces este temporar plin"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Foarte lentă"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Lentă"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Bine"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Medie"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Rapidă"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Foarte rapidă"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Deconectat"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"În curs de deconectare..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Se conectează..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Semnal Wi-Fi: două bare."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Semnal Wi-Fi: trei bare."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Semnal Wi-Fi: complet."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rețea nesecurizată"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Securizați rețeaua"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Sistem de operare Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplicații eliminate"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplicații și utilizatori eliminați"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Personalizat (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ajutor și feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meniu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Introduceți parola pentru a reveni la setările din fabrică în modul demo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Înainte"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Trebuie să introduceți o parolă"</string> diff --git a/packages/SettingsLib/res/values-ru/strings.xml b/packages/SettingsLib/res/values-ru/strings.xml index 9a28e7980a8d..905195ad343b 100644 --- a/packages/SettingsLib/res/values-ru/strings.xml +++ b/packages/SettingsLib/res/values-ru/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Подключено к %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Доступно через %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Подключено, без Интернета"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"К точке доступа подключено слишком много устройств"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Очень медленная"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Медленная"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ОК"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Средняя"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Быстрая"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Очень быстрая"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="DESCRIPTION">%2$s</xliff:g>: <xliff:g id="STATE">%1$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Нет подключения"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Отключение..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Подключение..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: два деления"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: три деления"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi: надежный сигнал"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Открытая сеть"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Защищенная сеть"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"ОС Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Удаленные приложения"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Удаленные приложения и пользователи"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Другой (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Справка/отзыв"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Меню"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Чтобы сбросить настройки в деморежиме, введите пароль."</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Далее"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Требуется пароль"</string> diff --git a/packages/SettingsLib/res/values-si/strings.xml b/packages/SettingsLib/res/values-si/strings.xml index afe84f6ae482..9c75355424f2 100644 --- a/packages/SettingsLib/res/values-si/strings.xml +++ b/packages/SettingsLib/res/values-si/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s හරහා සම්බන්ධ විය"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s හරහා ලබා ගැනීමට හැකිය"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"සම්බන්ධයි, අන්තර්ජාලය නැත"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ප්රවේශ ලක්ෂ්ය තාවකාලිකව පිරී ඇත"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ඉතා මන්දගාමී"</string>      <string name="speed_label_slow" msgid="813109590815810235">"මන්දගාමී"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"හරි"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"මධ්යම"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"වේගවත්"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"ඉතා වේගවත්"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"විසන්ධි වුණි"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"විසන්ධි වෙමින්…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"සම්බන්ධ වෙමින්…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi තීරු දෙකයි."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"WiFi තීරු තුනයි."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi සංඥාව පිරී ඇත."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"විවෘත ජාලය"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"ආරක්ෂිත ජාලය"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"ඉවත් කළ යෙදුම්"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"යෙදුම් සහ පරිශීලකයින් ඉවත් කරන ලදි"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"අභිරුචි (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"උදව් සහ ප්රතිපෝෂණ"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"මෙනුව"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ආදර්ශන ප්රකාර කර්මාන්තශාලා යළි සැකසීමට මුරපදය ඇ. ක."</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ඊළඟ"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"මුරපදය අවශ්යයි"</string> diff --git a/packages/SettingsLib/res/values-sk/strings.xml b/packages/SettingsLib/res/values-sk/strings.xml index 1599d80f32f8..595fd4cf850c 100644 --- a/packages/SettingsLib/res/values-sk/strings.xml +++ b/packages/SettingsLib/res/values-sk/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Pripojené prostredníctvom %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"K dispozícii prostredníctvom %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Pripojené, žiadny internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Prístupový bod je dočasne plný"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Veľmi nízka"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Nízka"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Stredná"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Vysoká"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Veľmi vysoká"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Odpojený"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Prebieha odpájanie..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Prebieha pripájanie…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Dve čiarky signálu Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Tri čiarky signálu Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Plný signál Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Otvorená sieť"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Zabezpečená sieť"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"OS Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Odstránené aplikácie"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Odstránené aplikácie a používatelia"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Vlastné (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pomocník a spätná väzba"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Ponuka"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Zadajte heslo na obnovenie továrenských nastavení v režime ukážky"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Ďalej"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Vyžaduje sa heslo"</string> diff --git a/packages/SettingsLib/res/values-sl/strings.xml b/packages/SettingsLib/res/values-sl/strings.xml index dbeec8a0e4fb..b8a0514f3700 100644 --- a/packages/SettingsLib/res/values-sl/strings.xml +++ b/packages/SettingsLib/res/values-sl/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Vzpostavljena povezava prek: %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Na voljo prek: %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Vzpostavljena povezava, brez interneta"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Dostopna točka je trenutno zasedena"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Zelo počasna"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Počasna"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"V redu"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Srednje hitra"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Hitra"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Zelo hitra"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Prekinjena povezava"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Prekinjanje povezave ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Vzpostavljanje povezave ..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Dve črtici signala Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Tri črtice signala Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Poln signal Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Odprto omrežje"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Varno omrežje"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"OS Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Odstranjene aplikacije"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Odstranjene aplikacije in uporabniki"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Po meri (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Pomoč in povratne informacije"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meni"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Geslo za tovar. nast. v predstav. načinu"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Naprej"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Vnesite geslo"</string> diff --git a/packages/SettingsLib/res/values-sq/strings.xml b/packages/SettingsLib/res/values-sq/strings.xml index 85393d736ba5..34d033364022 100644 --- a/packages/SettingsLib/res/values-sq/strings.xml +++ b/packages/SettingsLib/res/values-sq/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"E lidhur përmes %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"E mundshme përmes %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"U lidh, nuk ka internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Pika e qasjes është përkohësisht plot"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Shumë e ulët"</string>      <string name="speed_label_slow" msgid="813109590815810235">"E ngadaltë"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Në rregull"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Mesatare"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"E shpejtë"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Shumë e shpejtë"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Shkëputur"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Po shkëputet..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Po lidhet..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi ka dy vija."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: tre vija."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi ka sinjal të plotë."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Rrjet i hapur"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Rrjet i sigurt"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Sistemi operativ Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Aplikacionet e hequra"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Aplikacionet dhe përdoruesit e hequr"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"I personalizuar (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Ndihma dhe komentet"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menyja"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Fut fjalëkalimin për të kryer rivendosje në gjendje fabrike në modalitetin e demonstrimit"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Përpara"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Kërkohet fjalëkalimi"</string> diff --git a/packages/SettingsLib/res/values-sr/strings.xml b/packages/SettingsLib/res/values-sr/strings.xml index 9cbb997c9c87..2b21d30a6717 100644 --- a/packages/SettingsLib/res/values-sr/strings.xml +++ b/packages/SettingsLib/res/values-sr/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Веза је успостављена преко приступне тачке %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Доступна је преко приступне тачке %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Веза је успостављена, нема интернета"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Приступна тачка је привремено заузета"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Веома спора"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Спора"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Потврди"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Средња"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Брза"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Веома брза"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Веза је прекинута"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Прекидање везе..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Повезивање…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi сигнал има две црте."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi сигнал има три црте."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi сигнал је најјачи."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Отворена мрежа"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Безбедна мрежа"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android ОС"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Уклоњене апликације"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Уклоњене апликације и корисници"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Прилагођени (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Помоћ и повратне информације"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Мени"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Унесите лозинку да бисте обавили ресетовање на фабричка подешавања у режиму демонстрације"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Даље"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Потребна је лозинка"</string> diff --git a/packages/SettingsLib/res/values-sv/strings.xml b/packages/SettingsLib/res/values-sv/strings.xml index 157e5819e9e9..d73ec6658bb8 100644 --- a/packages/SettingsLib/res/values-sv/strings.xml +++ b/packages/SettingsLib/res/values-sv/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Anslutet via %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Tillgängligt via %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Ansluten, inget internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Åtkomstpunkten har inga platser över för tillfället"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Mycket långsam"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Långsam"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Okej"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Medelsnabb"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Snabb"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Mycket snabb"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Kopplas ifrån"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Kopplar ifrån…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Ansluter…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: två staplar."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: tre staplar."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Full signalstyrka för Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Öppet nätverk"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Säkert nätverk"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Operativsystemet Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Borttagna appar"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Borttagna appar och användare"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Anpassad (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Hjälp och feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Meny"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Ange lösenord och utför fabriksåterställning i demoläge"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Nästa"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Lösenord krävs"</string> diff --git a/packages/SettingsLib/res/values-sw/strings.xml b/packages/SettingsLib/res/values-sw/strings.xml index cd6a3329df43..e1fc468f36ae 100644 --- a/packages/SettingsLib/res/values-sw/strings.xml +++ b/packages/SettingsLib/res/values-sw/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Imeunganishwa kupitia %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Inapatikana kupitia %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Imeunganishwa, hakuna Intaneti"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Lango la mtandao lina shughuli nyingi kwa sasa"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Polepole Sana"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Polepole"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Sawa"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Wastani"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Haraka"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Haraka Sana"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Haijaunganishwa"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Inatenganisha..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Inaunganisha…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Vipima mtandao viwili vya Wifi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Vipima mtandao vitatu vya Wifi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Nguvu kamili ya mtandao wa Wifi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Mtandao unaotumiwa na mtu yeyote"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Mtandao salama"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"OS ya Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Programu zilizoondolewa"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Watumiaji na programu ziilizoondolewa"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Kiwango maalum (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Usaidizi na maoni"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menyu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Weka nenosiri ili urejeshe mipangilio ya kiwandani ikiwa katika hali ya onyesho."</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Inayofuata"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Nenosiri linahitajika"</string> diff --git a/packages/SettingsLib/res/values-ta/strings.xml b/packages/SettingsLib/res/values-ta/strings.xml index 50146000950a..b16a29cd11c4 100644 --- a/packages/SettingsLib/res/values-ta/strings.xml +++ b/packages/SettingsLib/res/values-ta/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s வழியாக இணைக்கப்பட்டது"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s வழியாகக் கிடைக்கிறது"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"இணைக்கப்பட்டது, இணையம் இல்லை"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"தற்காலிகமாக அணுகல் புள்ளி நிரம்பியுள்ளது"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"மிகவும் வேகம் குறைவானது"</string>      <string name="speed_label_slow" msgid="813109590815810235">"வேகம் குறைவு"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"சரி"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"நடுத்தரம்"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"வேகம்"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"மிகவும் வேகமானது"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"தொடர்பு துண்டிக்கப்பட்டது"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"துண்டிக்கிறது..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"இணைக்கிறது..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"வைஃபை சிக்னல்: இரண்டு கோடுகள்."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"வைஃபை சிக்னல்: மூன்று கோடுகள்."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"வைஃபை சிக்னல் முழுமையாக உள்ளது."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"கடவுச்சொல் தேவைப்படாத திறந்த நெட்வொர்க்"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"கடவுச்சொல் தேவைப்படும் பாதுகாப்பான நெட்வொர்க்"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"அகற்றப்பட்ட பயன்பாடுகள்"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"அகற்றப்பட்ட பயன்பாடுகள் மற்றும் பயனர்கள்"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"தனிப்பயன் (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"உதவி & கருத்து"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"மெனு"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"டெமோ பயன்முறையில் ஆரம்பநிலை மீட்டமைவைச் செயல்படுத்த, கடவுச்சொல்லை உள்ளிடவும்"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"அடுத்து"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"கடவுச்சொல் தேவை"</string> diff --git a/packages/SettingsLib/res/values-te/strings.xml b/packages/SettingsLib/res/values-te/strings.xml index f678a896941c..921af6868d0a 100644 --- a/packages/SettingsLib/res/values-te/strings.xml +++ b/packages/SettingsLib/res/values-te/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s ద్వారా కనెక్ట్ చేయబడింది"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s ద్వారా అందుబాటులో ఉంది"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"కనెక్ట్ చేయబడింది, ఇంటర్నెట్ లేదు"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"ప్రాప్యత పాయింట్ తాత్కాలికంగా పూర్తయింది"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"చాలా నెమ్మది"</string>      <string name="speed_label_slow" msgid="813109590815810235">"నెమ్మది"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"సరే"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"మధ్యస్థం"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"వేగవంతం"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"చాలా వేగవంతం"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"డిస్కనెక్ట్ చేయబడింది"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"డిస్కనెక్ట్ చేస్తోంది..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"కనెక్ట్ చేస్తోంది..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi సిగ్నల్ రెండు బార్లు ఉంది."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi సిగ్నల్ మూడు బార్లు ఉంది."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi సిగ్నల్ పూర్తిగా ఉంది."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"ఓపెన్ నెట్వర్క్"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"సురక్షిత నెట్వర్క్"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"తీసివేయబడిన అనువర్తనాలు"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"తీసివేయబడిన అనువర్తనాలు మరియు వినియోగదారులు"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"అనుకూలం (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"సహాయం & అభిప్రాయం"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"మెను"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"డెమో మోడ్లో ఫ్యాక్టరీ రీసెట్ను నిర్వహించడానికి పాస్వర్డ్ను నమోదు చేయండి"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"తదుపరి"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"పాస్వర్డ్ అవసరం"</string> diff --git a/packages/SettingsLib/res/values-th/strings.xml b/packages/SettingsLib/res/values-th/strings.xml index fa5bdfe15bd5..4f31238d7541 100644 --- a/packages/SettingsLib/res/values-th/strings.xml +++ b/packages/SettingsLib/res/values-th/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"เชื่อมต่อผ่าน %1$s แล้ว"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"พร้อมใช้งานผ่านทาง %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"เชื่อมต่อแล้ว ไม่พบอินเทอร์เน็ต"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"จุดเข้าใช้งานเต็มชั่วคราว"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"ช้ามาก"</string>      <string name="speed_label_slow" msgid="813109590815810235">"ช้า"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ตกลง"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"ปานกลาง"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"เร็ว"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"เร็วมาก"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"ตัดการเชื่อมต่อ"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"กำลังตัดการเชื่อมต่อ..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"กำลังเชื่อมต่อ…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"สัญญาณ Wi-Fi 2 ขีด"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"สัญญาณ Wi-Fi 3 ขีด"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"สัญญาณ Wi-Fi เต็ม"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"เครือข่ายแบบเปิด"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"เครือข่ายที่ปลอดภัย"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"ระบบปฏิบัติการของ Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"แอปพลิเคชันที่นำออก"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"แอปพลิเคชันและผู้ใช้ที่นำออก"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"กำหนดเอง (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"ความช่วยเหลือและความคิดเห็น"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"เมนู"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ป้อนรหัสผ่านเพื่อรีเซ็ตค่าในโหมดสาธิต"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"ถัดไป"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"ต้องป้อนรหัสผ่าน"</string> diff --git a/packages/SettingsLib/res/values-tl/strings.xml b/packages/SettingsLib/res/values-tl/strings.xml index c0acdc05e102..984030d8e7c5 100644 --- a/packages/SettingsLib/res/values-tl/strings.xml +++ b/packages/SettingsLib/res/values-tl/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Nakakonekta sa pamamagitan ng %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Available sa pamamagitan ng %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Nakakonekta, walang Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Pansamantalang puno ang access point"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Napakabagal"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Mabagal"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Katamtaman"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Mabilis"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Napakabilis"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Hindi nakakonekta"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Nadidiskonekta..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Kumukonekta…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"May dalawang bar ang Wifi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"May tatlong bar ang Wifi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Puno ang signal ng Wifi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Bukas na network"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Ligtas na network"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Mga inalis na app"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Mga inalis na apps at user"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Custom (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Tulong at feedback"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Ilagay ang password upang mag-factory reset sa demo mode"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Susunod"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Kinakailangan ang password"</string> diff --git a/packages/SettingsLib/res/values-tr/strings.xml b/packages/SettingsLib/res/values-tr/strings.xml index d288712dacd6..b0c60f55e562 100644 --- a/packages/SettingsLib/res/values-tr/strings.xml +++ b/packages/SettingsLib/res/values-tr/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s üzerinden bağlı"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s üzerinden kullanılabilir"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Bağlı, İnternet yok"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Erişim noktası geçici olarak dolu"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Çok Yavaş"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Yavaş"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Tamam"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Orta"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Hızlı"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Çok Hızlı"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Bağlantı kesildi"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Bağlantı kesiliyor…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Bağlanıyor…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Kablosuz sinyal gücü iki çubuk."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Kablosuz sinyal gücü üç çubuk."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Kablosuz sinyal gücü tam."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Açık ağ"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Güvenli ağ"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Kaldırılan uygulamalar"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Kaldırılmış kullanıcılar ve uygulamalar"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Özel (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Yardım ve geri bildirim"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menü"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Demo modunda sıfırlamak için şifreyi girin"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Sonraki"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Şifre gerekli"</string> diff --git a/packages/SettingsLib/res/values-uk/strings.xml b/packages/SettingsLib/res/values-uk/strings.xml index 3be34342be63..0834d0483bcc 100644 --- a/packages/SettingsLib/res/values-uk/strings.xml +++ b/packages/SettingsLib/res/values-uk/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Під’єднано через %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Доступ через %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Під’єднано, але немає доступу до Інтернету"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Точка доступу тимчасово переповнена"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Дуже повільна"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Повільна"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ОК"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Середня"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Швидка"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Дуже швидка"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>: <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Роз’єднано"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Відключення..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Підключення…"</string> @@ -103,16 +101,14 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Дві смужки сигналу Wi-Fi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Три смужки сигналу Wi-Fi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Максимальний сигнал Wi-Fi."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Відкрита мережа"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Захищена мережа"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"ОС Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Видалені програми"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Видалені програми та користувачі"</string> -    <string name="tether_settings_title_usb" msgid="6688416425801386511">"USB-модем"</string> +    <string name="tether_settings_title_usb" msgid="6688416425801386511">"Прив\'язка USB"</string>      <string name="tether_settings_title_wifi" msgid="3277144155960302049">"Порт. точка дост."</string> -    <string name="tether_settings_title_bluetooth" msgid="355855408317564420">"Bluetooth-модем"</string> +    <string name="tether_settings_title_bluetooth" msgid="355855408317564420">"Прив\'язка Bluetooth"</string>      <string name="tether_settings_title_usb_bluetooth" msgid="5355828977109785001">"Прив\'язка"</string> -    <string name="tether_settings_title_all" msgid="8356136101061143841">"Точка доступу й модем"</string> +    <string name="tether_settings_title_all" msgid="8356136101061143841">"Режим модема"</string>      <string name="managed_user_title" msgid="8109605045406748842">"Усі робочі додатки"</string>      <string name="user_guest" msgid="8475274842845401871">"Гість"</string>      <string name="unknown" msgid="1592123443519355854">"Невідомо"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Спеціальний масштаб (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Довідка й відгуки"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Меню"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Введіть пароль, щоб скинути налаштування в демо-режимі"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Далі"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Потрібен пароль"</string> diff --git a/packages/SettingsLib/res/values-ur/strings.xml b/packages/SettingsLib/res/values-ur/strings.xml index 0282d09228c9..3aec6aee145f 100644 --- a/packages/SettingsLib/res/values-ur/strings.xml +++ b/packages/SettingsLib/res/values-ur/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"منسلک بذریعہ %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"دستیاب بذریعہ %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"منسلک، انٹرنیٹ نہیں ہے"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"رسائی پوائنٹ عارضی طور پر فُل ہے"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"بہت سست"</string>      <string name="speed_label_slow" msgid="813109590815810235">"سست"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"ٹھیک ہے"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"متوسط"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"تیز"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"بہت تیز"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"منقطع"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"منقطع کیا جارہا ہے…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"مربوط ہو رہا ہے…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wifi دو بارز۔"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wifi تین بارز۔"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wifi سگنل پورا ہے۔"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"اوپن نیٹ ورک"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"محفوظ نیٹ ورک"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"ہٹائی گئی ایپس"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"ہٹائی گئی ایپس اور صارفین"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"حسب ضرورت (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"مدد اور تاثرات"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"مینو"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"ڈیمو موڈ میں فیکٹری ری سیٹ کیلئے پاس ورڈ درج کریں"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"اگلا"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"پاس ورڈ درکار ہے"</string> diff --git a/packages/SettingsLib/res/values-uz/strings.xml b/packages/SettingsLib/res/values-uz/strings.xml index 8684b49459af..5c4d3bda0f4a 100644 --- a/packages/SettingsLib/res/values-uz/strings.xml +++ b/packages/SettingsLib/res/values-uz/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"%1$s orqali ulangan"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"%1$s orqali ishlaydi"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Ulangan, lekin internet aloqasi yo‘q"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Internet kirish nuqtasi vaqtinchalik to‘lgan"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Juda sekin"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Sekin"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"O‘rtacha"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Tez"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Juda tez"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Uzildi"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Uzilyapti…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Ulanmoqda…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi: ikkita ustun"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi: uchta ustun"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi: signal to‘liq"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Ochiq tarmoq"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Xavfsiz tarmoq"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"O‘chirilgan ilovalar"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"O‘chirib tashlangan ilova va foydalanuvchilar"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Moslashtirilgan (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Yordam va fikr-mulohaza"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menyu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Demo rejimda zavod holatiga qaytarish uchun parolni kiriting"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Keyingisi"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Parolni kiritish zarur"</string> diff --git a/packages/SettingsLib/res/values-vi/strings.xml b/packages/SettingsLib/res/values-vi/strings.xml index 836dd3dd76e9..db2b29d5753d 100644 --- a/packages/SettingsLib/res/values-vi/strings.xml +++ b/packages/SettingsLib/res/values-vi/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Được kết nối qua %1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Có sẵn qua %1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Đã kết nối, không có Internet"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Điểm truy cập tạm thời đã đạt đến giới hạn số lượng thiết bị truy cập."</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Rất chậm"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Chậm"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"Khá tốt"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Trung bình"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Nhanh"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Rất nhanh"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Đã ngắt kết nối"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Đang ngắt kết nối…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Đang kết nối…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Tín hiệu Wi-Fi hai vạch."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Tín hiệu Wi-Fi ba vạch."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Tín hiệu Wi-Fi đủ."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Mạng mở"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Mạng bảo mật"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Hệ điều hành Android"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Ứng dụng đã xóa"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Ứng dụng và người dùng bị xóa"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Tùy chỉnh (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Trợ giúp và phản hồi"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Nhập mật khẩu để tiến hành khôi phục cài đặt gốc ở chế độ trình diễn"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Tiếp theo"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Yêu cầu mật khẩu"</string> diff --git a/packages/SettingsLib/res/values-zh-rCN/strings.xml b/packages/SettingsLib/res/values-zh-rCN/strings.xml index c7a3d7797420..1fe8778295bb 100644 --- a/packages/SettingsLib/res/values-zh-rCN/strings.xml +++ b/packages/SettingsLib/res/values-zh-rCN/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"已通过%1$s连接"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"可通过%1$s连接"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"已连接,但无法访问互联网"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"接入点暂时满载"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"很慢"</string>      <string name="speed_label_slow" msgid="813109590815810235">"慢"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"良好"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"适中"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"快"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"很快"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"已断开连接"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"正在断开连接..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"正在连接..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"WLAN 信号强度为两格。"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"WLAN 信号强度为三格。"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"WLAN 信号满格。"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"开放网络"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"安全网络"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android 操作系统"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"已删除的应用"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"已删除的应用和用户"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"自定义 (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"帮助和反馈"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"菜单"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"输入密码即可在演示模式下恢复出厂设置"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"下一步"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"需要输入密码"</string> diff --git a/packages/SettingsLib/res/values-zh-rHK/strings.xml b/packages/SettingsLib/res/values-zh-rHK/strings.xml index bc3348c30913..080a417f453f 100644 --- a/packages/SettingsLib/res/values-zh-rHK/strings.xml +++ b/packages/SettingsLib/res/values-zh-rHK/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"已透過 %1$s 連線"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"可透過 %1$s 連線"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"已連線,沒有互聯網"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"存取點暫時已滿"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"非常慢"</string>      <string name="speed_label_slow" msgid="813109590815810235">"慢"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"良好"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"適中"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"快"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"非常快"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"已中斷連線"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"正在中斷連線..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"正在連線..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi 訊號兩格。"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi 訊號三格。"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi 訊號滿格。"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"開放式網絡"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"安全網絡"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android 作業系統"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"已移除的應用程式"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"已移除的應用程式和使用者"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"自訂 (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"說明和意見反映"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"選單"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"輸入密碼即可在示範模式下重設原廠設定"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"下一步"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"請輸入密碼"</string> diff --git a/packages/SettingsLib/res/values-zh-rTW/strings.xml b/packages/SettingsLib/res/values-zh-rTW/strings.xml index 10f2e76f6182..b3c52126a5c3 100644 --- a/packages/SettingsLib/res/values-zh-rTW/strings.xml +++ b/packages/SettingsLib/res/values-zh-rTW/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"已透過 %1$s 連線"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"可透過 %1$s 使用"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"已連線,沒有網際網路"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"存取點暫時滿載"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"非常慢"</string>      <string name="speed_label_slow" msgid="813109590815810235">"慢"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"確定"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"適中"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"快"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"非常快"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"已中斷連線"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"正在中斷連線…"</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"連線中…"</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi 訊號強度兩格。"</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi 訊號強度三格。"</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi 訊號強度滿格。"</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"開放式網路"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"安全網路"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"Android 作業系統"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"移除的應用程式"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"已移除的應用程式和使用者"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"自訂 (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"說明與意見回饋"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"選單"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"如要在示範模式中恢復原廠設定,請輸入密碼"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"下一步"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"請輸入密碼"</string> diff --git a/packages/SettingsLib/res/values-zu/strings.xml b/packages/SettingsLib/res/values-zu/strings.xml index 65b3478df29a..f3c27a13b2cc 100644 --- a/packages/SettingsLib/res/values-zu/strings.xml +++ b/packages/SettingsLib/res/values-zu/strings.xml @@ -40,14 +40,12 @@      <string name="connected_via_passpoint" msgid="2826205693803088747">"Kuxhumeke nge-%1$s"</string>      <string name="available_via_passpoint" msgid="1617440946846329613">"Iyatholakala nge-%1$s"</string>      <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Kuxhumekile, ayikho i-inthanethi"</string> -    <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Iphoyinti lokufinyelela ligcwele okwesikhashana"</string>      <string name="speed_label_very_slow" msgid="1867055264243608530">"Phansi kakhulu"</string>      <string name="speed_label_slow" msgid="813109590815810235">"Phansi"</string>      <string name="speed_label_okay" msgid="2331665440671174858">"KULUNGILE"</string>      <string name="speed_label_medium" msgid="3175763313268941953">"Okumaphakathi"</string>      <string name="speed_label_fast" msgid="7715732164050975057">"Sheshayo"</string>      <string name="speed_label_very_fast" msgid="2265363430784523409">"Kushesha kakhulu"</string> -    <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string>      <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ayixhunyiwe"</string>      <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Inqamula uxhumano kwi-inthanethi..."</string>      <string name="bluetooth_connecting" msgid="8555009514614320497">"Iyaxhuma..."</string> @@ -103,8 +101,6 @@      <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Amabha amabili we-Wifi."</string>      <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Amabha amathathu we-Wifi."</string>      <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Isiginali ye-Wifi igcwele."</string> -    <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Vula inethiwekhi"</string> -    <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Inethiwekhi evikelekile"</string>      <string name="process_kernel_label" msgid="3916858646836739323">"I-Android OS"</string>      <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Izinhlelo zokusebenza zisusiwe"</string>      <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Izinhelo zokusebenza nabasebenzisi abasusiwe"</string> @@ -379,6 +375,7 @@      <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Ngokwezifiso (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string>      <string name="help_feedback_label" msgid="6815040660801785649">"Usizo nempendulo"</string>      <string name="content_description_menu_button" msgid="8182594799812351266">"Imenyu"</string> +    <string name="time_zone_gmt" msgid="2587097992671450782">"I-GMT"</string>      <string name="retail_demo_reset_message" msgid="118771671364131297">"Faka iphasiwedi ukuze wenze ukusetha kwefekthri kumodi yedemo"</string>      <string name="retail_demo_reset_next" msgid="8356731459226304963">"Okulandelayo"</string>      <string name="retail_demo_reset_title" msgid="696589204029930100">"Iphasiwedi iyadingeka"</string> diff --git a/packages/SystemUI/res-keyguard/values-ja/strings.xml b/packages/SystemUI/res-keyguard/values-ja/strings.xml index ecd27de498cb..c108d1ef8252 100644 --- a/packages/SystemUI/res-keyguard/values-ja/strings.xml +++ b/packages/SystemUI/res-keyguard/values-ja/strings.xml @@ -110,9 +110,9 @@      <string name="kg_prompt_reason_restart_pattern" msgid="7246972020562621506">"端末の再起動後はパターンの入力が必要となります"</string>      <string name="kg_prompt_reason_restart_pin" msgid="6303592361322290145">"端末の再起動後は PIN の入力が必要となります"</string>      <string name="kg_prompt_reason_restart_password" msgid="6984641181515902406">"端末の再起動後はパスワードの入力が必要となります"</string> -    <string name="kg_prompt_reason_timeout_pattern" msgid="5304487696073914063">"追加の確認のためパターンが必要です"</string> -    <string name="kg_prompt_reason_timeout_pin" msgid="8851462864335757813">"追加の確認のため PIN が必要です"</string> -    <string name="kg_prompt_reason_timeout_password" msgid="6563904839641583441">"追加の確認のためパスワードが必要です"</string> +    <string name="kg_prompt_reason_timeout_pattern" msgid="5304487696073914063">"セキュリティを強化するにはパターンが必要です"</string> +    <string name="kg_prompt_reason_timeout_pin" msgid="8851462864335757813">"セキュリティを強化するには PIN が必要です"</string> +    <string name="kg_prompt_reason_timeout_password" msgid="6563904839641583441">"セキュリティを強化するにはパスワードが必要です"</string>      <string name="kg_prompt_reason_switch_profiles_pattern" msgid="3398054847288438444">"プロファイルを切り替えるにはパターンが必要です"</string>      <string name="kg_prompt_reason_switch_profiles_pin" msgid="7426368139226961699">"プロファイルを切り替えるには PIN が必要です"</string>      <string name="kg_prompt_reason_switch_profiles_password" msgid="8383831046318421845">"プロファイルを切り替えるにはパスワードが必要です"</string> diff --git a/packages/SystemUI/res-keyguard/values-pt-rPT/strings.xml b/packages/SystemUI/res-keyguard/values-pt-rPT/strings.xml index 6bdf2d928238..f3fa491f50af 100644 --- a/packages/SystemUI/res-keyguard/values-pt-rPT/strings.xml +++ b/packages/SystemUI/res-keyguard/values-pt-rPT/strings.xml @@ -93,12 +93,12 @@      <string name="kg_failed_attempts_almost_at_login" product="default" msgid="8364140853305528449">"Desenhou a sequência de desbloqueio incorretamente <xliff:g id="NUMBER_0">%1$d</xliff:g> vezes. Após mais <xliff:g id="NUMBER_1">%2$d</xliff:g> tentativas sem êxito, ser-lhe-á pedido para desbloquear o telemóvel através de uma conta de email.\n\n Tente novamente dentro de <xliff:g id="NUMBER_2">%3$d</xliff:g> segundos."</string>      <string name="kg_password_wrong_pin_code_pukked" msgid="3389829202093674267">"Código PIN do cartão SIM incorreto. Tem de contactar o seu operador para desbloquear o dispositivo."</string>      <plurals name="kg_password_wrong_pin_code" formatted="false" msgid="4314341367727055967"> -      <item quantity="one">Código PIN do cartão SIM incorreto. Tem mais <xliff:g id="NUMBER_0">%d</xliff:g> tentativa antes de precisar de contactar o seu operador para desbloquear o dispositivo.</item> +      <item quantity="one">Incorrect SIM PIN code, you have <xliff:g id="NUMBER_1">%d</xliff:g> remaining attempts.</item>        <item quantity="other">Código PIN do cartão SIM incorreto. Tem mais <xliff:g id="NUMBER_1">%d</xliff:g> tentativas.</item>      </plurals>      <string name="kg_password_wrong_puk_code_dead" msgid="3329017604125179374">"Cartão SIM inutilizável. Contacte o seu operador."</string>      <plurals name="kg_password_wrong_puk_code" formatted="false" msgid="2287504898931957513"> -      <item quantity="one">Código PUK do cartão SIM incorreto. Tem mais <xliff:g id="NUMBER_0">%d</xliff:g> tentativa antes de o cartão SIM ficar permanentemente inutilizável.</item> +      <item quantity="one">Incorrect SIM PUK code, you have <xliff:g id="NUMBER_1">%d</xliff:g> remaining attempts before SIM becomes permanently unusable.</item>        <item quantity="other">Código PUK do cartão SIM incorreto. Tem mais <xliff:g id="NUMBER_1">%d</xliff:g> tentativas antes de o cartão SIM ficar permanentemente inutilizável.</item>      </plurals>      <string name="kg_password_pin_failed" msgid="8769990811451236223">"Falha ao introduzir o PIN do cartão SIM!"</string> @@ -119,15 +119,15 @@      <string name="kg_prompt_reason_device_admin" msgid="3452168247888906179">"Dispositivo bloqueado pelo administrador"</string>      <string name="kg_prompt_reason_user_request" msgid="8236951765212462286">"O dispositivo foi bloqueado manualmente"</string>      <plurals name="kg_prompt_reason_time_pattern" formatted="false" msgid="71299470072448533"> -      <item quantity="one">O dispositivo não é desbloqueado há <xliff:g id="NUMBER_0">%d</xliff:g> hora. Confirme o padrão.</item> +      <item quantity="one">Device hasn\'t been unlocked for <xliff:g id="NUMBER_1">%d</xliff:g> hours. Confirm pattern.</item>        <item quantity="other">O dispositivo não é desbloqueado há <xliff:g id="NUMBER_1">%d</xliff:g> horas. Confirme o padrão.</item>      </plurals>      <plurals name="kg_prompt_reason_time_pin" formatted="false" msgid="34586942088144385"> -      <item quantity="one">O dispositivo não é desbloqueado há <xliff:g id="NUMBER_0">%d</xliff:g> hora. Confirme o PIN.</item> +      <item quantity="one">Device hasn\'t been unlocked for <xliff:g id="NUMBER_1">%d</xliff:g> hours. Confirm PIN.</item>        <item quantity="other">O dispositivo não é desbloqueado há <xliff:g id="NUMBER_1">%d</xliff:g> horas. Confirme o PIN.</item>      </plurals>      <plurals name="kg_prompt_reason_time_password" formatted="false" msgid="257297696215346527"> -      <item quantity="one">O dispositivo não é desbloqueado há <xliff:g id="NUMBER_0">%d</xliff:g> hora. Confirme a palavra-passe.</item> +      <item quantity="one">Device hasn\'t been unlocked for <xliff:g id="NUMBER_1">%d</xliff:g> hours. Confirm password.</item>        <item quantity="other">O dispositivo não é desbloqueado há <xliff:g id="NUMBER_1">%d</xliff:g> horas. Confirme a palavra-passe.</item>      </plurals>      <string name="fingerprint_not_recognized" msgid="348813995267914625">"Não reconhecido"</string> diff --git a/packages/SystemUI/res/values-af/strings.xml b/packages/SystemUI/res/values-af/strings.xml index 30750ab24cbe..2533b50a590c 100644 --- a/packages/SystemUI/res/values-af/strings.xml +++ b/packages/SystemUI/res/values-af/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Vervang"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Programme wat op die agtergrond loop"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tik vir besonderhede oor battery- en datagebruik"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Skakel mobiele data af?"</string>  </resources> diff --git a/packages/SystemUI/res/values-am/strings.xml b/packages/SystemUI/res/values-am/strings.xml index 42aa76c239c4..f5242018163b 100644 --- a/packages/SystemUI/res/values-am/strings.xml +++ b/packages/SystemUI/res/values-am/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ተካ"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"በጀርባ ውስጥ የሚያሄዱ መተግበሪያዎች"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"በባትሪ እና ውሂብ አጠቃቀም ላይ ዝርዝሮችን ለማግኘት መታ ያድርጉ"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"የተንቀሳቃሽ ስልክ ውሂብ ይጥፋ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ar/strings.xml b/packages/SystemUI/res/values-ar/strings.xml index ba57d537164b..adb76b997bff 100644 --- a/packages/SystemUI/res/values-ar/strings.xml +++ b/packages/SystemUI/res/values-ar/strings.xml @@ -797,5 +797,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"استبدال"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"التطبيقات التي تعمل في الخلفية"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"انقر للحصول على تفاصيل حول البطارية واستخدام البيانات"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"هل تريد إيقاف تشغيل بيانات الجوال؟"</string>  </resources> diff --git a/packages/SystemUI/res/values-az/strings.xml b/packages/SystemUI/res/values-az/strings.xml index 37167b637387..a7b3b036a269 100644 --- a/packages/SystemUI/res/values-az/strings.xml +++ b/packages/SystemUI/res/values-az/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Əvəz edin"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Arxa fonda işləyən tətbiqlər"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Batareya və data istifadəsi haqqında ətraflı məlumat üçün klikləyin"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Mobil data söndürülsün?"</string>  </resources> diff --git a/packages/SystemUI/res/values-b+sr+Latn/strings.xml b/packages/SystemUI/res/values-b+sr+Latn/strings.xml index 5255aeb80101..6547f0fe6eec 100644 --- a/packages/SystemUI/res/values-b+sr+Latn/strings.xml +++ b/packages/SystemUI/res/values-b+sr+Latn/strings.xml @@ -779,5 +779,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Zameni"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikacije pokrenute u pozadini"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Dodirnite za detalje o bateriji i potrošnji podataka"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Želite da onemogućite mobilne podatke?"</string>  </resources> diff --git a/packages/SystemUI/res/values-be/strings.xml b/packages/SystemUI/res/values-be/strings.xml index 48a1be2dcbcd..6d6d1b227125 100644 --- a/packages/SystemUI/res/values-be/strings.xml +++ b/packages/SystemUI/res/values-be/strings.xml @@ -787,5 +787,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Замяніць"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Праграмы, якія працуюць у фонавым рэжыме"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Дакраніцеся, каб даведацца пра выкарыстанне трафіка і акумулятара"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Выключыць мабільную перадачу даных?"</string>  </resources> diff --git a/packages/SystemUI/res/values-bg/strings.xml b/packages/SystemUI/res/values-bg/strings.xml index 8f0d89350d2d..86e02786a77c 100644 --- a/packages/SystemUI/res/values-bg/strings.xml +++ b/packages/SystemUI/res/values-bg/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Замяна"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Приложения, работещи на заден план"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Докоснете за информация относно използването на батерията и преноса на данни"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Да се изключат ли мобилните данни?"</string>  </resources> diff --git a/packages/SystemUI/res/values-bn/strings.xml b/packages/SystemUI/res/values-bn/strings.xml index 94f0deb8effa..8db54c88a13e 100644 --- a/packages/SystemUI/res/values-bn/strings.xml +++ b/packages/SystemUI/res/values-bn/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"বদলে দিন"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"পটভূমিতে অ্যাপ চালু আছে"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ব্যাটারি এবং ডেটার ব্যবহারের বিশদ বিবরণের জন্য ট্যাপ করুন"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"মোবাইল ডেটা বন্ধ করবেন?"</string>  </resources> diff --git a/packages/SystemUI/res/values-bs/strings.xml b/packages/SystemUI/res/values-bs/strings.xml index 6584f9c63813..337b68fed758 100644 --- a/packages/SystemUI/res/values-bs/strings.xml +++ b/packages/SystemUI/res/values-bs/strings.xml @@ -781,5 +781,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Zamijeni"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikacije koje rade u pozadini"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Dodirnite za detalje o potrošnji baterije i prijenosa podataka"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Želite li isključiti prijenos mobilnih podataka?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ca/strings.xml b/packages/SystemUI/res/values-ca/strings.xml index aa2847483418..5aa85b8186b8 100644 --- a/packages/SystemUI/res/values-ca/strings.xml +++ b/packages/SystemUI/res/values-ca/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Substitueix"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplicacions que s\'estan executant en segon pla"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Toca per obtenir informació sobre l\'ús de dades i de bateria"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vols desactivar les dades mòbils?"</string>  </resources> diff --git a/packages/SystemUI/res/values-cs/strings.xml b/packages/SystemUI/res/values-cs/strings.xml index c882e7ca556a..ed4bd0f1991e 100644 --- a/packages/SystemUI/res/values-cs/strings.xml +++ b/packages/SystemUI/res/values-cs/strings.xml @@ -787,5 +787,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Nahradit"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikace běžící na pozadí"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Klepnutím zobrazíte podrobnosti o využití baterie a dat"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vypnout mobilní data?"</string>  </resources> diff --git a/packages/SystemUI/res/values-da/strings.xml b/packages/SystemUI/res/values-da/strings.xml index 4edc30795d9d..c7367beb571a 100644 --- a/packages/SystemUI/res/values-da/strings.xml +++ b/packages/SystemUI/res/values-da/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Erstat"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps, der kører i baggrunden"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tryk for at se oplysninger om batteri- og dataforbrug"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vil du deaktivere mobildata?"</string>  </resources> diff --git a/packages/SystemUI/res/values-de/strings.xml b/packages/SystemUI/res/values-de/strings.xml index 3451ae837d4b..ed5756400fb2 100644 --- a/packages/SystemUI/res/values-de/strings.xml +++ b/packages/SystemUI/res/values-de/strings.xml @@ -777,5 +777,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Ersetzen"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps, die im Hintergrund ausgeführt werden"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Für Details zur Akku- und Datennutzung tippen"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Mobile Daten deaktivieren?"</string>  </resources> diff --git a/packages/SystemUI/res/values-el/strings.xml b/packages/SystemUI/res/values-el/strings.xml index 7a8f56f3c36f..c206d8693bec 100644 --- a/packages/SystemUI/res/values-el/strings.xml +++ b/packages/SystemUI/res/values-el/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Αντικατάσταση"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Εφαρμογές που εκτελούνται στο παρασκήνιο"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Πατήστε για λεπτομέρειες σχετικά με τη χρήση μπαταρίας και δεδομένων"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Απενεργοποίηση δεδομένων κινητής τηλεφωνίας;"</string>  </resources> diff --git a/packages/SystemUI/res/values-en-rAU/strings.xml b/packages/SystemUI/res/values-en-rAU/strings.xml index bfac5b7b4a3d..a9cd4ddbcd66 100644 --- a/packages/SystemUI/res/values-en-rAU/strings.xml +++ b/packages/SystemUI/res/values-en-rAU/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Replace"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps running in background"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tap for details on battery and data usage"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Turn off mobile data?"</string>  </resources> diff --git a/packages/SystemUI/res/values-en-rGB/strings.xml b/packages/SystemUI/res/values-en-rGB/strings.xml index bfac5b7b4a3d..a9cd4ddbcd66 100644 --- a/packages/SystemUI/res/values-en-rGB/strings.xml +++ b/packages/SystemUI/res/values-en-rGB/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Replace"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps running in background"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tap for details on battery and data usage"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Turn off mobile data?"</string>  </resources> diff --git a/packages/SystemUI/res/values-en-rIN/strings.xml b/packages/SystemUI/res/values-en-rIN/strings.xml index bfac5b7b4a3d..a9cd4ddbcd66 100644 --- a/packages/SystemUI/res/values-en-rIN/strings.xml +++ b/packages/SystemUI/res/values-en-rIN/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Replace"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps running in background"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tap for details on battery and data usage"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Turn off mobile data?"</string>  </resources> diff --git a/packages/SystemUI/res/values-es-rUS/strings.xml b/packages/SystemUI/res/values-es-rUS/strings.xml index d5726dffd7ba..94f37b9eab35 100644 --- a/packages/SystemUI/res/values-es-rUS/strings.xml +++ b/packages/SystemUI/res/values-es-rUS/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Reemplazar"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps que se ejecutan en segundo plano"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Presiona para obtener información sobre el uso de datos y de la batería"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"¿Deseas desactivar los datos móviles?"</string>  </resources> diff --git a/packages/SystemUI/res/values-es/strings.xml b/packages/SystemUI/res/values-es/strings.xml index a09d3295eb1c..c479cfe15841 100644 --- a/packages/SystemUI/res/values-es/strings.xml +++ b/packages/SystemUI/res/values-es/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Reemplazar"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplicaciones que se están ejecutando en segundo plano"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Toca para ver información detallada sobre el uso de datos y de la batería"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"¿Desactivar los datos móviles?"</string>  </resources> diff --git a/packages/SystemUI/res/values-et/strings.xml b/packages/SystemUI/res/values-et/strings.xml index 810cc0dac8ee..a08a97aa7e34 100644 --- a/packages/SystemUI/res/values-et/strings.xml +++ b/packages/SystemUI/res/values-et/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Asenda"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Rakendusi käitatakse taustal"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Aku ja andmekasutuse üksikasjade nägemiseks puudutage"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Kas lülitada mobiilne andmeside välja?"</string>  </resources> diff --git a/packages/SystemUI/res/values-eu/strings.xml b/packages/SystemUI/res/values-eu/strings.xml index f3ab2fceef21..820fdb366226 100644 --- a/packages/SystemUI/res/values-eu/strings.xml +++ b/packages/SystemUI/res/values-eu/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Ordeztu"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikazioak exekutatzen ari dira atzeko planoan"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Sakatu bateria eta datuen erabilerari buruzko xehetasunak ikusteko"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Datu-konexioa desaktibatu nahi duzu?"</string>  </resources> diff --git a/packages/SystemUI/res/values-fa/strings.xml b/packages/SystemUI/res/values-fa/strings.xml index c5d56456e2c8..0cf5530271fa 100644 --- a/packages/SystemUI/res/values-fa/strings.xml +++ b/packages/SystemUI/res/values-fa/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"جایگزین کردن"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"برنامههایی که در پسزمینه اجرا میشوند"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"برای جزئیات مربوط به مصرف باتری و داده، ضربه بزنید"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"داده شبکه تلفن همراه خاموش شود؟"</string>  </resources> diff --git a/packages/SystemUI/res/values-fi/strings.xml b/packages/SystemUI/res/values-fi/strings.xml index f65d0604f75d..638ca2ede935 100644 --- a/packages/SystemUI/res/values-fi/strings.xml +++ b/packages/SystemUI/res/values-fi/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Korvaa"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Sovelluksia käynnissä taustalla"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Katso lisätietoja akun ja datan käytöstä napauttamalla"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Poistetaanko mobiilidata käytöstä?"</string>  </resources> diff --git a/packages/SystemUI/res/values-fr-rCA/strings.xml b/packages/SystemUI/res/values-fr-rCA/strings.xml index 0150d628ea70..25c448a5f92d 100644 --- a/packages/SystemUI/res/values-fr-rCA/strings.xml +++ b/packages/SystemUI/res/values-fr-rCA/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Remplacer"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Applications qui fonctionnent en arrière-plan"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Touchez pour afficher des détails sur l\'utilisation de la pile et des données"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Désactiver les données cellulaires?"</string>  </resources> diff --git a/packages/SystemUI/res/values-fr/strings.xml b/packages/SystemUI/res/values-fr/strings.xml index bc227741738e..44a26a6910d7 100644 --- a/packages/SystemUI/res/values-fr/strings.xml +++ b/packages/SystemUI/res/values-fr/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Remplacer"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Applications en cours d\'exécution en arrière-plan"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Appuyer pour obtenir des informations sur l\'utilisation de la batterie et des données"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Désactiver les données mobiles ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-gl/strings.xml b/packages/SystemUI/res/values-gl/strings.xml index 976c07e65274..68d1c938014b 100644 --- a/packages/SystemUI/res/values-gl/strings.xml +++ b/packages/SystemUI/res/values-gl/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Substituír"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplicacións que se executan en segundo plano"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Toca para obter información sobre o uso de datos e a batería"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Queres desactivar os datos móbiles?"</string>  </resources> diff --git a/packages/SystemUI/res/values-gu/strings.xml b/packages/SystemUI/res/values-gu/strings.xml index f81a473a8a7a..021ad3ea1b1c 100644 --- a/packages/SystemUI/res/values-gu/strings.xml +++ b/packages/SystemUI/res/values-gu/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"બદલો"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"પૃષ્ઠભૂમિમાં ચાલી રહેલ ઍપ્લિકેશનો"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"બૅટરી અને ડેટા વપરાશ વિશેની વિગતો માટે ટૅપ કરો"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"મોબાઇલ ડેટા બંધ કરીએ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-hi/strings.xml b/packages/SystemUI/res/values-hi/strings.xml index 21ff01de5951..da3efcfc7fbb 100644 --- a/packages/SystemUI/res/values-hi/strings.xml +++ b/packages/SystemUI/res/values-hi/strings.xml @@ -29,7 +29,7 @@        <item quantity="one">अवलोकन में %d स्क्रीन</item>        <item quantity="other">अवलोकन में %d स्क्रीन</item>      </plurals> -    <string name="status_bar_no_notifications_title" msgid="4755261167193833213">"कोई नोटिफ़िकेशन नहीं"</string> +    <string name="status_bar_no_notifications_title" msgid="4755261167193833213">"कोई नोटिफिकेशन नहीं"</string>      <string name="status_bar_ongoing_events_title" msgid="1682504513316879202">"ऑनगोइंग"</string>      <string name="status_bar_latest_events_title" msgid="6594767438577593172">"सूचनाएं"</string>      <string name="battery_low_title" msgid="6456385927409742437">"बैटरी कम है"</string> @@ -166,7 +166,7 @@      <string name="accessibility_settings_button" msgid="799583911231893380">"सिस्टम सेटिंग."</string>      <string name="accessibility_notifications_button" msgid="4498000369779421892">"सूचनाएं."</string>      <string name="accessibility_overflow_action" msgid="5681882033274783311">"सभी नोटिफ़िकेशन देखें"</string> -    <string name="accessibility_remove_notification" msgid="3603099514902182350">"नोटिफ़िकेशन साफ़ करें"</string> +    <string name="accessibility_remove_notification" msgid="3603099514902182350">"नोटिफिकेशन साफ़ करें"</string>      <string name="accessibility_gps_enabled" msgid="3511469499240123019">"GPS सक्षम."</string>      <string name="accessibility_gps_acquiring" msgid="8959333351058967158">"GPS प्राप्त करना."</string>      <string name="accessibility_tty_enabled" msgid="4613200365379426561">"टेलीटाइपराइटर सक्षम."</string> @@ -181,8 +181,8 @@      <string name="accessibility_recents_item_open_app_info" msgid="5107479759905883540">"<xliff:g id="APP">%s</xliff:g> ऐप्लिकेशन जानकारी खोलें."</string>      <string name="accessibility_recents_item_launched" msgid="7616039892382525203">"<xliff:g id="APP">%s</xliff:g> प्रारंभ हो रहा है."</string>      <string name="accessibility_recents_task_header" msgid="1437183540924535457">"<xliff:g id="APP">%1$s</xliff:g> <xliff:g id="ACTIVITY_LABEL">%2$s</xliff:g>"</string> -    <string name="accessibility_notification_dismissed" msgid="854211387186306927">"नोटिफ़िकेशन खारिज की गई."</string> -    <string name="accessibility_desc_notification_shade" msgid="4690274844447504208">"नोटिफ़िकेशन शेड."</string> +    <string name="accessibility_notification_dismissed" msgid="854211387186306927">"नोटिफिकेशन खारिज की गई."</string> +    <string name="accessibility_desc_notification_shade" msgid="4690274844447504208">"नोटिफिकेशन शेड."</string>      <string name="accessibility_desc_quick_settings" msgid="6186378411582437046">"त्वरित सेटिंग."</string>      <string name="accessibility_desc_lock_screen" msgid="5625143713611759164">"लॉक स्क्रीन."</string>      <string name="accessibility_desc_settings" msgid="3417884241751434521">"सेटिंग"</string> @@ -255,7 +255,7 @@        <item quantity="one">इसमें <xliff:g id="NUMBER_1">%s</xliff:g> और नोटिफ़िकेशन हैं.</item>        <item quantity="other">इसमें <xliff:g id="NUMBER_1">%s</xliff:g> और नोटिफ़िकेशन हैं.</item>      </plurals> -    <string name="status_bar_notification_inspect_item_title" msgid="5668348142410115323">"नोटिफ़िकेशन सेटिंग"</string> +    <string name="status_bar_notification_inspect_item_title" msgid="5668348142410115323">"नोटिफिकेशन सेटिंग"</string>      <string name="status_bar_notification_app_settings_title" msgid="5525260160341558869">"<xliff:g id="APP_NAME">%s</xliff:g> सेटिंग"</string>      <string name="accessibility_rotation_lock_off" msgid="4062780228931590069">"स्क्रीन स्वचालित रूप से घूमेगी."</string>      <string name="accessibility_rotation_lock_on_landscape" msgid="6731197337665366273">"स्क्रीन लैंडस्केप अभिविन्यास में लॉक है."</string> @@ -411,7 +411,7 @@      <string name="media_projection_remember_text" msgid="3103510882172746752">"फिर से न दिखाएं"</string>      <string name="clear_all_notifications_text" msgid="814192889771462828">"सभी साफ करें"</string>      <string name="media_projection_action_text" msgid="8470872969457985954">"अब प्रारंभ करें"</string> -    <string name="empty_shade_text" msgid="708135716272867002">"कोई नोटिफ़िकेशन नहीं"</string> +    <string name="empty_shade_text" msgid="708135716272867002">"कोई नोटिफिकेशन नहीं"</string>      <string name="profile_owned_footer" msgid="8021888108553696069">"प्रोफ़ाइल को मॉनीटर किया जा सकता है"</string>      <string name="vpn_footer" msgid="2388611096129106812">"नेटवर्क को मॉनीटर किया जा सकता है"</string>      <string name="branded_vpn_footer" msgid="2168111859226496230">"नेटवर्क को मॉनिटर किया जा सकता है"</string> @@ -542,8 +542,8 @@      <string name="enable_bluetooth_title" msgid="5027037706500635269">"ब्लूटूथ चालू करें?"</string>      <string name="enable_bluetooth_message" msgid="9106595990708985385">"अपने कीबोर्ड को अपने टैबलेट से कनेक्ट करने के लिए, आपको पहले ब्लूटूथ चालू करना होगा."</string>      <string name="enable_bluetooth_confirmation_ok" msgid="6258074250948309715">"चालू करें"</string> -    <string name="show_silently" msgid="6841966539811264192">"नोटिफ़िकेशन मौन रूप से दिखाएं"</string> -    <string name="block" msgid="2734508760962682611">"सभी नोटिफ़िकेशन अवरुद्ध करें"</string> +    <string name="show_silently" msgid="6841966539811264192">"नोटिफिकेशन मौन रूप से दिखाएं"</string> +    <string name="block" msgid="2734508760962682611">"सभी नोटिफिकेशन अवरुद्ध करें"</string>      <string name="do_not_silence" msgid="6878060322594892441">"मौन ना करें"</string>      <string name="do_not_silence_block" msgid="4070647971382232311">"मौन या अवरुद्ध ना करें"</string>      <string name="tuner_full_importance_settings" msgid="3207312268609236827">"पावर नोटिफ़िकेशन नियंत्रण"</string> @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"बदलें"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"बैकग्राउंड में चल रहे ऐप्लिकेशन"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"बैटरी और डेटा उपयोग के विवरण देखने के लिए टैप करें"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"मोबाइल डेटा बंद करना चाहते हैं?"</string>  </resources> diff --git a/packages/SystemUI/res/values-hr/strings.xml b/packages/SystemUI/res/values-hr/strings.xml index f872419022e8..ea7ba5be0431 100644 --- a/packages/SystemUI/res/values-hr/strings.xml +++ b/packages/SystemUI/res/values-hr/strings.xml @@ -779,5 +779,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Zamijeni"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Izvođenje aplikacija u pozadini"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Dodirnite da biste vidjeli pojedinosti o potrošnji baterije i podatkovnom prometu"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Isključiti mobilne podatke?"</string>  </resources> diff --git a/packages/SystemUI/res/values-hu/strings.xml b/packages/SystemUI/res/values-hu/strings.xml index bc4f9e328837..a47daf560fe5 100644 --- a/packages/SystemUI/res/values-hu/strings.xml +++ b/packages/SystemUI/res/values-hu/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Csere"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"A háttérben még futnak alkalmazások"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Koppintson az akkumulátor- és adathasználat részleteinek megtekintéséhez"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Kikapcsolja a mobiladatokat?"</string>  </resources> diff --git a/packages/SystemUI/res/values-hy/strings.xml b/packages/SystemUI/res/values-hy/strings.xml index 7619ce2a7f71..0dbee583262b 100644 --- a/packages/SystemUI/res/values-hy/strings.xml +++ b/packages/SystemUI/res/values-hy/strings.xml @@ -756,7 +756,7 @@      <string name="notification_channel_alerts" msgid="4496839309318519037">"Ծանուցումներ"</string>      <string name="notification_channel_screenshot" msgid="6314080179230000938">"Էկրանի պատկերներ"</string>      <string name="notification_channel_general" msgid="4525309436693914482">"Ընդհանուր հաղորդագրություններ"</string> -    <string name="notification_channel_storage" msgid="3077205683020695313">"Տարածք"</string> +    <string name="notification_channel_storage" msgid="3077205683020695313">"Հիշողություն"</string>      <string name="instant_apps" msgid="6647570248119804907">"Ակնթարթորեն գործարկվող հավելվածներ"</string>      <string name="instant_apps_message" msgid="8116608994995104836">"Ակնթարթորեն գործարկվող հավելվածները տեղադրում չեն պահանջում։"</string>      <string name="app_info" msgid="6856026610594615344">"Հավելվածի տվյալներ"</string> @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Փոխարինել"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Ֆոնային ռեժիմում աշխատող հավելվածներ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Հպեք՝ մարտկոցի և թրաֆիկի մանրամասները տեսնելու համար"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Անջատե՞լ բջջային ինտերնետը։"</string>  </resources> diff --git a/packages/SystemUI/res/values-in/strings.xml b/packages/SystemUI/res/values-in/strings.xml index ecb101bf9268..12ff89de7212 100644 --- a/packages/SystemUI/res/values-in/strings.xml +++ b/packages/SystemUI/res/values-in/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Ganti"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikasi yang sedang berjalan di latar belakang"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tap untuk melihat detail penggunaan baterai dan data"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Nonaktifkan data seluler?"</string>  </resources> diff --git a/packages/SystemUI/res/values-is/strings.xml b/packages/SystemUI/res/values-is/strings.xml index 7ce154ff1aaf..9100ca8bd645 100644 --- a/packages/SystemUI/res/values-is/strings.xml +++ b/packages/SystemUI/res/values-is/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Skipta út"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Forrit sem keyra í bakgrunni"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Ýttu til að fá upplýsingar um rafhlöðu- og gagnanotkun"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Slökkva á farsímagögnum?"</string>  </resources> diff --git a/packages/SystemUI/res/values-it/strings.xml b/packages/SystemUI/res/values-it/strings.xml index f0bfdc320175..134503b5a165 100644 --- a/packages/SystemUI/res/values-it/strings.xml +++ b/packages/SystemUI/res/values-it/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Sostituisci"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"App in esecuzione in background"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tocca per conoscere i dettagli sull\'utilizzo dei dati e della batteria"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Disattivare i dati mobili?"</string>  </resources> diff --git a/packages/SystemUI/res/values-iw/strings.xml b/packages/SystemUI/res/values-iw/strings.xml index f2e5c403fe97..ba5816beb127 100644 --- a/packages/SystemUI/res/values-iw/strings.xml +++ b/packages/SystemUI/res/values-iw/strings.xml @@ -785,5 +785,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"החלף"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"אפליקציות שפועלות ברקע"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"הקש לקבלת פרטים על צריכה של נתונים וסוללה"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"לכבות את חבילת הגלישה?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ja/strings.xml b/packages/SystemUI/res/values-ja/strings.xml index f892538ea9ec..8b86acce0ee6 100644 --- a/packages/SystemUI/res/values-ja/strings.xml +++ b/packages/SystemUI/res/values-ja/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"設定を変更"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"バックグラウンドで実行中のアプリ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"タップして電池やデータの使用量を確認"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"モバイルデータを OFF にしますか?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ka/strings.xml b/packages/SystemUI/res/values-ka/strings.xml index 489f18ed50fa..72c42157b9c2 100644 --- a/packages/SystemUI/res/values-ka/strings.xml +++ b/packages/SystemUI/res/values-ka/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ჩანაცვლება"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"ფონურ რეჟიმში გაშვებული აპები"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"შეეხეთ ბატარეისა და მონაცემების მოხმარების შესახებ დეტალური ინფორმაციისთვის"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"გსურთ მობილური ინტერნეტის გამორთვა?"</string>  </resources> diff --git a/packages/SystemUI/res/values-kk/strings.xml b/packages/SystemUI/res/values-kk/strings.xml index 30bff789401e..5d5f8070df7e 100644 --- a/packages/SystemUI/res/values-kk/strings.xml +++ b/packages/SystemUI/res/values-kk/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Ауыстыру"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Фонда жұмыс істеп тұрған қолданбалар"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Батарея мен деректер трафигі туралы білу үшін түртіңіз"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Мобильдік деректер өшірілсін бе?"</string>  </resources> diff --git a/packages/SystemUI/res/values-km/strings.xml b/packages/SystemUI/res/values-km/strings.xml index 4c470a7785f0..e161f59e4bb9 100644 --- a/packages/SystemUI/res/values-km/strings.xml +++ b/packages/SystemUI/res/values-km/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ជំនួស"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"កម្មវិធីដែលកំពុងដំណើរការនៅផ្ទៃខាងក្រោយ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ចុចដើម្បីមើលព័ត៌មានលម្អិតអំពីការប្រើប្រាស់ទិន្នន័យ និងថ្ម"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"បិទទិន្នន័យចល័ត?"</string>  </resources> diff --git a/packages/SystemUI/res/values-kn/strings.xml b/packages/SystemUI/res/values-kn/strings.xml index c9040e7912f0..2284c9ba4f76 100644 --- a/packages/SystemUI/res/values-kn/strings.xml +++ b/packages/SystemUI/res/values-kn/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ಬದಲಿಸಿ"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"ಅಪ್ಲಿಕೇಶನ್ಗಳು ಹಿನ್ನೆಲೆಯಲ್ಲಿ ರನ್ ಆಗುತ್ತಿವೆ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ಬ್ಯಾಟರಿ,ಡೇಟಾ ಬಳಕೆಯ ವಿವರಗಳಿಗಾಗಿ ಟ್ಯಾಪ್ ಮಾಡಿ"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"ಮೊಬೈಲ್ ಡೇಟಾ ಆಫ್ ಮಾಡಬೇಕೆ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ko/strings.xml b/packages/SystemUI/res/values-ko/strings.xml index 6d6a964c4ee7..6943f4e129d8 100644 --- a/packages/SystemUI/res/values-ko/strings.xml +++ b/packages/SystemUI/res/values-ko/strings.xml @@ -758,7 +758,7 @@      <string name="notification_channel_alerts" msgid="4496839309318519037">"알림"</string>      <string name="notification_channel_screenshot" msgid="6314080179230000938">"스크린샷"</string>      <string name="notification_channel_general" msgid="4525309436693914482">"일반 메시지"</string> -    <string name="notification_channel_storage" msgid="3077205683020695313">"저장공간"</string> +    <string name="notification_channel_storage" msgid="3077205683020695313">"저장소"</string>      <string name="instant_apps" msgid="6647570248119804907">"인스턴트 앱"</string>      <string name="instant_apps_message" msgid="8116608994995104836">"인스턴트 앱은 설치가 필요하지 않습니다."</string>      <string name="app_info" msgid="6856026610594615344">"앱 정보"</string> @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"바꾸기"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"백그라운드에서 실행 중인 앱"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"탭하여 배터리 및 데이터 사용량 확인"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"모바일 데이터를 사용 중지하시겠습니까?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ky/strings.xml b/packages/SystemUI/res/values-ky/strings.xml index 5a6228d1f6f2..f3d5dbdd0d64 100644 --- a/packages/SystemUI/res/values-ky/strings.xml +++ b/packages/SystemUI/res/values-ky/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Алмаштыруу"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Фондо иштеп жаткан колдонмолор"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Батареянын кубаты жана трафиктин көлөмү жөнүндө билүү үчүн таптап коюңуз"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Мобилдик Интернетти өчүрөсүзбү?"</string>  </resources> diff --git a/packages/SystemUI/res/values-lo/strings.xml b/packages/SystemUI/res/values-lo/strings.xml index 851d79721f9a..a5f0ca436cb3 100644 --- a/packages/SystemUI/res/values-lo/strings.xml +++ b/packages/SystemUI/res/values-lo/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ແທນທີ່"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"ແອັບທີ່ກຳລັງເຮັດວຽກໃນພື້ນຫຼັງ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ແຕະເພື່ອເບິ່ງລາຍລະອຽດການນຳໃຊ້ແບັດເຕີຣີ ແລະ ອິນເຕີເນັດ"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"ປິດອິນເຕີເນັດມືຖືໄວ້ບໍ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-lt/strings.xml b/packages/SystemUI/res/values-lt/strings.xml index e68b8b47b7bb..c1ccc75e39cb 100644 --- a/packages/SystemUI/res/values-lt/strings.xml +++ b/packages/SystemUI/res/values-lt/strings.xml @@ -785,5 +785,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Pakeisti"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Programos, veikiančios fone"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Palieskite ir sužinokite išsamios informacijos apie akumuliatoriaus bei duomenų naudojimą"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Išjungti mobiliojo ryšio duomenis?"</string>  </resources> diff --git a/packages/SystemUI/res/values-lv/strings.xml b/packages/SystemUI/res/values-lv/strings.xml index d2232418b5fe..4d4aad115543 100644 --- a/packages/SystemUI/res/values-lv/strings.xml +++ b/packages/SystemUI/res/values-lv/strings.xml @@ -779,5 +779,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Aizstāt"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Lietotnes, kas darbojas fonā"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Pieskarieties, lai skatītu detalizētu informāciju par akumulatora un datu lietojumu"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vai izslēgt mobilos datus?"</string>  </resources> diff --git a/packages/SystemUI/res/values-mk/strings.xml b/packages/SystemUI/res/values-mk/strings.xml index f3e6bd74079f..fb7c7afdd5b1 100644 --- a/packages/SystemUI/res/values-mk/strings.xml +++ b/packages/SystemUI/res/values-mk/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Замени"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Апликациите се извршуваат во заднина"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Допрете за детали за батеријата и потрошениот сообраќај"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Да се исклучи мобилниот интернет?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ml/strings.xml b/packages/SystemUI/res/values-ml/strings.xml index d87ffb97e6e5..b42319a2bf5c 100644 --- a/packages/SystemUI/res/values-ml/strings.xml +++ b/packages/SystemUI/res/values-ml/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"മാറ്റിസ്ഥാപിക്കുക"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"ആപ്പുകൾ പശ്ചാത്തലത്തിൽ റൺ ചെയ്യുന്നു"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ബാറ്ററി, ഡാറ്റ ഉപയോഗം എന്നിവയുടെ വിശദാംശങ്ങളറിയാൻ ടാപ്പുചെയ്യുക"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"മൊബൈൽ ഡാറ്റ ഓഫാക്കണോ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-mn/strings.xml b/packages/SystemUI/res/values-mn/strings.xml index 786cd5468d2e..cd4f5be60a51 100644 --- a/packages/SystemUI/res/values-mn/strings.xml +++ b/packages/SystemUI/res/values-mn/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Солих"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Цаана ажиллаж буй апп"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Батерей, дата ашиглалтын талаар дэлгэрэнгүйг харахын тулд товшино уу"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Мобайл датаг унтраах уу?"</string>  </resources> diff --git a/packages/SystemUI/res/values-mr/strings.xml b/packages/SystemUI/res/values-mr/strings.xml index 9fe097541eb1..b8562f63825b 100644 --- a/packages/SystemUI/res/values-mr/strings.xml +++ b/packages/SystemUI/res/values-mr/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"पुनर्स्थित करा"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"अॅप्स बॅकग्राउंडमध्ये चालू आहेत"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"बॅटरी आणि डेटा वापराच्या तपशीलांसाठी टॅप करा"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"मोबाइल डेटा बंद करायचा?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ms/strings.xml b/packages/SystemUI/res/values-ms/strings.xml index 4a70d9e36d0c..2c2e0948ff9d 100644 --- a/packages/SystemUI/res/values-ms/strings.xml +++ b/packages/SystemUI/res/values-ms/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Gantikan"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apl yang berjalan di latar belakang"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Ketik untuk mendapatkan butiran tentang penggunaan kuasa bateri dan data"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Matikan data mudah alih?"</string>  </resources> diff --git a/packages/SystemUI/res/values-my/strings.xml b/packages/SystemUI/res/values-my/strings.xml index 95d95c84dc4c..5040bfdd80e3 100644 --- a/packages/SystemUI/res/values-my/strings.xml +++ b/packages/SystemUI/res/values-my/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"အစားထိုးရန်"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"နောက်ခံတွင် ပွင့်နေသော အက်ပ်များ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ဘက်ထရီနှင့် ဒေတာအသုံးပြုမှု အသေးစိတ်ကို ကြည့်ရန် တို့ပါ"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"မိုဘိုင်းဒေတာကို ပိတ်လိုပါသလား။"</string>  </resources> diff --git a/packages/SystemUI/res/values-nb/strings.xml b/packages/SystemUI/res/values-nb/strings.xml index 04496279a472..324c5832caa7 100644 --- a/packages/SystemUI/res/values-nb/strings.xml +++ b/packages/SystemUI/res/values-nb/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Erstatt"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apper kjører i bakgrunnen"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Trykk for detaljer om batteri- og databruk"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vil du slå av mobildata?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ne/strings.xml b/packages/SystemUI/res/values-ne/strings.xml index b3ae2d07533e..d2a50200f130 100644 --- a/packages/SystemUI/res/values-ne/strings.xml +++ b/packages/SystemUI/res/values-ne/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"प्रतिस्थापन गर्नुहोस्"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"पृष्ठभूमिमा चल्ने अनुप्रयोगहरू"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ब्याट्री र डेटाका प्रयोग सम्बन्धी विवरणहरूका लागि ट्याप गर्नुहोस्"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"मोबाइल डेटा निष्क्रिय पार्ने हो?"</string>  </resources> diff --git a/packages/SystemUI/res/values-nl/strings.xml b/packages/SystemUI/res/values-nl/strings.xml index 1bd30dac7356..d6a949d0bca9 100644 --- a/packages/SystemUI/res/values-nl/strings.xml +++ b/packages/SystemUI/res/values-nl/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Vervangen"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps uitgevoerd op achtergrond"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tik voor batterij- en datagebruik"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Mobiele data uitschakelen?"</string>  </resources> diff --git a/packages/SystemUI/res/values-pa/strings.xml b/packages/SystemUI/res/values-pa/strings.xml index daf634527f56..c32175991c48 100644 --- a/packages/SystemUI/res/values-pa/strings.xml +++ b/packages/SystemUI/res/values-pa/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ਬਦਲੋ"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"ਬੈਕਗ੍ਰਾਊਂਡ ਵਿੱਚ ਚੱਲ ਰਹੀਆਂ ਐਪਾਂ"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"ਬੈਟਰੀ ਅਤੇ ਡੈਟਾ ਉਪਯੋਗ ਸਬੰਧੀ ਵੇਰਵਿਆਂ ਲਈ ਟੈਪ ਕਰੋ"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"ਮੋਬਾਈਲ ਡੈਟਾ ਬੰਦ ਕਰੀਏ?"</string>  </resources> diff --git a/packages/SystemUI/res/values-pl/strings.xml b/packages/SystemUI/res/values-pl/strings.xml index b1a024a394ef..279d12176ae2 100644 --- a/packages/SystemUI/res/values-pl/strings.xml +++ b/packages/SystemUI/res/values-pl/strings.xml @@ -785,5 +785,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Zastąp"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikacje działające w tle"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Kliknij, by wyświetlić szczegóły wykorzystania baterii i transmisji danych"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Wyłączyć mobilną transmisję danych?"</string>  </resources> diff --git a/packages/SystemUI/res/values-pt-rBR/strings.xml b/packages/SystemUI/res/values-pt-rBR/strings.xml index 746a7fdaa3ea..d28d7d37a07d 100644 --- a/packages/SystemUI/res/values-pt-rBR/strings.xml +++ b/packages/SystemUI/res/values-pt-rBR/strings.xml @@ -214,10 +214,10 @@      <string name="accessibility_quick_settings_bluetooth_connected" msgid="4306637793614573659">"Bluetooth conectado."</string>      <string name="accessibility_quick_settings_bluetooth_changed_off" msgid="2730003763480934529">"O Bluetooth foi desativado."</string>      <string name="accessibility_quick_settings_bluetooth_changed_on" msgid="8722351798763206577">"O Bluetooth foi ativado."</string> -    <string name="accessibility_quick_settings_location_off" msgid="5119080556976115520">"Relatório de localização desativado."</string> -    <string name="accessibility_quick_settings_location_on" msgid="5809937096590102036">"Relatório de localização ativado."</string> -    <string name="accessibility_quick_settings_location_changed_off" msgid="8526845571503387376">"O Relatório de localização foi desativado."</string> -    <string name="accessibility_quick_settings_location_changed_on" msgid="339403053079338468">"O Relatório de localização foi ativado."</string> +    <string name="accessibility_quick_settings_location_off" msgid="5119080556976115520">"Relatório de Localização desativado."</string> +    <string name="accessibility_quick_settings_location_on" msgid="5809937096590102036">"Relatório de Localização ativado."</string> +    <string name="accessibility_quick_settings_location_changed_off" msgid="8526845571503387376">"O Relatório de Localização foi desativado."</string> +    <string name="accessibility_quick_settings_location_changed_on" msgid="339403053079338468">"O Relatório de Localização foi ativado."</string>      <string name="accessibility_quick_settings_alarm" msgid="3959908972897295660">"Alarme definido para <xliff:g id="TIME">%s</xliff:g>."</string>      <string name="accessibility_quick_settings_close" msgid="3115847794692516306">"Fechar painel."</string>      <string name="accessibility_quick_settings_more_time" msgid="3659274935356197708">"Mais tempo."</string> @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Substituir"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps sendo executados em segundo plano"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tocar para ver detalhes sobre a bateria e o uso de dados"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Desativar os dados móveis?"</string>  </resources> diff --git a/packages/SystemUI/res/values-pt-rPT/strings.xml b/packages/SystemUI/res/values-pt-rPT/strings.xml index 92d2c948e2a7..27f859b4e366 100644 --- a/packages/SystemUI/res/values-pt-rPT/strings.xml +++ b/packages/SystemUI/res/values-pt-rPT/strings.xml @@ -26,7 +26,7 @@      <string name="status_bar_no_recent_apps" msgid="7374907845131203189">"Os ecrãs recentes aparecem aqui"</string>      <string name="status_bar_accessibility_dismiss_recents" msgid="4576076075226540105">"Ignorar aplicações recentes"</string>      <plurals name="status_bar_accessibility_recent_apps" formatted="false" msgid="9138535907802238759"> -      <item quantity="one">1 ecrã na Vista geral</item> +      <item quantity="one">%d screens in Overview</item>        <item quantity="other">%d ecrãs na Vista geral</item>      </plurals>      <string name="status_bar_no_notifications_title" msgid="4755261167193833213">"Sem notificações"</string> @@ -252,7 +252,7 @@      <string name="accessibility_clear_all" msgid="5235938559247164925">"Limpar todas as notificações."</string>      <string name="notification_group_overflow_indicator" msgid="1863231301642314183">"+ <xliff:g id="NUMBER">%s</xliff:g>"</string>      <plurals name="notification_group_overflow_description" formatted="false" msgid="4579313201268495404"> -      <item quantity="one">Mais <xliff:g id="NUMBER_0">%s</xliff:g> notificação no grupo.</item> +      <item quantity="one"><xliff:g id="NUMBER_1">%s</xliff:g> more notifications inside.</item>        <item quantity="other">Mais <xliff:g id="NUMBER_1">%s</xliff:g> notificações no grupo.</item>      </plurals>      <string name="status_bar_notification_inspect_item_title" msgid="5668348142410115323">"Definições de notificação"</string> @@ -556,12 +556,12 @@      <string name="notification_default_channel_desc" msgid="2506053815870808359">"Esta aplicação não tem categorias de notificação"</string>      <string name="notification_unblockable_desc" msgid="3561016061737896906">"Não é possível desativar as notificações desta aplicação"</string>      <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> -      <item quantity="one">1 de <xliff:g id="NUMBER_0">%d</xliff:g> categoria de notificação desta aplicação</item> +      <item quantity="one">1 out of <xliff:g id="NUMBER_1">%d</xliff:g> notification categories from this app</item>        <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categorias de notificação desta aplicação</item>      </plurals>      <string name="notification_channels_list_desc_2" msgid="6214732715833946441">"<xliff:g id="CHANNEL_NAME_1">%1$s</xliff:g>, <xliff:g id="CHANNEL_NAME_2">%2$s</xliff:g>"</string>      <plurals name="notification_channels_list_desc_2_and_others" formatted="false" msgid="2747813553355336157"> -      <item quantity="one"><xliff:g id="CHANNEL_NAME_1_0">%1$s</xliff:g>, <xliff:g id="CHANNEL_NAME_2_1">%2$s</xliff:g> e mais <xliff:g id="NUMBER_2">%3$d</xliff:g></item> +      <item quantity="one"><xliff:g id="CHANNEL_NAME_1_3">%1$s</xliff:g>, <xliff:g id="CHANNEL_NAME_2_4">%2$s</xliff:g>, and <xliff:g id="NUMBER_5">%3$d</xliff:g> others</item>        <item quantity="other"><xliff:g id="CHANNEL_NAME_1_3">%1$s</xliff:g>, <xliff:g id="CHANNEL_NAME_2_4">%2$s</xliff:g> e mais <xliff:g id="NUMBER_5">%3$d</xliff:g></item>      </plurals>      <string name="notification_channel_controls_opened_accessibility" msgid="6553950422055908113">"Controlos de notificações da aplicação <xliff:g id="APP_NAME">%1$s</xliff:g> abertos"</string> @@ -577,11 +577,11 @@      <string name="snooze_undo" msgid="6074877317002985129">"ANULAR"</string>      <string name="snoozed_for_time" msgid="2390718332980204462">"Suspensa por <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string>      <plurals name="snoozeHourOptions" formatted="false" msgid="2124335842674413030"> -      <item quantity="one">%d hora</item> +      <item quantity="one">%d horas</item>        <item quantity="other">%d horas</item>      </plurals>      <plurals name="snoozeMinuteOptions" formatted="false" msgid="4127251700591510196"> -      <item quantity="one">%d minuto</item> +      <item quantity="one">%d minutos</item>        <item quantity="other">%d minutos</item>      </plurals>      <string name="battery_panel_title" msgid="7944156115535366613">"Utiliz. da bateria"</string> @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Substituir"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplicações em execução em segundo plano"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Toque para obter detalhes acerca da utilização da bateria e dos dados"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Pretende desativar os dados móveis?"</string>  </resources> diff --git a/packages/SystemUI/res/values-pt/strings.xml b/packages/SystemUI/res/values-pt/strings.xml index 746a7fdaa3ea..d28d7d37a07d 100644 --- a/packages/SystemUI/res/values-pt/strings.xml +++ b/packages/SystemUI/res/values-pt/strings.xml @@ -214,10 +214,10 @@      <string name="accessibility_quick_settings_bluetooth_connected" msgid="4306637793614573659">"Bluetooth conectado."</string>      <string name="accessibility_quick_settings_bluetooth_changed_off" msgid="2730003763480934529">"O Bluetooth foi desativado."</string>      <string name="accessibility_quick_settings_bluetooth_changed_on" msgid="8722351798763206577">"O Bluetooth foi ativado."</string> -    <string name="accessibility_quick_settings_location_off" msgid="5119080556976115520">"Relatório de localização desativado."</string> -    <string name="accessibility_quick_settings_location_on" msgid="5809937096590102036">"Relatório de localização ativado."</string> -    <string name="accessibility_quick_settings_location_changed_off" msgid="8526845571503387376">"O Relatório de localização foi desativado."</string> -    <string name="accessibility_quick_settings_location_changed_on" msgid="339403053079338468">"O Relatório de localização foi ativado."</string> +    <string name="accessibility_quick_settings_location_off" msgid="5119080556976115520">"Relatório de Localização desativado."</string> +    <string name="accessibility_quick_settings_location_on" msgid="5809937096590102036">"Relatório de Localização ativado."</string> +    <string name="accessibility_quick_settings_location_changed_off" msgid="8526845571503387376">"O Relatório de Localização foi desativado."</string> +    <string name="accessibility_quick_settings_location_changed_on" msgid="339403053079338468">"O Relatório de Localização foi ativado."</string>      <string name="accessibility_quick_settings_alarm" msgid="3959908972897295660">"Alarme definido para <xliff:g id="TIME">%s</xliff:g>."</string>      <string name="accessibility_quick_settings_close" msgid="3115847794692516306">"Fechar painel."</string>      <string name="accessibility_quick_settings_more_time" msgid="3659274935356197708">"Mais tempo."</string> @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Substituir"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Apps sendo executados em segundo plano"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tocar para ver detalhes sobre a bateria e o uso de dados"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Desativar os dados móveis?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ro/strings.xml b/packages/SystemUI/res/values-ro/strings.xml index 7620c7103b5a..0224ef5412ad 100644 --- a/packages/SystemUI/res/values-ro/strings.xml +++ b/packages/SystemUI/res/values-ro/strings.xml @@ -781,5 +781,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Înlocuiți"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplicațiile rulează în fundal"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Atingeți pentru mai multe detalii privind bateria și utilizarea datelor"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Dezactivați datele mobile?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ru/strings.xml b/packages/SystemUI/res/values-ru/strings.xml index b44d7d64323f..f8dc744c76ea 100644 --- a/packages/SystemUI/res/values-ru/strings.xml +++ b/packages/SystemUI/res/values-ru/strings.xml @@ -787,5 +787,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Заменить"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Приложения, работающие в фоновом режиме"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Нажмите, чтобы проверить энергопотребление и трафик"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Отключить мобильный Интернет?"</string>  </resources> diff --git a/packages/SystemUI/res/values-si/strings.xml b/packages/SystemUI/res/values-si/strings.xml index 15b444670568..7e77c4368f09 100644 --- a/packages/SystemUI/res/values-si/strings.xml +++ b/packages/SystemUI/res/values-si/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"ප්රතිස්ථාපනය"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"පසුබිමින් ධාවනය වන යෙදුම්"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"බැටරි හා දත්ත භාවිතය පිළිබඳව විස්තර සඳහා තට්ටු කරන්න"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"ජංගම දත්ත ක්රියාවිරහිත කරන්නද?"</string>  </resources> diff --git a/packages/SystemUI/res/values-sk/strings.xml b/packages/SystemUI/res/values-sk/strings.xml index 58e4b8a013ff..2b19d6f4a3d6 100644 --- a/packages/SystemUI/res/values-sk/strings.xml +++ b/packages/SystemUI/res/values-sk/strings.xml @@ -787,5 +787,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Nahradiť"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikácie sú spustené na pozadí"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Klepnutím zobrazíte podrobnosti o batérii a spotrebe dát"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vypnúť mobilné dáta?"</string>  </resources> diff --git a/packages/SystemUI/res/values-sl/strings.xml b/packages/SystemUI/res/values-sl/strings.xml index 8c03d0ed346d..29dfa3af6f62 100644 --- a/packages/SystemUI/res/values-sl/strings.xml +++ b/packages/SystemUI/res/values-sl/strings.xml @@ -787,5 +787,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Zamenjaj"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikacije, ki se izvajajo v ozadju"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Dotaknite se za prikaz podrobnosti porabe akumulatorja in prenosa podatkov"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Želite izklopiti prenos podatkov v mobilnih omrežjih?"</string>  </resources> diff --git a/packages/SystemUI/res/values-sq/strings.xml b/packages/SystemUI/res/values-sq/strings.xml index 607440d448eb..042320867ae3 100644 --- a/packages/SystemUI/res/values-sq/strings.xml +++ b/packages/SystemUI/res/values-sq/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Zëvendëso"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Aplikacionet që ekzekutohen në sfond"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Trokit për detaje mbi baterinë dhe përdorimin e të dhënave"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Të çaktivizohen të dhënat celulare?"</string>  </resources> diff --git a/packages/SystemUI/res/values-sr/strings.xml b/packages/SystemUI/res/values-sr/strings.xml index 8db53af893f2..d6adcb571129 100644 --- a/packages/SystemUI/res/values-sr/strings.xml +++ b/packages/SystemUI/res/values-sr/strings.xml @@ -779,5 +779,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Замени"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Апликације покренуте у позадини"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Додирните за детаље о батерији и потрошњи података"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Желите да онемогућите мобилне податке?"</string>  </resources> diff --git a/packages/SystemUI/res/values-sv/strings.xml b/packages/SystemUI/res/values-sv/strings.xml index f318be195ed7..642484f879c9 100644 --- a/packages/SystemUI/res/values-sv/strings.xml +++ b/packages/SystemUI/res/values-sv/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Ersätt"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Appar körs i bakgrunden"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Tryck för information om batteri- och dataanvändning"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vill du inaktivera mobildatan?"</string>  </resources> diff --git a/packages/SystemUI/res/values-sw/strings.xml b/packages/SystemUI/res/values-sw/strings.xml index 87a3d77ed765..e11313e3426c 100644 --- a/packages/SystemUI/res/values-sw/strings.xml +++ b/packages/SystemUI/res/values-sw/strings.xml @@ -240,7 +240,7 @@      <string name="accessibility_ambient_display_charging" msgid="9084521679384069087">"Inachaji"</string>      <string name="data_usage_disabled_dialog_3g_title" msgid="5281770593459841889">"Data ya 2G-3G imesitishwa"</string>      <string name="data_usage_disabled_dialog_4g_title" msgid="1601769736881078016">"Data ya 4G imesitishwa"</string> -    <string name="data_usage_disabled_dialog_mobile_title" msgid="6801382439018099779">"Data ya mtandao wa simu imesitishwa"</string> +    <string name="data_usage_disabled_dialog_mobile_title" msgid="6801382439018099779">"Data ya simu imesitishwa"</string>      <string name="data_usage_disabled_dialog_title" msgid="3932437232199671967">"Data imesitishwa"</string>      <string name="data_usage_disabled_dialog" msgid="4919541636934603816">"Umefikia kikomo cha data ulichoweka. Hutumii tena data ya simu.\n\nUkiendelea, huenda ukatozwa ada ya matumizi ya data."</string>      <string name="data_usage_disabled_dialog_enable" msgid="1412395410306390593">"Endelea"</string> @@ -316,7 +316,7 @@      <string name="quick_settings_hotspot_label" msgid="6046917934974004879">"Mtandao-hewa"</string>      <string name="quick_settings_notifications_label" msgid="4818156442169154523">"Arifa"</string>      <string name="quick_settings_flashlight_label" msgid="2133093497691661546">"Tochi"</string> -    <string name="quick_settings_cellular_detail_title" msgid="3661194685666477347">"Data ya mtandao wa simu"</string> +    <string name="quick_settings_cellular_detail_title" msgid="3661194685666477347">"Data ya simu"</string>      <string name="quick_settings_cellular_detail_data_usage" msgid="1964260360259312002">"Matumizi ya data"</string>      <string name="quick_settings_cellular_detail_remaining_data" msgid="722715415543541249">"Data iliyosalia"</string>      <string name="quick_settings_cellular_detail_over_limit" msgid="967669665390990427">"Imezidi kikomo"</string> @@ -761,7 +761,7 @@      <string name="instant_apps_message" msgid="8116608994995104836">"Huhitaji kusakinisha programu zinazofunguka papo hapo."</string>      <string name="app_info" msgid="6856026610594615344">"Maelezo ya programu"</string>      <string name="go_to_web" msgid="1106022723459948514">"Nenda kwenye wavuti"</string> -    <string name="mobile_data" msgid="7094582042819250762">"Data ya mtandao wa simu"</string> +    <string name="mobile_data" msgid="7094582042819250762">"Data ya simu"</string>      <string name="wifi_is_off" msgid="1838559392210456893">"Wi-Fi imezimwa"</string>      <string name="bt_is_off" msgid="2640685272289706392">"Bluetooth imezimwa"</string>      <string name="dnd_is_off" msgid="6167780215212497572">"Kipengele cha Usinisumbue kimezimwa"</string> @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Badilisha"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Programu zinatumika chinichini"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Gonga ili upate maelezo kuhusu betri na matumizi ya data"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Ungependa kuzima data ya mtandao wa simu?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ta/strings.xml b/packages/SystemUI/res/values-ta/strings.xml index 10f3a3b691bd..e0a0e9bd5bf0 100644 --- a/packages/SystemUI/res/values-ta/strings.xml +++ b/packages/SystemUI/res/values-ta/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"மாற்று"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"பின்னணியில் இயங்கும் பயன்பாடுகள்"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"பேட்டரி மற்றும் தரவு உபயோக விவரங்களைக் காண, தட்டவும்"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"மொபைல் தரவை முடக்கவா?"</string>  </resources> diff --git a/packages/SystemUI/res/values-te/strings.xml b/packages/SystemUI/res/values-te/strings.xml index 01cbfedbfef2..1787d07902fe 100644 --- a/packages/SystemUI/res/values-te/strings.xml +++ b/packages/SystemUI/res/values-te/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"భర్తీ చేయి"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"నేపథ్యంలో అమలు అవుతున్న ఆప్లు"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"బ్యాటరీ మరియు డేటా వినియోగ వివరాల కోసం నొక్కండి"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"మొబైల్ డేటాని ఆఫ్ చేయాలా?"</string>  </resources> diff --git a/packages/SystemUI/res/values-th/strings.xml b/packages/SystemUI/res/values-th/strings.xml index 2a9f4d8b9a13..a0db28708d0f 100644 --- a/packages/SystemUI/res/values-th/strings.xml +++ b/packages/SystemUI/res/values-th/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"แทนที่"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"แอปที่กำลังทำงานในเบื้องหลัง"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"แตะเพื่อดูรายละเอียดเกี่ยวกับแบตเตอรี่และปริมาณการใช้อินเทอร์เน็ต"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"ปิดอินเทอร์เน็ตมือถือไหม"</string>  </resources> diff --git a/packages/SystemUI/res/values-tl/strings.xml b/packages/SystemUI/res/values-tl/strings.xml index 59d3f621d620..5b6732ce1803 100644 --- a/packages/SystemUI/res/values-tl/strings.xml +++ b/packages/SystemUI/res/values-tl/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Palitan"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Tumatakbo ang mga app sa background"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"I-tap para sa mga detalye tungkol sa paggamit ng baterya at data"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"I-off ang mobile data?"</string>  </resources> diff --git a/packages/SystemUI/res/values-tr/strings.xml b/packages/SystemUI/res/values-tr/strings.xml index 78ded20df57e..ad6c4981d075 100644 --- a/packages/SystemUI/res/values-tr/strings.xml +++ b/packages/SystemUI/res/values-tr/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Değiştir"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Arka planda çalışan uygulamalar"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Pil ve veri kullanımı ile ilgili ayrıntılar için dokunun"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Mobil veri kapatılsın mı?"</string>  </resources> diff --git a/packages/SystemUI/res/values-uk/strings.xml b/packages/SystemUI/res/values-uk/strings.xml index e126f7c7b182..d79200a77484 100644 --- a/packages/SystemUI/res/values-uk/strings.xml +++ b/packages/SystemUI/res/values-uk/strings.xml @@ -157,7 +157,7 @@      <string name="accessibility_cell_data" msgid="5326139158682385073">"Мобільне передавання даних"</string>      <string name="accessibility_cell_data_on" msgid="5927098403452994422">"Мобільне передавання даних увімкнено"</string>      <string name="accessibility_cell_data_off" msgid="443267573897409704">"Мобільне передавання даних вимкнено"</string> -    <string name="accessibility_bluetooth_tether" msgid="4102784498140271969">"Bluetooth-модем"</string> +    <string name="accessibility_bluetooth_tether" msgid="4102784498140271969">"Прив’язка Bluetooth."</string>      <string name="accessibility_airplane_mode" msgid="834748999790763092">"Режим польоту."</string>      <string name="accessibility_vpn_on" msgid="5993385083262856059">"Мережу VPN увімкнено."</string>      <string name="accessibility_no_sims" msgid="3957997018324995781">"Немає SIM-карти."</string> @@ -787,5 +787,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Замінити"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Додатки, які працюють у фоновому режимі"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Торкніться, щоб перевірити використання акумулятора й трафік"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Вимкнути мобільний трафік?"</string>  </resources> diff --git a/packages/SystemUI/res/values-ur/strings.xml b/packages/SystemUI/res/values-ur/strings.xml index 12c4560c9efe..c59242f963fa 100644 --- a/packages/SystemUI/res/values-ur/strings.xml +++ b/packages/SystemUI/res/values-ur/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"بدلیں"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"ایپس پس منظر میں چل رہی ہیں"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"بیٹری اور ڈیٹا استعمال کے بارے میں تفصیلات کے لیے تھپتھپائیں"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"موبائل ڈیٹا آف کریں؟"</string>  </resources> diff --git a/packages/SystemUI/res/values-uz/strings.xml b/packages/SystemUI/res/values-uz/strings.xml index c632914f7847..4946f698bcdb 100644 --- a/packages/SystemUI/res/values-uz/strings.xml +++ b/packages/SystemUI/res/values-uz/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Almashtirish"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Fonda ishlayotgan ilovalar"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Batareya va trafik sarfi tafsilotlari uchun ustiga bosing"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Mobil internet o‘chirib qo‘yilsinmi?"</string>  </resources> diff --git a/packages/SystemUI/res/values-vi/strings.xml b/packages/SystemUI/res/values-vi/strings.xml index 9ae0e775737f..e716899a42ba 100644 --- a/packages/SystemUI/res/values-vi/strings.xml +++ b/packages/SystemUI/res/values-vi/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Thay thế"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Ứng dụng đang chạy trong nền"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Nhấn để biết chi tiết về mức sử dụng dữ liệu và pin"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Tắt dữ liệu di động?"</string>  </resources> diff --git a/packages/SystemUI/res/values-zh-rCN/strings.xml b/packages/SystemUI/res/values-zh-rCN/strings.xml index 89148c878614..b8588d9fd823 100644 --- a/packages/SystemUI/res/values-zh-rCN/strings.xml +++ b/packages/SystemUI/res/values-zh-rCN/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"替换"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"在后台运行的应用"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"点按即可详细了解电量和流量消耗情况"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"要关闭移动数据网络吗?"</string>  </resources> diff --git a/packages/SystemUI/res/values-zh-rHK/strings.xml b/packages/SystemUI/res/values-zh-rHK/strings.xml index 91ec22fbac76..e29ccb60ac8e 100644 --- a/packages/SystemUI/res/values-zh-rHK/strings.xml +++ b/packages/SystemUI/res/values-zh-rHK/strings.xml @@ -775,5 +775,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"取代"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"正在背景中執行的應用程式"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"輕按即可查看電池和數據用量詳情"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"要關閉流動數據嗎?"</string>  </resources> diff --git a/packages/SystemUI/res/values-zh-rTW/strings.xml b/packages/SystemUI/res/values-zh-rTW/strings.xml index 6a9ee7e1e42c..26565500ded5 100644 --- a/packages/SystemUI/res/values-zh-rTW/strings.xml +++ b/packages/SystemUI/res/values-zh-rTW/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"取代"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"在背景執行的應用程式"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"輕觸即可查看電池和數據用量詳情"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"要關閉行動數據嗎?"</string>  </resources> diff --git a/packages/SystemUI/res/values-zu/strings.xml b/packages/SystemUI/res/values-zu/strings.xml index 9ea4f218a762..e66ff73e79be 100644 --- a/packages/SystemUI/res/values-zu/strings.xml +++ b/packages/SystemUI/res/values-zu/strings.xml @@ -773,5 +773,4 @@      <string name="qs_dnd_replace" msgid="8019520786644276623">"Buyisela"</string>      <string name="running_foreground_services_title" msgid="381024150898615683">"Izinhlelo zokusebenza zisebenza ngasemuva"</string>      <string name="running_foreground_services_msg" msgid="6326247670075574355">"Thepha ngemininingwane ekusetshenzisweni kwebhethri nedatha"</string> -    <string name="data_usage_disable_mobile" msgid="5116269981510015864">"Vala idatha yeselula?"</string>  </resources> diff --git a/services/core/java/com/android/server/IpSecService.java b/services/core/java/com/android/server/IpSecService.java index ac5da9361c4d..3fec6ad8fa40 100644 --- a/services/core/java/com/android/server/IpSecService.java +++ b/services/core/java/com/android/server/IpSecService.java @@ -46,6 +46,7 @@ import android.util.Log;  import android.util.Slog;  import android.util.SparseArray;  import com.android.internal.annotations.GuardedBy; +import com.android.internal.annotations.VisibleForTesting;  import java.io.FileDescriptor;  import java.io.IOException;  import java.io.PrintWriter; @@ -64,7 +65,7 @@ public class IpSecService extends IIpSecService.Stub {      private static final int[] DIRECTIONS =              new int[] {IpSecTransform.DIRECTION_OUT, IpSecTransform.DIRECTION_IN}; -    private static final int NETD_FETCH_TIMEOUT = 5000; //ms +    private static final int NETD_FETCH_TIMEOUT_MS = 5000; // ms      private static final int MAX_PORT_BIND_ATTEMPTS = 10;      private static final InetAddress INADDR_ANY; @@ -96,6 +97,24 @@ public class IpSecService extends IIpSecService.Stub {      private final ManagedResourceArray<UdpSocketRecord> mUdpSocketRecords =              new ManagedResourceArray<>(); +    interface IpSecServiceConfiguration { +        INetd getNetdInstance() throws RemoteException; + +        static IpSecServiceConfiguration GETSRVINSTANCE = +                new IpSecServiceConfiguration() { +                    @Override +                    public INetd getNetdInstance() throws RemoteException { +                        final INetd netd = NetdService.getInstance(); +                        if (netd == null) { +                            throw new RemoteException("Failed to Get Netd Instance"); +                        } +                        return netd; +                    } +                }; +    } + +    private final IpSecServiceConfiguration mSrvConfig; +      /**       * The ManagedResource class provides a facility to cleanly and reliably release system       * resources. It relies on two things: an IBinder that allows ManagedResource to automatically @@ -195,11 +214,25 @@ public class IpSecService extends IIpSecService.Stub {           * <p>Calls to this are always guarded by IpSecService#this           */          protected abstract void releaseResources() throws RemoteException; + +        @Override +        public String toString() { +            return new StringBuilder() +                    .append("{mResourceId=") +                    .append(mResourceId) +                    .append(", pid=") +                    .append(pid) +                    .append(", uid=") +                    .append(uid) +                    .append(", mReferenceCount=") +                    .append(mReferenceCount.get()) +                    .append("}") +                    .toString(); +        }      };      /** -     * Minimal wrapper around SparseArray that performs ownership -     * validation on element accesses. +     * Minimal wrapper around SparseArray that performs ownership validation on element accesses.       */      private class ManagedResourceArray<T extends ManagedResource> {          SparseArray<T> mArray = new SparseArray<>(); @@ -222,6 +255,11 @@ public class IpSecService extends IIpSecService.Stub {          void remove(int key) {              mArray.remove(key);          } + +        @Override +        public String toString() { +            return mArray.toString(); +        }      }      private final class TransformRecord extends ManagedResource { @@ -264,7 +302,8 @@ public class IpSecService extends IIpSecService.Stub {              for (int direction : DIRECTIONS) {                  int spi = mSpis[direction].getSpi();                  try { -                    getNetdInstance() +                    mSrvConfig +                            .getNetdInstance()                              .ipSecDeleteSecurityAssociation(                                      mResourceId,                                      direction, @@ -290,6 +329,24 @@ public class IpSecService extends IIpSecService.Stub {                  mSocket.removeReference();              }          } + +        @Override +        public String toString() { +            StringBuilder strBuilder = new StringBuilder(); +            strBuilder +                    .append("{super=") +                    .append(super.toString()) +                    .append(", mSocket=") +                    .append(mSocket) +                    .append(", mSpis[OUT].mResourceId=") +                    .append(mSpis[IpSecTransform.DIRECTION_OUT].mResourceId) +                    .append(", mSpis[IN].mResourceId=") +                    .append(mSpis[IpSecTransform.DIRECTION_IN].mResourceId) +                    .append(", mConfig=") +                    .append(mConfig) +                    .append("}"); +            return strBuilder.toString(); +        }      }      private final class SpiRecord extends ManagedResource { @@ -328,7 +385,8 @@ public class IpSecService extends IIpSecService.Stub {              }              try { -                getNetdInstance() +                mSrvConfig +                        .getNetdInstance()                          .ipSecDeleteSecurityAssociation(                                  mResourceId, mDirection, mLocalAddress, mRemoteAddress, mSpi);              } catch (ServiceSpecificException e) { @@ -352,6 +410,26 @@ public class IpSecService extends IIpSecService.Stub {              mOwnedByTransform = true;          } + +        @Override +        public String toString() { +            StringBuilder strBuilder = new StringBuilder(); +            strBuilder +                    .append("{super=") +                    .append(super.toString()) +                    .append(", mSpi=") +                    .append(mSpi) +                    .append(", mDirection=") +                    .append(mDirection) +                    .append(", mLocalAddress=") +                    .append(mLocalAddress) +                    .append(", mRemoteAddress=") +                    .append(mRemoteAddress) +                    .append(", mOwnedByTransform=") +                    .append(mOwnedByTransform) +                    .append("}"); +            return strBuilder.toString(); +        }      }      private final class UdpSocketRecord extends ManagedResource { @@ -379,6 +457,19 @@ public class IpSecService extends IIpSecService.Stub {          public FileDescriptor getSocket() {              return mSocket;          } + +        @Override +        public String toString() { +            return new StringBuilder() +                    .append("{super=") +                    .append(super.toString()) +                    .append(", mSocket=") +                    .append(mSocket) +                    .append(", mPort=") +                    .append(mPort) +                    .append("}") +                    .toString(); +        }      }      /** @@ -387,7 +478,7 @@ public class IpSecService extends IIpSecService.Stub {       * @param context Binder context for this service       */      private IpSecService(Context context) { -        mContext = context; +        this(context, IpSecServiceConfiguration.GETSRVINSTANCE);      }      static IpSecService create(Context context) throws InterruptedException { @@ -396,6 +487,13 @@ public class IpSecService extends IIpSecService.Stub {          return service;      } +    /** @hide */ +    @VisibleForTesting +    public IpSecService(Context context, IpSecServiceConfiguration config) { +        mContext = context; +        mSrvConfig = config; +    } +      public void systemReady() {          if (isNetdAlive()) {              Slog.d(TAG, "IpSecService is ready"); @@ -410,23 +508,15 @@ public class IpSecService extends IIpSecService.Stub {              @Override              public void run() {                  synchronized (IpSecService.this) { -                    NetdService.get(NETD_FETCH_TIMEOUT); +                    NetdService.get(NETD_FETCH_TIMEOUT_MS);                  }              }          }.start();      } -    INetd getNetdInstance() throws RemoteException { -        final INetd netd = NetdService.getInstance(); -        if (netd == null) { -            throw new RemoteException("Failed to Get Netd Instance"); -        } -        return netd; -    } -      synchronized boolean isNetdAlive() {          try { -            final INetd netd = getNetdInstance(); +            final INetd netd = mSrvConfig.getNetdInstance();              if (netd == null) {                  return false;              } @@ -447,7 +537,8 @@ public class IpSecService extends IIpSecService.Stub {          String localAddress = "";          try {              spi = -                    getNetdInstance() +                    mSrvConfig +                            .getNetdInstance()                              .ipSecAllocateSpi(                                      resourceId,                                      direction, @@ -606,7 +697,7 @@ public class IpSecService extends IIpSecService.Stub {              spis[direction] = mSpiRecords.get(c.getSpiResourceId(direction));              int spi = spis[direction].getSpi();              try { -                getNetdInstance() +                mSrvConfig.getNetdInstance()                          .ipSecAddSecurityAssociation(                                  resourceId,                                  c.getMode(), @@ -676,7 +767,8 @@ public class IpSecService extends IIpSecService.Stub {          IpSecConfig c = info.getConfig();          try {              for (int direction : DIRECTIONS) { -                getNetdInstance() +                mSrvConfig +                        .getNetdInstance()                          .ipSecApplyTransportModeTransform(                                  socket.getFileDescriptor(),                                  resourceId, @@ -704,18 +796,27 @@ public class IpSecService extends IIpSecService.Stub {      public void removeTransportModeTransform(ParcelFileDescriptor socket, int resourceId)              throws RemoteException {          try { -            getNetdInstance().ipSecRemoveTransportModeTransform(socket.getFileDescriptor()); +            mSrvConfig +                    .getNetdInstance() +                    .ipSecRemoveTransportModeTransform(socket.getFileDescriptor());          } catch (ServiceSpecificException e) {              // FIXME: get the error code and throw is at an IOException from Errno Exception          }      }      @Override -    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { +    protected synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) {          mContext.enforceCallingOrSelfPermission(DUMP, TAG); -        // TODO: Add dump code to print out a log of all the resources being tracked -        pw.println("IpSecService Log:"); + +        pw.println("IpSecService dump:");          pw.println("NetdNativeService Connection: " + (isNetdAlive() ? "alive" : "dead"));          pw.println(); + +        pw.println("mTransformRecords:"); +        pw.println(mTransformRecords); +        pw.println("mUdpSocketRecords:"); +        pw.println(mUdpSocketRecords); +        pw.println("mSpiRecords:"); +        pw.println(mSpiRecords);      }  } diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index 7b027bbf5661..6090bee5d69b 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -286,15 +286,6 @@ public final class SystemServer {                  SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);              } -            // -            // Default the timezone property to GMT if not set. -            // -            String timezoneProperty =  SystemProperties.get("persist.sys.timezone"); -            if (timezoneProperty == null || timezoneProperty.isEmpty()) { -                Slog.w(TAG, "Timezone not set; setting to GMT."); -                SystemProperties.set("persist.sys.timezone", "GMT"); -            } -              // If the system has "persist.sys.language" and friends set, replace them with              // "persist.sys.locale". Note that the default locale at this point is calculated              // using the "-Duser.locale" command line flag. That flag is usually populated by diff --git a/services/net/java/android/net/ip/IpReachabilityMonitor.java b/services/net/java/android/net/ip/IpReachabilityMonitor.java index 97c9d82e8e31..e833f6a03bce 100644 --- a/services/net/java/android/net/ip/IpReachabilityMonitor.java +++ b/services/net/java/android/net/ip/IpReachabilityMonitor.java @@ -16,8 +16,6 @@  package android.net.ip; -import com.android.internal.annotations.GuardedBy; -  import android.content.Context;  import android.net.LinkAddress;  import android.net.LinkProperties; @@ -31,18 +29,22 @@ import android.net.netlink.NetlinkErrorMessage;  import android.net.netlink.NetlinkMessage;  import android.net.netlink.NetlinkSocket;  import android.net.netlink.RtNetlinkNeighborMessage; -import android.net.netlink.StructNdaCacheInfo;  import android.net.netlink.StructNdMsg; +import android.net.netlink.StructNdaCacheInfo;  import android.net.netlink.StructNlMsgHdr;  import android.net.util.MultinetworkPolicyTracker;  import android.net.util.SharedLog;  import android.os.PowerManager; +import android.os.PowerManager.WakeLock;  import android.os.SystemClock;  import android.system.ErrnoException;  import android.system.NetlinkSocketAddress;  import android.system.OsConstants;  import android.util.Log; +import com.android.internal.annotations.GuardedBy; +import com.android.internal.annotations.VisibleForTesting; +  import java.io.InterruptedIOException;  import java.net.Inet6Address;  import java.net.InetAddress; @@ -147,12 +149,32 @@ public class IpReachabilityMonitor {          public void notifyLost(InetAddress ip, String logMsg);      } +    /** +     * Encapsulates IpReachabilityMonitor depencencies on systems that hinder unit testing. +     * TODO: consider also wrapping MultinetworkPolicyTracker in this interface. +     */ +    interface Dependencies { +        void acquireWakeLock(long durationMs); + +        static Dependencies makeDefault(Context context, String iface) { +            final String lockName = TAG + "." + iface; +            final PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE); +            final WakeLock lock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, lockName); + +            return new Dependencies() { +                public void acquireWakeLock(long durationMs) { +                    lock.acquire(durationMs); +                } +            }; +        } +    } +      private final Object mLock = new Object(); -    private final PowerManager.WakeLock mWakeLock;      private final String mInterfaceName;      private final int mInterfaceIndex;      private final SharedLog mLog;      private final Callback mCallback; +    private final Dependencies mDependencies;      private final MultinetworkPolicyTracker mMultinetworkPolicyTracker;      private final NetlinkSocketObserver mNetlinkSocketObserver;      private final Thread mObserverThread; @@ -228,20 +250,20 @@ public class IpReachabilityMonitor {      }      public IpReachabilityMonitor(Context context, String ifName, SharedLog log, Callback callback, -            MultinetworkPolicyTracker tracker) throws IllegalArgumentException { +            MultinetworkPolicyTracker tracker) { +        this(ifName, getInterfaceIndex(ifName), log, callback, tracker, +                Dependencies.makeDefault(context, ifName)); +    } + +    @VisibleForTesting +    IpReachabilityMonitor(String ifName, int ifIndex, SharedLog log, Callback callback, +            MultinetworkPolicyTracker tracker, Dependencies dependencies) {          mInterfaceName = ifName; -        int ifIndex = -1; -        try { -            NetworkInterface netIf = NetworkInterface.getByName(ifName); -            mInterfaceIndex = netIf.getIndex(); -        } catch (SocketException | NullPointerException e) { -            throw new IllegalArgumentException("invalid interface '" + ifName + "': ", e); -        } -        mWakeLock = ((PowerManager) context.getSystemService(Context.POWER_SERVICE)).newWakeLock( -                PowerManager.PARTIAL_WAKE_LOCK, TAG + "." + mInterfaceName);          mLog = log.forSubComponent(TAG);          mCallback = callback;          mMultinetworkPolicyTracker = tracker; +        mInterfaceIndex = ifIndex; +        mDependencies = dependencies;          mNetlinkSocketObserver = new NetlinkSocketObserver();          mObserverThread = new Thread(mNetlinkSocketObserver);          mObserverThread.start(); @@ -398,7 +420,7 @@ public class IpReachabilityMonitor {              // The wakelock we use is (by default) refcounted, and this version              // of acquire(timeout) queues a release message to keep acquisitions              // and releases balanced. -            mWakeLock.acquire(getProbeWakeLockDuration()); +            mDependencies.acquireWakeLock(getProbeWakeLockDuration());          }          for (InetAddress target : ipProbeList) { @@ -429,6 +451,19 @@ public class IpReachabilityMonitor {          return (numUnicastProbes * retransTimeMs) + gracePeriodMs;      } +    private static int getInterfaceIndex(String ifname) { +        final NetworkInterface iface; +        try { +            iface = NetworkInterface.getByName(ifname); +        } catch (SocketException e) { +            throw new IllegalArgumentException("invalid interface '" + ifname + "': ", e); +        } +        if (iface == null) { +            throw new IllegalArgumentException("NetworkInterface was null for " + ifname); +        } +        return iface.getIndex(); +    } +      private void logEvent(int probeType, int errorCode) {          int eventType = probeType | (errorCode & 0xff);          mMetricsLog.log(mInterfaceName, new IpReachabilityEvent(eventType)); diff --git a/telephony/java/android/telephony/MbmsDownloadManager.java b/telephony/java/android/telephony/MbmsDownloadManager.java index c747b8488634..4c3f7e7ab5a8 100644 --- a/telephony/java/android/telephony/MbmsDownloadManager.java +++ b/telephony/java/android/telephony/MbmsDownloadManager.java @@ -211,9 +211,9 @@ public class MbmsDownloadManager {      private int mSubscriptionId = INVALID_SUBSCRIPTION_ID;      private AtomicReference<IMbmsDownloadService> mService = new AtomicReference<>(null); -    private final IMbmsDownloadManagerCallback mCallback; +    private final MbmsDownloadManagerCallback mCallback; -    private MbmsDownloadManager(Context context, IMbmsDownloadManagerCallback callback, int subId) { +    private MbmsDownloadManager(Context context, MbmsDownloadManagerCallback callback, int subId) {          mContext = context;          mCallback = callback;          mSubscriptionId = subId; @@ -221,12 +221,12 @@ public class MbmsDownloadManager {      /**       * Create a new MbmsDownloadManager using the system default data subscription ID. -     * See {@link #create(Context, IMbmsDownloadManagerCallback, int)} +     * See {@link #create(Context, MbmsDownloadManagerCallback, int)}       *       * @hide       */      public static MbmsDownloadManager create(Context context, -            IMbmsDownloadManagerCallback listener) +            MbmsDownloadManagerCallback listener)              throws MbmsException {          return create(context, listener, SubscriptionManager.getDefaultSubscriptionId());      } @@ -247,7 +247,7 @@ public class MbmsDownloadManager {       * @hide       */      public static MbmsDownloadManager create(Context context, -            IMbmsDownloadManagerCallback listener, int subscriptionId) +            MbmsDownloadManagerCallback listener, int subscriptionId)              throws MbmsException {          MbmsDownloadManager mdm = new MbmsDownloadManager(context, listener, subscriptionId);          mdm.bindAndInitialize(); @@ -261,11 +261,22 @@ public class MbmsDownloadManager {                      public void onServiceConnected(ComponentName name, IBinder service) {                          IMbmsDownloadService downloadService =                                  IMbmsDownloadService.Stub.asInterface(service); +                        int result;                          try { -                            downloadService.initialize(mSubscriptionId, mCallback); +                            result = downloadService.initialize(mSubscriptionId, mCallback);                          } catch (RemoteException e) {                              Log.e(LOG_TAG, "Service died before initialization");                              return; +                        } catch (RuntimeException e) { +                            Log.e(LOG_TAG, "Runtime exception during initialization"); +                            mCallback.error( +                                    MbmsException.InitializationErrors.ERROR_UNABLE_TO_INITIALIZE, +                                    e.toString()); +                            return; +                        } +                        if (result != MbmsException.SUCCESS) { +                            mCallback.error(result, "Error returned during initialization"); +                            return;                          }                          mService.set(downloadService);                      } diff --git a/telephony/java/android/telephony/MbmsStreamingManager.java b/telephony/java/android/telephony/MbmsStreamingManager.java index 5b3503a1b163..d69562cb903e 100644 --- a/telephony/java/android/telephony/MbmsStreamingManager.java +++ b/telephony/java/android/telephony/MbmsStreamingManager.java @@ -16,6 +16,8 @@  package android.telephony; +import android.annotation.SdkConstant; +import android.annotation.SystemApi;  import android.content.ComponentName;  import android.content.Context;  import android.content.ServiceConnection; @@ -37,10 +39,17 @@ import static android.telephony.SubscriptionManager.INVALID_SUBSCRIPTION_ID;  /**   * This class provides functionality for streaming media over MBMS. - * @hide   */  public class MbmsStreamingManager {      private static final String LOG_TAG = "MbmsStreamingManager"; + +    /** +     * Service action which must be handled by the middleware implementing the MBMS streaming +     * interface. +     * @hide +     */ +    @SystemApi +    @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)      public static final String MBMS_STREAMING_SERVICE_ACTION =              "android.telephony.action.EmbmsStreaming"; @@ -51,10 +60,10 @@ public class MbmsStreamingManager {      private int mSubscriptionId = INVALID_SUBSCRIPTION_ID;      /** @hide */ -    private MbmsStreamingManager(Context context, MbmsStreamingManagerCallback listener, +    private MbmsStreamingManager(Context context, MbmsStreamingManagerCallback callback,                      int subscriptionId) {          mContext = context; -        mCallbackToApp = listener; +        mCallbackToApp = callback;          mSubscriptionId = subscriptionId;      } @@ -66,14 +75,14 @@ public class MbmsStreamingManager {       * during the initialization or binding process.       *       * @param context The {@link Context} to use. -     * @param listener A callback object on which you wish to receive results of asynchronous +     * @param callback A callback object on which you wish to receive results of asynchronous       *                 operations.       * @param subscriptionId The subscription ID to use.       */      public static MbmsStreamingManager create(Context context, -            MbmsStreamingManagerCallback listener, int subscriptionId) +            MbmsStreamingManagerCallback callback, int subscriptionId)              throws MbmsException { -        MbmsStreamingManager manager = new MbmsStreamingManager(context, listener, subscriptionId); +        MbmsStreamingManager manager = new MbmsStreamingManager(context, callback, subscriptionId);          manager.bindAndInitialize();          return manager;      } @@ -83,9 +92,9 @@ public class MbmsStreamingManager {       * See {@link #create(Context, MbmsStreamingManagerCallback, int)}.       */      public static MbmsStreamingManager create(Context context, -            MbmsStreamingManagerCallback listener) +            MbmsStreamingManagerCallback callback)              throws MbmsException { -        return create(context, listener, SubscriptionManager.getDefaultSubscriptionId()); +        return create(context, callback, SubscriptionManager.getDefaultSubscriptionId());      }      /** @@ -195,11 +204,32 @@ public class MbmsStreamingManager {                      public void onServiceConnected(ComponentName name, IBinder service) {                          IMbmsStreamingService streamingService =                                  IMbmsStreamingService.Stub.asInterface(service); +                        int result;                          try { -                            streamingService.initialize(mCallbackToApp, mSubscriptionId); +                            result = streamingService.initialize(mCallbackToApp, mSubscriptionId);                          } catch (RemoteException e) {                              Log.e(LOG_TAG, "Service died before initialization");                              return; +                        } catch (RuntimeException e) { +                            Log.e(LOG_TAG, "Runtime exception during initialization"); +                            try { +                                mCallbackToApp.error( +                                        MbmsException.InitializationErrors +                                                .ERROR_UNABLE_TO_INITIALIZE, +                                        e.toString()); +                            } catch (RemoteException e1) { +                                // ignore +                            } +                            return; +                        } +                        if (result != MbmsException.SUCCESS) { +                            try { +                                mCallbackToApp.error( +                                        result, "Error returned during initialization"); +                            } catch (RemoteException e) { +                                // ignore +                            } +                            return;                          }                          mService.set(streamingService);                      } diff --git a/telephony/java/android/telephony/mbms/FileInfo.java b/telephony/java/android/telephony/mbms/FileInfo.java index 1b873938a3f2..b8e1c49f6b4a 100644 --- a/telephony/java/android/telephony/mbms/FileInfo.java +++ b/telephony/java/android/telephony/mbms/FileInfo.java @@ -61,6 +61,10 @@ public class FileInfo implements Parcelable {          }      }; +    /** +     * @hide +     * TODO: systemapi +     */      public FileInfo(Uri uri, String mimeType, long size, byte[] md5Hash) {          this.uri = uri;          this.mimeType = mimeType; diff --git a/telephony/java/android/telephony/mbms/FileServiceInfo.java b/telephony/java/android/telephony/mbms/FileServiceInfo.java index 6646dc8a56df..8afe4d3c5230 100644 --- a/telephony/java/android/telephony/mbms/FileServiceInfo.java +++ b/telephony/java/android/telephony/mbms/FileServiceInfo.java @@ -32,6 +32,7 @@ import java.util.Map;  public class FileServiceInfo extends ServiceInfo implements Parcelable {      private final List<FileInfo> files; +    /** @hide TODO: systemapi */      public FileServiceInfo(Map<Locale, String> newNames, String newClassName,              List<Locale> newLocales, String newServiceId, Date start, Date end,              List<FileInfo> newFiles) { diff --git a/telephony/java/android/telephony/mbms/MbmsDownloadReceiver.java b/telephony/java/android/telephony/mbms/MbmsDownloadReceiver.java index 361716546fb9..339ff3985bff 100644 --- a/telephony/java/android/telephony/mbms/MbmsDownloadReceiver.java +++ b/telephony/java/android/telephony/mbms/MbmsDownloadReceiver.java @@ -356,7 +356,7 @@ public class MbmsDownloadReceiver extends BroadcastReceiver {                  intent.getParcelableExtra(MbmsDownloadManager.EXTRA_SERVICE_INFO);          File tempFileDir = MbmsUtils.getEmbmsTempFileDirForService(context,                  serviceInfo.getServiceId()); -        List<Uri> filesInUse = +        final List<Uri> filesInUse =                  intent.getParcelableArrayListExtra(MbmsDownloadManager.EXTRA_TEMP_FILES_IN_USE);          File[] filesToDelete = tempFileDir.listFiles(new FileFilter() {              @Override diff --git a/telephony/java/android/telephony/mbms/MbmsException.java b/telephony/java/android/telephony/mbms/MbmsException.java index 8888119f90e6..f51563a1cccb 100644 --- a/telephony/java/android/telephony/mbms/MbmsException.java +++ b/telephony/java/android/telephony/mbms/MbmsException.java @@ -16,7 +16,6 @@  package android.telephony.mbms; -/** @hide */  public class MbmsException extends Exception {      /** Indicates that the operation was successful. */      public static final int SUCCESS = 0; @@ -31,7 +30,7 @@ public class MbmsException extends Exception {      /**       * Indicates that the app attempted to perform an operation on an instance of -     * {@link android.telephony.MbmsDownloadManager} or +     * TODO: link android.telephony.MbmsDownloadManager or       * {@link android.telephony.MbmsStreamingManager} without being bound to the middleware.       */      public static final int ERROR_MIDDLEWARE_NOT_BOUND = 2; @@ -47,7 +46,7 @@ public class MbmsException extends Exception {          /**           * Indicates that the app tried to create more than one instance each of           * {@link android.telephony.MbmsStreamingManager} or -         * {@link android.telephony.MbmsDownloadManager}. +         * TODO: link android.telephony.MbmsDownloadManager           */          public static final int ERROR_DUPLICATE_INITIALIZE = 101;          /** Indicates that the app is not authorized to access media via MBMS.*/ @@ -64,7 +63,7 @@ public class MbmsException extends Exception {          /**           * Indicates that the app attempted to perform an operation before receiving notification           * that the middleware is ready via {@link MbmsStreamingManagerCallback#middlewareReady()} -         * or {@link MbmsDownloadManagerCallback#middlewareReady()}. +         * or TODO: link MbmsDownloadManagerCallback#middlewareReady           */          public static final int ERROR_MIDDLEWARE_NOT_YET_READY = 201;          /** @@ -113,6 +112,8 @@ public class MbmsException extends Exception {      /**       * Indicates the errors that are applicable only to the file-download use-case +     * TODO: unhide +     * @hide       */      public static class DownloadErrors {          /** @@ -127,9 +128,7 @@ public class MbmsException extends Exception {      private final int mErrorCode; -    /** @hide -     * TODO: future systemapi -     */ +    /** @hide */      public MbmsException(int errorCode) {          super();          mErrorCode = errorCode; diff --git a/telephony/java/android/telephony/mbms/MbmsStreamingManagerCallback.java b/telephony/java/android/telephony/mbms/MbmsStreamingManagerCallback.java index 2e91be9acaf7..f67d6e4b96c3 100644 --- a/telephony/java/android/telephony/mbms/MbmsStreamingManagerCallback.java +++ b/telephony/java/android/telephony/mbms/MbmsStreamingManagerCallback.java @@ -16,20 +16,24 @@  package android.telephony.mbms; +import android.content.Context; +import android.os.RemoteException; +  import java.util.List;  /** - * A Parcelable class with Cell-Broadcast service information. - * @hide + * A callback class that is used to receive information from the middleware on MBMS streaming + * services. An instance of this object should be passed into + * {@link android.telephony.MbmsStreamingManager#create(Context, MbmsStreamingManagerCallback)}.   */  public class MbmsStreamingManagerCallback extends IMbmsStreamingManagerCallback.Stub { - -    public final static int ERROR_CARRIER_NOT_SUPPORTED      = 1; -    public final static int ERROR_UNABLE_TO_INITIALIZE       = 2; -    public final static int ERROR_UNABLE_TO_ALLOCATE_MEMORY  = 3; - - -    public void error(int errorCode, String message) { +    /** +     * Called by the middleware when it has detected an error condition. The possible error codes +     * are listed in {@link MbmsException}. +     * @param errorCode The error code. +     * @param message A human-readable message generated by the middleware for debugging purposes. +     */ +    public void error(int errorCode, String message) throws RemoteException {          // default implementation empty      } @@ -45,7 +49,8 @@ public class MbmsStreamingManagerCallback extends IMbmsStreamingManagerCallback.       * @param services a List of StreamingServiceInfos       *       */ -    public void streamingServicesUpdated(List<StreamingServiceInfo> services) { +    public void streamingServicesUpdated(List<StreamingServiceInfo> services) +            throws RemoteException {          // default implementation empty      } @@ -58,7 +63,7 @@ public class MbmsStreamingManagerCallback extends IMbmsStreamingManagerCallback.       * or {@link MbmsException.GeneralErrors#ERROR_MIDDLEWARE_NOT_YET_READY}       */      @Override -    public void middlewareReady() { +    public void middlewareReady() throws RemoteException {          // default implementation empty      }  } diff --git a/telephony/java/android/telephony/mbms/ServiceInfo.java b/telephony/java/android/telephony/mbms/ServiceInfo.java index f9ad44c63118..e1ccd439fa41 100644 --- a/telephony/java/android/telephony/mbms/ServiceInfo.java +++ b/telephony/java/android/telephony/mbms/ServiceInfo.java @@ -30,43 +30,21 @@ import java.util.Objects;  import java.util.Set;  /** - * A Parcelable class with Cell-Broadcast service information. - * @hide + * Describes a cell-broadcast service. This class should not be instantiated directly -- use + * {@link StreamingServiceInfo} or FileServiceInfo TODO: add link once that's unhidden   */  public class ServiceInfo implements Parcelable {      // arbitrary limit on the number of locale -> name pairs we support      final static int MAP_LIMIT = 1000; -    /** -     * User displayable names listed by language.  Unmodifiable. -     */ -    final Map<Locale, String> names; - -    /** -     * The class name for this service - used to catagorize and filter -     */ -    final String className; - -    /** -     * The languages available for this service content -     */ -    final List<Locale> locales; - -    /** -     * The carrier's identifier for the service. -     */ -    final String serviceId; - -    /** -     * The start time indicating when this service will be available. -     */ -    final Date sessionStartTime; - -    /** -     * The end time indicating when this sesion stops being available. -     */ -    final Date sessionEndTime; +    private final Map<Locale, String> names; +    private final String className; +    private final List<Locale> locales; +    private final String serviceId; +    private final Date sessionStartTime; +    private final Date sessionEndTime; +    /** @hide */      public ServiceInfo(Map<Locale, String> newNames, String newClassName, List<Locale> newLocales,              String newServiceId, Date start, Date end) {          if (newNames == null || newNames.isEmpty() || TextUtils.isEmpty(newClassName) @@ -89,20 +67,21 @@ public class ServiceInfo implements Parcelable {          sessionEndTime = (Date)end.clone();      } -    public static final Parcelable.Creator<FileServiceInfo> CREATOR = -            new Parcelable.Creator<FileServiceInfo>() { +    public static final Parcelable.Creator<ServiceInfo> CREATOR = +            new Parcelable.Creator<ServiceInfo>() {          @Override -        public FileServiceInfo createFromParcel(Parcel source) { -            return new FileServiceInfo(source); +        public ServiceInfo createFromParcel(Parcel source) { +            return new ServiceInfo(source);          }          @Override -        public FileServiceInfo[] newArray(int size) { -            return new FileServiceInfo[size]; +        public ServiceInfo[] newArray(int size) { +            return new ServiceInfo[size];          }      }; -    ServiceInfo(Parcel in) { +    /** @hide */ +    protected ServiceInfo(Parcel in) {          int mapCount = in.readInt();          if (mapCount > MAP_LIMIT || mapCount < 0) {              throw new RuntimeException("bad map length" + mapCount); @@ -152,26 +131,44 @@ public class ServiceInfo implements Parcelable {          return 0;      } +    /** +     * User displayable names listed by language. Do not modify the map returned from this method. +     */      public Map<Locale, String> getNames() {          return names;      } +    /** +     * The class name for this service - used to categorize and filter +     */      public String getClassName() {          return className;      } +    /** +     * The languages available for this service content +     */      public List<Locale> getLocales() {          return locales;      } +    /** +     * The carrier's identifier for the service. +     */      public String getServiceId() {          return serviceId;      } +    /** +     * The start time indicating when this service will be available. +     */      public Date getSessionStartTime() {          return sessionStartTime;      } +    /** +     * The end time indicating when this session stops being available. +     */      public Date getSessionEndTime() {          return sessionEndTime;      } diff --git a/telephony/java/android/telephony/mbms/StreamingService.java b/telephony/java/android/telephony/mbms/StreamingService.java index 1a6418969a90..42c78c31c2cb 100644 --- a/telephony/java/android/telephony/mbms/StreamingService.java +++ b/telephony/java/android/telephony/mbms/StreamingService.java @@ -26,7 +26,10 @@ import java.lang.annotation.Retention;  import java.lang.annotation.RetentionPolicy;  /** - * @hide + * Class used to represent a single MBMS stream. After a stream has been started with + * {@link android.telephony.MbmsStreamingManager#startStreaming(StreamingServiceInfo, + * StreamingServiceCallback)}, + * this class is used to hold information about the stream and control it.   */  public class StreamingService {      private static final String LOG_TAG = "MbmsStreamingService"; @@ -50,12 +53,18 @@ public class StreamingService {      @Retention(RetentionPolicy.SOURCE)      @IntDef({REASON_BY_USER_REQUEST, REASON_END_OF_SESSION, REASON_FREQUENCY_CONFLICT,              REASON_OUT_OF_MEMORY, REASON_NOT_CONNECTED_TO_HOMECARRIER_LTE, -            REASON_LEFT_MBMS_BROADCAST_AREA}) +            REASON_LEFT_MBMS_BROADCAST_AREA, REASON_NONE})      public @interface StreamingStateChangeReason {}      /** +     * Indicates that the middleware does not have a reason to provide for the state change. +     */ +    public static final int REASON_NONE = 0; + +    /**       * State changed due to a call to {@link #stopStreaming()} or -     * {@link android.telephony.MbmsStreamingManager#startStreaming(StreamingServiceInfo, StreamingServiceCallback)} +     * {@link android.telephony.MbmsStreamingManager#startStreaming(StreamingServiceInfo, +     * StreamingServiceCallback)}       */      public static final int REASON_BY_USER_REQUEST = 1; @@ -167,7 +176,7 @@ public class StreamingService {       *       * This may throw a {@link MbmsException} with the error code       * {@link MbmsException#ERROR_MIDDLEWARE_LOST} -     * May also throw an {@link IllegalArgumentException} or an {@link IllegalStateException} +     * May also throw an {@link IllegalStateException}       */      public void dispose() throws MbmsException {          if (mService == null) { @@ -179,6 +188,8 @@ public class StreamingService {          } catch (RemoteException e) {              Log.w(LOG_TAG, "Remote process died");              throw new MbmsException(MbmsException.ERROR_MIDDLEWARE_LOST); +        } catch (IllegalArgumentException e) { +            throw new IllegalStateException("StreamingService state inconsistent with middleware");          } finally {              mService = null;          } diff --git a/telephony/java/android/telephony/mbms/StreamingServiceCallback.java b/telephony/java/android/telephony/mbms/StreamingServiceCallback.java index cab9c23499ea..6a1ff9c2d1d7 100644 --- a/telephony/java/android/telephony/mbms/StreamingServiceCallback.java +++ b/telephony/java/android/telephony/mbms/StreamingServiceCallback.java @@ -16,9 +16,11 @@  package android.telephony.mbms; +import android.os.RemoteException; +  /** - * A Callback class for use when the application is actively streaming content. - * @hide + * A callback class for use when the application is actively streaming content. The middleware + * will provide updates on the status of the stream via this callback.   */  public class StreamingServiceCallback extends IStreamingServiceCallback.Stub { @@ -31,8 +33,14 @@ public class StreamingServiceCallback extends IStreamingServiceCallback.Stub {       */      public static final int SIGNAL_STRENGTH_UNAVAILABLE = -1; +    /** +     * Called by the middleware when it has detected an error condition in this stream. The +     * possible error codes are listed in {@link MbmsException}. +     * @param errorCode The error code. +     * @param message A human-readable message generated by the middleware for debugging purposes. +     */      @Override -    public void error(int errorCode, String message) { +    public void error(int errorCode, String message) throws RemoteException {          // default implementation empty      } @@ -44,7 +52,7 @@ public class StreamingServiceCallback extends IStreamingServiceCallback.Stub {       */      @Override      public void streamStateUpdated(@StreamingService.StreamingState int state, -            @StreamingService.StreamingStateChangeReason int reason) { +            @StreamingService.StreamingStateChangeReason int reason) throws RemoteException {          // default implementation empty      } @@ -59,7 +67,7 @@ public class StreamingServiceCallback extends IStreamingServiceCallback.Stub {       * when parameters have changed to account for time drift.       */      @Override -    public void mediaDescriptionUpdated() { +    public void mediaDescriptionUpdated() throws RemoteException {          // default implementation empty      } @@ -74,7 +82,7 @@ public class StreamingServiceCallback extends IStreamingServiceCallback.Stub {       * for this service due to timing, geography or popularity.       */      @Override -    public void broadcastSignalStrengthUpdated(int signalStrength) { +    public void broadcastSignalStrengthUpdated(int signalStrength) throws RemoteException {          // default implementation empty      } @@ -95,7 +103,7 @@ public class StreamingServiceCallback extends IStreamingServiceCallback.Stub {       * {@link StreamingService#UNICAST_METHOD}       */      @Override -    public void streamMethodUpdated(int methodType) { +    public void streamMethodUpdated(int methodType) throws RemoteException {          // default implementation empty      }  } diff --git a/telephony/java/android/telephony/mbms/StreamingServiceInfo.java b/telephony/java/android/telephony/mbms/StreamingServiceInfo.java index 77ce3bbd696e..58df24d882de 100644 --- a/telephony/java/android/telephony/mbms/StreamingServiceInfo.java +++ b/telephony/java/android/telephony/mbms/StreamingServiceInfo.java @@ -16,6 +16,7 @@  package android.telephony.mbms; +import android.annotation.SystemApi;  import android.os.Parcel;  import android.os.Parcelable; @@ -25,15 +26,24 @@ import java.util.Locale;  import java.util.Map;  /** - * A Parcelable class Cell-Broadcast media stream information. - * This may not have any more info than ServiceInfo, but kept for completeness. - * @hide + * Describes a single MBMS streaming service.   */  public class StreamingServiceInfo extends ServiceInfo implements Parcelable { -    public StreamingServiceInfo(Map<Locale, String> newNames, String newClassName, -            List<Locale> newLocales, String newServiceId, Date start, Date end) { -        super(newNames, newClassName, newLocales, newServiceId, start, end); +    /** +     * @param names User displayable names listed by language. +     * @param className The class name for this service - used by frontend apps to categorize and +     *                  filter. +     * @param locales The languages available for this service content. +     * @param serviceId The carrier's identifier for the service. +     * @param start The start time indicating when this service will be available. +     * @param end The end time indicating when this session stops being available. +     * @hide +     */ +    @SystemApi +    public StreamingServiceInfo(Map<Locale, String> names, String className, +            List<Locale> locales, String serviceId, Date start, Date end) { +        super(names, className, locales, serviceId, start, end);      }      public static final Parcelable.Creator<StreamingServiceInfo> CREATOR = @@ -49,7 +59,7 @@ public class StreamingServiceInfo extends ServiceInfo implements Parcelable {          }      }; -    StreamingServiceInfo(Parcel in) { +    private StreamingServiceInfo(Parcel in) {          super(in);      } diff --git a/telephony/java/android/telephony/mbms/vendor/IMbmsDownloadService.aidl b/telephony/java/android/telephony/mbms/vendor/IMbmsDownloadService.aidl index 0a76f322bbbb..dfcc5f7c8793 100755 --- a/telephony/java/android/telephony/mbms/vendor/IMbmsDownloadService.aidl +++ b/telephony/java/android/telephony/mbms/vendor/IMbmsDownloadService.aidl @@ -28,7 +28,7 @@ import android.telephony.mbms.IDownloadProgressListener;   */  interface IMbmsDownloadService  { -    void initialize(int subId, IMbmsDownloadManagerCallback listener); +    int initialize(int subId, IMbmsDownloadManagerCallback listener);      int getFileServices(int subId, in List<String> serviceClasses); diff --git a/telephony/java/android/telephony/mbms/vendor/IMbmsStreamingService.aidl b/telephony/java/android/telephony/mbms/vendor/IMbmsStreamingService.aidl index 04a53cbe0d00..4dd42924ab05 100755 --- a/telephony/java/android/telephony/mbms/vendor/IMbmsStreamingService.aidl +++ b/telephony/java/android/telephony/mbms/vendor/IMbmsStreamingService.aidl @@ -26,7 +26,7 @@ import android.telephony.mbms.StreamingServiceInfo;   */  interface IMbmsStreamingService  { -    void initialize(IMbmsStreamingManagerCallback listener, int subId); +    int initialize(IMbmsStreamingManagerCallback listener, int subId);      int getStreamingServices(int subId, in List<String> serviceClasses); diff --git a/telephony/java/android/telephony/mbms/vendor/MbmsDownloadServiceBase.java b/telephony/java/android/telephony/mbms/vendor/MbmsDownloadServiceBase.java index d725d9f633ce..edd585808580 100644 --- a/telephony/java/android/telephony/mbms/vendor/MbmsDownloadServiceBase.java +++ b/telephony/java/android/telephony/mbms/vendor/MbmsDownloadServiceBase.java @@ -36,16 +36,21 @@ public class MbmsDownloadServiceBase extends IMbmsDownloadService.Stub {      /**       * Initialize the download service for this app and subId, registering the listener.       * -     * Exceptions should not be thrown through this method -- this method is called from within a -     * {@link android.content.ServiceConnection} defined by the framework, so apps have no way of -     * catching them. Call {@link IMbmsDownloadManagerCallback#error(int, String)} instead. +     * May throw an {@link IllegalArgumentException} or an {@link IllegalStateException}, which +     * will be intercepted and passed to the app as +     * {@link android.telephony.mbms.MbmsException.InitializationErrors#ERROR_UNABLE_TO_INITIALIZE} +     * +     * May return any value from {@link android.telephony.mbms.MbmsException.InitializationErrors} +     * or {@link MbmsException#SUCCESS}. Non-successful error codes will be passed to the app via +     * {@link IMbmsDownloadManagerCallback#error(int, String)}.       *       * @param listener The callback to use to communicate with the app.       * @param subscriptionId The subscription ID to use.       */      @Override -    public void initialize(int subscriptionId, +    public int initialize(int subscriptionId,              IMbmsDownloadManagerCallback listener) throws RemoteException { +        return 0;      }      /** diff --git a/telephony/java/android/telephony/mbms/vendor/MbmsStreamingServiceBase.java b/telephony/java/android/telephony/mbms/vendor/MbmsStreamingServiceBase.java index f072c46171d6..b2200c300262 100644 --- a/telephony/java/android/telephony/mbms/vendor/MbmsStreamingServiceBase.java +++ b/telephony/java/android/telephony/mbms/vendor/MbmsStreamingServiceBase.java @@ -17,35 +17,70 @@  package android.telephony.mbms.vendor;  import android.annotation.Nullable; +import android.annotation.SystemApi;  import android.net.Uri;  import android.os.RemoteException;  import android.telephony.mbms.IMbmsStreamingManagerCallback;  import android.telephony.mbms.IStreamingServiceCallback;  import android.telephony.mbms.MbmsException; +import android.telephony.mbms.MbmsStreamingManagerCallback; +import android.telephony.mbms.StreamingService; +import android.telephony.mbms.StreamingServiceCallback; +import android.telephony.mbms.StreamingServiceInfo;  import java.util.List;  /**   * @hide - * TODO: future systemapi   */ +@SystemApi  public class MbmsStreamingServiceBase extends IMbmsStreamingService.Stub {      /**       * Initialize streaming service for this app and subId, registering the listener.       * -     * Exceptions should not be thrown through this method -- this method is called from within a -     * {@link android.content.ServiceConnection} defined by the framework, so apps have no way of -     * catching them. Call {@link IMbmsStreamingManagerCallback#error(int, String)} instead. +     * May throw an {@link IllegalArgumentException} or an {@link IllegalStateException}, which +     * will be intercepted and passed to the app as +     * {@link android.telephony.mbms.MbmsException.InitializationErrors#ERROR_UNABLE_TO_INITIALIZE} +     * +     * May return any value from {@link android.telephony.mbms.MbmsException.InitializationErrors} +     * or {@link MbmsException#SUCCESS}. Non-successful error codes will be passed to the app via +     * {@link IMbmsStreamingManagerCallback#error(int, String)}.       *       * @param listener The callback to use to communicate with the app.       * @param subscriptionId The subscription ID to use.       */ +    public int initialize(MbmsStreamingManagerCallback listener, int subscriptionId) +            throws RemoteException { +        return 0; +    } + +    /** +     * Actual AIDL implementation that hides the callback AIDL from the middleware. +     * @hide +     */      @Override -    public void initialize(IMbmsStreamingManagerCallback listener, int subscriptionId) +    public final int initialize(IMbmsStreamingManagerCallback listener, int subscriptionId)              throws RemoteException { -        return; +        return initialize(new MbmsStreamingManagerCallback() { +            @Override +            public void error(int errorCode, String message) throws RemoteException { +                listener.error(errorCode, message); +            } + +            @Override +            public void streamingServicesUpdated(List<StreamingServiceInfo> services) throws +                    RemoteException { +                listener.streamingServicesUpdated(services); +            } + +            @Override +            public void middlewareReady() throws RemoteException { +                listener.middlewareReady(); +            } +        }, subscriptionId);      } +      /**       * Registers serviceClasses of interest with the appName/subId key.       * Starts async fetching data on streaming services of matching classes to be reported @@ -81,10 +116,47 @@ public class MbmsStreamingServiceBase extends IMbmsStreamingService.Stub {       * @param listener The listener object on which the app wishes to receive updates.       * @return Any error in {@link android.telephony.mbms.MbmsException.GeneralErrors}       */ +    public int startStreaming(int subscriptionId, String serviceId, +            StreamingServiceCallback listener) throws RemoteException { +        return 0; +    } + +    /** +     * Actual AIDL implementation of startStreaming that hides the callback AIDL from the +     * middleware. +     * @hide +     */      @Override      public int startStreaming(int subscriptionId, String serviceId,              IStreamingServiceCallback listener) throws RemoteException { -        return 0; +        return startStreaming(subscriptionId, serviceId, new StreamingServiceCallback() { +            @Override +            public void error(int errorCode, String message) throws RemoteException { +                listener.error(errorCode, message); +            } + +            @Override +            public void streamStateUpdated(@StreamingService.StreamingState int state, +                    @StreamingService.StreamingStateChangeReason int reason) +                    throws RemoteException { +                listener.streamStateUpdated(state, reason); +            } + +            @Override +            public void mediaDescriptionUpdated() throws RemoteException { +                listener.mediaDescriptionUpdated(); +            } + +            @Override +            public void broadcastSignalStrengthUpdated(int signalStrength) throws RemoteException { +                listener.broadcastSignalStrengthUpdated(signalStrength); +            } + +            @Override +            public void streamMethodUpdated(int methodType) throws RemoteException { +                listener.streamMethodUpdated(methodType); +            } +        });      }      /** diff --git a/tests/CoreTests/android/core/HeapTest.java b/tests/CoreTests/android/core/HeapTest.java deleted file mode 100644 index 400d0412c58e..000000000000 --- a/tests/CoreTests/android/core/HeapTest.java +++ /dev/null @@ -1,476 +0,0 @@ -/* - * Copyright (C) 2007 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - *      http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT 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.core; - -import android.test.suitebuilder.annotation.LargeTest; -import android.test.suitebuilder.annotation.MediumTest; -import android.test.suitebuilder.annotation.SmallTest; -import android.util.Log; -import android.test.suitebuilder.annotation.Suppress; -import dalvik.system.VMRuntime; -import junit.framework.TestCase; - -import java.lang.ref.PhantomReference; -import java.lang.ref.ReferenceQueue; -import java.lang.ref.SoftReference; -import java.lang.ref.WeakReference; -import java.util.LinkedList; -import java.util.Random; - - -public class HeapTest extends TestCase { - -    private static final String TAG = "HeapTest"; - -    /** -     * Returns a WeakReference to an object that has no -     * other references.  This is done in a separate method -     * to ensure that the Object's address isn't sitting in -     * a stale local register. -     */ -    private WeakReference<Object> newRef() { -        return new WeakReference<Object>(new Object()); -    } - -    private static void makeRefs(Object objects[], SoftReference<Object> refs[]) { -        for (int i = 0; i < objects.length; i++) { -            objects[i] = (Object) new byte[8 * 1024]; -            refs[i] = new SoftReference<Object>(objects[i]); -        } -    } - -    private static <T> int checkRefs(SoftReference<T> refs[], int last) { -        int i; -        int numCleared = 0; -        for (i = 0; i < refs.length; i++) { -            Object o = refs[i].get(); -            if (o == null) { -                numCleared++; -            } -        } -        if (numCleared != last) { -            Log.i(TAG, "****** " + numCleared + "/" + i + " cleared ******"); -        } -        return numCleared; -    } - -    private static void clearRefs(Object objects[], int skip) { -        for (int i = 0; i < objects.length; i += skip) { -            objects[i] = null; -        } -    } - -    private static void clearRefs(Object objects[]) { -        clearRefs(objects, 1); -    } - -    private static <T> void checkRefs(T objects[], SoftReference<T> refs[]) { -        boolean ok = true; - -        for (int i = 0; i < objects.length; i++) { -            if (refs[i].get() != objects[i]) { -                ok = false; -            } -        } -        if (!ok) { -            throw new RuntimeException("Test failed: soft refs not cleared"); -        } -    } - -    @MediumTest -    public void testGcSoftRefs() throws Exception { -        final int NUM_REFS = 128; - -        Object objects[] = new Object[NUM_REFS]; -        SoftReference<Object> refs[] = new SoftReference[objects.length]; - -        /* Create a bunch of objects and a parallel array -         * of SoftReferences. -         */ -        makeRefs(objects, refs); -        Runtime.getRuntime().gc(); - -        /* Let go of some of the hard references to the objects so that -         * the references can be cleared. -         */ -        clearRefs(objects, 3); - -        /* Collect all softly-reachable objects. -         */ -        VMRuntime.getRuntime().gcSoftReferences(); -        Runtime.getRuntime().runFinalization(); - -        /* Make sure that the objects were collected. -         */ -        checkRefs(objects, refs); - -        /* Remove more hard references and re-check. -         */ -        clearRefs(objects, 2); -        VMRuntime.getRuntime().gcSoftReferences(); -        Runtime.getRuntime().runFinalization(); -        checkRefs(objects, refs); - -        /* Remove the rest of the references and re-check. -         */ -        /* Remove more hard references and re-check. -         */ -        clearRefs(objects); -        VMRuntime.getRuntime().gcSoftReferences(); -        Runtime.getRuntime().runFinalization(); -        checkRefs(objects, refs); -    } - -    public void xxtestSoftRefPartialClean() throws Exception { -        final int NUM_REFS = 128; - -        Object objects[] = new Object[NUM_REFS]; -        SoftReference<Object> refs[] = new SoftReference[objects.length]; - -        /* Create a bunch of objects and a parallel array -        * of SoftReferences. -        */ -        makeRefs(objects, refs); -        Runtime.getRuntime().gc(); - -        /* Let go of the hard references to the objects so that -        * the references can be cleared. -        */ -        clearRefs(objects); - -        /* Start creating a bunch of temporary and permanent objects -        * to drive GC. -        */ -        final int NUM_OBJECTS = 64 * 1024; -        Object junk[] = new Object[NUM_OBJECTS]; -        Random random = new Random(); - -        int i = 0; -        int mod = 0; -        int totalSize = 0; -        int cleared = -1; -        while (i < junk.length && totalSize < 8 * 1024 * 1024) { -            int r = random.nextInt(64 * 1024) + 128; -            Object o = (Object) new byte[r]; -            if (++mod % 16 == 0) { -                junk[i++] = o; -                totalSize += r * 4; -            } -            cleared = checkRefs(refs, cleared); -        } -    } - -    private static void makeRefs(Object objects[], WeakReference<Object> refs[]) { -        for (int i = 0; i < objects.length; i++) { -            objects[i] = new Object(); -            refs[i] = new WeakReference<Object>(objects[i]); -        } -    } - -    private static <T> void checkRefs(T objects[], WeakReference<T> refs[]) { -        boolean ok = true; - -        for (int i = 0; i < objects.length; i++) { -            if (refs[i].get() != objects[i]) { -                ok = false; -            } -        } -        if (!ok) { -            throw new RuntimeException("Test failed: " + -                    "weak refs not cleared"); -        } -    } - -    @MediumTest -    public void testWeakRefs() throws Exception { -        final int NUM_REFS = 16; - -        Object objects[] = new Object[NUM_REFS]; -        WeakReference<Object> refs[] = new WeakReference[objects.length]; - -        /* Create a bunch of objects and a parallel array -        * of WeakReferences. -        */ -        makeRefs(objects, refs); -        Runtime.getRuntime().gc(); -        checkRefs(objects, refs); - -        /* Clear out every other strong reference. -        */ -        for (int i = 0; i < objects.length; i += 2) { -            objects[i] = null; -        } -        Runtime.getRuntime().gc(); -        checkRefs(objects, refs); - -        /* Clear out the rest of them. -        */ -        for (int i = 0; i < objects.length; i++) { -            objects[i] = null; -        } -        Runtime.getRuntime().gc(); -        checkRefs(objects, refs); -    } - -    private static void makeRefs(Object objects[], PhantomReference<Object> refs[], -            ReferenceQueue<Object> queue) { -        for (int i = 0; i < objects.length; i++) { -            objects[i] = new Object(); -            refs[i] = new PhantomReference<Object>(objects[i], queue); -        } -    } - -    static <T> void checkRefs(T objects[], PhantomReference<T> refs[], -            ReferenceQueue<T> queue) { -        boolean ok = true; - -        /* Make sure that the reference that should be on -        * the queue are marked as enqueued.  Once we -        * pull them off the queue, they will no longer -        * be marked as enqueued. -        */ -        for (int i = 0; i < objects.length; i++) { -            if (objects[i] == null && refs[i] != null) { -                if (!refs[i].isEnqueued()) { -                    ok = false; -                } -            } -        } -        if (!ok) { -            throw new RuntimeException("Test failed: " + -                    "phantom refs not marked as enqueued"); -        } - -        /* Make sure that all of the references on the queue -        * are supposed to be there. -        */ -        PhantomReference<T> ref; -        while ((ref = (PhantomReference<T>) queue.poll()) != null) { -            /* Find the list index that corresponds to this reference. -            */ -            int i; -            for (i = 0; i < objects.length; i++) { -                if (refs[i] == ref) { -                    break; -                } -            } -            if (i == objects.length) { -                throw new RuntimeException("Test failed: " + -                        "unexpected ref on queue"); -            } -            if (objects[i] != null) { -                throw new RuntimeException("Test failed: " + -                        "reference enqueued for strongly-reachable " + -                        "object"); -            } -            refs[i] = null; - -            /* TODO: clear doesn't do much, since we're losing the -            * strong ref to the ref object anyway.  move the ref -            * into another list. -            */ -            ref.clear(); -        } - -        /* We've visited all of the enqueued references. -        * Make sure that there aren't any other references -        * that should have been enqueued. -        * -        * NOTE: there is a race condition here;  this assumes -        * that the VM has serviced all outstanding reference -        * enqueue() calls. -        */ -        for (int i = 0; i < objects.length; i++) { -            if (objects[i] == null && refs[i] != null) { -//                System.out.println("HeapTest/PhantomRefs: refs[" + i + -//                        "] should be enqueued"); -                ok = false; -            } -        } -        if (!ok) { -            throw new RuntimeException("Test failed: " + -                    "phantom refs not enqueued"); -        } -    } - -    @MediumTest -    public void testPhantomRefs() throws Exception { -        final int NUM_REFS = 16; - -        Object objects[] = new Object[NUM_REFS]; -        PhantomReference<Object> refs[] = new PhantomReference[objects.length]; -        ReferenceQueue<Object> queue = new ReferenceQueue<Object>(); - -        /* Create a bunch of objects and a parallel array -        * of PhantomReferences. -        */ -        makeRefs(objects, refs, queue); -        Runtime.getRuntime().gc(); -        checkRefs(objects, refs, queue); - -        /* Clear out every other strong reference. -        */ -        for (int i = 0; i < objects.length; i += 2) { -            objects[i] = null; -        } -        // System.out.println("HeapTest/PhantomRefs: cleared evens"); -        Runtime.getRuntime().gc(); -        Runtime.getRuntime().runFinalization(); -        checkRefs(objects, refs, queue); - -        /* Clear out the rest of them. -        */ -        for (int i = 0; i < objects.length; i++) { -            objects[i] = null; -        } -        // System.out.println("HeapTest/PhantomRefs: cleared all"); -        Runtime.getRuntime().gc(); -        Runtime.getRuntime().runFinalization(); -        checkRefs(objects, refs, queue); -    } - -    private static int sNumFinalized = 0; -    private static final Object sLock = new Object(); - -    private static class FinalizableObject { -        protected void finalize() { -            // System.out.println("gc from finalize()"); -            Runtime.getRuntime().gc(); -            synchronized (sLock) { -                sNumFinalized++; -            } -        } -    } - -    private static void makeRefs(FinalizableObject objects[], -            WeakReference<FinalizableObject> refs[]) { -        for (int i = 0; i < objects.length; i++) { -            objects[i] = new FinalizableObject(); -            refs[i] = new WeakReference<FinalizableObject>(objects[i]); -        } -    } - -    @LargeTest -    public void testWeakRefsAndFinalizers() throws Exception { -        final int NUM_REFS = 16; - -        FinalizableObject objects[] = new FinalizableObject[NUM_REFS]; -        WeakReference<FinalizableObject> refs[] = new WeakReference[objects.length]; -        int numCleared; - -        /* Create a bunch of objects and a parallel array -        * of WeakReferences. -        */ -        makeRefs(objects, refs); -        Runtime.getRuntime().gc(); -        checkRefs(objects, refs); - -        /* Clear out every other strong reference. -        */ -        sNumFinalized = 0; -        numCleared = 0; -        for (int i = 0; i < objects.length; i += 2) { -            objects[i] = null; -            numCleared++; -        } -        // System.out.println("HeapTest/WeakRefsAndFinalizers: cleared evens"); -        Runtime.getRuntime().gc(); -        Runtime.getRuntime().runFinalization(); -        checkRefs(objects, refs); -        if (sNumFinalized != numCleared) { -            throw new RuntimeException("Test failed: " + -                    "expected " + numCleared + " finalizations, saw " + -                    sNumFinalized); -        } - -        /* Clear out the rest of them. -        */ -        sNumFinalized = 0; -        numCleared = 0; -        for (int i = 0; i < objects.length; i++) { -            if (objects[i] != null) { -                objects[i] = null; -                numCleared++; -            } -        } -        // System.out.println("HeapTest/WeakRefsAndFinalizers: cleared all"); -        Runtime.getRuntime().gc(); -        Runtime.getRuntime().runFinalization(); -        checkRefs(objects, refs); -        if (sNumFinalized != numCleared) { -            throw new RuntimeException("Test failed: " + -                    "expected " + numCleared + " finalizations, saw " + -                    sNumFinalized); -        } -    } - -    // TODO: flaky test -    //@MediumTest -    public void testOomeLarge() throws Exception { -        /* Just shy of the typical max heap size so that it will actually -         * try to allocate it instead of short-circuiting. -         */ -        final int SIXTEEN_MB = (16 * 1024 * 1024 - 32); - -        Boolean sawEx = false; -        byte a[]; - -        try { -            a = new byte[SIXTEEN_MB]; -        } catch (OutOfMemoryError oom) { -            //Log.i(TAG, "HeapTest/OomeLarge caught " + oom); -            sawEx = true; -        } - -        if (!sawEx) { -            throw new RuntimeException("Test failed: " + -                    "OutOfMemoryError not thrown"); -        } -    } - -    //See bug 1308253 for reasons. -    @Suppress -    public void disableTestOomeSmall() throws Exception { -        final int SIXTEEN_MB = (16 * 1024 * 1024); -        final int LINK_SIZE = 6 * 4; // estimated size of a LinkedList's node - -        Boolean sawEx = false; - -        LinkedList<Object> list = new LinkedList<Object>(); - -        /* Allocate progressively smaller objects to fill up the entire heap. -         */ -        int objSize = 1 * 1024 * 1024; -        while (objSize >= LINK_SIZE) { -            try { -                for (int i = 0; i < SIXTEEN_MB / objSize; i++) { -                    list.add((Object)new byte[objSize]); -                } -            } catch (OutOfMemoryError oom) { -                sawEx = true; -            } - -            if (!sawEx) { -                throw new RuntimeException("Test failed: " + -                        "OutOfMemoryError not thrown while filling heap"); -            } -            sawEx = false; - -            objSize = (objSize * 4) / 5; -        } -    } -} diff --git a/tests/net/java/android/net/IpSecManagerTest.java b/tests/net/java/android/net/IpSecManagerTest.java new file mode 100644 index 000000000000..9f31d27508b2 --- /dev/null +++ b/tests/net/java/android/net/IpSecManagerTest.java @@ -0,0 +1,225 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + *      http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT 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.net; + +import static android.system.OsConstants.AF_INET; +import static android.system.OsConstants.IPPROTO_UDP; +import static android.system.OsConstants.SOCK_DGRAM; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.fail; +import static org.mockito.Matchers.anyInt; +import static org.mockito.Matchers.anyObject; +import static org.mockito.Matchers.anyString; +import static org.mockito.Matchers.eq; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import android.support.test.filters.SmallTest; +import android.system.Os; +import android.test.AndroidTestCase; +import com.android.server.IpSecService; +import java.net.InetAddress; +import java.net.UnknownHostException; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.JUnit4; + +/** Unit tests for {@link IpSecManager}. */ +@SmallTest +@RunWith(JUnit4.class) +public class IpSecManagerTest { + +    private static final int TEST_UDP_ENCAP_PORT = 34567; +    private static final int DROID_SPI = 0xD1201D; + +    private static final InetAddress GOOGLE_DNS_4; + +    static { +        try { +            // Google Public DNS Addresses; +            GOOGLE_DNS_4 = InetAddress.getByName("8.8.8.8"); +        } catch (UnknownHostException e) { +            throw new RuntimeException("Could not resolve DNS Addresses", e); +        } +    } + +    private IpSecService mMockIpSecService; +    private IpSecManager mIpSecManager; + +    @Before +    public void setUp() throws Exception { +        mMockIpSecService = mock(IpSecService.class); +        mIpSecManager = new IpSecManager(mMockIpSecService); +    } + +    /* +     * Allocate a specific SPI +     * Close SPIs +     */ +    @Test +    public void testAllocSpi() throws Exception { +        int resourceId = 1; +        IpSecSpiResponse spiResp = +                new IpSecSpiResponse(IpSecManager.Status.OK, resourceId, DROID_SPI); +        when(mMockIpSecService.reserveSecurityParameterIndex( +                        eq(IpSecTransform.DIRECTION_IN), +                        eq(GOOGLE_DNS_4.getHostAddress()), +                        eq(DROID_SPI), +                        anyObject())) +                .thenReturn(spiResp); + +        IpSecManager.SecurityParameterIndex droidSpi = +                mIpSecManager.reserveSecurityParameterIndex( +                        IpSecTransform.DIRECTION_IN, GOOGLE_DNS_4, DROID_SPI); +        assertEquals(DROID_SPI, droidSpi.getSpi()); + +        droidSpi.close(); + +        verify(mMockIpSecService).releaseSecurityParameterIndex(resourceId); +    } + +    @Test +    public void testAllocRandomSpi() throws Exception { +        int resourceId = 1; +        IpSecSpiResponse spiResp = +                new IpSecSpiResponse(IpSecManager.Status.OK, resourceId, DROID_SPI); +        when(mMockIpSecService.reserveSecurityParameterIndex( +                        eq(IpSecTransform.DIRECTION_OUT), +                        eq(GOOGLE_DNS_4.getHostAddress()), +                        eq(IpSecManager.INVALID_SECURITY_PARAMETER_INDEX), +                        anyObject())) +                .thenReturn(spiResp); + +        IpSecManager.SecurityParameterIndex randomSpi = +                mIpSecManager.reserveSecurityParameterIndex( +                        IpSecTransform.DIRECTION_OUT, GOOGLE_DNS_4); + +        assertEquals(DROID_SPI, randomSpi.getSpi()); + +        randomSpi.close(); + +        verify(mMockIpSecService).releaseSecurityParameterIndex(resourceId); +    } + +    /* +     * Throws resource unavailable exception +     */ +    @Test +    public void testAllocSpiResUnavaiableExeption() throws Exception { +        IpSecSpiResponse spiResp = +                new IpSecSpiResponse(IpSecManager.Status.RESOURCE_UNAVAILABLE, 0, 0); +        when(mMockIpSecService.reserveSecurityParameterIndex( +                        anyInt(), anyString(), anyInt(), anyObject())) +                .thenReturn(spiResp); + +        try { +            mIpSecManager.reserveSecurityParameterIndex(IpSecTransform.DIRECTION_OUT, GOOGLE_DNS_4); +            fail("ResourceUnavailableException was not thrown"); +        } catch (IpSecManager.ResourceUnavailableException e) { +        } +    } + +    /* +     * Throws spi unavailable exception +     */ +    @Test +    public void testAllocSpiSpiUnavaiableExeption() throws Exception { +        IpSecSpiResponse spiResp = new IpSecSpiResponse(IpSecManager.Status.SPI_UNAVAILABLE, 0, 0); +        when(mMockIpSecService.reserveSecurityParameterIndex( +                        anyInt(), anyString(), anyInt(), anyObject())) +                .thenReturn(spiResp); + +        try { +            mIpSecManager.reserveSecurityParameterIndex(IpSecTransform.DIRECTION_OUT, GOOGLE_DNS_4); +            fail("ResourceUnavailableException was not thrown"); +        } catch (IpSecManager.ResourceUnavailableException e) { +        } +    } + +    /* +     * Should throw exception when request spi 0 in IpSecManager +     */ +    @Test +    public void testRequestAllocInvalidSpi() throws Exception { +        try { +            mIpSecManager.reserveSecurityParameterIndex( +                    IpSecTransform.DIRECTION_OUT, GOOGLE_DNS_4, 0); +            fail("Able to allocate invalid spi"); +        } catch (IllegalArgumentException e) { +        } +    } + +    @Test +    public void testOpenEncapsulationSocket() throws Exception { +        int resourceId = 1; +        IpSecUdpEncapResponse udpEncapResp = +                new IpSecUdpEncapResponse( +                        IpSecManager.Status.OK, +                        resourceId, +                        TEST_UDP_ENCAP_PORT, +                        Os.socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)); +        when(mMockIpSecService.openUdpEncapsulationSocket(eq(TEST_UDP_ENCAP_PORT), anyObject())) +                .thenReturn(udpEncapResp); + +        IpSecManager.UdpEncapsulationSocket encapSocket = +                mIpSecManager.openUdpEncapsulationSocket(TEST_UDP_ENCAP_PORT); +        assertNotNull(encapSocket.getSocket()); +        assertEquals(TEST_UDP_ENCAP_PORT, encapSocket.getPort()); + +        encapSocket.close(); + +        verify(mMockIpSecService).closeUdpEncapsulationSocket(resourceId); +    } + +    @Test +    public void testOpenEncapsulationSocketOnRandomPort() throws Exception { +        int resourceId = 1; +        IpSecUdpEncapResponse udpEncapResp = +                new IpSecUdpEncapResponse( +                        IpSecManager.Status.OK, +                        resourceId, +                        TEST_UDP_ENCAP_PORT, +                        Os.socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)); + +        when(mMockIpSecService.openUdpEncapsulationSocket(eq(0), anyObject())) +                .thenReturn(udpEncapResp); + +        IpSecManager.UdpEncapsulationSocket encapSocket = +                mIpSecManager.openUdpEncapsulationSocket(); + +        assertNotNull(encapSocket.getSocket()); +        assertEquals(TEST_UDP_ENCAP_PORT, encapSocket.getPort()); + +        encapSocket.close(); + +        verify(mMockIpSecService).closeUdpEncapsulationSocket(resourceId); +    } + +    @Test +    public void testOpenEncapsulationSocketWithInvalidPort() throws Exception { +        try { +            mIpSecManager.openUdpEncapsulationSocket(IpSecManager.INVALID_SECURITY_PARAMETER_INDEX); +            fail("IllegalArgumentException was not thrown"); +        } catch (IllegalArgumentException e) { +        } +    } + +    // TODO: add test when applicable transform builder interface is available +} diff --git a/tests/net/java/android/net/ip/IpManagerTest.java b/tests/net/java/android/net/ip/IpManagerTest.java index 867324d99920..dc77e22082ba 100644 --- a/tests/net/java/android/net/ip/IpManagerTest.java +++ b/tests/net/java/android/net/ip/IpManagerTest.java @@ -22,6 +22,7 @@ import static org.mockito.Mockito.any;  import static org.mockito.Mockito.eq;  import static org.mockito.Mockito.mock;  import static org.mockito.Mockito.never; +import static org.mockito.Mockito.reset;  import static org.mockito.Mockito.timeout;  import static org.mockito.Mockito.times;  import static org.mockito.Mockito.verify; @@ -93,6 +94,7 @@ public class IpManagerTest {          final IpManager ipm = new IpManager(mContext, ifname, mCb, mNMService);          verify(mNMService, timeout(100).times(1)).disableIpv6(ifname);          verify(mNMService, timeout(100).times(1)).clearInterfaceAddresses(ifname); +        reset(mNMService);          return ipm;      } diff --git a/tests/net/java/android/net/ip/IpReachabilityMonitorTest.java b/tests/net/java/android/net/ip/IpReachabilityMonitorTest.java new file mode 100644 index 000000000000..f849689abb23 --- /dev/null +++ b/tests/net/java/android/net/ip/IpReachabilityMonitorTest.java @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + *      http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT 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.net.ip; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; +import static org.mockito.Mockito.any; +import static org.mockito.Mockito.anyInt; + +import android.net.util.SharedLog; +import android.support.test.filters.SmallTest; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + + +/** + * Tests for IpReachabilityMonitor. + */ +@RunWith(AndroidJUnit4.class) +@SmallTest +public class IpReachabilityMonitorTest { + +    @Mock IpReachabilityMonitor.Callback mCallback; +    @Mock IpReachabilityMonitor.Dependencies mDependencies; +    @Mock SharedLog mLog; + +    @Before +    public void setUp() { +        MockitoAnnotations.initMocks(this); +    } + +    IpReachabilityMonitor makeMonitor() { +        return new IpReachabilityMonitor("fake0", 1, mLog, mCallback, null, mDependencies); +    } + +    @Test +    public void testNothing() { +        IpReachabilityMonitor monitor = makeMonitor(); +    } +} diff --git a/tests/net/java/com/android/server/IpSecServiceTest.java b/tests/net/java/com/android/server/IpSecServiceTest.java new file mode 100644 index 000000000000..23fee286b8e7 --- /dev/null +++ b/tests/net/java/com/android/server/IpSecServiceTest.java @@ -0,0 +1,435 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + *      http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT 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.server; + +import static android.system.OsConstants.AF_INET; +import static android.system.OsConstants.EADDRINUSE; +import static android.system.OsConstants.IPPROTO_UDP; +import static android.system.OsConstants.SOCK_DGRAM; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.fail; +import static org.mockito.Matchers.anyInt; +import static org.mockito.Matchers.anyLong; +import static org.mockito.Matchers.anyObject; +import static org.mockito.Matchers.anyString; +import static org.mockito.Matchers.eq; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import android.content.Context; +import android.net.INetd; +import android.net.IpSecAlgorithm; +import android.net.IpSecConfig; +import android.net.IpSecManager; +import android.net.IpSecSpiResponse; +import android.net.IpSecTransform; +import android.net.IpSecTransformResponse; +import android.net.IpSecUdpEncapResponse; +import android.os.Binder; +import android.os.ParcelFileDescriptor; +import android.support.test.filters.SmallTest; +import android.system.ErrnoException; +import android.system.Os; +import java.io.FileDescriptor; +import java.net.InetAddress; +import java.net.ServerSocket; +import java.net.Socket; +import java.net.UnknownHostException; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.JUnit4; + +/** Unit tests for {@link IpSecService}. */ +@SmallTest +@RunWith(JUnit4.class) +public class IpSecServiceTest { + +    private static final int DROID_SPI = 0xD1201D; +    private static final int DROID_SPI2 = DROID_SPI + 1; +    private static final int TEST_UDP_ENCAP_INVALID_PORT = 100; +    private static final int TEST_UDP_ENCAP_PORT_OUT_RANGE = 100000; +    private static final int TEST_UDP_ENCAP_PORT = 34567; + +    private static final String IPV4_LOOPBACK = "127.0.0.1"; +    private static final String IPV4_ADDR = "192.168.0.2"; + +    private static final InetAddress INADDR_ANY; + +    static { +        try { +            INADDR_ANY = InetAddress.getByAddress(new byte[] {0, 0, 0, 0}); +        } catch (UnknownHostException e) { +            throw new RuntimeException(e); +        } +    } + +    private static final int[] DIRECTIONS = +            new int[] {IpSecTransform.DIRECTION_OUT, IpSecTransform.DIRECTION_IN}; +    private static final byte[] CRYPT_KEY = { +        0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, +        0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, +        0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, +        0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F +    }; +    private static final byte[] AUTH_KEY = { +        0x7A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, +        0x7A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F +    }; + +    Context mMockContext; +    INetd mMockNetd; +    IpSecService.IpSecServiceConfiguration mMockIpSecSrvConfig; +    IpSecService mIpSecService; + +    @Before +    public void setUp() throws Exception { +        mMockContext = mock(Context.class); +        mMockNetd = mock(INetd.class); +        mMockIpSecSrvConfig = mock(IpSecService.IpSecServiceConfiguration.class); +        mIpSecService = new IpSecService(mMockContext, mMockIpSecSrvConfig); + +        // Injecting mock netd +        when(mMockIpSecSrvConfig.getNetdInstance()).thenReturn(mMockNetd); +    } + +    @Test +    public void testIpSecServiceCreate() throws InterruptedException { +        IpSecService ipSecSrv = IpSecService.create(mMockContext); +        assertNotNull(ipSecSrv); +    } + +    @Test +    public void testIpSecServiceReserveSpi() throws Exception { +        when(mMockNetd.ipSecAllocateSpi( +                        anyInt(), +                        eq(IpSecTransform.DIRECTION_OUT), +                        anyString(), +                        eq(IPV4_LOOPBACK), +                        eq(DROID_SPI))) +                .thenReturn(DROID_SPI); + +        IpSecSpiResponse spiResp = +                mIpSecService.reserveSecurityParameterIndex( +                        IpSecTransform.DIRECTION_OUT, IPV4_LOOPBACK, DROID_SPI, new Binder()); +        assertEquals(IpSecManager.Status.OK, spiResp.status); +        assertEquals(DROID_SPI, spiResp.spi); +    } + +    @Test +    public void testReleaseSecurityParameterIndex() throws Exception { +        when(mMockNetd.ipSecAllocateSpi( +                        anyInt(), +                        eq(IpSecTransform.DIRECTION_OUT), +                        anyString(), +                        eq(IPV4_LOOPBACK), +                        eq(DROID_SPI))) +                .thenReturn(DROID_SPI); + +        IpSecSpiResponse spiResp = +                mIpSecService.reserveSecurityParameterIndex( +                        IpSecTransform.DIRECTION_OUT, IPV4_LOOPBACK, DROID_SPI, new Binder()); + +        mIpSecService.releaseSecurityParameterIndex(spiResp.resourceId); + +        verify(mMockNetd) +                .ipSecDeleteSecurityAssociation( +                        eq(spiResp.resourceId), anyInt(), anyString(), anyString(), eq(DROID_SPI)); +    } + +    @Test +    public void testReleaseInvalidSecurityParameterIndex() throws Exception { +        try { +            mIpSecService.releaseSecurityParameterIndex(1); +            fail("IllegalArgumentException not thrown"); +        } catch (IllegalArgumentException e) { +        } +    } + +    /** This function finds an available port */ +    int findUnusedPort() throws Exception { +        // Get an available port. +        ServerSocket s = new ServerSocket(0); +        int port = s.getLocalPort(); +        s.close(); +        return port; +    } + +    @Test +    public void testOpenAndCloseUdpEncapsulationSocket() throws Exception { +        int localport = findUnusedPort(); + +        IpSecUdpEncapResponse udpEncapResp = +                mIpSecService.openUdpEncapsulationSocket(localport, new Binder()); +        assertNotNull(udpEncapResp); +        assertEquals(IpSecManager.Status.OK, udpEncapResp.status); +        assertEquals(localport, udpEncapResp.port); + +        mIpSecService.closeUdpEncapsulationSocket(udpEncapResp.resourceId); +        udpEncapResp.fileDescriptor.close(); + +        // TODO: Added check for the resource tracker +    } + +    @Test +    public void testOpenUdpEncapsulationSocketAfterClose() throws Exception { +        int localport = findUnusedPort(); +        IpSecUdpEncapResponse udpEncapResp = +                mIpSecService.openUdpEncapsulationSocket(localport, new Binder()); +        assertNotNull(udpEncapResp); +        assertEquals(IpSecManager.Status.OK, udpEncapResp.status); +        assertEquals(localport, udpEncapResp.port); + +        mIpSecService.closeUdpEncapsulationSocket(udpEncapResp.resourceId); +        udpEncapResp.fileDescriptor.close(); + +        /** Check if localport is available. */ +        FileDescriptor newSocket = Os.socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); +        Os.bind(newSocket, INADDR_ANY, localport); +        Os.close(newSocket); +    } + +    /** +     * This function checks if the IpSecService holds the reserved port. If +     * closeUdpEncapsulationSocket is not called, the socket cleanup should not be complete. +     */ +    @Test +    public void testUdpEncapPortNotReleased() throws Exception { +        int localport = findUnusedPort(); +        IpSecUdpEncapResponse udpEncapResp = +                mIpSecService.openUdpEncapsulationSocket(localport, new Binder()); +        assertNotNull(udpEncapResp); +        assertEquals(IpSecManager.Status.OK, udpEncapResp.status); +        assertEquals(localport, udpEncapResp.port); + +        udpEncapResp.fileDescriptor.close(); + +        FileDescriptor newSocket = Os.socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); +        try { +            Os.bind(newSocket, INADDR_ANY, localport); +            fail("ErrnoException not thrown"); +        } catch (ErrnoException e) { +            assertEquals(EADDRINUSE, e.errno); +        } +        mIpSecService.closeUdpEncapsulationSocket(udpEncapResp.resourceId); +    } + +    @Test +    public void testOpenUdpEncapsulationSocketOnRandomPort() throws Exception { +        IpSecUdpEncapResponse udpEncapResp = +                mIpSecService.openUdpEncapsulationSocket(0, new Binder()); +        assertNotNull(udpEncapResp); +        assertEquals(IpSecManager.Status.OK, udpEncapResp.status); +        mIpSecService.closeUdpEncapsulationSocket(udpEncapResp.resourceId); +        udpEncapResp.fileDescriptor.close(); +    } + +    @Test +    public void testOpenUdpEncapsulationSocketPortRange() throws Exception { +        try { +            mIpSecService.openUdpEncapsulationSocket(TEST_UDP_ENCAP_INVALID_PORT, new Binder()); +            fail("IllegalArgumentException not thrown"); +        } catch (IllegalArgumentException e) { +        } + +        try { +            mIpSecService.openUdpEncapsulationSocket(TEST_UDP_ENCAP_PORT_OUT_RANGE, new Binder()); +            fail("IllegalArgumentException not thrown"); +        } catch (IllegalArgumentException e) { +        } +    } + +    @Test +    public void testOpenUdpEncapsulationSocketTwice() throws Exception { +        int localport = findUnusedPort(); + +        IpSecUdpEncapResponse udpEncapResp = +                mIpSecService.openUdpEncapsulationSocket(localport, new Binder()); +        assertNotNull(udpEncapResp); +        assertEquals(IpSecManager.Status.OK, udpEncapResp.status); +        assertEquals(localport, udpEncapResp.port); +        mIpSecService.openUdpEncapsulationSocket(localport, new Binder()); + +        IpSecUdpEncapResponse testUdpEncapResp = +                mIpSecService.openUdpEncapsulationSocket(localport, new Binder()); +        assertEquals(IpSecManager.Status.RESOURCE_UNAVAILABLE, testUdpEncapResp.status); + +        mIpSecService.closeUdpEncapsulationSocket(udpEncapResp.resourceId); +        udpEncapResp.fileDescriptor.close(); +    } + +    @Test +    public void testCloseInvalidUdpEncapsulationSocket() throws Exception { +        try { +            mIpSecService.closeUdpEncapsulationSocket(1); +            fail("IllegalArgumentException not thrown"); +        } catch (IllegalArgumentException e) { +        } +    } + +    IpSecConfig buildIpSecConfig() throws Exception { +        IpSecManager ipSecManager = new IpSecManager(mIpSecService); + +        // Mocking the netd to allocate SPI +        when(mMockNetd.ipSecAllocateSpi(anyInt(), anyInt(), anyString(), anyString(), anyInt())) +                .thenReturn(DROID_SPI) +                .thenReturn(DROID_SPI2); + +        IpSecAlgorithm encryptAlgo = new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY); +        IpSecAlgorithm authAlgo = +                new IpSecAlgorithm(IpSecAlgorithm.AUTH_HMAC_SHA256, AUTH_KEY, AUTH_KEY.length * 8); + +        InetAddress localAddr = InetAddress.getByAddress(new byte[] {127, 0, 0, 1}); + +        /** Allocate and add SPI records in the IpSecService through IpSecManager interface. */ +        IpSecManager.SecurityParameterIndex outSpi = +                ipSecManager.reserveSecurityParameterIndex(IpSecTransform.DIRECTION_OUT, localAddr); +        IpSecManager.SecurityParameterIndex inSpi = +                ipSecManager.reserveSecurityParameterIndex(IpSecTransform.DIRECTION_IN, localAddr); + +        IpSecConfig ipSecConfig = +                new IpSecTransform.Builder(mMockContext) +                        .setSpi(IpSecTransform.DIRECTION_OUT, outSpi) +                        .setSpi(IpSecTransform.DIRECTION_IN, inSpi) +                        .setEncryption(IpSecTransform.DIRECTION_OUT, encryptAlgo) +                        .setAuthentication(IpSecTransform.DIRECTION_OUT, authAlgo) +                        .setEncryption(IpSecTransform.DIRECTION_IN, encryptAlgo) +                        .setAuthentication(IpSecTransform.DIRECTION_IN, authAlgo) +                        .getIpSecConfig(); +        return ipSecConfig; +    } + +    @Test +    public void testCreateTransportModeTransform() throws Exception { +        IpSecConfig ipSecConfig = buildIpSecConfig(); + +        IpSecTransformResponse createTransformResp = +                mIpSecService.createTransportModeTransform(ipSecConfig, new Binder()); +        assertEquals(IpSecManager.Status.OK, createTransformResp.status); + +        verify(mMockNetd) +                .ipSecAddSecurityAssociation( +                        eq(createTransformResp.resourceId), +                        anyInt(), +                        eq(IpSecTransform.DIRECTION_OUT), +                        anyString(), +                        anyString(), +                        anyLong(), +                        eq(DROID_SPI), +                        eq(IpSecAlgorithm.AUTH_HMAC_SHA256), +                        eq(AUTH_KEY), +                        anyInt(), +                        eq(IpSecAlgorithm.CRYPT_AES_CBC), +                        eq(CRYPT_KEY), +                        anyInt(), +                        anyInt(), +                        anyInt(), +                        anyInt()); +        verify(mMockNetd) +                .ipSecAddSecurityAssociation( +                        eq(createTransformResp.resourceId), +                        anyInt(), +                        eq(IpSecTransform.DIRECTION_IN), +                        anyString(), +                        anyString(), +                        anyLong(), +                        eq(DROID_SPI2), +                        eq(IpSecAlgorithm.AUTH_HMAC_SHA256), +                        eq(AUTH_KEY), +                        anyInt(), +                        eq(IpSecAlgorithm.CRYPT_AES_CBC), +                        eq(CRYPT_KEY), +                        anyInt(), +                        anyInt(), +                        anyInt(), +                        anyInt()); +    } + +    @Test +    public void testDeleteTransportModeTransform() throws Exception { +        IpSecConfig ipSecConfig = buildIpSecConfig(); + +        IpSecTransformResponse createTransformResp = +                mIpSecService.createTransportModeTransform(ipSecConfig, new Binder()); +        mIpSecService.deleteTransportModeTransform(createTransformResp.resourceId); + +        verify(mMockNetd) +                .ipSecDeleteSecurityAssociation( +                        eq(createTransformResp.resourceId), +                        eq(IpSecTransform.DIRECTION_OUT), +                        anyString(), +                        anyString(), +                        eq(DROID_SPI)); +        verify(mMockNetd) +                .ipSecDeleteSecurityAssociation( +                        eq(createTransformResp.resourceId), +                        eq(IpSecTransform.DIRECTION_IN), +                        anyString(), +                        anyString(), +                        eq(DROID_SPI2)); +    } + +    @Test +    public void testDeleteInvalidTransportModeTransform() throws Exception { +        try { +            mIpSecService.deleteTransportModeTransform(1); +            fail("IllegalArgumentException not thrown"); +        } catch (IllegalArgumentException e) { +        } +    } + +    @Test +    public void testApplyTransportModeTransform() throws Exception { +        IpSecConfig ipSecConfig = buildIpSecConfig(); + +        IpSecTransformResponse createTransformResp = +                mIpSecService.createTransportModeTransform(ipSecConfig, new Binder()); +        ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(new Socket()); + +        int resourceId = createTransformResp.resourceId; +        mIpSecService.applyTransportModeTransform(pfd, resourceId); + +        verify(mMockNetd) +                .ipSecApplyTransportModeTransform( +                        eq(pfd.getFileDescriptor()), +                        eq(resourceId), +                        eq(IpSecTransform.DIRECTION_OUT), +                        anyString(), +                        anyString(), +                        eq(DROID_SPI)); +        verify(mMockNetd) +                .ipSecApplyTransportModeTransform( +                        eq(pfd.getFileDescriptor()), +                        eq(resourceId), +                        eq(IpSecTransform.DIRECTION_IN), +                        anyString(), +                        anyString(), +                        eq(DROID_SPI2)); +    } + +    @Test +    public void testRemoveTransportModeTransform() throws Exception { +        ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(new Socket()); +        mIpSecService.removeTransportModeTransform(pfd, 1); + +        verify(mMockNetd).ipSecRemoveTransportModeTransform(pfd.getFileDescriptor()); +    } +}  |