diff options
199 files changed, 3098 insertions, 1126 deletions
diff --git a/core/java/android/app/ActivityOptions.java b/core/java/android/app/ActivityOptions.java index c4d51168d20c..cbb93a059613 100644 --- a/core/java/android/app/ActivityOptions.java +++ b/core/java/android/app/ActivityOptions.java @@ -932,7 +932,7 @@ public class ActivityOptions { * @hide */ public GraphicBuffer getThumbnail() { - return mThumbnail.createGraphicBufferHandle(); + return mThumbnail != null ? mThumbnail.createGraphicBufferHandle() : null; } /** @hide */ @@ -1243,11 +1243,13 @@ public class ActivityOptions { case ANIM_THUMBNAIL_ASPECT_SCALE_DOWN: // Once we parcel the thumbnail for transfering over to the system, create a copy of // the bitmap to a hardware bitmap and pass through the GraphicBuffer - if (mThumbnail == null) { - b.putParcelable(KEY_ANIM_THUMBNAIL, null); - } else { + if (mThumbnail != null) { final Bitmap hwBitmap = mThumbnail.copy(Config.HARDWARE, true /* immutable */); - b.putParcelable(KEY_ANIM_THUMBNAIL, hwBitmap.createGraphicBufferHandle()); + if (hwBitmap != null) { + b.putParcelable(KEY_ANIM_THUMBNAIL, hwBitmap.createGraphicBufferHandle()); + } else { + Slog.w(TAG, "Failed to copy thumbnail"); + } } b.putInt(KEY_ANIM_START_X, mStartX); b.putInt(KEY_ANIM_START_Y, mStartY); diff --git a/core/java/android/net/IIpSecService.aidl b/core/java/android/net/IIpSecService.aidl index 0aa3ce66eb29..0b1ea98f2e12 100644 --- a/core/java/android/net/IIpSecService.aidl +++ b/core/java/android/net/IIpSecService.aidl @@ -18,6 +18,9 @@ package android.net; import android.net.Network; import android.net.IpSecConfig; +import android.net.IpSecUdpEncapResponse; +import android.net.IpSecSpiResponse; +import android.net.IpSecTransformResponse; import android.os.Bundle; import android.os.IBinder; import android.os.ParcelFileDescriptor; @@ -27,16 +30,16 @@ import android.os.ParcelFileDescriptor; */ interface IIpSecService { - Bundle reserveSecurityParameterIndex( + IpSecSpiResponse reserveSecurityParameterIndex( int direction, in String remoteAddress, int requestedSpi, in IBinder binder); void releaseSecurityParameterIndex(int resourceId); - Bundle openUdpEncapsulationSocket(int port, in IBinder binder); + IpSecUdpEncapResponse openUdpEncapsulationSocket(int port, in IBinder binder); - void closeUdpEncapsulationSocket(in ParcelFileDescriptor socket); + void closeUdpEncapsulationSocket(int resourceId); - Bundle createTransportModeTransform(in IpSecConfig c, in IBinder binder); + IpSecTransformResponse createTransportModeTransform(in IpSecConfig c, in IBinder binder); void deleteTransportModeTransform(int transformId); diff --git a/core/java/android/net/IpSecConfig.java b/core/java/android/net/IpSecConfig.java index 13dc19f68577..8b80f2ba504d 100644 --- a/core/java/android/net/IpSecConfig.java +++ b/core/java/android/net/IpSecConfig.java @@ -40,7 +40,7 @@ public final class IpSecConfig implements Parcelable { // Minimum requirements for identifying a transform // SPI identifying the IPsec flow in packet processing // and a remote IP address - int spi; + int spiResourceId; // Encryption Algorithm IpSecAlgorithm encryption; @@ -54,7 +54,7 @@ public final class IpSecConfig implements Parcelable { // For tunnel mode IPv4 UDP Encapsulation // IpSecTransform#ENCAP_ESP_*, such as ENCAP_ESP_OVER_UDP_IKE int encapType; - int encapLocalPort; + int encapLocalPortResourceId; int encapRemotePort; // An interval, in seconds between the NattKeepalive packets @@ -69,8 +69,8 @@ public final class IpSecConfig implements Parcelable { return localAddress; } - public int getSpi(int direction) { - return flow[direction].spi; + public int getSpiResourceId(int direction) { + return flow[direction].spiResourceId; } public InetAddress getRemoteAddress() { @@ -93,8 +93,8 @@ public final class IpSecConfig implements Parcelable { return encapType; } - public int getEncapLocalPort() { - return encapLocalPort; + public int getEncapLocalResourceId() { + return encapLocalPortResourceId; } public int getEncapRemotePort() { @@ -119,14 +119,14 @@ public final class IpSecConfig implements Parcelable { // TODO: Use a byte array or other better method for storing IPs that can also include scope out.writeString((remoteAddress != null) ? remoteAddress.getHostAddress() : null); out.writeParcelable(network, flags); - out.writeInt(flow[IpSecTransform.DIRECTION_IN].spi); + out.writeInt(flow[IpSecTransform.DIRECTION_IN].spiResourceId); out.writeParcelable(flow[IpSecTransform.DIRECTION_IN].encryption, flags); out.writeParcelable(flow[IpSecTransform.DIRECTION_IN].authentication, flags); - out.writeInt(flow[IpSecTransform.DIRECTION_OUT].spi); + out.writeInt(flow[IpSecTransform.DIRECTION_OUT].spiResourceId); out.writeParcelable(flow[IpSecTransform.DIRECTION_OUT].encryption, flags); out.writeParcelable(flow[IpSecTransform.DIRECTION_OUT].authentication, flags); out.writeInt(encapType); - out.writeInt(encapLocalPort); + out.writeInt(encapLocalPortResourceId); out.writeInt(encapRemotePort); } @@ -151,18 +151,18 @@ public final class IpSecConfig implements Parcelable { localAddress = readInetAddressFromParcel(in); remoteAddress = readInetAddressFromParcel(in); network = (Network) in.readParcelable(Network.class.getClassLoader()); - flow[IpSecTransform.DIRECTION_IN].spi = in.readInt(); + flow[IpSecTransform.DIRECTION_IN].spiResourceId = in.readInt(); flow[IpSecTransform.DIRECTION_IN].encryption = (IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader()); flow[IpSecTransform.DIRECTION_IN].authentication = (IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader()); - flow[IpSecTransform.DIRECTION_OUT].spi = in.readInt(); + flow[IpSecTransform.DIRECTION_OUT].spiResourceId = in.readInt(); flow[IpSecTransform.DIRECTION_OUT].encryption = (IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader()); flow[IpSecTransform.DIRECTION_OUT].authentication = (IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader()); encapType = in.readInt(); - encapLocalPort = in.readInt(); + encapLocalPortResourceId = in.readInt(); encapRemotePort = in.readInt(); } diff --git a/core/java/android/net/IpSecManager.java b/core/java/android/net/IpSecManager.java index 114e46e54fe7..0240cf15095e 100644 --- a/core/java/android/net/IpSecManager.java +++ b/core/java/android/net/IpSecManager.java @@ -19,10 +19,10 @@ import static com.android.internal.util.Preconditions.checkNotNull; import android.annotation.NonNull; import android.os.Binder; -import android.os.Bundle; import android.os.ParcelFileDescriptor; import android.os.RemoteException; import android.util.AndroidException; +import android.util.Log; import dalvik.system.CloseGuard; import java.io.FileDescriptor; import java.io.IOException; @@ -58,12 +58,6 @@ public final class IpSecManager { } /** @hide */ - public static final String KEY_STATUS = "status"; - /** @hide */ - public static final String KEY_RESOURCE_ID = "resourceId"; - /** @hide */ - public static final String KEY_SPI = "spi"; - /** @hide */ public static final int INVALID_RESOURCE_ID = 0; /** @@ -128,7 +122,11 @@ public final class IpSecManager { */ @Override public void close() { - mSpi = INVALID_SECURITY_PARAMETER_INDEX; + try { + mService.releaseSecurityParameterIndex(mResourceId); + } catch (RemoteException e) { + throw e.rethrowFromSystemServer(); + } mCloseGuard.close(); } @@ -147,7 +145,7 @@ public final class IpSecManager { mService = service; mRemoteAddress = remoteAddress; try { - Bundle result = + IpSecSpiResponse result = mService.reserveSecurityParameterIndex( direction, remoteAddress.getHostAddress(), spi, new Binder()); @@ -155,7 +153,7 @@ public final class IpSecManager { throw new NullPointerException("Received null response from IpSecService"); } - int status = result.getInt(KEY_STATUS); + int status = result.status; switch (status) { case Status.OK: break; @@ -168,8 +166,8 @@ public final class IpSecManager { throw new RuntimeException( "Unknown status returned by IpSecService: " + status); } - mSpi = result.getInt(KEY_SPI); - mResourceId = result.getInt(KEY_RESOURCE_ID); + mSpi = result.spi; + mResourceId = result.resourceId; if (mSpi == INVALID_SECURITY_PARAMETER_INDEX) { throw new RuntimeException("Invalid SPI returned by IpSecService: " + status); @@ -185,6 +183,11 @@ public final class IpSecManager { } mCloseGuard.open("open"); } + + /** @hide */ + int getResourceId() { + return mResourceId; + } } /** @@ -201,8 +204,7 @@ public final class IpSecManager { * @throws SpiUnavailableException indicating that a particular SPI cannot be reserved */ public SecurityParameterIndex reserveSecurityParameterIndex( - int direction, InetAddress remoteAddress) - throws ResourceUnavailableException { + int direction, InetAddress remoteAddress) throws ResourceUnavailableException { try { return new SecurityParameterIndex( mService, @@ -251,7 +253,9 @@ public final class IpSecManager { */ public void applyTransportModeTransform(Socket socket, IpSecTransform transform) throws IOException { - applyTransportModeTransform(ParcelFileDescriptor.fromSocket(socket), transform); + try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(socket)) { + applyTransportModeTransform(pfd, transform); + } } /** @@ -269,15 +273,8 @@ public final class IpSecManager { */ public void applyTransportModeTransform(DatagramSocket socket, IpSecTransform transform) throws IOException { - applyTransportModeTransform(ParcelFileDescriptor.fromDatagramSocket(socket), transform); - } - - /* Call down to activate a transform */ - private void applyTransportModeTransform(ParcelFileDescriptor pfd, IpSecTransform transform) { - try { - mService.applyTransportModeTransform(pfd, transform.getResourceId()); - } catch (RemoteException e) { - throw e.rethrowFromSystemServer(); + try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromDatagramSocket(socket)) { + applyTransportModeTransform(pfd, transform); } } @@ -295,7 +292,22 @@ public final class IpSecManager { */ public void applyTransportModeTransform(FileDescriptor socket, IpSecTransform transform) throws IOException { - applyTransportModeTransform(new ParcelFileDescriptor(socket), transform); + // We dup() the FileDescriptor here because if we don't, then the ParcelFileDescriptor() + // constructor takes control and closes the user's FD when we exit the method + // This is behaviorally the same as the other versions, but the PFD constructor does not + // dup() automatically, whereas PFD.fromSocket() and PDF.fromDatagramSocket() do dup(). + try (ParcelFileDescriptor pfd = ParcelFileDescriptor.dup(socket)) { + applyTransportModeTransform(pfd, transform); + } + } + + /* Call down to activate a transform */ + private void applyTransportModeTransform(ParcelFileDescriptor pfd, IpSecTransform transform) { + try { + mService.applyTransportModeTransform(pfd, transform.getResourceId()); + } catch (RemoteException e) { + throw e.rethrowFromSystemServer(); + } } /** @@ -324,7 +336,9 @@ public final class IpSecManager { */ public void removeTransportModeTransform(Socket socket, IpSecTransform transform) throws IOException { - removeTransportModeTransform(ParcelFileDescriptor.fromSocket(socket), transform); + try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(socket)) { + removeTransportModeTransform(pfd, transform); + } } /** @@ -340,7 +354,9 @@ public final class IpSecManager { */ public void removeTransportModeTransform(DatagramSocket socket, IpSecTransform transform) throws IOException { - removeTransportModeTransform(ParcelFileDescriptor.fromDatagramSocket(socket), transform); + try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromDatagramSocket(socket)) { + removeTransportModeTransform(pfd, transform); + } } /** @@ -355,7 +371,9 @@ public final class IpSecManager { */ public void removeTransportModeTransform(FileDescriptor socket, IpSecTransform transform) throws IOException { - removeTransportModeTransform(new ParcelFileDescriptor(socket), transform); + try (ParcelFileDescriptor pfd = ParcelFileDescriptor.dup(socket)) { + removeTransportModeTransform(pfd, transform); + } } /* Call down to activate a transform */ @@ -388,33 +406,48 @@ public final class IpSecManager { * FileDescriptor. Instead, disposing of this socket requires a call to close(). */ public static final class UdpEncapsulationSocket implements AutoCloseable { - private final FileDescriptor mFd; + private final ParcelFileDescriptor mPfd; private final IIpSecService mService; + private final int mResourceId; + private final int mPort; private final CloseGuard mCloseGuard = CloseGuard.get(); private UdpEncapsulationSocket(@NonNull IIpSecService service, int port) - throws ResourceUnavailableException { - mService = service; - mCloseGuard.open("constructor"); - // TODO: go down to the kernel and get a socket on the specified - mFd = new FileDescriptor(); - } - - private UdpEncapsulationSocket(IIpSecService service) throws ResourceUnavailableException { + throws ResourceUnavailableException, IOException { mService = service; + try { + IpSecUdpEncapResponse result = + mService.openUdpEncapsulationSocket(port, new Binder()); + switch (result.status) { + case Status.OK: + break; + case Status.RESOURCE_UNAVAILABLE: + throw new ResourceUnavailableException( + "No more Sockets may be allocated by this requester."); + default: + throw new RuntimeException( + "Unknown status returned by IpSecService: " + result.status); + } + mResourceId = result.resourceId; + mPort = result.port; + mPfd = result.fileDescriptor; + } catch (RemoteException e) { + throw e.rethrowFromSystemServer(); + } mCloseGuard.open("constructor"); - // TODO: go get a random socket on a random port - mFd = new FileDescriptor(); } /** Access the inner UDP Encapsulation Socket */ public FileDescriptor getSocket() { - return mFd; + if (mPfd == null) { + return null; + } + return mPfd.getFileDescriptor(); } /** Retrieve the port number of the inner encapsulation socket */ public int getPort() { - return 0; // TODO get the port number from the Socket; + return mPort; } @Override @@ -429,7 +462,18 @@ public final class IpSecManager { * @param fd a file descriptor previously returned as a UDP Encapsulation socket. */ public void close() throws IOException { - // TODO: Go close the socket + try { + mService.closeUdpEncapsulationSocket(mResourceId); + } catch (RemoteException e) { + throw e.rethrowFromSystemServer(); + } + + try { + mPfd.close(); + } catch (IOException e) { + Log.e(TAG, "Failed to close UDP Encapsulation Socket with Port= " + mPort); + throw e; + } mCloseGuard.close(); } @@ -438,9 +482,13 @@ public final class IpSecManager { if (mCloseGuard != null) { mCloseGuard.warnIfOpen(); } - close(); } + + /** @hide */ + int getResourceId() { + return mResourceId; + } }; /** @@ -467,7 +515,13 @@ public final class IpSecManager { // socket. public UdpEncapsulationSocket openUdpEncapsulationSocket(int port) throws IOException, ResourceUnavailableException { - // Temporary code + /* + * Most range checking is done in the service, but this version of the constructor expects + * a valid port number, and zero cannot be checked after being passed to the service. + */ + if (port == 0) { + throw new IllegalArgumentException("Specified port must be a valid port number!"); + } return new UdpEncapsulationSocket(mService, port); } @@ -491,8 +545,7 @@ public final class IpSecManager { // socket. public UdpEncapsulationSocket openUdpEncapsulationSocket() throws IOException, ResourceUnavailableException { - // Temporary code - return new UdpEncapsulationSocket(mService); + return new UdpEncapsulationSocket(mService, 0); } /** diff --git a/core/java/android/net/IpSecSpiResponse.aidl b/core/java/android/net/IpSecSpiResponse.aidl new file mode 100644 index 000000000000..6484a0013c53 --- /dev/null +++ b/core/java/android/net/IpSecSpiResponse.aidl @@ -0,0 +1,20 @@ +/* + * 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; + +/** @hide */ +parcelable IpSecSpiResponse; diff --git a/core/java/android/net/IpSecSpiResponse.java b/core/java/android/net/IpSecSpiResponse.java new file mode 100644 index 000000000000..71dfa03ac112 --- /dev/null +++ b/core/java/android/net/IpSecSpiResponse.java @@ -0,0 +1,78 @@ +/* + * 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 android.os.Parcel; +import android.os.Parcelable; + +/** + * This class is used to return an SPI and corresponding status from the IpSecService to an + * IpSecManager.SecurityParameterIndex. + * + * @hide + */ +public final class IpSecSpiResponse implements Parcelable { + private static final String TAG = "IpSecSpiResponse"; + + public final int resourceId; + public final int status; + public final int spi; + // Parcelable Methods + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel out, int flags) { + out.writeInt(status); + out.writeInt(resourceId); + out.writeInt(spi); + } + + public IpSecSpiResponse(int inStatus, int inResourceId, int inSpi) { + status = inStatus; + resourceId = inResourceId; + spi = inSpi; + } + + public IpSecSpiResponse(int inStatus) { + if (inStatus == IpSecManager.Status.OK) { + throw new IllegalArgumentException("Valid status implies other args must be provided"); + } + status = inStatus; + resourceId = IpSecManager.INVALID_RESOURCE_ID; + spi = IpSecManager.INVALID_SECURITY_PARAMETER_INDEX; + } + + private IpSecSpiResponse(Parcel in) { + status = in.readInt(); + resourceId = in.readInt(); + spi = in.readInt(); + } + + public static final Parcelable.Creator<IpSecSpiResponse> CREATOR = + new Parcelable.Creator<IpSecSpiResponse>() { + public IpSecSpiResponse createFromParcel(Parcel in) { + return new IpSecSpiResponse(in); + } + + public IpSecSpiResponse[] newArray(int size) { + return new IpSecSpiResponse[size]; + } + }; +} diff --git a/core/java/android/net/IpSecTransform.java b/core/java/android/net/IpSecTransform.java index 639d1f2689f4..e65f534f3dc6 100644 --- a/core/java/android/net/IpSecTransform.java +++ b/core/java/android/net/IpSecTransform.java @@ -16,15 +16,12 @@ package android.net; import static android.net.IpSecManager.INVALID_RESOURCE_ID; -import static android.net.IpSecManager.KEY_RESOURCE_ID; -import static android.net.IpSecManager.KEY_STATUS; import android.annotation.IntDef; import android.annotation.NonNull; import android.annotation.SystemApi; import android.content.Context; import android.os.Binder; -import android.os.Bundle; import android.os.IBinder; import android.os.RemoteException; import android.os.ServiceManager; @@ -78,23 +75,23 @@ public final class IpSecTransform implements AutoCloseable { public static final int ENCAP_NONE = 0; /** - * IpSec traffic will be encapsulated within UDP as per <a - * href="https://tools.ietf.org/html/rfc3948">RFC3498</a>. + * IpSec traffic will be encapsulated within a UDP header with an additional 8-byte header pad + * (of '0'-value bytes) that prevents traffic from being interpreted as IKE or as ESP over UDP. * * @hide */ - public static final int ENCAP_ESPINUDP = 1; + public static final int ENCAP_ESPINUDP_NON_IKE = 1; /** - * IpSec traffic will be encapsulated within a UDP header with an additional 8-byte header pad - * (of '0'-value bytes) that prevents traffic from being interpreted as IKE or as ESP over UDP. + * IpSec traffic will be encapsulated within UDP as per <a + * href="https://tools.ietf.org/html/rfc3948">RFC3498</a>. * * @hide */ - public static final int ENCAP_ESPINUDP_NONIKE = 2; + public static final int ENCAP_ESPINUDP = 2; /** @hide */ - @IntDef(value = {ENCAP_NONE, ENCAP_ESPINUDP, ENCAP_ESPINUDP_NONIKE}) + @IntDef(value = {ENCAP_NONE, ENCAP_ESPINUDP, ENCAP_ESPINUDP_NON_IKE}) @Retention(RetentionPolicy.SOURCE) public @interface EncapType {} @@ -139,10 +136,11 @@ public final class IpSecTransform implements AutoCloseable { synchronized (this) { try { IIpSecService svc = getIpSecService(); - Bundle result = svc.createTransportModeTransform(mConfig, new Binder()); - int status = result.getInt(KEY_STATUS); + IpSecTransformResponse result = + svc.createTransportModeTransform(mConfig, new Binder()); + int status = result.status; checkResultStatusAndThrow(status); - mResourceId = result.getInt(KEY_RESOURCE_ID, INVALID_RESOURCE_ID); + mResourceId = result.resourceId; /* Keepalive will silently fail if not needed by the config; but, if needed and * it fails to start, we need to bail because a transform will not be reliable @@ -263,7 +261,10 @@ public final class IpSecTransform implements AutoCloseable { mConfig.getNattKeepaliveInterval(), mKeepaliveCallback, mConfig.getLocalAddress(), - mConfig.getEncapLocalPort(), + 0x1234, /* FIXME: get the real port number again, + which we need to retrieve from the provided + EncapsulationSocket, and which isn't currently + stashed in IpSecConfig */ mConfig.getRemoteAddress()); try { // FIXME: this is still a horrible way to fudge the synchronous callback @@ -360,7 +361,7 @@ public final class IpSecTransform implements AutoCloseable { @TransformDirection int direction, IpSecManager.SecurityParameterIndex spi) { // TODO: convert to using the resource Id of the SPI. Then build() can validate // the owner in the IpSecService - mConfig.flow[direction].spi = spi.getSpi(); + mConfig.flow[direction].spiResourceId = spi.getResourceId(); return this; } @@ -394,7 +395,7 @@ public final class IpSecTransform implements AutoCloseable { IpSecManager.UdpEncapsulationSocket localSocket, int remotePort) { // TODO: check encap type is valid. mConfig.encapType = ENCAP_ESPINUDP; - mConfig.encapLocalPort = localSocket.getPort(); // TODO: plug in the encap socket + mConfig.encapLocalPortResourceId = localSocket.getResourceId(); mConfig.encapRemotePort = remotePort; return this; } diff --git a/core/java/android/net/IpSecTransformResponse.aidl b/core/java/android/net/IpSecTransformResponse.aidl new file mode 100644 index 000000000000..546230d5b888 --- /dev/null +++ b/core/java/android/net/IpSecTransformResponse.aidl @@ -0,0 +1,20 @@ +/* + * 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; + +/** @hide */ +parcelable IpSecTransformResponse; diff --git a/core/java/android/net/IpSecTransformResponse.java b/core/java/android/net/IpSecTransformResponse.java new file mode 100644 index 000000000000..cfc176227fbc --- /dev/null +++ b/core/java/android/net/IpSecTransformResponse.java @@ -0,0 +1,73 @@ +/* + * 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 android.os.Parcel; +import android.os.Parcelable; + +/** + * This class is used to return an IpSecTransform resource Id and and corresponding status from the + * IpSecService to an IpSecTransform object. + * + * @hide + */ +public final class IpSecTransformResponse implements Parcelable { + private static final String TAG = "IpSecTransformResponse"; + + public final int resourceId; + public final int status; + // Parcelable Methods + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel out, int flags) { + out.writeInt(status); + out.writeInt(resourceId); + } + + public IpSecTransformResponse(int inStatus) { + if (inStatus == IpSecManager.Status.OK) { + throw new IllegalArgumentException("Valid status implies other args must be provided"); + } + status = inStatus; + resourceId = IpSecManager.INVALID_RESOURCE_ID; + } + + public IpSecTransformResponse(int inStatus, int inResourceId) { + status = inStatus; + resourceId = inResourceId; + } + + private IpSecTransformResponse(Parcel in) { + status = in.readInt(); + resourceId = in.readInt(); + } + + public static final Parcelable.Creator<IpSecTransformResponse> CREATOR = + new Parcelable.Creator<IpSecTransformResponse>() { + public IpSecTransformResponse createFromParcel(Parcel in) { + return new IpSecTransformResponse(in); + } + + public IpSecTransformResponse[] newArray(int size) { + return new IpSecTransformResponse[size]; + } + }; +} diff --git a/core/java/android/net/IpSecUdpEncapResponse.aidl b/core/java/android/net/IpSecUdpEncapResponse.aidl new file mode 100644 index 000000000000..5e451f3651f1 --- /dev/null +++ b/core/java/android/net/IpSecUdpEncapResponse.aidl @@ -0,0 +1,20 @@ +/* + * 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; + +/** @hide */ +parcelable IpSecUdpEncapResponse; diff --git a/core/java/android/net/IpSecUdpEncapResponse.java b/core/java/android/net/IpSecUdpEncapResponse.java new file mode 100644 index 000000000000..4679267cf9a9 --- /dev/null +++ b/core/java/android/net/IpSecUdpEncapResponse.java @@ -0,0 +1,96 @@ +/* + * 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 android.os.Parcel; +import android.os.ParcelFileDescriptor; +import android.os.Parcelable; +import java.io.FileDescriptor; +import java.io.IOException; + +/** + * This class is used to return a UDP Socket and corresponding status from the IpSecService to an + * IpSecManager.UdpEncapsulationSocket. + * + * @hide + */ +public final class IpSecUdpEncapResponse implements Parcelable { + private static final String TAG = "IpSecUdpEncapResponse"; + + public final int resourceId; + public final int port; + public final int status; + // There is a weird asymmetry with FileDescriptor: you can write a FileDescriptor + // but you read a ParcelFileDescriptor. To circumvent this, when we receive a FD + // from the user, we immediately create a ParcelFileDescriptor DUP, which we invalidate + // on writeParcel() by setting the flag to do close-on-write. + // TODO: tests to ensure this doesn't leak + public final ParcelFileDescriptor fileDescriptor; + + // Parcelable Methods + + @Override + public int describeContents() { + return (fileDescriptor != null) ? Parcelable.CONTENTS_FILE_DESCRIPTOR : 0; + } + + @Override + public void writeToParcel(Parcel out, int flags) { + out.writeInt(status); + out.writeInt(resourceId); + out.writeInt(port); + out.writeParcelable(fileDescriptor, Parcelable.PARCELABLE_WRITE_RETURN_VALUE); + } + + public IpSecUdpEncapResponse(int inStatus) { + if (inStatus == IpSecManager.Status.OK) { + throw new IllegalArgumentException("Valid status implies other args must be provided"); + } + status = inStatus; + resourceId = IpSecManager.INVALID_RESOURCE_ID; + port = -1; + fileDescriptor = null; // yes I know it's redundant, but readability + } + + public IpSecUdpEncapResponse(int inStatus, int inResourceId, int inPort, FileDescriptor inFd) + throws IOException { + if (inStatus == IpSecManager.Status.OK && inFd == null) { + throw new IllegalArgumentException("Valid status implies FD must be non-null"); + } + status = inStatus; + resourceId = inResourceId; + port = inPort; + fileDescriptor = (status == IpSecManager.Status.OK) ? ParcelFileDescriptor.dup(inFd) : null; + } + + private IpSecUdpEncapResponse(Parcel in) { + status = in.readInt(); + resourceId = in.readInt(); + port = in.readInt(); + fileDescriptor = in.readParcelable(ParcelFileDescriptor.class.getClassLoader()); + } + + public static final Parcelable.Creator<IpSecUdpEncapResponse> CREATOR = + new Parcelable.Creator<IpSecUdpEncapResponse>() { + public IpSecUdpEncapResponse createFromParcel(Parcel in) { + return new IpSecUdpEncapResponse(in); + } + + public IpSecUdpEncapResponse[] newArray(int size) { + return new IpSecUdpEncapResponse[size]; + } + }; +} diff --git a/core/java/android/view/ThreadedRenderer.java b/core/java/android/view/ThreadedRenderer.java index aacd6873f878..de4d03e9ec35 100644 --- a/core/java/android/view/ThreadedRenderer.java +++ b/core/java/android/view/ThreadedRenderer.java @@ -362,6 +362,7 @@ public final class ThreadedRenderer { private boolean mEnabled; private boolean mRequested = true; + private boolean mIsOpaque = false; ThreadedRenderer(Context context, boolean translucent, String name) { final TypedArray a = context.obtainStyledAttributes(null, R.styleable.Lighting, 0, 0); @@ -376,6 +377,7 @@ public final class ThreadedRenderer { long rootNodePtr = nCreateRootRenderNode(); mRootNode = RenderNode.adopt(rootNodePtr); mRootNode.setClipToBounds(false); + mIsOpaque = !translucent; mNativeProxy = nCreateProxy(translucent, rootNodePtr); nSetName(mNativeProxy, name); @@ -590,7 +592,12 @@ public final class ThreadedRenderer { * Change the ThreadedRenderer's opacity */ void setOpaque(boolean opaque) { - nSetOpaque(mNativeProxy, opaque && !mHasInsets); + mIsOpaque = opaque && !mHasInsets; + nSetOpaque(mNativeProxy, mIsOpaque); + } + + boolean isOpaque() { + return mIsOpaque; } /** diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java index 9a3d1b9e1905..4a231efcdd07 100644 --- a/core/java/android/view/ViewRootImpl.java +++ b/core/java/android/view/ViewRootImpl.java @@ -41,6 +41,7 @@ import android.content.res.CompatibilityInfo; import android.content.res.Configuration; import android.content.res.Resources; import android.graphics.Canvas; +import android.graphics.Color; import android.graphics.Matrix; import android.graphics.PixelFormat; import android.graphics.Point; @@ -2656,6 +2657,15 @@ public final class ViewRootImpl implements ViewParent, @Override public void onPreDraw(DisplayListCanvas canvas) { + // If mCurScrollY is not 0 then this influences the hardwareYOffset. The end result is we + // can apply offsets that are not handled by anything else, resulting in underdraw as + // the View is shifted (thus shifting the window background) exposing unpainted + // content. To handle this with minimal glitches we just clear to BLACK if the window + // is opaque. If it's not opaque then HWUI already internally does a glClear to + // transparent, so there's no risk of underdraw on non-opaque surfaces. + if (mCurScrollY != 0 && mHardwareYOffset != 0 && mAttachInfo.mThreadedRenderer.isOpaque()) { + canvas.drawColor(Color.BLACK); + } canvas.translate(-mHardwareXOffset, -mHardwareYOffset); } @@ -2673,7 +2683,7 @@ public final class ViewRootImpl implements ViewParent, void outputDisplayList(View view) { view.mRenderNode.output(); if (mAttachInfo.mThreadedRenderer != null) { - ((ThreadedRenderer)mAttachInfo.mThreadedRenderer).serializeDisplayListTree(); + mAttachInfo.mThreadedRenderer.serializeDisplayListTree(); } } diff --git a/packages/SettingsLib/res/values-af/strings.xml b/packages/SettingsLib/res/values-af/strings.xml index 6b4cf8c4434b..1058110d1f75 100644 --- a/packages/SettingsLib/res/values-af/strings.xml +++ b/packages/SettingsLib/res/values-af/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Gekoppel (geen boodskaptoegang nie)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Gekoppel (geen foon of media nie)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media-oudio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Foonoudio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Lêeroordrag"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Invoertoestel"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internettoegang"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontakdeling"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Gebruik vir kontakdeling"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Deling van internetverbinding"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Boodskaptoegang"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-toegang"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Gebruik hoëgehalte-oudio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Gebruik hoëgehalte-oudio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Gekoppel aan media-oudio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Gekoppel aan foonoudio"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Gekoppel aan lêeroordragbediener"</string> diff --git a/packages/SettingsLib/res/values-am/strings.xml b/packages/SettingsLib/res/values-am/strings.xml index 148aa5c4b449..dfa5aaa726ad 100644 --- a/packages/SettingsLib/res/values-am/strings.xml +++ b/packages/SettingsLib/res/values-am/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ተለያይቷል"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"በመለያየት ላይ..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"በማገናኘት ላይ…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"ተገናኝቷል (ምንም የመልዕክት መዳረሻ የለም)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"ተያይዟል (ምንም ስልክ ወይም ማህደረ መረጃ የለም)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"የማህደረ መረጃ ኦዲዮ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"የስልክ ኦዲዮ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ፋይል ማስተላለፍ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ግቤት መሣሪያ"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"የበይነመረብ ድረስ"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"እውቂያ ማጋራት"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"እውቂያን ለማጋራት ተጠቀም"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"የበይነ መረብ ተያያዥ ማጋሪያ"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"የመልዕክት መዳረሻ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"የሲም መዳረሻ"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ከፍተኛ ጥራት ያለውን ኦዲዮ ተጠቀም፦ <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ከፍተኛ ጥራት ያለውን ኦዲዮ ተጠቀም"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"ወደ ማህደረ መረጃ አውዲዮ ተያይዟል"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ወደ ስልክ አውዲዮ ተያይዟል"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ወደ ፋይል ዝውውር አገልጋይ ተያይዟል"</string> diff --git a/packages/SettingsLib/res/values-ar/strings.xml b/packages/SettingsLib/res/values-ar/strings.xml index 6d97fa1c5bc7..343c82f71018 100644 --- a/packages/SettingsLib/res/values-ar/strings.xml +++ b/packages/SettingsLib/res/values-ar/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"غير متصل"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"جارٍ قطع الاتصال..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"جارٍ الاتصال…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"تم الاتصال (يتعذر الدخول إلى الرسائل)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"متصل (بجهاز غير الهاتف أو الوسائط)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"الإعدادات الصوتية للوسائط"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"الإعدادات الصوتية للهاتف"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"نقل الملف"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"جهاز الإرسال"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"الدخول إلى الإنترنت"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"مشاركة جهة الاتصال"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"استخدام مع مشاركة جهة الاتصال"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"مشاركة اتصال الإنترنت"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"الدخول إلى الرسائل"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"الوصول إلى شريحة SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"استخدام صوت عالي الجودة: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"استخدام صوت عالي الجودة"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"متصل بالإعدادات الصوتية للوسائط"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"متصل بالإعدادات الصوتية للهاتف"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"متصل بخادم نقل الملف"</string> diff --git a/packages/SettingsLib/res/values-az/strings.xml b/packages/SettingsLib/res/values-az/strings.xml index 2b282a7719ca..be22538f2842 100644 --- a/packages/SettingsLib/res/values-az/strings.xml +++ b/packages/SettingsLib/res/values-az/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Qoşulu (mesaj girişi yoxdur)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Bağlantı yaradılıb (telefon və ya media deyil)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefon audio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Fayl transferi"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Daxiletmə cihazı"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"İnternet girişi"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontakt paylaşımı"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Kontakt paylaşımı üçün istifadə edin"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"internet bağlantı paylaşımı"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Mesaj Girişi"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Girişi"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Yüksək keyfiyyətli audio istifadə edin: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Yüksək keyfiyyətli audio istifadə edin"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Media audioya birləşdirilib"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Telefon audiosuna qoşulu"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Fayl transfer serverinə qoşulu"</string> diff --git a/packages/SettingsLib/res/values-b+sr+Latn/strings.xml b/packages/SettingsLib/res/values-b+sr+Latn/strings.xml index dd655870e961..e8fade22b8a2 100644 --- a/packages/SettingsLib/res/values-b+sr+Latn/strings.xml +++ b/packages/SettingsLib/res/values-b+sr+Latn/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Povezano je (nema pristupa porukama)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Povezano (bez telefona ili medija)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Zvuk medija"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Zvuk telefona"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Prenos datoteke"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Ulazni uređaj"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Pristup Internetu"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Deljenje kontakata"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Koristite za deljenje kontakata"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Deljenje internet veze"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Pristup porukama"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Pristup SIM kartici"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Koristi zvuk visokog kvaliteta: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Koristi zvuk visokog kvaliteta"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Povezano sa zvukom medija"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Povezano sa zvukom telefona"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Povezano sa serverom za prenos datoteka"</string> diff --git a/packages/SettingsLib/res/values-be/strings.xml b/packages/SettingsLib/res/values-be/strings.xml index 67a7b24a9627..c69b3141c7a6 100644 --- a/packages/SettingsLib/res/values-be/strings.xml +++ b/packages/SettingsLib/res/values-be/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Адключана"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Адключэнне..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Злучэнне..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Падлучана (без доступу да паведамленняў)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Падключаны (без тэлефона або носьбіта)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Аўдыё медыяпрылады"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Аудыё тэлефона"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Перадача файлаў"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Прылада ўводу"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Доступ у інтэрнэт"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Абагуленне кантактаў"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Выкарыстоўваць для абагулення кантактаў"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Прадастаўленне доступу да Інтэрнэту"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Доступ да паведамленняў"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Доступ да SIM-карты"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Выбраць аўдыя высокай якасці: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Выбраць аўдыя высокай якасці"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Падключана да аўдыё медыа"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Падключана да аўдыё тэлефона"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Падключаны да серверу перадачы файлаў"</string> diff --git a/packages/SettingsLib/res/values-bg/strings.xml b/packages/SettingsLib/res/values-bg/strings.xml index 3dedfe637c3b..b7713b90eec3 100644 --- a/packages/SettingsLib/res/values-bg/strings.xml +++ b/packages/SettingsLib/res/values-bg/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Изкл."</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Изключва се..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Установява се връзка…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Има връзка (няма достъп до съобщенията)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Свързано (без телефона или мултимедията)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Мултимедийно аудио"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Звук на телефона"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Прехвърляне на файл"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Входно устройство"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Достъп до интернет"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Споделяне на контакти"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Използване за споделяне на контакти"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Споделяне на връзката с интернет"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Достъп до съобщенията"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Достъп до SIM картата"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Използване на висококачествен звук: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Използване на висококачествен звук"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Установена е връзка с медийно аудио"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Връзка със звука на телефона"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Установена е връзка със сървър за трансфер на файлове"</string> diff --git a/packages/SettingsLib/res/values-bn/strings.xml b/packages/SettingsLib/res/values-bn/strings.xml index 8e1640add1b4..7b6cffef47cc 100644 --- a/packages/SettingsLib/res/values-bn/strings.xml +++ b/packages/SettingsLib/res/values-bn/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"সংযোগ বিচ্ছিন্ন করা হয়েছে"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"সংযোগ বিচ্ছিন্ন হচ্ছে..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"সংযুক্ত হচ্ছে..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"সংযুক্ত (কোনো বার্তা অ্যাক্সেস নেই)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"সংযুক্ত (কোনো ফোন বা মিডিয়া নেই)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"মিডিয়া অডিও"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ফোন অডিও"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ফাইল স্থানান্তর"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ইনপুট ডিভাইস"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ইন্টারনেট অ্যাক্সেস"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"পরিচিতি শেয়ার করা"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"পরিচিতি শেয়ার করার কাজে ব্যবহার করুন"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ইন্টারনেট সংযোগ শেয়ার করা হচ্ছে"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"বার্তা অ্যাক্সেস"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"সিম -এর অ্যাক্সেস"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"উচ্চ মানের অডিও ব্যবহার করুন: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"উচ্চ মানের অডিও ব্যবহার করুন"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"মিডিয়া অডিওতে সংযুক্ত রয়েছে"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ফোন অডিওতে সংযুক্ত"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ফাইল স্থানান্তর সার্ভারের সঙ্গে সংযুক্ত"</string> diff --git a/packages/SettingsLib/res/values-bs/strings.xml b/packages/SettingsLib/res/values-bs/strings.xml index eec0b610a5bb..58598a34b070 100644 --- a/packages/SettingsLib/res/values-bs/strings.xml +++ b/packages/SettingsLib/res/values-bs/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Povezano (bez pristupa porukama)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Povezano (bez zvuka telefona ili medija)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Zvuk medija"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Zvuk telefona"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Prenošenje fajla"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Ulazni uređaj"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Pristup internetu"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Dijeljenje kontakta"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Koristi za dijeljenje kontakta"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Dijeljenje internet veze"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Pristup poruci"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Pristup SIM-u"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Koristi visokokvalitetan zvuk: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Koristi visokokvalitetan zvuk"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Povezano sa zvukom medija"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Povezano na zvuk telefona"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Povezan na server za prijenos podataka"</string> diff --git a/packages/SettingsLib/res/values-ca/strings.xml b/packages/SettingsLib/res/values-ca/strings.xml index 5802a7281405..d9cfb9cdb65a 100644 --- a/packages/SettingsLib/res/values-ca/strings.xml +++ b/packages/SettingsLib/res/values-ca/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connectat (no hi ha accés als missatges)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Connectat (sense telèfon o disp. mult.)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Àudio multimèdia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Àudio del telèfon"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferència del fitxer"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositiu d\'entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Accés a Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Compartir contactes"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"S\'utilitza per compartir contactes."</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Connexió compartida a Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Accés al missatge"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Accés a la SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Utilitza àudio d\'alta qualitat: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Utilitza àudio d\'alta qualitat"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Connectat a l\'àudio del mitjà"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Connectat a àudio del telèfon"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Connectat al servidor de transferència de fitxers"</string> diff --git a/packages/SettingsLib/res/values-cs/strings.xml b/packages/SettingsLib/res/values-cs/strings.xml index 231dc07c2e4e..0ea664215a6b 100644 --- a/packages/SettingsLib/res/values-cs/strings.xml +++ b/packages/SettingsLib/res/values-cs/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Připojeno (bez přístupu ke zprávám)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Připojeno (žádný telefon nebo média)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Zvuk médií"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Zvuk telefonu"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Přenos souborů"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Vstupní zařízení"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Přístup k internetu"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Sdílení kontaktů"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Použít ke sdílení kontaktů"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Sdílení internetového připojení"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Přístup ke zprávám"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Přístup k SIM kartě"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Použít vysokou kvalitu zvuku: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Použít vysokou kvalitu zvuku"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Připojeno ke zvukovému médiu"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Připojeno k náhlavní soupravě"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Připojeno k serveru pro přenos dat"</string> diff --git a/packages/SettingsLib/res/values-da/strings.xml b/packages/SettingsLib/res/values-da/strings.xml index 1f6c27cd7a63..5b2f75a03416 100644 --- a/packages/SettingsLib/res/values-da/strings.xml +++ b/packages/SettingsLib/res/values-da/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Forbundet (ingen adgang til meddelelse)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Forbundet (ingen telefon eller medier)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Medielyd"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefonlyd"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Filoverførsel"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Inputenhed"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetadgang"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Deling af kontaktpersoner"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Brug til deling af kontaktpersoner"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Deling af internetforbindelse"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Adgang til meddelelse"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-adgang"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Brug lyd i høj kvalitet: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Brug lyd i høj kvalitet"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Forbundet til medielyd"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Forbundet til telefonlyd"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Forbundet til filoverførselsserver"</string> diff --git a/packages/SettingsLib/res/values-de/strings.xml b/packages/SettingsLib/res/values-de/strings.xml index e717a2d2ba39..729d87262e31 100644 --- a/packages/SettingsLib/res/values-de/strings.xml +++ b/packages/SettingsLib/res/values-de/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Verbunden (ohne Nachrichtenzugriff)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Verbunden (außer Telefon- und Audiomedien)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media-Audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefon-Audio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Dateiübertragung"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Eingabegerät"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetzugriff"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktfreigabe"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Für Kontaktfreigabe nutzen"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Freigabe der Internetverbindung"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Nachrichtenzugriff"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Zugriff auf SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Hohe Audioqualität verwenden: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Hohe Audioqualität verwenden"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Verbunden mit Audiosystem von Medien"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Verbunden mit Audiosystem des Telefons"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Mit Dateiübertragungsserver verbunden"</string> diff --git a/packages/SettingsLib/res/values-el/strings.xml b/packages/SettingsLib/res/values-el/strings.xml index 3ac2d867abb1..fb9d57d6e199 100644 --- a/packages/SettingsLib/res/values-el/strings.xml +++ b/packages/SettingsLib/res/values-el/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Αποσυνδέθηκε"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Αποσύνδεση..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Σύνδεση..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Συνδεδεμένο (χωρίς πρόσβαση μηνύματος)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Συνδεδεμένο (χωρίς τηλέφωνο ή πολυμέσα)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Ήχος πολυμέσων"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Ήχος τηλεφώνου"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Μεταφορά αρχείου"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Συσκευή εισόδου"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Πρόσβαση στο Διαδίκτυο"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Κοινή χρήση επαφών"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Για κοινή χρήση επαφών"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Κοινή χρήση σύνδεσης στο Διαδίκτυο"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Πρόσβαση στο μήνυμα"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Πρόσβαση SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Χρήση ήχου υψηλής ποιότητας: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Χρήση ήχου υψηλής ποιότητας"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Συνδέθηκε σε ήχο πολυμέσων"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Συνδεδεμένο στον ήχο τηλεφώνου"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Συνδεδεμένο σε διακομιστή μεταφοράς αρχείων"</string> diff --git a/packages/SettingsLib/res/values-en-rAU/strings.xml b/packages/SettingsLib/res/values-en-rAU/strings.xml index 644781f4f5cc..e9ff46b1f78a 100644 --- a/packages/SettingsLib/res/values-en-rAU/strings.xml +++ b/packages/SettingsLib/res/values-en-rAU/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connected (no message access)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Connected (no phone or media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Phone audio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"File transfer"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Input device"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internet access"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Contact sharing"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Use for contact sharing"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internet connection sharing"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Message Access"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Access"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Use high-quality audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Use high-quality audio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Connected to media audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Connected to phone audio"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Connected to file-transfer server"</string> diff --git a/packages/SettingsLib/res/values-en-rGB/strings.xml b/packages/SettingsLib/res/values-en-rGB/strings.xml index 644781f4f5cc..e9ff46b1f78a 100644 --- a/packages/SettingsLib/res/values-en-rGB/strings.xml +++ b/packages/SettingsLib/res/values-en-rGB/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connected (no message access)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Connected (no phone or media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Phone audio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"File transfer"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Input device"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internet access"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Contact sharing"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Use for contact sharing"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internet connection sharing"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Message Access"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Access"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Use high-quality audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Use high-quality audio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Connected to media audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Connected to phone audio"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Connected to file-transfer server"</string> diff --git a/packages/SettingsLib/res/values-en-rIN/strings.xml b/packages/SettingsLib/res/values-en-rIN/strings.xml index 644781f4f5cc..e9ff46b1f78a 100644 --- a/packages/SettingsLib/res/values-en-rIN/strings.xml +++ b/packages/SettingsLib/res/values-en-rIN/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connected (no message access)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Connected (no phone or media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Phone audio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"File transfer"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Input device"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internet access"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Contact sharing"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Use for contact sharing"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internet connection sharing"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Message Access"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Access"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Use high-quality audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Use high-quality audio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Connected to media audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Connected to phone audio"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Connected to file-transfer server"</string> diff --git a/packages/SettingsLib/res/values-es-rUS/strings.xml b/packages/SettingsLib/res/values-es-rUS/strings.xml index 86078840c373..a28802beade8 100644 --- a/packages/SettingsLib/res/values-es-rUS/strings.xml +++ b/packages/SettingsLib/res/values-es-rUS/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Conectado (sin acceso a mensajes)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Conectado (sin tel. ni audio multimedia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio multimedia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio del dispositivo"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferencia de archivos"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo de entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acceso a Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Compartir contactos"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Utilizar para compartir contactos"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Compartir conexión a Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acceso a mensajes"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acceso SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Usar audio de alta calidad: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Usar audio de alta calidad"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Conectado al audio multimedia"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Conectado al audio del dispositivo"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Conectado al servidor de transferencia de archivo"</string> diff --git a/packages/SettingsLib/res/values-es/strings.xml b/packages/SettingsLib/res/values-es/strings.xml index 9b094efdfcd4..f3d605394fed 100644 --- a/packages/SettingsLib/res/values-es/strings.xml +++ b/packages/SettingsLib/res/values-es/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Conectado (sin acceso a mensajes)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Conectado (sin teléfono ni multimedia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio multimedia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio del teléfono"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferencia de archivos"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo de entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acceso a Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Compartir contactos"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Usar para compartir contactos"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Compartir conexión a Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acceso a mensajes"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acceso a tarjeta SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Usar audio de alta calidad: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Usar audio de alta calidad"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Conectado al audio del medio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Conectado al audio del teléfono"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Conectado con el servidor de transferencia de archivos"</string> @@ -144,7 +160,7 @@ <string name="choose_profile" msgid="6921016979430278661">"Seleccionar perfil"</string> <string name="category_personal" msgid="1299663247844969448">"Personal"</string> <string name="category_work" msgid="8699184680584175622">"Trabajo"</string> - <string name="development_settings_title" msgid="215179176067683667">"Opciones de desarrollo"</string> + <string name="development_settings_title" msgid="215179176067683667">"Opciones para desarrolladores"</string> <string name="development_settings_enable" msgid="542530994778109538">"Habilitar opciones para desarrolladores"</string> <string name="development_settings_summary" msgid="1815795401632854041">"Establecer opciones de desarrollo de aplicaciones"</string> <string name="development_settings_not_available" msgid="4308569041701535607">"Las opciones de desarrollador no están disponibles para este usuario"</string> diff --git a/packages/SettingsLib/res/values-et/strings.xml b/packages/SettingsLib/res/values-et/strings.xml index 61a018d791ae..9617e614e128 100644 --- a/packages/SettingsLib/res/values-et/strings.xml +++ b/packages/SettingsLib/res/values-et/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Ühendatud (sõnumita juurdepääs)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Ühendatud (pole telefoni ega meediat)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Meedia heli"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefoni heli"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Failiedastus"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Sisendseade"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetti juurdepääs"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontakti jagamine"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Kasutamine kontaktide jagamiseks"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Interneti-ühenduse jagamine"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Juurdepääs sõnumile"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-kaardi juurdepääs"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Kasuta kvaliteetset heli: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Kasuta kvaliteetset heli"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Ühendatud meediumiheliga"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Ühendatud telefoniheliga"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Ühendatud failiedastuse serveriga"</string> diff --git a/packages/SettingsLib/res/values-eu/strings.xml b/packages/SettingsLib/res/values-eu/strings.xml index 5ff1d6b74c48..77e05ef761c5 100644 --- a/packages/SettingsLib/res/values-eu/strings.xml +++ b/packages/SettingsLib/res/values-eu/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Deskonektatuta"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Deskonektatzen…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Konektatzen…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Konektatuta (mezuetarako sarbiderik ez)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Konektatuta (ez dago telef./euskarririk)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Euskarriaren audioa"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefonoaren audioa"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Fitxategi-transferentzia"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Sarrerako gailua"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Interneterako sarbidea"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktuak partekatzea"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Erabili kontaktuak partekatzeko"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Interneteko konexioa partekatzea"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Mezuetarako sarbidea"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM txartelerako sarbidea"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Erabili kalitate handiko audioa: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Erabili kalitate handiko audioa"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Euskarriaren audiora konektatuta"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Telefonoaren audiora konektatuta"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Fitxategi-transferentziako zerbitzarira konektatuta"</string> diff --git a/packages/SettingsLib/res/values-fa/strings.xml b/packages/SettingsLib/res/values-fa/strings.xml index 28bf3c0d96d8..4b0f39bd1305 100644 --- a/packages/SettingsLib/res/values-fa/strings.xml +++ b/packages/SettingsLib/res/values-fa/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"اتصال قطع شد"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"در حال قطع اتصال..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"در حال اتصال…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"متصل (عدم دسترسی به پیام)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"متصل شد (بدون تلفن یا رسانه)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"رسانه صوتی"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"صدای تلفن"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"انتقال فایل"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"دستگاه ورودی"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"دسترسی به اینترنت"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"اشتراکگذاری مخاطب"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"استفاده برای اشتراکگذاری مخاطب"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"اشتراکگذاری اتصال اینترنت"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"دسترسی به پیام"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"دسترسی سیمکارت"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"استفاده از صوت با کیفیت بالا: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"استفاده از صوت با کیفیت بالا"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"به رسانه صوتی متصل شد"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"به تلفن صوتی متصل شد"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"به سرور انتقال فایل متصل شد"</string> diff --git a/packages/SettingsLib/res/values-fi/strings.xml b/packages/SettingsLib/res/values-fi/strings.xml index d56b4a48e462..3f36ea44989d 100644 --- a/packages/SettingsLib/res/values-fi/strings.xml +++ b/packages/SettingsLib/res/values-fi/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Yhdistetty (ei MAP)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Yhdistetty (ei puhelimen/median ääntä)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Median ääni"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Puhelimen ääni"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Tiedostonsiirto"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Syöttölaite"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetyhteys"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Yhteystietojen jakaminen"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Käytä yhteystietojen jakamiseen"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internetyhteyden jakaminen"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"MAP"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-kortin käyttö"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Käytä korkealaatuista ääntä: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Käytä korkealaatuista ääntä"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Yhdistetty median ääneen"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Yhdistetty puhelimen ääneen"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Yhdistetty tiedostonsiirtopalvelimeen"</string> diff --git a/packages/SettingsLib/res/values-fr-rCA/strings.xml b/packages/SettingsLib/res/values-fr-rCA/strings.xml index a9e81df3de61..b2c596c705cb 100644 --- a/packages/SettingsLib/res/values-fr-rCA/strings.xml +++ b/packages/SettingsLib/res/values-fr-rCA/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connecté (sans accès aux messages)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Connecté (sans audio tel./multimédia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Paramètres audio du support"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Paramètres audio du téléphone"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transfert de fichier"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Périphérique d\'entrée"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Accès Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Partage de contact"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Utiliser pour le partage de contacts"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Partage de connexion Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Accès aux messages"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Accès à la carte SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Utiliser l\'audio de haute qualité : <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Utiliser l\'audio de haute qualité"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Connecté aux paramètres audio du média"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Connecté à l\'audio du téléphone"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Connexion au serveur de transfert de fichiers"</string> diff --git a/packages/SettingsLib/res/values-fr/strings.xml b/packages/SettingsLib/res/values-fr/strings.xml index 4de9ffc02134..b726f9df95fc 100644 --- a/packages/SettingsLib/res/values-fr/strings.xml +++ b/packages/SettingsLib/res/values-fr/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connecté (sans accès aux messages)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Connecté (sans audio tel./multimédia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Multimédia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Appels et notifications"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transfert de fichier"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Périphérique d\'entrée"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Accès Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Partage de contacts"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Utiliser pour le partage de contacts"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Partage de connexion Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Accès aux messages"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Accès à la carte SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Utiliser le codec audio haute qualité : <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Utiliser un codec audio haute qualité"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Connecté aux paramètres audio du média"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Connecté aux paramètres audio du téléphone"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Connexion au serveur de transfert de fichiers"</string> diff --git a/packages/SettingsLib/res/values-gl/strings.xml b/packages/SettingsLib/res/values-gl/strings.xml index 9998212daf70..6116f6f02beb 100644 --- a/packages/SettingsLib/res/values-gl/strings.xml +++ b/packages/SettingsLib/res/values-gl/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Conectado (sen acceso ás mensaxes)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Conectado (ningún teléfono nin soporte)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio multimedia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio do teléfono"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferencia de ficheiros"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo de entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acceso a Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Compartir contactos"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Utilizar para compartir contactos"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Uso compartido da conexión a Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acceso ás mensaxes"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acceso á SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Usar audio de alta calidade: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Usar audio de alta calidade"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Conectado ao audio multimedia"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Conectado ao audio do teléfono"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Conectado ao servidor de transferencia de ficheiros"</string> diff --git a/packages/SettingsLib/res/values-gu/strings.xml b/packages/SettingsLib/res/values-gu/strings.xml index ff45b336afa5..9bf91a3cd85c 100644 --- a/packages/SettingsLib/res/values-gu/strings.xml +++ b/packages/SettingsLib/res/values-gu/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ડિસ્કનેક્ટ કર્યું"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ડિસ્કનેક્ટ થઈ રહ્યું છે..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"કનેક્ટ થઈ રહ્યું છે…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"કનેક્ટ કર્યું (કોઇ સંદેશ ઍક્સેસ નથી)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"કનેક્ટ કરેલ (કોઈ ફોન અથવા મીડિયા નથી)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"મીડિયા ઑડિઓ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ફોન ઑડિઓ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ફાઇલ સ્થાનાંતરણ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ઇનપુટ ઉપકરણ"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ઇન્ટરનેટ ઍક્સેસ"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"સંપર્ક શેરિંગ"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"સંપર્ક શેરિંગ માટે ઉપયોગ કરો"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ઇન્ટરનેટ કનેક્શન શેરિંગ"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"સંદેશ ઍક્સેસ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM ઍક્સેસ"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ઉચ્ચ ગુણવત્તાવાળા ઑડિયોનો ઉપયોગ કરો: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ઉચ્ચ ગુણવત્તાવાળા ઑડિયોનો ઉપયોગ કરો"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"મીડિયા ઑડિઓ સાથે કનેક્ટ કર્યુ"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ફોન ઑડિઓ સાથે કનેક્ટ થયાં"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ફાઇલ સ્થાનાંતરણ સેવાથી કનેક્ટ થયાં"</string> diff --git a/packages/SettingsLib/res/values-hi/strings.xml b/packages/SettingsLib/res/values-hi/strings.xml index ed54e34711d9..a7a01ec1b2c6 100644 --- a/packages/SettingsLib/res/values-hi/strings.xml +++ b/packages/SettingsLib/res/values-hi/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"डिस्कनेक्ट किया गया"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"डिस्कनेक्ट हो रहा है..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"कनेक्ट हो रहा है..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"कनेक्ट किया गया (कोई संदेश एक्सेस नहीं)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"कनेक्ट है (फ़ोन या मीडिया नहीं)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"मीडिया ऑडियो"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"फ़ोन ऑडियो"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"फ़ाइल स्थानांतरण"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"इनपुट डिवाइस"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"इंटरनेट पहुंच"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"संपर्क साझाकरण"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"संपर्क साझाकरण के लिए उपयोग करें"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"इंटरनेट कनेक्शन साझाकरण"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"संदेश एक्सेस"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"सिम ऐक्सेस"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"अच्छी गुणवत्ता वाले ऑडियो का उपयोग करें: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"अच्छी गुणवत्ता वाले ऑडियो का उपयोग करें"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"मीडिया ऑडियो से कनेक्ट किया गया"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"फ़ोन ऑडियो से कनेक्ट किया गया"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"फ़ाइल स्थानांतरण सर्वर से कनेक्ट किया गया"</string> diff --git a/packages/SettingsLib/res/values-hr/strings.xml b/packages/SettingsLib/res/values-hr/strings.xml index e6547a2856e4..05f13e464596 100644 --- a/packages/SettingsLib/res/values-hr/strings.xml +++ b/packages/SettingsLib/res/values-hr/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Povezano (bez pristupa porukama)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Povezano (bez telefona ili medija)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Medijski zvuk"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Zvuk telefona"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Prijenos datoteke"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Ulazni uređaj"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Pristup internetu"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Dijeljenje kontakata"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Upotrijebi za dijeljenje kontakata"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Dijeljenje internetske veze"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Pristup porukama"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Pristup SIM-u"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Upotrebljavaj visokokvalitetan audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Upotrebljavaj visokokvalitetan audio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Povezano s medijskim zvukom"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Povezano sa telefonskim zvukom"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Povezano s poslužiteljem za prijenos datoteka"</string> diff --git a/packages/SettingsLib/res/values-hu/strings.xml b/packages/SettingsLib/res/values-hu/strings.xml index bc185bba78af..eab7fc231677 100644 --- a/packages/SettingsLib/res/values-hu/strings.xml +++ b/packages/SettingsLib/res/values-hu/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Csatlakoztatva (nincs üzenet-hozzáférés)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Csatlakoztatva (nincs telefon vagy hordozó)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Média audió"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefon hangja"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Fájlátvitel"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Beviteli eszköz"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetelérés"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Névjegyek megosztása"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Használja a névjegyek megosztására"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internetkapcsolat megosztása"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Üzenet-hozzáférés"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-elérés"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Jó audiominőség használata: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Jó audiominőség használata"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Csatlakoztatva az eszköz hangjához"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Csatlakoztatva a telefon hangjához"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Csatlakozva a fájlküldő szerverhez"</string> diff --git a/packages/SettingsLib/res/values-hy/strings.xml b/packages/SettingsLib/res/values-hy/strings.xml index 6608cc62652e..62e3a2a2e88d 100644 --- a/packages/SettingsLib/res/values-hy/strings.xml +++ b/packages/SettingsLib/res/values-hy/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Անջատված է"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Անջատվում է..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Միանում է..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Միացված է (հաղորդագրությանը մուտք չկա)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Միացված է (առանց հեռախոսի և մեդիայի)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Մեդիա աուդիո"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Հեռախոսի աուդիո"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Ֆայլերի փոխանցում"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Ներմուծման սարք"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Ինտերնետի մուտք"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Կոնտակտի համօգտագործում"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Օգտագործել կոնտակտի համօգտագործման համար"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Ինտերնետ կապի տարածում"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Մուտք հաղորդագրություն"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM քարտի հասանելիություն"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Օգտագործել բարձրորակ ձայն՝ <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Օգտագործել բարձրորակ ձայն"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Միացված է մեդիա աուդիոյին"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Միացված է հեռախոսի ձայնային տվյալներին"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Միացված է ֆայլերի փոխանցման սերվերին"</string> diff --git a/packages/SettingsLib/res/values-in/strings.xml b/packages/SettingsLib/res/values-in/strings.xml index 20cc226c1f1d..5b5b4524a965 100644 --- a/packages/SettingsLib/res/values-in/strings.xml +++ b/packages/SettingsLib/res/values-in/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Tersambung (tidak ada akses pesan)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Terhubung (bukan telepon atau media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio media"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio telepon"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transfer file"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Perangkat masukan"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Akses Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Berbagi kontak"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Gunakan untuk berbagi kontak"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Berbagi sambungan internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Akses Pesan"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Akses SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Gunakan audio berkualitas tinggi: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Gunakan audio berkualitas tinggi"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Tersambung ke media audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Tersambung ke audio ponsel"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Sambungkan ke server transfer file"</string> diff --git a/packages/SettingsLib/res/values-is/strings.xml b/packages/SettingsLib/res/values-is/strings.xml index 286f4fdcce5b..3f9aafd91292 100644 --- a/packages/SettingsLib/res/values-is/strings.xml +++ b/packages/SettingsLib/res/values-is/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Aftengt"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Aftengist…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Tengist…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Tengt (enginn skilaboðaaðgangur)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Tengt (ekki sími eða efnisspilun)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Hljóð efnis"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Hljóð síma"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Skráaflutningur"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Inntakstæki"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetaðgangur"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Deiling tengiliða"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Nota til að deila tengiliðum"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Deiling nettengingar"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Skilaboðaaðgangur"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Aðgangur að SIM-korti"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Nota hágæðahljóð: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Nota hágæðahljóð"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Tengt við hljóðspilun efnis"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Tengt við hljóð símans"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Tengt við skráaflutningsþjón"</string> diff --git a/packages/SettingsLib/res/values-it/strings.xml b/packages/SettingsLib/res/values-it/strings.xml index 151609dbd361..99377e15a83d 100644 --- a/packages/SettingsLib/res/values-it/strings.xml +++ b/packages/SettingsLib/res/values-it/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnesso"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnessione..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Connessione..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Connesso (nessun accesso ai messaggi)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Collegato (telef. o conten. mult. esclusi)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio multimediale"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio telefono"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Trasferimento file"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo di input"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Accesso Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Condivisione contatti"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Usa per condivisione contatti"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Condivisione connessione Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Accesso ai messaggi"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Accesso alla SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Utilizza audio di alta qualità: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Utilizza audio di alta qualità"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Collegato ad audio media"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Collegato ad audio telefono"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Collegato al server di trasferimento file"</string> diff --git a/packages/SettingsLib/res/values-iw/strings.xml b/packages/SettingsLib/res/values-iw/strings.xml index d43542c8e999..3622a25a88f9 100644 --- a/packages/SettingsLib/res/values-iw/strings.xml +++ b/packages/SettingsLib/res/values-iw/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"מנותק"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"מתנתק..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"מתחבר ..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"מחובר (אין גישה להודעות)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"מחובר (ללא טלפון או מדיה)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"אודיו של מדיה"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"אודיו של טלפון"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"העברת קבצים"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"מכשיר קלט"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"גישה לאינטרנט"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"שיתוף אנשי קשר"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"השתמש עבור שיתוף אנשי קשר"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"שיתוף חיבור לאינטרנט"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"גישה להודעות"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"גישה ל-SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"השתמש באודיו באיכות גבוהה: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"השתמש באודיו באיכות גבוהה"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"מחובר לאודיו של מדיה"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"מחובר לאודיו של הטלפון"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"מחובר לשרת העברת קבצים"</string> diff --git a/packages/SettingsLib/res/values-ja/strings.xml b/packages/SettingsLib/res/values-ja/strings.xml index 4bdfc536de34..54eedc3acb49 100644 --- a/packages/SettingsLib/res/values-ja/strings.xml +++ b/packages/SettingsLib/res/values-ja/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"切断"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"切断中..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"接続中..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"接続済み(メッセージへのアクセスなし)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"接続済み(電話/メディアを除く)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"メディアの音声"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"電話の音声"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ファイル転送"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"入力デバイス"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"インターネットアクセス"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"連絡先の共有"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"連絡先の共有に使用"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"インターネット接続の共有"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"メッセージへのアクセス"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIMアクセス"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"高品質音声を使用: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"高品質音声を使用"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"メディアの音声に接続"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"携帯電話の音声に接続"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ファイル転送サーバーに接続"</string> diff --git a/packages/SettingsLib/res/values-ka/strings.xml b/packages/SettingsLib/res/values-ka/strings.xml index ce8b25a11433..068cfef77542 100644 --- a/packages/SettingsLib/res/values-ka/strings.xml +++ b/packages/SettingsLib/res/values-ka/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"კავშირი გაწყვეტილია"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"მიმდინარეობს გათიშვა…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"მიმდინარეობს დაკავშირება…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"დაკავშირებულია (შეტყობინებაზე წვდომა არ არის)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"დაკავშირება (გარდა ტელეფონისა და მედიისა)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"მედია აუდიო"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ტელეფონის აუდიო"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ფაილების გადაცემა"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"შეყვანის მოწყობილობა"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ინტერნეტზე წვდომა"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"კონტაქტის გაზიარება"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"კონტაქტის გაზიარებისთვის გამოყენება"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ინტერნეტ კავშირის გაზიარება"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"შეტყობინებებზე წვდომა"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM წვდომა"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"მაღალხარისხიანი აუდიოს გამოყენება: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"მაღალხარისხიანი აუდიოს გამოყენება"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"დაკავშირებულია აუდიო მულტიმედიურ სისტემასთან"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"დაკავშირებულია ტელეფონის აუდიო მოწყობილობასთან"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"დაკავშირებულია ფაილების გადაცემის სერვერთან"</string> diff --git a/packages/SettingsLib/res/values-kk/strings.xml b/packages/SettingsLib/res/values-kk/strings.xml index e1373b5c7149..cc52197551db 100644 --- a/packages/SettingsLib/res/values-kk/strings.xml +++ b/packages/SettingsLib/res/values-kk/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ажыратылған"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ажыратылуда…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Жалғауда..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Жалғанған (хабарлар қол жетімсіз)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Жалғанған (телефон және медиа жоқ)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Meдиа аудиосы"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Телефон аудиосы"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Файл жіберу"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Кіріс құрылғысы"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Интернетке қосылу"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Контактіні бөлісу"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Контактіні бөлісу үшін пайдалану"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Интернет байланысын ортақ қолдану"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Хабарға кіру"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM картасына кіру"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Жоғары сапалы аудио дыбысын пайдалану: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Жоғары сапалы аудио дыбысын пайдалану"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Медиа аудиосына жалғанған"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Телефон аудиосына қосылған"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Файл жіберу серверіне жалғанған"</string> diff --git a/packages/SettingsLib/res/values-km/strings.xml b/packages/SettingsLib/res/values-km/strings.xml index f7e8355ec399..03d8c09dfc8a 100644 --- a/packages/SettingsLib/res/values-km/strings.xml +++ b/packages/SettingsLib/res/values-km/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"បានផ្ដាច់"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"កំពុងផ្ដាច់…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"កំពុងតភ្ជាប់…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"បានភ្ជាប់ (គ្មានការចូលដំណើរការសារ)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"បានតភ្ជាប់ (គ្មានទូរស័ព្ទ ឬមេឌៀ)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"សំឡេងមេឌៀ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"សំឡេងទូរស័ព្ទ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ផ្ទេរឯកសារ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ឧបករណ៍បញ្ចូល"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ចូលអ៊ីនធឺណិត"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"ការចែករំលែកទំនាក់ទំនង"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"ប្រើសម្រាប់ការចែករំលែកទំនាក់ទំនង"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ចែករំលែកការតភ្ជាប់អ៊ីនធឺណិត"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"ចូលដំណើរការសារ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"ការចូលដំណើរការស៊ីម"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ប្រើសំឡេងគុណភាពខ្ពស់៖ <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ប្រើសំឡេងគុណភាពខ្ពស់"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"បានភ្ជាប់ទៅអូឌីយ៉ូមេឌៀ"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"តភ្ជាប់ទៅអូឌីយ៉ូទូរស័ព្ទ"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"បានតភ្ជាប់ទៅម៉ាស៊ីនមេផ្ទេរឯកសារ"</string> diff --git a/packages/SettingsLib/res/values-kn/strings.xml b/packages/SettingsLib/res/values-kn/strings.xml index b8ace58e6584..893032cb18f4 100644 --- a/packages/SettingsLib/res/values-kn/strings.xml +++ b/packages/SettingsLib/res/values-kn/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗಿದೆ"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗುತ್ತಿದೆ..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"ಸಂಪರ್ಕಗೊಳಿಸಲಾಗುತ್ತಿದೆ..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"ಸಂಪರ್ಕಪಡಿಸಲಾಗಿದೆ (ಯಾವುದೇ ಸಂದೇಶ ಪ್ರವೇಶವಿಲ್ಲ)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"ಸಂಪರ್ಕಗೊಂಡಿದೆ (ಫೋನ್ ಅಥವಾ ಮಾಧ್ಯಮವಿಲ್ಲ)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"ಮಾಧ್ಯಮ ಆಡಿಯೋ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ಫೋನ್ ಆಡಿಯೋ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ಫೈಲ್ ವರ್ಗಾವಣೆ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ಇನ್ಪುಟ್ ಸಾಧನ"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ಇಂಟರ್ನೆಟ್ ಪ್ರವೇಶ"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"ಸಂಪರ್ಕ ಹಂಚಿಕೆ"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"ಸಂಪರ್ಕ ಹಂಚಿಕೆಗಾಗಿ ಬಳಸಿ"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ಇಂಟರ್ನೆಟ್ ಸಂಪರ್ಕ ಹಂಚಿಕೊಳ್ಳುವಿಕೆ"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"ಸಂದೇಶ ಪ್ರವೇಶಿಸುವಿಕೆ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"ಸಿಮ್ ಪ್ರವೇಶ"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ಉನ್ನತ ಗುಣಮಟ್ಟದ ಆಡಿಯೋ ಬಳಸಿ: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ಉನ್ನತ ಗುಣಮಟ್ಟದ ಆಡಿಯೋ ಬಳಸಿ"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"ಮಾಧ್ಯಮ ಆಡಿಯೋಗೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ಫೋನ್ ಆಡಿಯೋಗೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ಫೈಲ್ ವರ್ಗಾವಣೆ ಸರ್ವರ್ಗೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"</string> diff --git a/packages/SettingsLib/res/values-ko/strings.xml b/packages/SettingsLib/res/values-ko/strings.xml index 6d4e64eb9829..74d4d1c9841c 100644 --- a/packages/SettingsLib/res/values-ko/strings.xml +++ b/packages/SettingsLib/res/values-ko/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"연결 끊김"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"연결을 끊는 중…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"연결 중…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"연결됨(메시지 액세스 없음)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"연결됨(전화 또는 미디어 없음)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"미디어 오디오"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"휴대폰 오디오"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"파일 전송"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"입력 장치"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"인터넷 액세스"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"연락처 공유"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"연락처 공유용"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"인터넷 연결 공유"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"메시지 액세스"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM 액세스"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"고품질 오디오 사용: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"고품질 오디오 사용"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"미디어 오디오에 연결됨"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"휴대전화 오디오에 연결됨"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"파일 전송 서버에 연결됨"</string> diff --git a/packages/SettingsLib/res/values-ky/strings.xml b/packages/SettingsLib/res/values-ky/strings.xml index 8289c097ef57..99895358d98d 100644 --- a/packages/SettingsLib/res/values-ky/strings.xml +++ b/packages/SettingsLib/res/values-ky/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Ажыратылган"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Ажыратылууда…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Туташууда…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Байланышта (билдирүү алмашуу жок)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Туташып турат (телефониясыз же медиасыз)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Аудио"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Телефон"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Файл алмашуу"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Киргизүү түзмөгү"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Интернетке мүмкүнчүлүк алуу"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Байланышты бөлүшүү"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Байланышты бөлүшүү үчүн колдонуу"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Интернет байланышын бөлүшүү"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Билдирүү алмашуу"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM картаны пайдалануу мүмкүнчүлүгү"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Жогорку сапаттагы аудио кодекти колдонуу: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Жогорку сапаттагы аудио кодекти колдонуу"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Медиа аудиого туташты"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Телефон аудиосуна туташты"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Файл өткөрүү серверине туташты"</string> diff --git a/packages/SettingsLib/res/values-lo/strings.xml b/packages/SettingsLib/res/values-lo/strings.xml index 4a64d07249da..3c2361816233 100644 --- a/packages/SettingsLib/res/values-lo/strings.xml +++ b/packages/SettingsLib/res/values-lo/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ຕັດການເຊື່ອມຕໍ່ແລ້ວ"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ກຳລັງຢຸດການເຊື່ອມຕໍ່..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"ກຳລັງເຊື່ອມຕໍ່..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"ເຊື່ອມຕໍ່ (ບໍ່ມີການເຂົ້າເຖິງຂໍ້ຄວາມ)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"ເຊື່ອມຕໍ່ແລ້ວ (ບໍ່ມີໂທລະສັບ ຫຼືສື່)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"ສຽງ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ສຽງໂທລະສັບ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ການໂອນຍ້າຍໄຟລ໌"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ອຸປະກອນປ້ອນຂໍ້ມູນ"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ການເຂົ້າເຖິງອິນເຕີເນັດ"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"ການແບ່ງປັນລາຍຊື່ຜູ່ຕິດຕໍ່"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"ໃຊ້ສຳລັບການແບ່ງປັນລາຍຊື່ຜູ່ຕິດຕໍ່"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ການແບ່ງປັນການເຊື່ອມຕໍ່ອິນເຕີເນັດ"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"ການເຂົ້າເຖິງຂໍ້ຄວາມ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"ການເຂົ້າເຖິງ SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ໃຊ້ສຽງຄຸນນະພາບສູງ: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ໃຊ້ສຽງຄຸນນະພາບສູງ"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"ເຊື່ອມຕໍ່ກັບສື່ດ້ານສຽງແລ້ວ"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ເຊື່ອມຕໍ່ກັບສຽງໂທລະສັບແລ້ວ"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ເຊື່ອມຕໍ່ກັບເຊີບເວີໂອນຍ້າຍໄຟລ໌ແລ້ວ"</string> diff --git a/packages/SettingsLib/res/values-lt/strings.xml b/packages/SettingsLib/res/values-lt/strings.xml index e9bf13923a01..865975438bb0 100644 --- a/packages/SettingsLib/res/values-lt/strings.xml +++ b/packages/SettingsLib/res/values-lt/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Prisijungta (be prieigos prie pranešimų)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Prijungta (be telefono ar laikmenos)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Laikmenos garsas"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefono garsas"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Failo perkėlimas"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Įvesties įrenginys"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Prieiga prie interneto"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktų bendrinimas"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Naudoti kontaktams bendrinti"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Interneto ryšio bendrinimas"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Prieiga prie pranešimų"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM prieiga"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Naudoti aukštos kokybės garsą: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Naudoti aukštos kokybės garsą"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Prijungta prie medijos garso įrašo"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Prijungta prie telefono garso"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Prijungta prie failų perkėlimo serverio"</string> diff --git a/packages/SettingsLib/res/values-lv/strings.xml b/packages/SettingsLib/res/values-lv/strings.xml index bb2da263b58a..54310a6ff73a 100644 --- a/packages/SettingsLib/res/values-lv/strings.xml +++ b/packages/SettingsLib/res/values-lv/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Savienots (nav piekļuves ziņojumam)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Sav. ir izveidots (nav tel. vai multiv.)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Multivides audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Tālruņa audio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Failu pārsūtīšana"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Ievades ierīce"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Interneta piekļuve"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktpersonas informācijas kopīgošana"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Izmantot kontaktpersonas informācijas kopīgošanai"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Interneta savienojuma koplietošana"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Piekļuve ziņojumam"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Piekļuve SIM kartei"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Izmantot augstas kvalitātes audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Izmantot augstas kvalitātes audio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Savienots ar multivides audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Savienots ar tālruņa audio"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Savienots ar failu pārsūtīšanas serveri"</string> diff --git a/packages/SettingsLib/res/values-mk/strings.xml b/packages/SettingsLib/res/values-mk/strings.xml index fc4a1741dde1..e33e7a0e1db2 100644 --- a/packages/SettingsLib/res/values-mk/strings.xml +++ b/packages/SettingsLib/res/values-mk/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Исклучено"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Се исклучува..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Се поврзува..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Поврзано (без порака за пристап)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Поврзан (без телефон или медиуми)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Аудио на медиуми"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Аудио на телефон"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Пренос на датотека"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Влезен уред"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Пристап на интернет"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Споделување контакти"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Користи за споделување контакти"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Споделување конекција на интернет"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Порака за пристап"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Пристап до SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Користи висококвалитетно аудио: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Користи висококвалитетно аудио"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Поврзан со аудио на медиуми"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Поврзан со аудио на телефон"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Поврзан со сервер за пренос на датотеки"</string> diff --git a/packages/SettingsLib/res/values-ml/strings.xml b/packages/SettingsLib/res/values-ml/strings.xml index 8a383238d026..3a9435eb4556 100644 --- a/packages/SettingsLib/res/values-ml/strings.xml +++ b/packages/SettingsLib/res/values-ml/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"വിച്ഛേദിച്ചു"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"വിച്ഛേദിക്കുന്നു..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"കണക്റ്റുചെയ്യുന്നു..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"കണക്റ്റുചെയ്തു (സന്ദേശ ആക്സസ്സില്ല)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"കണക്റ്റുചെയ്തു (ഫോണോ മീഡിയയോ അല്ല)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"മീഡിയ ഓഡിയോ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ഫോൺ ഓഡിയോ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ഫയൽ കൈമാറൽ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ഇൻപുട്ട് ഉപകരണം"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ഇന്റർനെറ്റ് ആക്സസ്സ്"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"കോൺടാക്റ്റ് പങ്കിടൽ"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"കോൺടാക്റ്റ് പങ്കിടലിനായി ഉപയോഗിക്കുക"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ഇന്റർനെറ്റ് കണക്ഷൻ പങ്കിടൽ"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"ആക്സസ്സ് നിയന്ത്രിക്കുക"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM ആക്സസ്"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ഉയർന്ന നിലവാരമുള്ള ഓഡിയോ ഉപയോഗിക്കുക: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ഉയർന്ന നിലവാരമുള്ള ഓഡിയോ ഉപയോഗിക്കുക"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"മീഡിയ ഓഡിയോയിലേക്ക് കണക്റ്റുചെയ്തു"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ഫോൺ ഓഡിയോയിൽ കണക്റ്റുചെയ്തു"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ഫയൽ കൈമാറ്റ സെർവറിലേക്ക് കണക്റ്റുചെയ്തു"</string> diff --git a/packages/SettingsLib/res/values-mn/strings.xml b/packages/SettingsLib/res/values-mn/strings.xml index 5f777625ba29..02266dac38ba 100644 --- a/packages/SettingsLib/res/values-mn/strings.xml +++ b/packages/SettingsLib/res/values-mn/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Салгагдсан"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Салгаж байна…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Холбогдож байна..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Холбогдсон (зурвас хандалт байхгүй)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Холбогдсон (утас буюу медиа байхгүй)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Медиа аудио"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Утасны аудио"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Файл дамжуулалт"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Оруулах төхөөрөмж"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Интернэт хандалт"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Харилцагч хуваалцах"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Харилцагч хуваалцахад ашиглах"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Интернэт холболтыг хуваалцах"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Зурвас хандалт"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Хандалт"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Өндөр чанарын аудио ашиглах: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Өндөр чанарын аудио ашиглах"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Медиа аудиод холбогдсон"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Утасны аудид холбогдсон"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Файл дамжуулах серверт холбогдсон"</string> diff --git a/packages/SettingsLib/res/values-mr/strings.xml b/packages/SettingsLib/res/values-mr/strings.xml index dc4f42cf3a77..47376ebe343f 100644 --- a/packages/SettingsLib/res/values-mr/strings.xml +++ b/packages/SettingsLib/res/values-mr/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"डिस्कनेक्ट केले"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"डिस्कनेक्ट करत आहे..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"कनेक्ट करीत आहे..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"कनेक्ट केलेले आहे (कोणत्याही संदेशामध्ये प्रवेश नाही)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"कनेक्ट केले (फोन किंवा मीडिया नाही)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"मीडिया ऑडिओ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"फोन ऑडिओ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"फाइल स्थानांतरण"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"इनपुट डिव्हाइस"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"इंटरनेट प्रवेश"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"संपर्क सामायिकरण"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"संपर्क सामायिकरणासाठी वापरा"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"इंटरनेट कनेक्शन सामायिकरण"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"संदेशात प्रवेश"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"सिम प्रवेश"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"उच्च दर्जाचा ऑडिओ वापरा: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"उच्च दर्जाचा ऑडिओ वापरा"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"मीडिया ऑडिओवर कनेक्ट केले"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"फोन ऑडिओ वर कनेक्ट केले"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"फाईल स्थानांतर सर्व्हरवर कनेक्ट केले"</string> diff --git a/packages/SettingsLib/res/values-ms/strings.xml b/packages/SettingsLib/res/values-ms/strings.xml index 81bdb2614fa1..3f0a0612a3aa 100644 --- a/packages/SettingsLib/res/values-ms/strings.xml +++ b/packages/SettingsLib/res/values-ms/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Disambungkan (tiada akses mesej)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Disambungkan (tiada telefon atau media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio media"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio telefon"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Pemindahan fail"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Peranti input"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Akses Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Perkongsian kenalan"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Gunakan untuk perkongsian kenalan"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Perkongsian sambungan Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Akses Mesej"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Akses SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Gunakan audio berkualiti tinggi: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Gunakan audio berkualiti tinggi"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Disambungkan ke audio media"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Disambungkan ke audio telefon"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Bersambung ke pelayan pemindahan fail"</string> diff --git a/packages/SettingsLib/res/values-my/strings.xml b/packages/SettingsLib/res/values-my/strings.xml index 882894c2f35a..89712d956d11 100644 --- a/packages/SettingsLib/res/values-my/strings.xml +++ b/packages/SettingsLib/res/values-my/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ချိတ်ဆက်မှုပြတ်တောက်သည်"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"အဆက်အသွယ်ဖြတ်တောက်သည်"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"ချိတ်ဆက်နေသည်"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"ချိတ်ဆက်မိသည် (သတင်းရယူမှုမရှိ)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"ချိတ်ဆက်ပြီး (ဖုန်း သို့ မီဒီယာမဟုတ်ပါ)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"မီဒီယာ အသံ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ဖုန်းအသံ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ဖိုင်လွဲပြောင်းခြင်း"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ထည့်သွင်းသော စက်"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"အင်တာနက်ချိတ်ဆက်ခြင်း"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"အဆက်အသွယ်ကို မျှဝေရန်"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"အဆက်အသွယ်ကို မျှဝေရန် အတွက် သုံးရန်"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"အင်တာနက်ဆက်သွယ်မှု မျှဝေခြင်း"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"သတင်းရယူမှု"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM အသုံးပြုခြင်း"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"အရည်အသွေးမြင့် အသံအမျိုးအစားကို သုံးရန်− <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"အရည်အသွေးမြင့် အသံအမျိုးအစားကိုသုံးရန်"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"မီဒီယာအသံအား ချိတ်ဆက်ရန်"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ဖုန်းအသံအား ချိတ်ဆက်ရန်"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ဖိုင်လွှဲပြောင်းမည့်ဆာဗာနှင့် ချိတ်ဆက်ထားပြီး"</string> diff --git a/packages/SettingsLib/res/values-nb/strings.xml b/packages/SettingsLib/res/values-nb/strings.xml index 2775e50b9a1e..d2807ce86a82 100644 --- a/packages/SettingsLib/res/values-nb/strings.xml +++ b/packages/SettingsLib/res/values-nb/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Tilkoblet (ingen meldingstilgang)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Tilkoblet (ingen telefon eller media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Medielyd"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefonlyd"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Filoverføring"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Inndataenhet"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internett-tilgang"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktdeling"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Bruk til kontaktdeling"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Deling av Internett-tilkobling"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Meldingstilgang"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Tilgang til SIM-kortet"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Bruk lyd av høy kvalitet: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Bruk lyd av høy kvalitet"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Koblet til medielyd"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Koblet til telefonlyd"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Koblet til tjener for filoverføring"</string> diff --git a/packages/SettingsLib/res/values-ne/strings.xml b/packages/SettingsLib/res/values-ne/strings.xml index cfc66516b767..f830a878cea2 100644 --- a/packages/SettingsLib/res/values-ne/strings.xml +++ b/packages/SettingsLib/res/values-ne/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"विच्छेदन गरियो"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"जडान हटाइँदै ..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"जडान हुँदै..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"जडित छ (सन्देशमा पहुँच छैन)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"जडित (फोन वा मिडिया छैन)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"मिडिया अडियो"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"फोन अडियो"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"फाइल स्थानान्तरण"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"इनपुट उपकरण"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"इन्टरनेट पहुँच"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"सम्पर्क साझेदारी"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"सम्पर्क साझेदारीका लागि प्रयोग"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"इन्टरनेट जडान साझेदारी गर्दै"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"सन्देश पहुँच"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM पहुँच"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"उच्च गुणस्तरको अडियो प्रयोग गर्नुहोस्: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"उच्च गुणस्तरको अडियो प्रयोग गर्नुहोस्"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"मिडिया अडियोसँग जडित"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"फोन अडियोमा जडान गरियो"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"फाइल ट्रान्सफर सर्भरमा जडान गरियो"</string> diff --git a/packages/SettingsLib/res/values-nl/strings.xml b/packages/SettingsLib/res/values-nl/strings.xml index 4756d696bc1d..66258801ab8e 100644 --- a/packages/SettingsLib/res/values-nl/strings.xml +++ b/packages/SettingsLib/res/values-nl/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Verbonden (geen toegang tot berichten)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Gekoppeld (geen telefoon of media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media-audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefoonaudio"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Bestandsoverdracht"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Invoerapparaat"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internettoegang"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Contacten delen"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Gebruiken voor contacten delen"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internetverbinding delen"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Toegang tot berichten"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Sim-toegang"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Audio van hoge kwaliteit gebruiken: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Audio van hoge kwaliteit gebruiken"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Verbonden met audio van medium"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Verbonden met audio van telefoon"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Verbonden met server voor bestandsoverdracht"</string> diff --git a/packages/SettingsLib/res/values-pa/strings.xml b/packages/SettingsLib/res/values-pa/strings.xml index 36b513705af7..8119ba55e54f 100644 --- a/packages/SettingsLib/res/values-pa/strings.xml +++ b/packages/SettingsLib/res/values-pa/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ਡਿਸਕਨੈਕਟ ਕੀਤਾ"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"ਡਿਸਕਨੈਕਟ ਕਰ ਰਿਹਾ ਹੈ..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"ਕਨੈਕਟ ਕਰ ਰਿਹਾ ਹੈ…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"ਕਨੈਕਟ ਕੀਤਾ (ਕੋਈ ਸੁਨੇਹਾ ਪਹੁੰਚ ਨਹੀਂ)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"ਕਨੈਕਟ ਕੀਤਾ (ਕੋਈ ਫੋਨ ਜਾਂ ਮੀਡੀਆ ਨਹੀਂ)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"ਮੀਡੀਆ ਔਡੀਓ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ਫੋਨ ਔਡੀਓ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ਫਾਈਲ ਟ੍ਰਾਂਸਫਰ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ਇਨਪੁਟ ਡੀਵਾਈਸ"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ਇੰਟਰਨੈਟ ਪਹੁੰਚ"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"ਸੰਪਰਕ ਸ਼ੇਅਰਿੰਗ"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"ਸੰਪਰਕ ਸ਼ੇਅਰਿੰਗ ਲਈ ਵਰਤੋ"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ਇੰਟਰਨੈਟ ਕਨੈਕਸ਼ਨ ਸ਼ੇਅਰਿੰਗ"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"ਸੁਨੇਹਾ ਪਹੁੰਚ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM ਪਹੁੰਚ"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ਉੱਚ ਗੁਣਵੱਤਾ ਔਡੀਓ ਵਰਤੋ: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ਉੱਚ ਗੁਣਵੱਤਾ ਔਡੀਓ ਵਰਤੋ"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"ਮੀਡੀਆ ਔਡੀਓ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ਫੋਨ ਔਡੀਓ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ਫਾਈਲ ਟ੍ਰਾਂਸਫਰ ਸਰਵਰ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> diff --git a/packages/SettingsLib/res/values-pl/strings.xml b/packages/SettingsLib/res/values-pl/strings.xml index 762b82b92c39..ceee1e36cdbd 100644 --- a/packages/SettingsLib/res/values-pl/strings.xml +++ b/packages/SettingsLib/res/values-pl/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Połączono (brak dostępu do wiadomości)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Połączono (bez telefonu ani multimediów)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Dźwięk multimediów"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Dźwięk telefonu"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Przesyłanie pliku"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Urządzenie wejściowe"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Dostęp do internetu"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Udostępnianie kontaktów"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Używaj do udostępniania kontaktów"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Udostępnianie połączenia internetowego"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Dostęp do wiadomości"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Dostęp do karty SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Korzystaj z dźwięku wysokiej jakości: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Korzystaj z dźwięku wysokiej jakości"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Połączono z funkcją audio multimediów"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Połączono z funkcją audio telefonu"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Połączono z serwerem transferu plików"</string> diff --git a/packages/SettingsLib/res/values-pt-rBR/strings.xml b/packages/SettingsLib/res/values-pt-rBR/strings.xml index 170f396219e8..e34c41eed495 100644 --- a/packages/SettingsLib/res/values-pt-rBR/strings.xml +++ b/packages/SettingsLib/res/values-pt-rBR/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Conectado (sem acesso a mensagens)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Conectado (sem telefone ou mídia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Áudio da mídia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Áudio do smartphone"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferência de arquivo"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo de entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acesso à Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Compartilhamento de contatos"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Usar para compartilhamento de contatos"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Compartilhamento de conexão à Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acesso a mensagens"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acesso SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Usar áudio de alta qualidade: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Usar áudio de alta qualidade"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Conectado ao áudio da mídia"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Conectado ao áudio do smartphone"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Conectado ao servidor de transferência de arquivo"</string> diff --git a/packages/SettingsLib/res/values-pt-rPT/strings.xml b/packages/SettingsLib/res/values-pt-rPT/strings.xml index 135a7d4a18ec..f68fe367546d 100644 --- a/packages/SettingsLib/res/values-pt-rPT/strings.xml +++ b/packages/SettingsLib/res/values-pt-rPT/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Ligado (sem acesso a mensagens)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Ligado (sem telefone ou multimédia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Áudio de multimédia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Áudio do telemóvel"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferência do ficheiro"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo de entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acesso à internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Partilha de contactos"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Utilizar para a partilha de contactos"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Partilha da ligação à internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acesso a mensagens"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acesso ao SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Utilizar áudio de alta qualidade: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Utilizar áudio de alta qualidade"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Ligado ao áudio de multimédia"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Ligado ao áudio do telefone"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Ligado ao servidor de transferência de ficheiros"</string> diff --git a/packages/SettingsLib/res/values-pt/strings.xml b/packages/SettingsLib/res/values-pt/strings.xml index 170f396219e8..e34c41eed495 100644 --- a/packages/SettingsLib/res/values-pt/strings.xml +++ b/packages/SettingsLib/res/values-pt/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Desconectado"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Desconectando…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Conectando..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Conectado (sem acesso a mensagens)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Conectado (sem telefone ou mídia)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Áudio da mídia"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Áudio do smartphone"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferência de arquivo"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispositivo de entrada"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acesso à Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Compartilhamento de contatos"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Usar para compartilhamento de contatos"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Compartilhamento de conexão à Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acesso a mensagens"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acesso SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Usar áudio de alta qualidade: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Usar áudio de alta qualidade"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Conectado ao áudio da mídia"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Conectado ao áudio do smartphone"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Conectado ao servidor de transferência de arquivo"</string> diff --git a/packages/SettingsLib/res/values-ro/strings.xml b/packages/SettingsLib/res/values-ro/strings.xml index 5f8329488192..effc0083b561 100644 --- a/packages/SettingsLib/res/values-ro/strings.xml +++ b/packages/SettingsLib/res/values-ro/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Conectat (fără acces la mesaje)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Conectat (fără telefon sau conț. media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Conținut media audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Componenta audio a telefonului"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transfer de fișiere"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Dispozitiv de intrare"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Acces internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Acces la Agendă"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Utilizați pentru a permite accesul la Agendă"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Distribuirea conexiunii la internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Acces la mesaje"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Acces la SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Utilizați conținut audio de înaltă calitate: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Utilizați conținut audio de înaltă calitate"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Conectat la profilul pentru conținut media audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Conectat la componenta audio a telefonului"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Conectat la serverul de transfer de fișiere"</string> diff --git a/packages/SettingsLib/res/values-ru/strings.xml b/packages/SettingsLib/res/values-ru/strings.xml index bd58dcf8de2d..640d3b547af5 100644 --- a/packages/SettingsLib/res/values-ru/strings.xml +++ b/packages/SettingsLib/res/values-ru/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Нет подключения"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Отключение..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Подключение..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Подключено (нет доступа к сообщениям)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Подключено (кроме HSP/HFP/A2DP)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Профиль A2DP"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Профиль HSP/HFP"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Профиль OPP"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Профиль HID"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Интернет-доступ"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Обмен контактами"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Использовать для обмена контактами"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Профиль PAN"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Доступ к сообщениям"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Доступ к SIM-карте"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Использовать аудио высокого качества: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Использовать аудио высокого качества"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Подключено к мультимедийному аудиоустройству"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Подключено к аудиоустройству телефона"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Установлено подключение к серверу передачи файлов"</string> diff --git a/packages/SettingsLib/res/values-si/strings.xml b/packages/SettingsLib/res/values-si/strings.xml index 6d49fe6fe212..5430b45b2c28 100644 --- a/packages/SettingsLib/res/values-si/strings.xml +++ b/packages/SettingsLib/res/values-si/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"විසන්ධි වුණි"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"විසන්ධි වෙමින්…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"සම්බන්ධ වෙමින්…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"සම්බන්ධිතයි (පණිවිඩ ප්රවේශ නොමැත)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"සම්බන්ධිතයි (දුරකතනයක් හෝ මාධ්යයක් නැත)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"මාධ්ය ශ්රව්ය"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"දුරකථන ශ්රව්ය"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ගොනු හුවමාරුව"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ආදාන උපාංගය"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"අන්තර්ජාල ප්රවේශය"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"සම්බන්ධතා බෙදාගැනීම"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"සම්බන්ධතා බෙදාගැනීම සඳහා භාවිතා කිරීම"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"අන්තර්ජාල සම්බන්ධතා බෙදාගැනීම"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"පණිවිඩ ප්රවේශය"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM ප්රවේශය"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ඉහළ ගුණත්වයේ ශ්රව්ය භාවිත කරන්න: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ඉහළ ගුණත්වයේ ශ්රව්ය භාවිත කරන්න"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"මාධ්ය ශ්රව්යට සම්බන්ධ විය"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"දුරකතනයේ ශ්රව්යට සම්බන්ධ විය"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ගොනු හුවමාරු සේවාදායකය සමග සම්බන්ධ විය"</string> diff --git a/packages/SettingsLib/res/values-sk/strings.xml b/packages/SettingsLib/res/values-sk/strings.xml index 2c6d1c7750f0..de1711896629 100644 --- a/packages/SettingsLib/res/values-sk/strings.xml +++ b/packages/SettingsLib/res/values-sk/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Pripojené (bez prístupu ku správam)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Pripojené (bez telefónu alebo média)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Zvuk medií"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Zvuk telefónu"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Prenos súborov"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Vstupné zariadenie"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Prístup na Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Zdieľanie kontaktov"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Použiť na zdieľanie kontaktov"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Zdieľanie pripojenia na Internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Prístup ku správam"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Prístup k SIM karte"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Použiť zvuk s vysokou kvalitou: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Použiť zvuk s vysokou kvalitou"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Pripojené ku zvukovému médiu"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Pripojené ku zvuku telefónu"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Pripojené na server pre prenos údajov"</string> diff --git a/packages/SettingsLib/res/values-sl/strings.xml b/packages/SettingsLib/res/values-sl/strings.xml index ed98de732192..563399aa5155 100644 --- a/packages/SettingsLib/res/values-sl/strings.xml +++ b/packages/SettingsLib/res/values-sl/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Povezava vzp. (ni dostopa do sporočil)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Povezava vzpostavljena (brez telefona ali predstavnosti)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Zvok predstavnosti"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Zvok telefona"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Prenos datoteke"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Vnosna naprava"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetni dostop"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Dajanje stikov v skupno rabo"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Uporabi za dajanje stikov v skupno rabo"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Skupna raba internetne povezave"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Dostop do sporočil"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Dostop do kartice SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Uporabi zvok visoke kakovosti: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Uporabi zvok visoke kakovosti"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Povezan s profilom za predstavnostni zvok"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Povezava s profilom za zvok telefona vzpostavljena"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Povezava s strežnikom za prenos datotek je vzpostavljena"</string> diff --git a/packages/SettingsLib/res/values-sq/strings.xml b/packages/SettingsLib/res/values-sq/strings.xml index 416df0947fbb..601ea6f0c382 100644 --- a/packages/SettingsLib/res/values-sq/strings.xml +++ b/packages/SettingsLib/res/values-sq/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"U lidh (pa qasje te mesazhet)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"I lidhur (pa telefon apo media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audioja e klipit \"media\""</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audioja e telefonit"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Transferimi i skedarëve"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Pajisja e hyrjes"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Qasja në internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Ndarja e kontakteve"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Përdore për ndarjen e kontakteve"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Ndarja e lidhjes së internetit"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Qasja në mesazhe"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Qasje në kartën SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Përdor audion me cilësi të lartë: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Përdor audion me cilësi të lartë"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"U lidh me audion e medias"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"U lidh me audion e telefonit"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"U lidh me serverin e transferimit të skedarëve"</string> diff --git a/packages/SettingsLib/res/values-sr/strings.xml b/packages/SettingsLib/res/values-sr/strings.xml index 09086992e424..ab6e099ce9fe 100644 --- a/packages/SettingsLib/res/values-sr/strings.xml +++ b/packages/SettingsLib/res/values-sr/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Веза је прекинута"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Прекидање везе..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Повезивање…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Повезано је (нема приступа порукама)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Повезано (без телефона или медија)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Звук медија"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Звук телефона"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Пренос датотеке"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Улазни уређај"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Приступ Интернету"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Дељење контаката"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Користите за дељење контаката"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Дељење интернет везе"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Приступ порукама"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Приступ SIM картици"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Користи звук високог квалитета: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Користи звук високог квалитета"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Повезано са звуком медија"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Повезано са звуком телефона"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Повезано са сервером за пренос датотека"</string> diff --git a/packages/SettingsLib/res/values-sv/strings.xml b/packages/SettingsLib/res/values-sv/strings.xml index 5600540c8b19..bca8a0a443a4 100644 --- a/packages/SettingsLib/res/values-sv/strings.xml +++ b/packages/SettingsLib/res/values-sv/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Ansluten (ingen meddelandeåtkomst)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Ansluten (ingen telefon och inga media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Medialjud"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefonljud"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Filöverföring"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Indataenhet"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetåtkomst"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktdelning"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Använd för kontaktdelning"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Delning av Internetanslutning"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Meddelandeåtkomst"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-åtkomst"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Använd högkvalitativt ljud: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Använd högkvalitativt ljud"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Ansluten till medialjud"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Ansluten till telefonens ljud"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Ansluten till filöverföringsserver"</string> diff --git a/packages/SettingsLib/res/values-sw/strings.xml b/packages/SettingsLib/res/values-sw/strings.xml index bc50f33ec4d6..780c84c372be 100644 --- a/packages/SettingsLib/res/values-sw/strings.xml +++ b/packages/SettingsLib/res/values-sw/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Haijaunganishwa"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Inatenganisha..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Inaunganisha…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Imeunganishwa (hakuna ufikiaji kwa ujumbe)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Imeunganishwa(hakuna simu au vyombo vya habari)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media ya sauti"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Sauti ya simu"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Uhamishaji wa faili"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Kifaa cha kuingiza"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Ufikivu wa mtandao"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kushiriki anwani"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Tumia kwa kushiriki anwani"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Kushiriki muunganisho wa tovuti"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Ufikiaji wa Ujumbe"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Ufikiaji wa SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Tumia sauti ya ubora wa juu: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Tumia sauti ya ubora wa juu"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Imeunganishwa kwenye sikika ya njia ya mawasiliano"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Imeunganishwa kwenye sauti ya simu"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Imeunganishwa kwenye seva ya kuhamisha faili"</string> diff --git a/packages/SettingsLib/res/values-ta/strings.xml b/packages/SettingsLib/res/values-ta/strings.xml index 40a5ce036e46..d3bb4670c632 100644 --- a/packages/SettingsLib/res/values-ta/strings.xml +++ b/packages/SettingsLib/res/values-ta/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"தொடர்பு துண்டிக்கப்பட்டது"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"துண்டிக்கிறது..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"இணைக்கிறது..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"இணைக்கப்பட்டது (செய்திக்கான அணுகல் இல்லை)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"இணைக்கப்பட்டது (மொபைல் அல்லது மீடியாவுடன் அல்ல)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"மீடியா ஆடியோ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"மொபைல் ஆடியோ"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"கோப்பு இடமாற்றம்"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"உள்ளீட்டுச் சாதனம்"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"இணைய அணுகல்"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"தொடர்புப் பகிர்தல்"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"தொடர்புப் பகிர்தலுக்குப் பயன்படுத்து"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"இணைய இணைப்பு பகிர்தல்"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"செய்திக்கான அணுகல்"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"சிம் அணுகல்"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"உயர்தர ஆடியோவைப் பயன்படுத்து: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"உயர்தர ஆடியோவைப் பயன்படுத்து"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"மீடியா ஆடியோவுடன் இணைக்கப்பட்டது"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"மொபைல் ஆடியோவுடன் இணைக்கப்பட்டது"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"கோப்பைப் பரிமாற்றும் சேவையகத்துடன் இணைக்கப்பட்டது"</string> diff --git a/packages/SettingsLib/res/values-te/strings.xml b/packages/SettingsLib/res/values-te/strings.xml index 374162b322c2..2ee802a0dca0 100644 --- a/packages/SettingsLib/res/values-te/strings.xml +++ b/packages/SettingsLib/res/values-te/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"డిస్కనెక్ట్ చేయబడింది"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"డిస్కనెక్ట్ చేస్తోంది..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"కనెక్ట్ చేస్తోంది..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"కనెక్ట్ చేయబడింది (సందేశ ప్రాప్యత లేదు)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"కనెక్ట్ చేయబడింది (ఫోన్ లేదా మీడియా కాకుండా)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"మీడియా ఆడియో"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"ఫోన్ ఆడియో"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ఫైల్ బదిలీ"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ఇన్పుట్ పరికరం"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"ఇంటర్నెట్ ప్రాప్యత"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"పరిచయ భాగస్వామ్యం"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"పరిచయ భాగస్వామ్యం కోసం ఉపయోగించు"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"ఇంటర్నెట్ కనెక్షన్ భాగస్వామ్యం"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"సందేశ ప్రాప్యత"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM ప్రాప్యత"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"అధిక నాణ్యత ఆడియోను ఉపయోగించండి: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"అధిక నాణ్యత ఆడియోను ఉపయోగించండి"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"మీడియా ఆడియోకు కనెక్ట్ చేయబడింది"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"ఫోన్ ఆడియోకు కనెక్ట్ చేయబడింది"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"ఫైల్ బదిలీ సర్వర్కు కనెక్ట్ చేయబడింది"</string> diff --git a/packages/SettingsLib/res/values-th/strings.xml b/packages/SettingsLib/res/values-th/strings.xml index 465d3ad6c382..f5223e11064d 100644 --- a/packages/SettingsLib/res/values-th/strings.xml +++ b/packages/SettingsLib/res/values-th/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"ตัดการเชื่อมต่อ"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"กำลังตัดการเชื่อมต่อ..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"กำลังเชื่อมต่อ…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"เชื่อมต่อแล้ว (ไม่มีการเข้าถึงข้อความ)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"เชื่อมต่อ (ยกเว้นเสียงโทรศัพท์หรือสื่อ)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"เสียงสื่อ"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"เสียงโทรศัพท์"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"การถ่ายโอนไฟล์"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"อุปกรณ์อินพุต"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"การเข้าถึงอินเทอร์เน็ต"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"การแชร์รายชื่อผู้ติดต่อ"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"ใช้สำหรับการแชร์รายชื่อผู้ติดต่อ"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"การแชร์การเชื่อมต่ออินเทอร์เน็ต"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"การเข้าถึงข้อความ"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"การเข้าถึงซิม"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"ใช้เสียงคุณภาพสูง: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"ใช้เสียงคุณภาพสูง"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"เชื่อมต่อกับระบบเสียงของสื่อแล้ว"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"เชื่อมต่อกับระบบเสียงของโทรศัพท์แล้ว"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"เชื่อมต่อกับเซิร์ฟเวอร์สำหรับโอนไฟล์แล้ว"</string> diff --git a/packages/SettingsLib/res/values-tl/strings.xml b/packages/SettingsLib/res/values-tl/strings.xml index 7b9bc5b6adf1..96388de6171b 100644 --- a/packages/SettingsLib/res/values-tl/strings.xml +++ b/packages/SettingsLib/res/values-tl/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Nakakonekta (walang access sa mensahe)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Nakakonekta (walang telepono o media)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Audio ng media"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Audio ng telepono"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Paglilipat ng file"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Device sa pag-input"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Access sa internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Pagbabahagi ng contact"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Gamitin para sa pagbabahagi ng contact"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Pagbabahagi ng koneksyon sa internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Access sa Mensahe"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Access sa SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Gumamit ng mataas na kalidad na audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Gumamit ng mataas na kalidad na audio"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Konektado sa media audio"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Nakakonekta sa audio ng telepono"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Nakakonekta sa server sa paglilipat ng file"</string> diff --git a/packages/SettingsLib/res/values-tr/strings.xml b/packages/SettingsLib/res/values-tr/strings.xml index dc504f5a7d69..b8a5dab6df1b 100644 --- a/packages/SettingsLib/res/values-tr/strings.xml +++ b/packages/SettingsLib/res/values-tr/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Bağlı (mesaj erişimi yok)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Bağlandı (telefon veya medya yok)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Medya sesi"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefon sesi"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Dosya aktarımı"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Giriş cihazı"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"İnternet erişimi"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kişi paylaşma"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Kişi paylaşmak için kullan"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"İnternet bağlantısı paylaşımı"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Mesaj Erişimi"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Erişimi"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Yüksek kalite ses kullan: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Yüksek kalite ses kullan"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Medya sesine bağlanıldı"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Telefon sesine bağlandı"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Dosya aktarım sunucusuna bağlandı"</string> diff --git a/packages/SettingsLib/res/values-uk/strings.xml b/packages/SettingsLib/res/values-uk/strings.xml index a1855b039bfd..0f8affd19f03 100644 --- a/packages/SettingsLib/res/values-uk/strings.xml +++ b/packages/SettingsLib/res/values-uk/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Роз’єднано"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Відключення..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Підключення…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Під’єднано (без доступу до повідомлень)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Під’єднано (без телефону чи медіа)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Звук медіа-файлів"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Звук телефону"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Передавання файлів"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Пристрій введення"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Доступ до Інтернету"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Надсилання контактів"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Використовувати для надсилання контактів"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Надання доступу до Інтернету"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Доступ до повідомлень"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Доступ до SIM-карти"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Використовувати аудіо високої якості: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Використовувати аудіо високої якості"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Підключено до аудіоджерела"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Підключено до звуку телеф."</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Підключ. до сервера передачі файлів"</string> diff --git a/packages/SettingsLib/res/values-ur/strings.xml b/packages/SettingsLib/res/values-ur/strings.xml index ee04be3dab3e..f6771dc1d747 100644 --- a/packages/SettingsLib/res/values-ur/strings.xml +++ b/packages/SettingsLib/res/values-ur/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"منقطع"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"منقطع کیا جارہا ہے…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"مربوط ہو رہا ہے…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"مربوط (کسی پیغام تک رسائی نہیں ہے)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"مربوط (کوئی فون یا میڈیا نہیں ہے)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"میڈيا آڈیو"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"فون آڈیو"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"فائل کی منتقلی"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ان پٹ آلہ"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"انٹرنیٹ تک رسائی"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"رابطہ کا اشتراک"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"رابطہ کے اشتراک کیلئے استعمال کریں"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"انٹرنیٹ کنکشن کا اشتراک کرنا"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"پیغام تک رسائی"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM رسائی"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"اعلی معیار کی آڈیو استعمال کریں: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"اعلی معیار کی آڈیو استعمال کریں"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"میڈیا آڈیو سے مربوط"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"فون آڈیو سے مربوط"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"فائل منتقلی سرور سے مربوط ہو گیا ہے"</string> diff --git a/packages/SettingsLib/res/values-uz/strings.xml b/packages/SettingsLib/res/values-uz/strings.xml index f96f915ad698..8a61cc45cc4c 100644 --- a/packages/SettingsLib/res/values-uz/strings.xml +++ b/packages/SettingsLib/res/values-uz/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"Uzildi"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Uzilyapti…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"Ulanmoqda…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Ulangan (xabarlarga kirib bo‘lmaydi)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Ulangan (telefon yoki media qurilma emas)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media audio"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Telefon audiosi"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Fayl o‘tkazish"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Kiritish qurilmasi"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Internetga kirish"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Kontaktlarni ulashish"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Kontaktlarni ulashish uchun ishlatilsin"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Internet aloqasi ulashmasi"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Xabarga kirish"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM-kartaga kirish"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Yuqori sifatli audiodan foydalanish: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Yuqori sifatli audiodan foydalanish"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Audio qurilmasiga ulangan"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Telefon karnayiga ulanildi"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Fayl almashinish serveriga ulanildi"</string> diff --git a/packages/SettingsLib/res/values-vi/strings.xml b/packages/SettingsLib/res/values-vi/strings.xml index d7e95fdc0eb2..7dd93c6eadf7 100644 --- a/packages/SettingsLib/res/values-vi/strings.xml +++ b/packages/SettingsLib/res/values-vi/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Đã kết nối (không truy cập tin nhắn)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Đã k.nối (kg có ĐT hoặc p.tiện nào)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Âm thanh của phương tiện"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Âm thanh điện thoại"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Chuyển tệp"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Thiết bị đầu vào"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Truy cập Internet"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Chia sẻ liên hệ"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Sử dụng để chia sẻ liên hệ"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Chia sẻ kết nối internet"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Truy cập tin nhắn"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Quyền truy cập SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Sử dụng âm thanh chất lượng cao: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Sử dụng âm thanh chất lượng cao"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Đã kết nối với âm thanh phương tiện"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Đã kết nối với âm thanh điện thoại"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Đã kết nối với máy chủ chuyển tệp"</string> diff --git a/packages/SettingsLib/res/values-zh-rCN/strings.xml b/packages/SettingsLib/res/values-zh-rCN/strings.xml index 008dceac5802..7a932d914f50 100644 --- a/packages/SettingsLib/res/values-zh-rCN/strings.xml +++ b/packages/SettingsLib/res/values-zh-rCN/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"已断开连接"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"正在断开连接..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"正在连接..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"已连接(无消息权限)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"已连接(没有手机或媒体信号)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"媒体音频"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"手机音频"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"文件传输"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"输入设备"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"互联网连接"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"共享联系人"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"用于共享联系人"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"共享互联网连接"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"消息权限"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM 卡存取权限"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"使用高品质音频:<xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"使用高品质音频"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"已连接到媒体音频"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"已连接到手机音频"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"已连接到文件传输服务器"</string> diff --git a/packages/SettingsLib/res/values-zh-rHK/strings.xml b/packages/SettingsLib/res/values-zh-rHK/strings.xml index d857cc8e43f1..28d5bf9a548f 100644 --- a/packages/SettingsLib/res/values-zh-rHK/strings.xml +++ b/packages/SettingsLib/res/values-zh-rHK/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"已中斷連線"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"正在中斷連線..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"正在連線..."</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"已連結 (無訊息存取權)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"已連線 (無手機或媒體)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"媒體音效"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"手機音效"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"檔案傳輸"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"輸入裝置"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"互聯網連線"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"聯絡人共用"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"用於聯絡人共用"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"互聯網連線分享"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"訊息存取權"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM 卡存取"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"使用優質音訊編解碼器:<xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"使用優質音訊編解碼器"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"已連接媒體音頻裝置"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"已連接手機耳機"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"已連線至檔案傳輸伺服器"</string> diff --git a/packages/SettingsLib/res/values-zh-rTW/strings.xml b/packages/SettingsLib/res/values-zh-rTW/strings.xml index 0268b0c48773..d839cf44ec4f 100644 --- a/packages/SettingsLib/res/values-zh-rTW/strings.xml +++ b/packages/SettingsLib/res/values-zh-rTW/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <string name="bluetooth_disconnected" msgid="6557104142667339895">"已中斷連線"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"正在中斷連線…"</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"連線中…"</string> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"已連線 (無訊息存取權)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"已連線 (無手機或媒體音訊)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"媒體音訊"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"手機音訊"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"檔案傳輸"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"輸入裝置"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"網際網路連線"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"聯絡人共用"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"用於聯絡人共用"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"網際網路連線分享"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"訊息存取權"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM 卡存取權"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"使用高品質音訊:<xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"使用高品質音訊"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"連接至媒體音訊"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"連接至電話音訊"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"已連線到檔案傳輸伺服器"</string> diff --git a/packages/SettingsLib/res/values-zu/strings.xml b/packages/SettingsLib/res/values-zu/strings.xml index 06b7ccf02327..15fbbc520807 100644 --- a/packages/SettingsLib/res/values-zu/strings.xml +++ b/packages/SettingsLib/res/values-zu/strings.xml @@ -37,6 +37,18 @@ <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> + <!-- no translation found for speed_label_very_slow (1867055264243608530) --> + <skip /> + <!-- no translation found for speed_label_slow (813109590815810235) --> + <skip /> + <!-- no translation found for speed_label_okay (5941436233638654215) --> + <skip /> + <!-- no translation found for speed_label_medium (3175763313268941953) --> + <skip /> + <!-- no translation found for speed_label_fast (7715732164050975057) --> + <skip /> + <!-- no translation found for speed_label_very_fast (2265363430784523409) --> + <skip /> <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> @@ -47,17 +59,21 @@ <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"Kuxhunyiwe (akukho ukufinyelela umlayezo)"</string> <string name="bluetooth_connected_no_headset_no_a2dp" msgid="9195757766755553810">"Ixhunyiwe (ayikho ifoni noma imidiya)"</string> <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Umsindo wemidiya"</string> - <string name="bluetooth_profile_headset" msgid="8658779596261212609">"Umsindo wefoni"</string> + <!-- no translation found for bluetooth_profile_headset (7815495680863246034) --> + <skip /> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"Dlulisa ifayela"</string> <string name="bluetooth_profile_hid" msgid="3680729023366986480">"Idivaysi yokufakwayo"</string> <string name="bluetooth_profile_pan" msgid="3391606497945147673">"Ukufinyelela i-Inthanethi"</string> <string name="bluetooth_profile_pbap" msgid="5372051906968576809">"Ukwabelana kokuxhumana"</string> <string name="bluetooth_profile_pbap_summary" msgid="6605229608108852198">"Sebenzisela ukwabelana kokuxhumana"</string> <string name="bluetooth_profile_pan_nap" msgid="8429049285027482959">"Ukwabelana ngoxhumano lwe-Inthanethi"</string> - <string name="bluetooth_profile_map" msgid="5465271250454324383">"Ukufinyelela umlayezo"</string> + <!-- no translation found for bluetooth_profile_map (1019763341565580450) --> + <skip /> <string name="bluetooth_profile_sap" msgid="5764222021851283125">"Ukufinyelela kwe-SIM"</string> - <string name="bluetooth_profile_a2dp_high_quality" msgid="2221025895896419505">"Sebenzisa umsindo wekhwalithi ephezulu: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> - <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="5860996587596508755">"Sebenzisa umsindo wekhwalithi ephezulu"</string> + <!-- no translation found for bluetooth_profile_a2dp_high_quality (5444517801472820055) --> + <skip /> + <!-- no translation found for bluetooth_profile_a2dp_high_quality_unknown_codec (8510588052415438887) --> + <skip /> <string name="bluetooth_a2dp_profile_summary_connected" msgid="963376081347721598">"Ixhume emsindweni wemidiya"</string> <string name="bluetooth_headset_profile_summary_connected" msgid="7661070206715520671">"Ixhunywe kumsindo wefoni"</string> <string name="bluetooth_opp_profile_summary_connected" msgid="2611913495968309066">"Ixhunywe kwiseva yokudlulisa ifayela"</string> diff --git a/packages/SettingsLib/res/values/strings.xml b/packages/SettingsLib/res/values/strings.xml index 230c501e326b..9b0e40aa619a 100644 --- a/packages/SettingsLib/res/values/strings.xml +++ b/packages/SettingsLib/res/values/strings.xml @@ -860,6 +860,16 @@ <!-- Summary for switch preference to denote it is switched off [CHAR LIMIT=50] --> <string name="disabled_by_admin">Disabled by admin</string> + <!-- [CHAR LIMIT=25] Manage applications, text telling using an application is disabled. --> + <string name="disabled">Disabled</string> + <!-- Summary of app trusted to install apps [CHAR LIMIT=45] --> + <string name="external_source_trusted">Allowed</string> + <!-- Summary of app not trusted to install apps [CHAR LIMIT=45] --> + <string name="external_source_untrusted">Not allowed</string> + + <!-- Title for settings screen for controlling apps that can install other apps on device [CHAR LIMIT=50] --> + <string name="install_other_apps">Install unknown apps</string> + <!-- Option in navigation drawer that leads to Settings main screen [CHAR LIMIT=30] --> <string name="home">Settings Home</string> diff --git a/packages/SystemUI/res/values-af/strings.xml b/packages/SystemUI/res/values-af/strings.xml index addb87ab4532..db8edff05059 100644 --- a/packages/SystemUI/res/values-af/strings.xml +++ b/packages/SystemUI/res/values-af/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Jy sal nie meer hierdie kennisgewings kry nie"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> kennisgewingkategorieë"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Hierdie program het nie kennisgewingkategorieë nie"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 uit <xliff:g id="NUMBER_1">%d</xliff:g> kennisgewingkategorieë van hierdie program</item> <item quantity="one">1 uit <xliff:g id="NUMBER_0">%d</xliff:g> kennisgewingkategorie van hierdie program</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kennisgewingkontroles"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"kennisgewing-sluimeropsies"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minute"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minute"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 uur"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ONTDOEN"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Sluimer vir <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Batterygebruik"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Batterybespaarder is nie beskikbaar wanneer gelaai word nie"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Batterybespaarder"</string> diff --git a/packages/SystemUI/res/values-am/strings.xml b/packages/SystemUI/res/values-am/strings.xml index ff5561df78a7..b641a4975d35 100644 --- a/packages/SystemUI/res/values-am/strings.xml +++ b/packages/SystemUI/res/values-am/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"እነዚህን ማሳወቂያዎች ከእንግዲህ አያገኟቸውም"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> የማሳወቂያ ምድቦች"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ይህ መተግበሪያ የማሳወቂያ ምድቦች የሉትም"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 ከ<xliff:g id="NUMBER_1">%d</xliff:g> የማሳወቂያ ምድቦች ከዚህ መተግበሪያ</item> <item quantity="other">1 <xliff:g id="NUMBER_1">%d</xliff:g> የማሳወቂያ ምድቦች ከዚህ መተግበሪያ</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"የማሳወቂያ መቆጣጠሪያዎች"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"የማሳወቂያ ማሸለቢያ አማራጮች"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 ደቂቃዎች"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 ደቂቃዎች"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ሰዓት"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ቀልብስ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"ለ<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> አሸልቧል"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"የባትሪ አጠቃቀም"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ኃይል በሚሞላበት ጊዜ ባትሪ ቆጣቢ አይገኝም"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ባትሪ ቆጣቢ"</string> diff --git a/packages/SystemUI/res/values-ar/strings.xml b/packages/SystemUI/res/values-ar/strings.xml index 036985c5c31a..e37152f7dbb1 100644 --- a/packages/SystemUI/res/values-ar/strings.xml +++ b/packages/SystemUI/res/values-ar/strings.xml @@ -560,6 +560,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"لن تتلقى هذه الإشعارات بعد الآن."</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> فئة إشعار"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"لا يحتوي هذا التطبيق على فئات إشعار"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="zero">1 من إجمالي <xliff:g id="NUMBER_1">%d</xliff:g> فئة إشعار من هذا التطبيق</item> <item quantity="two">1 من إجمالي فئتي إشعار (<xliff:g id="NUMBER_1">%d</xliff:g>) من هذا التطبيق</item> @@ -587,13 +589,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"عناصر التحكم في الإشعارات"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"خيارات تأجيل الإشعارات"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"١٥ دقيقة"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"٣۰ دقيقة"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"ساعة واحدة"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"تراجع"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"تم تأجيل الإشعار لمدة <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"استخدام البطارية"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"وضع توفير شحن البطارية غير متاح أثناء الشحن."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"توفير شحن البطارية"</string> diff --git a/packages/SystemUI/res/values-az/strings.xml b/packages/SystemUI/res/values-az/strings.xml index d22c28675cdc..ddb1848cdf99 100644 --- a/packages/SystemUI/res/values-az/strings.xml +++ b/packages/SystemUI/res/values-az/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Bu bildirişlər daha sizə göndərilməyəcək"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> bildiriş kateqoriyaları"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Bu tətbiqin bildiriş kateqoriyası yoxdur"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Bu tətbiqin <xliff:g id="NUMBER_1">%d</xliff:g> bildiriş kateqoriyasından 1 kanal</item> <item quantity="one">Bu tətbiqin <xliff:g id="NUMBER_0">%d</xliff:g> bildiriş kateqoriyasından 1 kanal</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"bildiriş nəzarəti"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"bildiriş təxirə salma seçimləri"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 dəqiqə"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 dəqiqə"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 saat"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"GERİ QAYTARIN"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> üçün təxirə salınıb"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Batareya istifadəsi"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Enerji Qənaəti doldurulma zamanı əlçatan deyil"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Enerji Qənaəti"</string> diff --git a/packages/SystemUI/res/values-b+sr+Latn/strings.xml b/packages/SystemUI/res/values-b+sr+Latn/strings.xml index b751a373b02c..42a3aecd0107 100644 --- a/packages/SystemUI/res/values-b+sr+Latn/strings.xml +++ b/packages/SystemUI/res/values-b+sr+Latn/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Više nećete dobijati ova obaveštenja"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Kategorija obaveštenja: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ova aplikacija nema kategorije obaveštenja"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obaveštenja za ovu aplikaciju</item> <item quantity="few">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obaveštenja za ovu aplikaciju</item> @@ -575,13 +577,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrole obaveštenja"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opcije za odlaganje obaveštenja"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuta"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuta"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 sat"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"OPOZOVI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Odloženo je za <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Potrošnja baterije"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Ušteda baterije nije dostupna tokom punjenja"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Ušteda baterije"</string> diff --git a/packages/SystemUI/res/values-be/strings.xml b/packages/SystemUI/res/values-be/strings.xml index 1767fabf8981..d48ee4fb0728 100644 --- a/packages/SystemUI/res/values-be/strings.xml +++ b/packages/SystemUI/res/values-be/strings.xml @@ -558,6 +558,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Вы больш не будзеце атрымліваць гэтыя апавяшчэнні"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Катэгорый апавяшчэнняў: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"У гэтай праграме няма катэгорый апавяшчэнняў"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 з <xliff:g id="NUMBER_1">%d</xliff:g> катэгорыі апавяшчэнняў у гэтай праграме</item> <item quantity="few">1 з <xliff:g id="NUMBER_1">%d</xliff:g> катэгорый апавяшчэнняў у гэтай праграме</item> @@ -581,13 +583,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"кіраванне апавяшчэннямі"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"параметры адкладвання апавяшчэнняў"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 хвілін"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 хвілін"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 гадзіна"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"АДРАБІЦЬ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Адкладзена на <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Выкарыстанне зараду"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Эканомія зараду акумулятара недаступная падчас зарадкі"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Эканомія зараду"</string> diff --git a/packages/SystemUI/res/values-bg/strings.xml b/packages/SystemUI/res/values-bg/strings.xml index 8fa27ee220a0..109513432acb 100644 --- a/packages/SystemUI/res/values-bg/strings.xml +++ b/packages/SystemUI/res/values-bg/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Вече няма да получавате тези известия"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> категории известия"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"За това приложение няма категории на известията"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 от <xliff:g id="NUMBER_1">%d</xliff:g> категории известия от това приложение</item> <item quantity="one">1 от <xliff:g id="NUMBER_0">%d</xliff:g> категория известия от това приложение</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> от <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"контроли за известията"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"опции за отлагане на известията"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 минути"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 минути"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 час"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ОТМЯНА"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Отложено за <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Ползв. на батерията"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Режимът за запазване на батерията не е налице при зареждане"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Режим за запазване на батерията"</string> diff --git a/packages/SystemUI/res/values-bn/strings.xml b/packages/SystemUI/res/values-bn/strings.xml index 250db2b14659..9ad40113cd6e 100644 --- a/packages/SystemUI/res/values-bn/strings.xml +++ b/packages/SystemUI/res/values-bn/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"আপনি এই বিজ্ঞপ্তিগুলি আর পাবেন না"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> বিজ্ঞপ্তির বিভাগগুলি"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"এই অ্যাপটিতে বিজ্ঞপ্তির বিভাগ নেই"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">এই অ্যাপের <xliff:g id="NUMBER_1">%d</xliff:g>টি বিজ্ঞপ্তির বিভাগের মধ্যে ১টি</item> <item quantity="other">এই অ্যাপের <xliff:g id="NUMBER_1">%d</xliff:g>টি বিজ্ঞপ্তির বিভাগের মধ্যে ১টি</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"বিজ্ঞপ্তির নিয়ন্ত্রণগুলি"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"বিজ্ঞপ্তি মনে করিয়ে দেওয়ার বিকল্পগুলি"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"১৫ মিনিট"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"৩০ মিনিট"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"১ ঘণ্টা"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"পূর্বাবস্থায় ফিরুন"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> পরে আবার মনে করানো হবে"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ব্যাটারির ব্যবহার"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"চার্জ করার সময় ব্যাটারি সেভার উপলব্ধ নয়"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ব্যাটারি সেভার"</string> diff --git a/packages/SystemUI/res/values-bs/strings.xml b/packages/SystemUI/res/values-bs/strings.xml index d46892af1f0b..1d1632ffe7d4 100644 --- a/packages/SystemUI/res/values-bs/strings.xml +++ b/packages/SystemUI/res/values-bs/strings.xml @@ -556,6 +556,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Nećete više primati ova obavještenja"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Kategorije obavještenja: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ova aplikacija nema kategorije obavještenja"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obavještenja iz ove aplikacije</item> <item quantity="few">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obavještenja iz ove aplikacije</item> @@ -577,13 +579,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrole obavještenja"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opcije za odgodu obavještenja"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuta"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuta"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 sat"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"OPOZOVI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Odgođeno za <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Potrošnja baterije"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Ušteda baterije je isključena prilikom punjenja"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Ušteda baterije"</string> diff --git a/packages/SystemUI/res/values-ca/strings.xml b/packages/SystemUI/res/values-ca/strings.xml index 1888250cde5e..f354ad4d6d73 100644 --- a/packages/SystemUI/res/values-ca/strings.xml +++ b/packages/SystemUI/res/values-ca/strings.xml @@ -62,7 +62,7 @@ <string name="always_use_accessory" msgid="1210954576979621596">"Utilitza de manera predet. per a l\'accessori USB"</string> <string name="usb_debugging_title" msgid="4513918393387141949">"Vols permetre la depuració USB?"</string> <string name="usb_debugging_message" msgid="2220143855912376496">"L\'empremta digital de la clau de l\'RSA de l\'equip és:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> - <string name="usb_debugging_always" msgid="303335496705863070">"Dóna sempre permís des d\'aquest equip"</string> + <string name="usb_debugging_always" msgid="303335496705863070">"Dona sempre permís des d\'aquest equip"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"No es permet la depuració USB"</string> <string name="usb_debugging_secondary_user_message" msgid="8572228137833020196">"L\'usuari que té iniciada la sessió al dispositiu en aquest moment no pot activar la depuració USB. Per utilitzar aquesta funció, cal canviar a l\'usuari administrador."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom per omplir pantalla"</string> @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ja no rebràs aquestes notificacions"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categories de notificació"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Aquesta aplicació no té categories de notificació"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categories de notificació d\'aquesta aplicació</item> <item quantity="one">1 de <xliff:g id="NUMBER_0">%d</xliff:g> categoria de notificació d\'aquesta aplicació</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"controls de notificació"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opcions per posposar la notificació"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuts"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuts"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESFÉS"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"S\'ha posposat <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Ús de la bateria"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"La funció Estalvi de bateria no està disponible durant la càrrega"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Estalvi de bateria"</string> diff --git a/packages/SystemUI/res/values-cs/strings.xml b/packages/SystemUI/res/values-cs/strings.xml index 4529276afa16..cb8fa864771f 100644 --- a/packages/SystemUI/res/values-cs/strings.xml +++ b/packages/SystemUI/res/values-cs/strings.xml @@ -558,6 +558,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Tato oznámení již nebudete dostávat"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Kategorie oznámení: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Tato aplikace nemá kategorie oznámení"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="few">1 ze <xliff:g id="NUMBER_1">%d</xliff:g> kategorií oznámení z této aplikace</item> <item quantity="many">1 z <xliff:g id="NUMBER_1">%d</xliff:g> kategorie oznámení z této aplikace</item> @@ -581,13 +583,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> aplikace <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"Nastavení oznámení"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"Možnosti odložení oznámení"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minut"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minut"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hodina"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"VRÁTIT ZPĚT"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Odloženo o <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Využití baterie"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Spořič baterie při nabíjení není k dispozici."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Spořič baterie"</string> diff --git a/packages/SystemUI/res/values-da/strings.xml b/packages/SystemUI/res/values-da/strings.xml index 348ef5acda0a..b19e90166963 100644 --- a/packages/SystemUI/res/values-da/strings.xml +++ b/packages/SystemUI/res/values-da/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Du modtager ikke længere disse underretninger"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> underretningskategorier"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Denne app har ingen underretningskategorier"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 ud af <xliff:g id="NUMBER_1">%d</xliff:g> underretningskategori fra denne app</item> <item quantity="other">1 ud af <xliff:g id="NUMBER_1">%d</xliff:g> underretningskategorier fra denne app</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrolelementer til underretninger"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"Indstillinger for udsættelse"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutter"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutter"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 time"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"FORTRYD"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Udsat i <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Batteriforbrug"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Batterisparefunktionen er ikke tilgængelig under opladning"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Batterisparefunktion"</string> diff --git a/packages/SystemUI/res/values-de/strings.xml b/packages/SystemUI/res/values-de/strings.xml index f71293ab8558..f6216c2bae82 100644 --- a/packages/SystemUI/res/values-de/strings.xml +++ b/packages/SystemUI/res/values-de/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Du erhältst diese Benachrichtigungen nicht mehr"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> Benachrichtigungskategorien"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Diese App hat keine Benachrichtigungskategorien"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 von <xliff:g id="NUMBER_1">%d</xliff:g> Benachrichtigungskategorien von dieser App</item> <item quantity="one">1 von <xliff:g id="NUMBER_0">%d</xliff:g> Benachrichtigungskategorie von dieser App</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> – <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"Benachrichtigungseinstellungen"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"Optionen für spätere Erinnerung bei Benachrichtigungen"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 Minuten"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 Minuten"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 Stunde"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"RÜCKGÄNGIG"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Erinnerung in <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Akkunutzung"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Der Energiesparmodus ist beim Aufladen nicht verfügbar."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Energiesparmodus"</string> diff --git a/packages/SystemUI/res/values-el/strings.xml b/packages/SystemUI/res/values-el/strings.xml index d42d815666a7..8fd5e353852e 100644 --- a/packages/SystemUI/res/values-el/strings.xml +++ b/packages/SystemUI/res/values-el/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Δεν θα λαμβάνετε πλέον αυτές τις ειδοποιήσεις"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> κατηγορίες ειδοποιήσεων"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Αυτή η εφαρμογή δεν διαθέτει κατηγορίες ειδοποιήσεων"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 από <xliff:g id="NUMBER_1">%d</xliff:g> κατηγορίες ειδοποιήσεων από αυτή την εφαρμογή</item> <item quantity="one">1 από <xliff:g id="NUMBER_0">%d</xliff:g> κατηγορία ειδοποιήσεων από αυτή την εφαρμογή</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"στοιχεία ελέγχου ειδοποιήσεων"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"επιλογές αφύπνισης ειδοποιήσεων"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 λεπτά"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 λεπτά"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ώρα"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ΑΝΑΙΡΕΣΗ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Σε αφύπνιση για <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Χρήση της μπαταρίας"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Η εξοικονόμηση μπαταρίας δεν είναι διαθέσιμη κατά τη διάρκεια της φόρτισης"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Εξοικονόμηση μπαταρίας"</string> diff --git a/packages/SystemUI/res/values-en-rAU/strings.xml b/packages/SystemUI/res/values-en-rAU/strings.xml index f06636d9b46a..93753bbd3bef 100644 --- a/packages/SystemUI/res/values-en-rAU/strings.xml +++ b/packages/SystemUI/res/values-en-rAU/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"You won\'t get these notifications anymore"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> notification categories"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"This app doesn\'t have notification categories"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 out of <xliff:g id="NUMBER_1">%d</xliff:g> notification categories from this app</item> <item quantity="one">1 out of <xliff:g id="NUMBER_0">%d</xliff:g> notification category from this app</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"notification controls"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"notification snooze options"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutes"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutes"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hour"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"UNDO"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Snoozed for <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Battery usage"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Battery Saver not available during charging"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Battery Saver"</string> diff --git a/packages/SystemUI/res/values-en-rGB/strings.xml b/packages/SystemUI/res/values-en-rGB/strings.xml index f06636d9b46a..93753bbd3bef 100644 --- a/packages/SystemUI/res/values-en-rGB/strings.xml +++ b/packages/SystemUI/res/values-en-rGB/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"You won\'t get these notifications anymore"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> notification categories"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"This app doesn\'t have notification categories"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 out of <xliff:g id="NUMBER_1">%d</xliff:g> notification categories from this app</item> <item quantity="one">1 out of <xliff:g id="NUMBER_0">%d</xliff:g> notification category from this app</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"notification controls"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"notification snooze options"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutes"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutes"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hour"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"UNDO"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Snoozed for <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Battery usage"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Battery Saver not available during charging"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Battery Saver"</string> diff --git a/packages/SystemUI/res/values-en-rIN/strings.xml b/packages/SystemUI/res/values-en-rIN/strings.xml index f06636d9b46a..93753bbd3bef 100644 --- a/packages/SystemUI/res/values-en-rIN/strings.xml +++ b/packages/SystemUI/res/values-en-rIN/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"You won\'t get these notifications anymore"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> notification categories"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"This app doesn\'t have notification categories"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 out of <xliff:g id="NUMBER_1">%d</xliff:g> notification categories from this app</item> <item quantity="one">1 out of <xliff:g id="NUMBER_0">%d</xliff:g> notification category from this app</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"notification controls"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"notification snooze options"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutes"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutes"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hour"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"UNDO"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Snoozed for <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Battery usage"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Battery Saver not available during charging"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Battery Saver"</string> diff --git a/packages/SystemUI/res/values-es-rUS/strings.xml b/packages/SystemUI/res/values-es-rUS/strings.xml index e9bf270f72aa..e04ab5f41be5 100644 --- a/packages/SystemUI/res/values-es-rUS/strings.xml +++ b/packages/SystemUI/res/values-es-rUS/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ya no recibirás estas notificaciones"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorías de notificaciones"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Esta app no tiene categorías de notificación"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categorías de notificación de esta app</item> <item quantity="one">1 de <xliff:g id="NUMBER_0">%d</xliff:g> categoría de notificación de esta app</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> de <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"controles de notificación"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opciones para posponer notificaciones"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutos"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutos"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESHACER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Posponer <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Uso de la batería"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Ahorro de batería no está disponible durante la carga"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Ahorro de batería"</string> diff --git a/packages/SystemUI/res/values-es/strings.xml b/packages/SystemUI/res/values-es/strings.xml index 9826b456dd93..a7160fa30a75 100644 --- a/packages/SystemUI/res/values-es/strings.xml +++ b/packages/SystemUI/res/values-es/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ya no recibirás estas notificaciones"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorías de notificación"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Esta aplicación no tiene categorías de notificación"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categorías de notificación de esta aplicación</item> <item quantity="one">1 de <xliff:g id="NUMBER_0">%d</xliff:g> categoría de notificación de esta aplicación</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> de <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"Controles de las notificaciones"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"Opciones para posponer las notificaciones"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutos"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutos"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESHACER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Volverá a mostrarse en <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Uso de la batería"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Ahorro de batería no disponible mientras se carga el dispositivo"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Ahorro de batería"</string> diff --git a/packages/SystemUI/res/values-et/strings.xml b/packages/SystemUI/res/values-et/strings.xml index afe1598c326a..e21baa6d31b7 100644 --- a/packages/SystemUI/res/values-et/strings.xml +++ b/packages/SystemUI/res/values-et/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Te ei saa enam neid märguandeid"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> märguandekategooriat"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Sellel rakendusel ei ole märguannete kategooriaid"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 <xliff:g id="NUMBER_1">%d</xliff:g>-st märguannete kategooriast sellelt rakenduselt</item> <item quantity="one">1 <xliff:g id="NUMBER_0">%d</xliff:g>-st märguannete kategooriast sellelt rakenduselt</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g>, <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"märguannete juhtnupud"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"märguannete edasilükkamise valikud"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutit"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutit"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"Üks tund"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"VÕTA TAGASI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Edasi lükatud <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Akukasutus"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Akusäästja pole laadimise ajal saadaval"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Akusäästja"</string> diff --git a/packages/SystemUI/res/values-eu/strings.xml b/packages/SystemUI/res/values-eu/strings.xml index 999b954c9067..9276020e30bf 100644 --- a/packages/SystemUI/res/values-eu/strings.xml +++ b/packages/SystemUI/res/values-eu/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Aurrerantzean ez duzu jasoko horrelako jakinarazpenik"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Jakinarazpenen <xliff:g id="NUMBER">%d</xliff:g> kategoria"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Aplikazio honek ez du jakinarazpen-kategoriarik"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Aplikazio honen 1/<xliff:g id="NUMBER_1">%d</xliff:g> jakinarazpen-kategoria</item> <item quantity="one">Aplikazio honen 1/<xliff:g id="NUMBER_0">%d</xliff:g> jakinarazpen-kategoria</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"jakinarazpena kontrolatzeko aukerak"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"jakinarazpena atzeratzeko aukerak"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutu"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutu"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ordu"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESEGIN"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g>z atzeratu da"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Bateriaren erabilera"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Bateria-aurrezlea ez dago erabilgarri gailua kargatzen ari denean"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Bateria-aurrezlea"</string> diff --git a/packages/SystemUI/res/values-fa/strings.xml b/packages/SystemUI/res/values-fa/strings.xml index 57151ab34e30..cc5f46e87f5f 100644 --- a/packages/SystemUI/res/values-fa/strings.xml +++ b/packages/SystemUI/res/values-fa/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"دیگر این اعلانها را دریافت نخواهید کرد"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> دسته اعلان"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"این برنامه دسته اعلان ندارد"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">۱ از <xliff:g id="NUMBER_1">%d</xliff:g> دسته اعلان این برنامه</item> <item quantity="other">۱ از <xliff:g id="NUMBER_1">%d</xliff:g> دسته اعلان این برنامه</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"کنترلهای اعلان"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"گزینههای تعویق اعلان"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"۱۵ دقیقه"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"۳۰ دقیقه"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"۱ ساعت"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"واگرد"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> به تعویق افتاد"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"مصرف باتری"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"هنگام شارژ شدن، «بهینهسازی باتری» در دسترس نیست"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"بهینهسازی باتری"</string> diff --git a/packages/SystemUI/res/values-fi/strings.xml b/packages/SystemUI/res/values-fi/strings.xml index 8dbec4bdcda4..e630cfc414d6 100644 --- a/packages/SystemUI/res/values-fi/strings.xml +++ b/packages/SystemUI/res/values-fi/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Et saa näitä ilmoituksia enää."</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> ilmoitusluokkaa"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Tällä sovelluksella ei ole ilmoitusluokkia."</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Tämä sovellus: 1/<xliff:g id="NUMBER_1">%d</xliff:g> ilmoitusluokkaa</item> <item quantity="one">Tämä sovellus: 1/<xliff:g id="NUMBER_0">%d</xliff:g> ilmoitusluokkaa</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"Ilmoitusten hallinta"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"Ilmoitusten torkkuasetukset"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuuttia"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuuttia"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 tunti"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"KUMOA"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Torkku: <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Akun käyttö"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Virransäästö ei ole käytettävissä latauksen aikana."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Virransäästö"</string> diff --git a/packages/SystemUI/res/values-fr-rCA/strings.xml b/packages/SystemUI/res/values-fr-rCA/strings.xml index 7f8d59c7dcdf..4dd3c479fd2a 100644 --- a/packages/SystemUI/res/values-fr-rCA/strings.xml +++ b/packages/SystemUI/res/values-fr-rCA/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Vous ne recevrez plus ces notifications"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> catégories de notification"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Cette application n\'a pas de catégories de notification"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 catégorie de notification sur <xliff:g id="NUMBER_1">%d</xliff:g> provenant de cette application</item> <item quantity="other">1 catégorie de notification sur <xliff:g id="NUMBER_1">%d</xliff:g> provenant de cette application</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"paramètres des notifications"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"options de répétition des notifications"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutes"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutes"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 heure"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ANNULER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Reporté pour <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Utilisation de la pile"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Le mode Économie d\'énergie n\'est pas accessible pendant la charge"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Économie d\'énergie"</string> diff --git a/packages/SystemUI/res/values-fr/strings.xml b/packages/SystemUI/res/values-fr/strings.xml index 169830a6227e..649471010be8 100644 --- a/packages/SystemUI/res/values-fr/strings.xml +++ b/packages/SystemUI/res/values-fr/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Vous ne recevrez plus ces notifications"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> catégories de notification"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Cette application n\'a pas de catégories de notification"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 catégorie de notification sur <xliff:g id="NUMBER_1">%d</xliff:g> provenant de cette application</item> <item quantity="other">1 catégorie de notification sur <xliff:g id="NUMBER_1">%d</xliff:g> provenant de cette application</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> : <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"paramètres des notifications"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"options de répétition des notifications"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutes"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutes"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 heure"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ANNULER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Répétée après <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Utilisation batterie"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"L\'économiseur de batterie n\'est pas disponible lorsque l\'appareil est en charge."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Économiseur de batterie"</string> diff --git a/packages/SystemUI/res/values-gl/strings.xml b/packages/SystemUI/res/values-gl/strings.xml index 96a15c75f504..f8daa9e10b45 100644 --- a/packages/SystemUI/res/values-gl/strings.xml +++ b/packages/SystemUI/res/values-gl/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Deixarás de recibir estas notificacións"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorías de notificacións"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Esta aplicación non ten categorías de notificacións"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categorías de notificacións desta aplicación</item> <item quantity="one">1 de <xliff:g id="NUMBER_0">%d</xliff:g> categoría de notificación desta aplicación</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> de <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"controis de notificacións"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opcións para adiar notificacións"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutos"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutos"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESFACER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Adiouse <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Uso de batería"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"A función de aforro da batería non está dispoñible durante a carga"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Aforro de batería"</string> diff --git a/packages/SystemUI/res/values-gu/strings.xml b/packages/SystemUI/res/values-gu/strings.xml index 78c2b901a558..13e47f94069e 100644 --- a/packages/SystemUI/res/values-gu/strings.xml +++ b/packages/SystemUI/res/values-gu/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"તમને હવે આ સૂચનાઓ મળશે નહીં"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> સૂચના કૅટેગરીઓ"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"આ ઍપ્લિકેશનમાં સૂચના કૅટેગરી નથી"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">આ ઍપ્લિકેશનમાંની <xliff:g id="NUMBER_1">%d</xliff:g> સૂચના કૅટેગરીમાંથી 1</item> <item quantity="other">આ ઍપ્લિકેશનમાંની <xliff:g id="NUMBER_1">%d</xliff:g> સૂચના કૅટેગરીમાંથી 1</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"સૂચના નિયંત્રણો"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"સૂચના સ્નૂઝ કરવાના વિકલ્પો"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 મિનિટ"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 મિનિટ"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 કલાક"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"પૂર્વવત્ કરો"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> માટે સ્નૂઝ કરો"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"બૅટરી વપરાશ"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ચાર્જિંગ દરમિયાન બૅટરી બચતકર્તા ઉપલબ્ધ નથી"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"બૅટરી બચતકર્તા"</string> diff --git a/packages/SystemUI/res/values-hi/strings.xml b/packages/SystemUI/res/values-hi/strings.xml index a0b30694c86e..65eda75452d7 100644 --- a/packages/SystemUI/res/values-hi/strings.xml +++ b/packages/SystemUI/res/values-hi/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"अब आपको ये नोटिफ़िकेशन नहीं मिलेंगे"</string> <string name="notification_num_channels" msgid="2048144408999179471">"नोटिफ़िकेशन की <xliff:g id="NUMBER">%d</xliff:g> श्रेणियां"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"इस ऐप्लिकेशन में नोटिफ़िकेशन श्रेणियां नहीं हैं"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">इस ऐप्लिकेशन की <xliff:g id="NUMBER_1">%d</xliff:g> नोटिफ़िकेशन श्रेणियों में से 1 श्रेणी</item> <item quantity="other">इस ऐप्लिकेशन की <xliff:g id="NUMBER_1">%d</xliff:g> नोटिफ़िकेशन श्रेणियों में से 1 श्रेणी</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"नोटिफ़िकेशन नियंत्रण"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"नोटिफ़िकेशन की याद दिलाने के विकल्प"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 मिनट"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 मिनट"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 घंटा"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"पहले जैसा करें"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> के लिए याद दिलाया गया"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"बैटरी उपयोग"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"चार्ज किए जाने के दौरान बैटरी सेवर उपलब्ध नहीं है"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"बैटरी सेवर"</string> diff --git a/packages/SystemUI/res/values-hr/strings.xml b/packages/SystemUI/res/values-hr/strings.xml index 8a8b57fa3b6c..99df2bfe97c8 100644 --- a/packages/SystemUI/res/values-hr/strings.xml +++ b/packages/SystemUI/res/values-hr/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Više nećete primati te obavijesti"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Broj kategorija obavijesti: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ova aplikacija nema kategorije obavijesti"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obavijesti iz ove aplikacije</item> <item quantity="few">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obavijesti iz ove aplikacije</item> @@ -575,13 +577,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> za aplikaciju <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrole obavijesti"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opcije odgode obavijesti"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuta"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuta"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 sat"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"PONIŠTI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Odgođeno <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Potrošnja baterije"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Štednja baterije nije dostupna tijekom punjenja"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Štednja baterije"</string> diff --git a/packages/SystemUI/res/values-hu/strings.xml b/packages/SystemUI/res/values-hu/strings.xml index 669d7ad6b227..2afaf61c946b 100644 --- a/packages/SystemUI/res/values-hu/strings.xml +++ b/packages/SystemUI/res/values-hu/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Többé nem jelennek meg ezek az értesítések"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> értesítéskategória"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Az alkalmazás nem rendelkezik értesítési kategóriákkal"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other"><xliff:g id="NUMBER_1">%d</xliff:g>/1 értesítési kategória az alkalmazásból</item> <item quantity="one"><xliff:g id="NUMBER_0">%d</xliff:g>/1 értesítési kategória az alkalmazásból</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> – <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"értesítésvezérlők"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"értesítések halasztási beállításai"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 perc"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 perc"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 óra"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"VISSZAVONÁS"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Elhalasztva: <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Akkumulátorhasználat"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Az Akkumulátorkímélő módot töltés közben nem lehet használni"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Akkumulátorkímélő mód"</string> diff --git a/packages/SystemUI/res/values-hy/strings.xml b/packages/SystemUI/res/values-hy/strings.xml index 88de8cbb3580..cc6608a8fc9e 100644 --- a/packages/SystemUI/res/values-hy/strings.xml +++ b/packages/SystemUI/res/values-hy/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Այս ծանուցումներն այլևս չեք ստանա"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> ծանուցման կատեգորիաներ"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Այս հավելվածը ծանուցման կատեգորիաներ չունի"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 out of <xliff:g id="NUMBER_1">%d</xliff:g> notification categories from this app</item> <item quantity="other">1 ալիք` այս հավելվածի <xliff:g id="NUMBER_1">%d</xliff:g> կատեգորիաներից</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ծանուցման կառավարներ"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"ծանուցման հետաձգման ընտրանքներ"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 րոպե"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 րոպե"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ժամ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ՀԵՏԱՐԿԵԼ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Հետաձգվել է <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>ով"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Մարտկոցի օգտագործում"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Մարտկոցի տնտեսումը լիցքավորման ժամանակ հասանելի չէ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Մարտկոցի տնտեսում"</string> diff --git a/packages/SystemUI/res/values-in/strings.xml b/packages/SystemUI/res/values-in/strings.xml index e743d6ea1c18..e71a999d14a6 100644 --- a/packages/SystemUI/res/values-in/strings.xml +++ b/packages/SystemUI/res/values-in/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Anda tidak akan mendapatkan notifikasi ini lagi"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> kategori notifikasi"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Aplikasi ini tidak memiliki kategori notifikasi"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 dari <xliff:g id="NUMBER_1">%d</xliff:g> kategori notifikasi dari aplikasi ini</item> <item quantity="one">1 dari <xliff:g id="NUMBER_0">%d</xliff:g> kategori notifikasi dari aplikasi ini</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrol notifikasi"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opsi tunda notifikasi"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 menit"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 menit"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 jam"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"URUNG"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Ditunda selama <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Pemakaian baterai"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Penghemat Baterai tidak tersedia selama pengisian daya"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Penghemat Baterai"</string> diff --git a/packages/SystemUI/res/values-is/strings.xml b/packages/SystemUI/res/values-is/strings.xml index cf15ab65aadf..bc5bcaa8376e 100644 --- a/packages/SystemUI/res/values-is/strings.xml +++ b/packages/SystemUI/res/values-is/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Þú færð þessar tilkynningar ekki framar"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> tilkynningaflokkar"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Þetta forrit er ekki með tilkynningaflokka"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 af <xliff:g id="NUMBER_1">%d</xliff:g> tilkynningaflokki frá þessu forriti</item> <item quantity="other">1 af <xliff:g id="NUMBER_1">%d</xliff:g> tilkynningaflokkum frá þessu forriti</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"tilkynningastýringar"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"þöggunarstillingar tilkynninga"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 mínútur"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 mínútur"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 klukkustund"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"AFTURKALLA"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Þaggað í <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Rafhlöðunotkun"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Ekki er hægt að nota rafhlöðusparnað meðan á hleðslu stendur"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Rafhlöðusparnaður"</string> diff --git a/packages/SystemUI/res/values-it/strings.xml b/packages/SystemUI/res/values-it/strings.xml index c72434e9ea0b..90838c097d64 100644 --- a/packages/SystemUI/res/values-it/strings.xml +++ b/packages/SystemUI/res/values-it/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Non riceverai più queste notifiche"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorie di notifica"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Questa app non ha categorie di notifica"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 categoria di notifica su <xliff:g id="NUMBER_1">%d</xliff:g> di questa app</item> <item quantity="one">1 categoria di notifica su <xliff:g id="NUMBER_0">%d</xliff:g> di questa app</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"gestione delle notifiche"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opzioni di posticipazione notifiche"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuti"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuti"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ANNULLA"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Posticipato di <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Utilizzo batteria"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Risparmio energetico non disponibile durante la ricarica"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Risparmio energetico"</string> diff --git a/packages/SystemUI/res/values-iw/strings.xml b/packages/SystemUI/res/values-iw/strings.xml index 1768008986b0..687156fb30f9 100644 --- a/packages/SystemUI/res/values-iw/strings.xml +++ b/packages/SystemUI/res/values-iw/strings.xml @@ -556,6 +556,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"לא תקבל את ההודעות האלה יותר"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> קטגוריות של התראות"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"האפליקציה הזו לא תומכת בקטגוריות של הודעות"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="two">קטגוריית הודעות אחת מתוך <xliff:g id="NUMBER_1">%d</xliff:g> מאפליקציה זו</item> <item quantity="many">קטגוריית הודעות אחת מתוך <xliff:g id="NUMBER_1">%d</xliff:g> מאפליקציה זו</item> @@ -579,13 +581,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"בקרת הודעות"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"אפשרויות של דחיית הודעות לטיפול בהמשך"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 דקות"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 דקות"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"שעה אחת"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ביטול"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"נדחה לטיפול בעוד <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"שימוש בסוללה"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"תכונת החיסכון בסוללה אינה זמינה בעת טעינת המכשיר"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"חיסכון בסוללה"</string> diff --git a/packages/SystemUI/res/values-ja/strings.xml b/packages/SystemUI/res/values-ja/strings.xml index f39e0f5a0ac9..cf553b3126dd 100644 --- a/packages/SystemUI/res/values-ja/strings.xml +++ b/packages/SystemUI/res/values-ja/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"今後、この通知は配信されません"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> 個の通知カテゴリ"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"このアプリでは通知カテゴリが設定されていません"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">このアプリの通知カテゴリ <xliff:g id="NUMBER_1">%d</xliff:g> 件中 1 件</item> <item quantity="one">このアプリの通知カテゴリ <xliff:g id="NUMBER_0">%d</xliff:g> 件中 1 件</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"通知管理"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"通知スヌーズ設定"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15分"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30分"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1時間"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"元に戻す"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"スヌーズ: <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"電池の使用状況"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"充電中はバッテリー セーバーは利用できません"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"バッテリー セーバー"</string> diff --git a/packages/SystemUI/res/values-ka/strings.xml b/packages/SystemUI/res/values-ka/strings.xml index 1eb194afa966..f19c9dd9dee0 100644 --- a/packages/SystemUI/res/values-ka/strings.xml +++ b/packages/SystemUI/res/values-ka/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"ამ შეტყობინებებს აღარ მიიღებთ"</string> <string name="notification_num_channels" msgid="2048144408999179471">"შეტყობინებების <xliff:g id="NUMBER">%d</xliff:g> კატეგორია"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ამ აპს შეტყობინებების კატეგორიები არ აქვს"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">ამ აპის შეტყობინებების <xliff:g id="NUMBER_1">%d</xliff:g> კატეგორიიდან 1</item> <item quantity="one">ამ აპის შეტყობინებების <xliff:g id="NUMBER_0">%d</xliff:g> კატეგორიიდან 1</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"შეტყობინებების მართვის საშუალებები"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"შეტყობინებების ჩაჩუმების ვარიანტები"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 წუთი"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 წუთი"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 საათი"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"მოქმედების გაუქმება"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"ჩაჩუმებული იქნება <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ბატარეის მოხმარება"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ბატარეის დამზოგი დატენვისას მიწვდომელია"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ბატარეის დამზოგი"</string> diff --git a/packages/SystemUI/res/values-kk/strings.xml b/packages/SystemUI/res/values-kk/strings.xml index c46573477e94..3ba4cabfc411 100644 --- a/packages/SystemUI/res/values-kk/strings.xml +++ b/packages/SystemUI/res/values-kk/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Енді сізге бұл хабарландырулар жіберілмейді"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> хабарландыру санаттары"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Бұл қолданбада хабарландыру санаттары жоқ"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Осы қолданбадан <xliff:g id="NUMBER_1">%d</xliff:g> ішінен 1 хабарландыру санаты</item> <item quantity="one">Осы қолданбадан <xliff:g id="NUMBER_0">%d</xliff:g> ішінен 1 хабарландыру санаты</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"хабарландыруларды басқару элементтері"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"хабарландыруды кідірту опциялары"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 минут"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 минут"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 сағат"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"КЕРІ ҚАЙТАРУ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> кідіртілді"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Батареяны пайдалану"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Зарядтау кезінде Батарея үнемдегіш қол жетімді емес"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Батарея үнемдегіш"</string> diff --git a/packages/SystemUI/res/values-km/strings.xml b/packages/SystemUI/res/values-km/strings.xml index 7640d250e97b..1784aab3b467 100644 --- a/packages/SystemUI/res/values-km/strings.xml +++ b/packages/SystemUI/res/values-km/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"អ្នកនឹងមិនទទួលបានការជូនដំណឹងទាំងនេះទៀតទេ"</string> <string name="notification_num_channels" msgid="2048144408999179471">"ប្រភេទនៃការជូនដំណឹងចំនួន <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"កម្មវិធីនេះមិនមានប្រភេទនៃការជូនដំណឹងទេ"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">ប្រភេទនៃការជូនដំណឹង 1 ក្នុងចំណោម <xliff:g id="NUMBER_1">%d</xliff:g> ដែលបានពីកម្មវិធីនេះ</item> <item quantity="one">ប្រភេទនៃការជូនដំណឹង 1 ក្នុងចំណោម <xliff:g id="NUMBER_0">%d</xliff:g> ដែលបានពីកម្មវិធីនេះ</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ការគ្រប់គ្រងការជូនដំណឹង"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"ជម្រើសផ្អាកការជូនដំណឹង"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 នាទី"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 នាទី"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ម៉ោង"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"មិនធ្វើវិញ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"បានផ្អាករយៈពេល <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ការប្រើប្រាស់ថ្ម"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"កម្មវិធីសន្សំថ្មមិនអាចប្រើបានអំឡុងពេលសាកថ្មទេ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"កម្មវិធីសន្សំថ្ម"</string> diff --git a/packages/SystemUI/res/values-kn/strings.xml b/packages/SystemUI/res/values-kn/strings.xml index 3b1c7ade7f22..4357e8c23d56 100644 --- a/packages/SystemUI/res/values-kn/strings.xml +++ b/packages/SystemUI/res/values-kn/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"ನೀವು ಇನ್ನು ಮುಂದೆ ಈ ಅಧಿಸೂಚನೆಗಳನ್ನು ಪಡೆಯುವುದಿಲ್ಲ"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> ಅಧಿಸೂಚನೆ ವರ್ಗಗಳು"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ಈ ಅಪ್ಲಿಕೇಶನ್ ಅಧಿಸೂಚನೆ ವರ್ಗಗಳನ್ನು ಹೊಂದಿಲ್ಲ"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">ಈ ಅಪ್ಲಿಕೇಶನ್ನಿಂದ <xliff:g id="NUMBER_1">%d</xliff:g> ಅಧಿಸೂಚನೆ ವರ್ಗಗಳಲ್ಲಿ 1 ವರ್ಗ</item> <item quantity="other">ಈ ಅಪ್ಲಿಕೇಶನ್ನಿಂದ <xliff:g id="NUMBER_1">%d</xliff:g> ಅಧಿಸೂಚನೆ ವರ್ಗಗಳಲ್ಲಿ 1 ವರ್ಗ</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ಅಧಿಸೂಚನೆ ನಿಯಂತ್ರಣಗಳು"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"ಅಧಿಸೂಚನೆ ಸ್ನೂಜ್ ಆಯ್ಕೆಗಳು"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 ನಿಮಿಷಗಳು"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 ನಿಮಿಷಗಳು"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ಗಂಟೆ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ರದ್ದುಮಾಡಿ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> ಗೆ ಸ್ನೂಜ್ ಮಾಡಲಾಗಿದೆ"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ಬ್ಯಾಟರಿ ಬಳಕೆ"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ಚಾರ್ಜಿಂಗ್ ಸಮಯದಲ್ಲಿ ಬ್ಯಾಟರಿ ಸೇವರ್ ಲಭ್ಯವಿರುವುದಿಲ್ಲ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ಬ್ಯಾಟರಿ ಸೇವರ್"</string> diff --git a/packages/SystemUI/res/values-ko/strings.xml b/packages/SystemUI/res/values-ko/strings.xml index 434c6744a433..898618b896db 100644 --- a/packages/SystemUI/res/values-ko/strings.xml +++ b/packages/SystemUI/res/values-ko/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"더 이상 다음의 알림을 받지 않습니다."</string> <string name="notification_num_channels" msgid="2048144408999179471">"알림 카테고리 <xliff:g id="NUMBER">%d</xliff:g>개"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"이 앱에는 알림 카테고리가 없습니다."</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">이 앱에서 <xliff:g id="NUMBER_1">%d</xliff:g>개의 알림 카테고리 중 1개가 정의됨</item> <item quantity="one">이 앱에서 <xliff:g id="NUMBER_0">%d</xliff:g>개의 알림 카테고리 중 1개가 정의됨</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"알림 관리"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"알림 일시 중지 옵션"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15분"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30분"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1시간"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"실행취소"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> 동안 일시 중지됨"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"배터리 사용량"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"충전하는 동안 배터리 세이버는 사용할 수 없습니다."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"배터리 세이버"</string> diff --git a/packages/SystemUI/res/values-ky/strings.xml b/packages/SystemUI/res/values-ky/strings.xml index 0d2517bd030d..464f86645be7 100644 --- a/packages/SystemUI/res/values-ky/strings.xml +++ b/packages/SystemUI/res/values-ky/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Мындан ары бул эскертмелер сизге жөнөтүлбөйт"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Эскертмелердин <xliff:g id="NUMBER">%d</xliff:g> категориясы"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Бул колдонмонун эскертме категориялары жок"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Бул колдонмодогу <xliff:g id="NUMBER_1">%d</xliff:g> эскертме категориянын ичинен 1 категория</item> <item quantity="one">Бул колдонмодогу <xliff:g id="NUMBER_0">%d</xliff:g> эскертме категориянын ичинен 1 категория</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"эскертмелерди башкаруу каражаттары"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"эскертмени тындыруу опциялары"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 мүнөт"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 мүнөт"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 саат"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"КАЙТАРУУ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> тындырылды"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Батарея колдонулушу"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Батареяны үнөмдөгүч түзмөк кубатталып жатканда иштебейт"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Батареяны үнөмдөгүч"</string> diff --git a/packages/SystemUI/res/values-lo/strings.xml b/packages/SystemUI/res/values-lo/strings.xml index 84a51c136aa7..a401e8a6f747 100644 --- a/packages/SystemUI/res/values-lo/strings.xml +++ b/packages/SystemUI/res/values-lo/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"ທ່ານຈະບໍ່ໄດ້ຮັບການແຈ້ງເຕືອນເຫຼົ່ານີ້ອີກຕໍ່ໄປ"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> ໝວດໝູ່ການແຈ້ງເຕືອນ"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ແອັບນີ້ບໍ່ມີໝວດໝູ່ການແຈ້ງເຕືອນ"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 ຈາກທັງໝົດ <xliff:g id="NUMBER_1">%d</xliff:g> ໝວດໝູ່ການແຈ້ງເຕືອນຈາກແອັບນີ້</item> <item quantity="one">1 ຈາກທັງໝົດ <xliff:g id="NUMBER_0">%d</xliff:g> ໝວດໝູ່ການແຈ້ງເຕືອນຈາກແອັບນີ້</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ການຄວບຄຸມການແຈ້ງເຕືອນ"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"ຕົວເລືອກການເລື່ອນການແຈ້ງເຕືອນ"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 ນາທີ"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 ນາທີ"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ຊົ່ວໂມງ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ຍົກເລີກ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"ເລື່ອນໄປ <xliff:g id="TIME_AMOUNT">%1$s</xliff:g> ນາທີແລ້ວ"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ການໃຊ້ແບັດເຕີຣີ"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ຕົວປະຢັດແບັດເຕີຣີບໍ່ມີໃຫ້ນຳໃຊ້ໃນລະຫວ່າງການສາກ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ຕົວປະຢັດແບັດເຕີຣີ"</string> diff --git a/packages/SystemUI/res/values-lt/strings.xml b/packages/SystemUI/res/values-lt/strings.xml index 6fa17d1b655c..26552d6557a7 100644 --- a/packages/SystemUI/res/values-lt/strings.xml +++ b/packages/SystemUI/res/values-lt/strings.xml @@ -556,6 +556,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Nebegausite šių pranešimų"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Pranešimų kategorijų: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Šioje programoje nėra pranešimų kategorijų"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 iš <xliff:g id="NUMBER_1">%d</xliff:g> šios programos pranešimų kategorijos</item> <item quantity="few">1 iš <xliff:g id="NUMBER_1">%d</xliff:g> šios programos pranešimų kategorijų</item> @@ -579,13 +581,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"„<xliff:g id="APP_NAME">%1$s</xliff:g>“ <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"pranešimų valdikliai"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"pranešimų snaudimo parinktys"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 min."</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 min."</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 val."</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ANULIUOTI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Nustatyta snausti <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Akum. energ. vartoj."</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Akumuliatoriaus tausojimo priemonė nepasiekiama įkraunant"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Akumuliatoriaus tausojimo priemonė"</string> diff --git a/packages/SystemUI/res/values-lv/strings.xml b/packages/SystemUI/res/values-lv/strings.xml index ce6bba9018c7..f635178e36ca 100644 --- a/packages/SystemUI/res/values-lv/strings.xml +++ b/packages/SystemUI/res/values-lv/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Jūs vairs nesaņemsiet šos paziņojumus"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> paziņojumu kategorijas"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Paziņojumu kategorijas šajā lietotnē nav pieejamas."</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="zero">1 no <xliff:g id="NUMBER_1">%d</xliff:g> šīs lietotnes paziņojumu kategorijām.</item> <item quantity="one">1 no <xliff:g id="NUMBER_1">%d</xliff:g> šīs lietotnes paziņojumu kategorijas.</item> @@ -575,13 +577,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"paziņojumu vadīklas"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"paziņojumu atlikšanas opcijas"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minūtes"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minūtes"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 stunda"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ATSAUKT"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Atlikts: <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Akumulatora lietojums"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Akumulatora jaudas taupīšanas režīms uzlādes laikā nav pieejams."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Akumulatora jaudas taupīšanas režīms"</string> diff --git a/packages/SystemUI/res/values-mk/strings.xml b/packages/SystemUI/res/values-mk/strings.xml index b91fd1829f06..fd773adaa285 100644 --- a/packages/SystemUI/res/values-mk/strings.xml +++ b/packages/SystemUI/res/values-mk/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Веќе нема да ги добивате овие известувања"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> категории известувања"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Апликацијава нема катерии известувања"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 од <xliff:g id="NUMBER_1">%d</xliff:g> категорија известувања од апликацијава</item> <item quantity="other">1 од <xliff:g id="NUMBER_1">%d</xliff:g> категории известувања од апликацијава</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"контроли за известувањето"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"опции за одложување на известувањето"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 минути"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 минути"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 час"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ВРАТИ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Одложено за <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Користење батерија"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Штедачот на батерија не е достапен при полнење"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Штедач на батерија"</string> diff --git a/packages/SystemUI/res/values-ml/strings.xml b/packages/SystemUI/res/values-ml/strings.xml index f96f6599b20b..32a36b32ff7d 100644 --- a/packages/SystemUI/res/values-ml/strings.xml +++ b/packages/SystemUI/res/values-ml/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"നിങ്ങൾക്ക് ഇനി ഈ അറിയിപ്പുകൾ ലഭിക്കില്ല"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> അറിയിപ്പ് വിഭാഗങ്ങൾ"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ഈ ആപ്പിന് അറിയിപ്പ് വിഭാഗങ്ങളില്ല"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">ഈ ആപ്പിൽ നിന്ന് 1 / <xliff:g id="NUMBER_1">%d</xliff:g> അറിയിപ്പ് വിഭാഗങ്ങൾ</item> <item quantity="one">ഈ ആപ്പിൽ നിന്ന് 1 / <xliff:g id="NUMBER_0">%d</xliff:g> അറിയിപ്പ് വിഭാഗം</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"അറിയിപ്പ് നിയന്ത്രണങ്ങൾ"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"അറിയിപ്പ് സ്നൂസ് ഓപ്ഷനുകൾ"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 മിനിറ്റ്"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 മിനിറ്റ്"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"ഒരു മണിക്കൂർ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"പഴയപടിയാക്കുക"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> സമയത്തേക്ക് സ്നൂസ് ചെയ്തു"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ബാറ്ററി ഉപയോഗം"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ചാർജുചെയ്യുന്ന സമയത്ത് ബാറ്ററി സേവർ ലഭ്യമല്ല"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ബാറ്ററി സേവർ"</string> diff --git a/packages/SystemUI/res/values-mn/strings.xml b/packages/SystemUI/res/values-mn/strings.xml index 75c3a8a771ef..faa09f6e6605 100644 --- a/packages/SystemUI/res/values-mn/strings.xml +++ b/packages/SystemUI/res/values-mn/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ta цаашид эдгээр мэдэгдлийг авахгүй"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> мэдэгдлийн ангилал"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Энэ апп-д мэдэгдлийн категори алга"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Энэ аппын <xliff:g id="NUMBER_1">%d</xliff:g> мэдэгдлийн категорийн 1</item> <item quantity="one">Энэ аппын <xliff:g id="NUMBER_0">%d</xliff:g> мэдэгдлийн категорийн 1</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"мэдэгдлийн удирдлага"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"мэдэгдэл түр хойшлуулагчийн сонголт"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 минут"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 минут"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 цаг"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"БУЦААХ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g>-д түр хойшлуулсан"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Тэжээл ашиглалт"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Цэнэглэх үед тэжээл хэмнэгч ажиллахгүй"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Тэжээл хэмнэгч"</string> diff --git a/packages/SystemUI/res/values-mr/strings.xml b/packages/SystemUI/res/values-mr/strings.xml index 98785fffba21..ed8b034d037c 100644 --- a/packages/SystemUI/res/values-mr/strings.xml +++ b/packages/SystemUI/res/values-mr/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"तुम्हाला यापुढे या सूचना प्राप्त होणार नाहीत"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> सूचना श्रेण्या"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"या अॅपला सूचना श्रेण्या नाहीत"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">या अॅपकडील <xliff:g id="NUMBER_1">%d</xliff:g> पैकी 1 सूचना श्रेणी</item> <item quantity="other">या अॅपकडील <xliff:g id="NUMBER_1">%d</xliff:g> पैकी 1 सूचना श्रेणी</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"सूचना नियंत्रणे"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"सूचना स्नूझ पर्याय"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 मिनिटे"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 मिनिटे"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 तास"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"पूर्ववत करा"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> साठी स्नूझ करा"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"बॅटरी वापर"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"चार्ज करताना बॅटरी बचतकर्ता उपलब्ध नाही"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"बॅटरी बचतकर्ता"</string> diff --git a/packages/SystemUI/res/values-ms/strings.xml b/packages/SystemUI/res/values-ms/strings.xml index e64f78d7d2de..0e60d5d54660 100644 --- a/packages/SystemUI/res/values-ms/strings.xml +++ b/packages/SystemUI/res/values-ms/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Anda tidak akan menerima pemberitahuan ini lagi"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> kategori pemberitahuan"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Apl ini tiada kategori pemberitahuan"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 daripada <xliff:g id="NUMBER_1">%d</xliff:g> kategori pemberitahuan daripada apl ini</item> <item quantity="one">1 daripada <xliff:g id="NUMBER_0">%d</xliff:g> kategori pemberitahuan daripada apl ini</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kawalan pemberitahuan"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"pilihan tunda pemberitahuan"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minit"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minit"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 jam"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"BUAT ASAL"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Ditunda selama <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Penggunaan bateri"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Penjimat Bateri tidak tersedia semasa mengecas"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Penjimat Bateri"</string> diff --git a/packages/SystemUI/res/values-my/strings.xml b/packages/SystemUI/res/values-my/strings.xml index cf101d4781e6..740ded7dcb76 100644 --- a/packages/SystemUI/res/values-my/strings.xml +++ b/packages/SystemUI/res/values-my/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"သင်သည် ဤအကြောင်းကြားချက်များကို နောက်ထပ် လက်ခံရရှိတော့မည် မဟုတ်ပါ"</string> <string name="notification_num_channels" msgid="2048144408999179471">"အကြောင်းကြားချက် အမျိုးအစား <xliff:g id="NUMBER">%d</xliff:g> ခု"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ဤအက်ပ်တွင် အကြောင်းကြားချက် အမျိုးအစားများ မရှိပါ"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">ဤအက်ပ်ရှိ အကြောင်းကြားချက်အမျိုးအစား <xliff:g id="NUMBER_1">%d</xliff:g> ခု အနက်မှ ၁ ခု</item> <item quantity="one">ဤအက်ပ်ရှိ အကြောင်းကြားချက်အမျိုးအစား <xliff:g id="NUMBER_0">%d</xliff:g> ခု အနက်မှ ၁ ခု</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"အကြောင်းကြားချက် ထိန်းချုပ်မှုများ"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"အကြောင်းကြားချက်များကို ဆိုင်းငံ့ရန် ရွေးချယ်စရာများ"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"၁၅ မိနစ်"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"၃၀ မိနစ်"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"၁ နာရီ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"တစ်ဆင့် နောက်ပြန်ပြန်ပါ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> ဆိုင်းငံ့ရန်"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ဘက်ထရီ အသုံးပြုမှု"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"အားသွင်းနေချိန်မှာ Battery Saver ကို သုံးမရပါ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Battery Saver"</string> diff --git a/packages/SystemUI/res/values-nb/strings.xml b/packages/SystemUI/res/values-nb/strings.xml index 321934cda64c..b86c256edbf0 100644 --- a/packages/SystemUI/res/values-nb/strings.xml +++ b/packages/SystemUI/res/values-nb/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Du får ikke disse varslene lenger"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> varselkategorier"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Denne appen har ikke varselkategorier"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 av <xliff:g id="NUMBER_1">%d</xliff:g> varselkategorier fra denne appen</item> <item quantity="one">1 av <xliff:g id="NUMBER_0">%d</xliff:g> varselkategori fra denne appen</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"varselinnstillinger"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"slumrealternativer for varsler"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutter"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutter"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 time"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ANGRE"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Slumrer i <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Batteribruk"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Batterisparing er ikke tilgjengelig under lading"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Batterisparing"</string> diff --git a/packages/SystemUI/res/values-ne/strings.xml b/packages/SystemUI/res/values-ne/strings.xml index 9a4c5aca5b8f..601fcae4c3df 100644 --- a/packages/SystemUI/res/values-ne/strings.xml +++ b/packages/SystemUI/res/values-ne/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"तपाईंले अब उप्रान्त यी सूचनाहरू प्राप्त गर्नुहुने छैन"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> सूचनाका कोटिहरू"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"यस अनुप्रयोगमा सूचना सम्बन्धी कोटीहरू छैनन्"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">यस अनुप्रयोगका <xliff:g id="NUMBER_1">%d</xliff:g> सूचना कोटिहरू मध्ये १</item> <item quantity="one"> यस अनुप्रयोगको <xliff:g id="NUMBER_0">%d</xliff:g> सूचना कोटी मध्ये १</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"सूचना सम्बन्धी नियन्त्रणहरू"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"सूचना स्नुज गर्ने विकल्पहरू"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"१५ मिनेट"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"३० मिनेट"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"१ घन्टा"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"अनडू गर्नुहोस्"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> का लागि स्नुज गरियो"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ब्याट्री उपयोग"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"चार्ज गर्ने समयमा ब्याट्री सेभर उपलब्ध छैन"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ब्याट्री सेभर"</string> diff --git a/packages/SystemUI/res/values-nl/strings.xml b/packages/SystemUI/res/values-nl/strings.xml index 1cd56b924cf9..91a953df4fa3 100644 --- a/packages/SystemUI/res/values-nl/strings.xml +++ b/packages/SystemUI/res/values-nl/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Je ontvangt deze meldingen niet meer"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> meldingscategorieën"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Deze app heeft geen meldingscategorieën"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 van <xliff:g id="NUMBER_1">%d</xliff:g> meldingscategorieën van deze app</item> <item quantity="one">1 van <xliff:g id="NUMBER_0">%d</xliff:g> meldingscategorie van deze app</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"beheeropties voor meldingen"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"snooze-opties voor meldingen"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuten"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuten"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 uur"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ONGEDAAN MAKEN"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Snoozefunctie <xliff:g id="TIME_AMOUNT">%1$s</xliff:g> actief"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Accugebruik"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Batterijbesparing niet beschikbaar tijdens opladen"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Batterijbesparing"</string> diff --git a/packages/SystemUI/res/values-pa/strings.xml b/packages/SystemUI/res/values-pa/strings.xml index 4b752dccb852..5fc0b1b93433 100644 --- a/packages/SystemUI/res/values-pa/strings.xml +++ b/packages/SystemUI/res/values-pa/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"ਤੁਹਾਨੂੰ ਹੁਣ ਇਹ ਸੂਚਨਾਵਾਂ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹੋਣਗੀਆਂ"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> ਸੂਚਨਾ ਸ਼੍ਰੇਣੀਆਂ"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ਇਸ ਐਪ ਵਿੱਚ ਸੂਚਨਾ ਸ਼੍ਰੇਣੀਆਂ ਨਹੀਂ ਹਨ"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">ਇਸ ਐਪ ਤੋਂ <xliff:g id="NUMBER_1">%d</xliff:g> ਸੂਚਨਾ ਸ਼੍ਰੇਣੀ ਵਿੱਚੋਂ 1</item> <item quantity="other">ਇਸ ਐਪ ਤੋਂ <xliff:g id="NUMBER_1">%d</xliff:g> ਸੂਚਨਾ ਸ਼੍ਰੇਣੀਆਂ ਵਿੱਚੋਂ 1</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ਸੂਚਨਾ ਕੰਟਰੋਲ"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"ਸੂਚਨਾ ਸਨੂਜ਼ ਵਿਕਲਪ"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 ਮਿੰਟ"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 ਮਿੰਟ"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ਘੰਟਾ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ਅਣਕੀਤਾ ਕਰੋ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> ਲਈ ਸਨੂਜ਼ ਕੀਤਾ ਗਿਆ"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"ਬੈਟਰੀ ਵਰਤੋਂ"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ਬੈਟਰੀ ਸੇਵਰ ਚਾਰਜਿੰਗ ਦੌਰਾਨ ਉਪਲਬਧ ਨਹੀਂ ਹੈ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"ਬੈਟਰੀ ਸੇਵਰ"</string> diff --git a/packages/SystemUI/res/values-pl/strings.xml b/packages/SystemUI/res/values-pl/strings.xml index 354dad69bafb..86a6272ec6f8 100644 --- a/packages/SystemUI/res/values-pl/strings.xml +++ b/packages/SystemUI/res/values-pl/strings.xml @@ -556,6 +556,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Nie będziesz już otrzymywać tych powiadomień"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Kategorie powiadomień: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ta aplikacja nie ma kategorii powiadomień"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="few">1 z <xliff:g id="NUMBER_1">%d</xliff:g> kategorii powiadomień z tej aplikacji</item> <item quantity="many">1 z <xliff:g id="NUMBER_1">%d</xliff:g> kategorii powiadomień z tej aplikacji</item> @@ -579,13 +581,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"sterowanie powiadomieniami"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opcje odkładania powiadomień"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 min"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 min"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 godz."</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"COFNIJ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Odłożono na <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Wykorzystanie baterii"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Oszczędzanie baterii nie jest dostępne podczas ładowania"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Oszczędzanie baterii"</string> diff --git a/packages/SystemUI/res/values-pt-rBR/strings.xml b/packages/SystemUI/res/values-pt-rBR/strings.xml index 8007fe7118aa..ba62df4cad43 100644 --- a/packages/SystemUI/res/values-pt-rBR/strings.xml +++ b/packages/SystemUI/res/values-pt-rBR/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Você deixará de receber essas notificações"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorias de notificação"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Este app não tem categorias de notificação"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categoria de notificação deste app</item> <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categorias de notificação deste app</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> do <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"controles de notificação"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opções de adiamento de notificação"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutos"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutos"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"Uma hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESFAZER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Adiada para <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Uso da bateria"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"A Economia de bateria não fica disponível durante o carregamento"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Economia de bateria"</string> diff --git a/packages/SystemUI/res/values-pt-rPT/strings.xml b/packages/SystemUI/res/values-pt-rPT/strings.xml index 645722cc3914..796e0d310dd3 100644 --- a/packages/SystemUI/res/values-pt-rPT/strings.xml +++ b/packages/SystemUI/res/values-pt-rPT/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Deixará de receber estas notificações"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorias de notificação"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Esta aplicação não tem categorias de notificação"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <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> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> do <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"controlos de notificação"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opções de suspensão de notificações"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutos"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutos"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <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> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Utiliz. da bateria"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Poupança de bateria não disponível durante o carregamento"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Poupança de bateria"</string> diff --git a/packages/SystemUI/res/values-pt/strings.xml b/packages/SystemUI/res/values-pt/strings.xml index 8007fe7118aa..ba62df4cad43 100644 --- a/packages/SystemUI/res/values-pt/strings.xml +++ b/packages/SystemUI/res/values-pt/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Você deixará de receber essas notificações"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorias de notificação"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Este app não tem categorias de notificação"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categoria de notificação deste app</item> <item quantity="other">1 de <xliff:g id="NUMBER_1">%d</xliff:g> categorias de notificação deste app</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g> do <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"controles de notificação"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opções de adiamento de notificação"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minutos"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minutos"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"Uma hora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"DESFAZER"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Adiada para <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Uso da bateria"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"A Economia de bateria não fica disponível durante o carregamento"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Economia de bateria"</string> diff --git a/packages/SystemUI/res/values-ro/strings.xml b/packages/SystemUI/res/values-ro/strings.xml index 0fdb950a0354..8c39954f55c9 100644 --- a/packages/SystemUI/res/values-ro/strings.xml +++ b/packages/SystemUI/res/values-ro/strings.xml @@ -556,6 +556,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Nu veți mai primi aceste notificări"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> categorii de notificări"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Această aplicație nu are categorii de notificare"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="few">1 din <xliff:g id="NUMBER_1">%d</xliff:g> categorii de notificare din această aplicație</item> <item quantity="other">1 din <xliff:g id="NUMBER_1">%d</xliff:g> de categorii de notificare din această aplicație</item> @@ -577,13 +579,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"comenzile notificării"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opțiuni de amânare a notificării"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minute"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 de minute"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 oră"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ANULAȚI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Amânată <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Utilizarea bateriei"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Economisirea bateriei nu este disponibilă pe durata încărcării"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Economisirea bateriei"</string> diff --git a/packages/SystemUI/res/values-ru/strings.xml b/packages/SystemUI/res/values-ru/strings.xml index 64ea3ccfc39a..956179eda8d0 100644 --- a/packages/SystemUI/res/values-ru/strings.xml +++ b/packages/SystemUI/res/values-ru/strings.xml @@ -558,6 +558,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Вы больше не будете получать эти уведомления"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Категорий оповещений: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"В приложении нет категорий уведомлений"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 из <xliff:g id="NUMBER_1">%d</xliff:g> категории уведомлений этого приложения</item> <item quantity="few">1 из <xliff:g id="NUMBER_1">%d</xliff:g> категорий уведомлений этого приложения</item> @@ -581,13 +583,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g>: <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"настройки уведомлений"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"параметры отсрочки уведомлений"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 минут"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 минут"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 час"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ОТМЕНИТЬ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Отложено на <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Уровень заряда"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Режим энергосбережения нельзя включить во время зарядки"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Режим энергосбережения"</string> diff --git a/packages/SystemUI/res/values-si/strings.xml b/packages/SystemUI/res/values-si/strings.xml index 316ba8bbbe35..b6743e197ebe 100644 --- a/packages/SystemUI/res/values-si/strings.xml +++ b/packages/SystemUI/res/values-si/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"ඔබට තවදුරටත් මෙම දැනුම්දීම් නොලැබෙනු ඇත"</string> <string name="notification_num_channels" msgid="2048144408999179471">"දැනුම්දීම් කාණ්ඩ <xliff:g id="NUMBER">%d</xliff:g>ක්"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"මෙම යෙදුම හට දැනුම්දීම් ප්රවර්ග නොමැත"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">මෙම යෙදුමෙන් දැනුම්දීම් ප්රවර්ග <xliff:g id="NUMBER_1">%d</xliff:g>න් 1ක්</item> <item quantity="other">මෙම යෙදුමෙන් දැනුම්දීම් ප්රවර්ග <xliff:g id="NUMBER_1">%d</xliff:g>න් 1ක්</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"දැනුම්දීම් පාලන"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"දැනුම්දීම් මදක් නතර කිරීමේ විකල්ප"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"මිනිත්තු 15"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"මිනිත්තු 30"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"පැය 1"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"අස් කරන්න"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g>ක් මදක් නතර කරන ලදී"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"බැටරි භාවිතය"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ආරෝපණය අතරතුර බැටරි සුරැකුම ලබා ගත නොහැකිය."</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"බැටරි සුරැකුම"</string> diff --git a/packages/SystemUI/res/values-sk/strings.xml b/packages/SystemUI/res/values-sk/strings.xml index 3c3f3d55a2d7..d102ddadd276 100644 --- a/packages/SystemUI/res/values-sk/strings.xml +++ b/packages/SystemUI/res/values-sk/strings.xml @@ -558,6 +558,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Tieto upozornenia už nebudete dostávať"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Počet kategórií upozornení: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Táto aplikácia nemá kategórie upozornení"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="few">1 z <xliff:g id="NUMBER_1">%d</xliff:g> kategórií upozornení z tejto aplikácie</item> <item quantity="many">1 z <xliff:g id="NUMBER_1">%d</xliff:g> kategórie upozornení z tejto aplikácie</item> @@ -581,13 +583,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ovládacie prvky pre upozornenia"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"možnosti stlmenia upozornení"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minút"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minút"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 hod."</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"SPÄŤ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Stlmené na <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Využitie batérie"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Počas nabíjania nie je Šetrič batérie k dispozícii"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Šetrič batérie"</string> diff --git a/packages/SystemUI/res/values-sl/strings.xml b/packages/SystemUI/res/values-sl/strings.xml index 17a06e9acc0c..f61049d34aa3 100644 --- a/packages/SystemUI/res/values-sl/strings.xml +++ b/packages/SystemUI/res/values-sl/strings.xml @@ -558,6 +558,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Teh obvestil ne boste več prejemali"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Št. kategorij obvestil: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ta aplikacija nima kategorij obvestil"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorije obvestil iz te aplikacije</item> <item quantity="two">1 od <xliff:g id="NUMBER_1">%d</xliff:g> kategorij obvestil iz te aplikacije</item> @@ -581,13 +583,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrolniki obvestil"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"možnosti preložitve obvestil"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minut"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minut"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ura"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"RAZVELJAVI"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Preloženo za <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Poraba akumulatorja"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Varčevanje z energijo akumulatorja med polnjenjem ni na voljo"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Varčevanje z energijo akumulatorja"</string> diff --git a/packages/SystemUI/res/values-sq/strings.xml b/packages/SystemUI/res/values-sq/strings.xml index 92f7be87bf12..1ad24ebb242e 100644 --- a/packages/SystemUI/res/values-sq/strings.xml +++ b/packages/SystemUI/res/values-sq/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Këto njoftime nuk do t\'i marrësh më"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> kategori njoftimesh"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ky aplikacion nuk ka kategori njoftimesh"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 nga <xliff:g id="NUMBER_1">%d</xliff:g> kategori njoftimi nga ky aplikacion</item> <item quantity="one">1 nga <xliff:g id="NUMBER_0">%d</xliff:g> kategori njoftimi nga ky aplikacion</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"kontrollet e njoftimit"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"opsionet e shtyrjes së njoftimit"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuta"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuta"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 orë"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ZHBËJ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"U shty për <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Përdorimi i baterisë"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"\"Kursyesi i baterisë\" nuk është i disponueshëm gjatë karikimit"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Kursyesi i baterisë"</string> diff --git a/packages/SystemUI/res/values-sr/strings.xml b/packages/SystemUI/res/values-sr/strings.xml index c10408f3e090..163a09dbd6b8 100644 --- a/packages/SystemUI/res/values-sr/strings.xml +++ b/packages/SystemUI/res/values-sr/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Више нећете добијати ова обавештења"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Категорија обавештења: <xliff:g id="NUMBER">%d</xliff:g>"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ова апликација нема категорије обавештења"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 од <xliff:g id="NUMBER_1">%d</xliff:g> категорије обавештења за ову апликацију</item> <item quantity="few">1 од <xliff:g id="NUMBER_1">%d</xliff:g> категорије обавештења за ову апликацију</item> @@ -575,13 +577,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"контроле обавештења"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"опције за одлагање обавештења"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 минута"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 минута"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 сат"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ОПОЗОВИ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Одложено је за <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Потрошња батерије"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Уштеда батерије није доступна током пуњења"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Уштеда батерије"</string> diff --git a/packages/SystemUI/res/values-sv/strings.xml b/packages/SystemUI/res/values-sv/strings.xml index 4e373a82cd70..b6e54346b0e3 100644 --- a/packages/SystemUI/res/values-sv/strings.xml +++ b/packages/SystemUI/res/values-sv/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Inga fler aviseringar av det här slaget visas"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> aviseringskategorier"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Det finns inga aviseringskategorier i appen"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 av <xliff:g id="NUMBER_1">%d</xliff:g> aviseringskategorier från denna app</item> <item quantity="one">1 av <xliff:g id="NUMBER_0">%d</xliff:g> aviseringskategorier från denna app</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"inställningar för aviseringar"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"alternativ för att snooza aviseringar"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuter"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuter"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 timme"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ÅNGRA"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Snoozad i <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Batteriförbrukning"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Batterisparläget är inte tillgängligt vid laddning"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Batterisparläge"</string> diff --git a/packages/SystemUI/res/values-sw/strings.xml b/packages/SystemUI/res/values-sw/strings.xml index 9ba6522df0d0..b51f44245667 100644 --- a/packages/SystemUI/res/values-sw/strings.xml +++ b/packages/SystemUI/res/values-sw/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Hutapokea arifa hizi tena"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Aina <xliff:g id="NUMBER">%d</xliff:g> za arifa"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Programu hii haina aina za arifa"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Aina 1 ya arifa kati ya <xliff:g id="NUMBER_1">%d</xliff:g> kutoka kwenye kifaa hiki</item> <item quantity="one">Aina 1 ya arifa kati ya <xliff:g id="NUMBER_0">%d</xliff:g> kutoka kwenye kifaa hiki</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"vidhibiti vya arifa"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"chaguo za kuahirisha arifa"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"Dakika 15"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"Dakika 30"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"Saa 1"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"TENDUA"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Imeahirishwa kwa <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Matumizi ya betri"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Kiokoa Betri hakipatikani unapochaji betri"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Kiokoa Betri"</string> diff --git a/packages/SystemUI/res/values-ta/strings.xml b/packages/SystemUI/res/values-ta/strings.xml index 35168c848748..57aa04a00719 100644 --- a/packages/SystemUI/res/values-ta/strings.xml +++ b/packages/SystemUI/res/values-ta/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"இந்த அறிவிப்புகளை இனி பெறமாட்டீர்கள்"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> அறிவிப்பு வகைகள்"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"இந்தப் பயன்பாட்டில் அறிவிப்பு வகைகள் இல்லை"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">இந்தப் பயன்பாடு வழங்கும் <xliff:g id="NUMBER_1">%d</xliff:g> அறிவிப்பு வகைகளில் ஒரு அறிவிப்பு வகை</item> <item quantity="one">இந்தப் பயன்பாடு வழங்கும் <xliff:g id="NUMBER_0">%d</xliff:g> அறிவிப்பு வகையில் ஒரு அறிவிப்பு வகை</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"அறிவிப்புக் கட்டுப்பாடுகள்"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"அறிவிப்பை உறக்கநிலையாக்கும் விருப்பங்கள்"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 நிமிடங்கள்"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 நிமிடங்கள்"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 மணிநேரம்"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"செயல்தவிர்"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"உறக்கநிலையில் வைத்திருந்த நேரம்: <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"பேட்டரி உபயோகம்"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"சார்ஜ் செய்யும் போது பேட்டரி சேமிப்பானைப் பயன்படுத்த முடியாது"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"பேட்டரி சேமிப்பான்"</string> diff --git a/packages/SystemUI/res/values-te/strings.xml b/packages/SystemUI/res/values-te/strings.xml index 6293fc5b720b..56b271f3f303 100644 --- a/packages/SystemUI/res/values-te/strings.xml +++ b/packages/SystemUI/res/values-te/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"మీరు ఇకపై ఈ నోటిఫికేషన్లను పొందరు"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> నోటిఫికేషన్ వర్గాలు"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"ఈ అనువర్తనానికి నోటిఫికేషన్ వర్గాలు లేవు"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">ఈ అనువర్తనం నుంచి <xliff:g id="NUMBER_1">%d</xliff:g> నోటిఫికేషన్ వర్గాలలో 1</item> <item quantity="one">ఈ అనువర్తనం నుంచి <xliff:g id="NUMBER_0">%d</xliff:g> నోటిఫికేషన్ వర్గంలో 1</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"నోటిఫికేషన్ నియంత్రణలు"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"నోటిఫికేషన్ తాత్కాలిక ఆపివేత ఎంపికలు"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 నిమిషాలు"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 నిమిషాలు"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 గంట"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"చర్య రద్దు చేయి"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> వరకు తాత్కాలికంగా ఆపివేయబడింది"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"బ్యాటరీ వినియోగం"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ఛార్జ్ అవుతున్న సమయంలో బ్యాటరీ సేవర్ అందుబాటులో ఉండదు"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"బ్యాటరీ సేవర్"</string> diff --git a/packages/SystemUI/res/values-th/strings.xml b/packages/SystemUI/res/values-th/strings.xml index 5fa88540a047..22596819a67c 100644 --- a/packages/SystemUI/res/values-th/strings.xml +++ b/packages/SystemUI/res/values-th/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"คุณจะไม่ได้รับการแจ้งเตือนเหล่านี้อีก"</string> <string name="notification_num_channels" msgid="2048144408999179471">"หมวดหมู่การแจ้งเตือน <xliff:g id="NUMBER">%d</xliff:g> หมวด"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"แอปนี้ไม่มีหมวดหมู่การแจ้งเตือน"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">การแจ้งเตือน 1 ใน <xliff:g id="NUMBER_1">%d</xliff:g> หมวดหมู่จากแอปนี้</item> <item quantity="one">การแจ้งเตือน 1 ใน <xliff:g id="NUMBER_0">%d</xliff:g> หมวดหมู่จากแอปนี้</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"ส่วนควบคุมการแจ้งเตือน"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"ตัวเลือกการปิดเสียงแจ้งเตือนชั่วคราว"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 นาที"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 นาที"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ชั่วโมง"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"เลิกทำ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"ปิดเสียงเตือนชั่วคราวไว้เป็นเวลา <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"การใช้งานแบตเตอรี่"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"ไม่สามารถใช้โหมดประหยัดแบตเตอรี่ระหว่างการชาร์จ"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"โหมดประหยัดแบตเตอรี่"</string> diff --git a/packages/SystemUI/res/values-tl/strings.xml b/packages/SystemUI/res/values-tl/strings.xml index a54b1b919a42..7b9135a56a4e 100644 --- a/packages/SystemUI/res/values-tl/strings.xml +++ b/packages/SystemUI/res/values-tl/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Hindi ka na makakatanggap ng ganitong mga notification"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> (na) kategorya ng notification"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Walang kategorya ng notification ang app na ito"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 sa <xliff:g id="NUMBER_1">%d</xliff:g> kategorya ng notification mula sa app na ito</item> <item quantity="other">1 sa <xliff:g id="NUMBER_1">%d</xliff:g> na kategorya ng notification mula sa app na ito</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"mga kontrol ng notification"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"mga opsyon sa pag-snooze ng notification"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 minuto"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 minuto"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 oras"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"I-UNDO"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Na-snooze ng <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Paggamit ng baterya"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Hindi available ang Pangtipid sa Baterya kapag nagcha-charge"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Pangtipid sa Baterya"</string> diff --git a/packages/SystemUI/res/values-tr/strings.xml b/packages/SystemUI/res/values-tr/strings.xml index caaf403814c3..2743fccf115d 100644 --- a/packages/SystemUI/res/values-tr/strings.xml +++ b/packages/SystemUI/res/values-tr/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Bu bildirimleri artık almayacaksınız"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> bildirim kategorisi"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Bu uygulamanın bildirim kategorisi yok"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Bu uygulamadaki <xliff:g id="NUMBER_1">%d</xliff:g> bildirim kategorisinden 1 tanesi</item> <item quantity="one">Bu uygulamadaki <xliff:g id="NUMBER_0">%d</xliff:g> bildirim kategorisinden 1 tanesi</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"Bildirim kontrolleri"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"bildirim erteleme seçenekleri"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 dakika"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 dakika"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 saat"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"GERİ AL"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> süreyle ertelendi"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Pil kullanımı"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Şarj sırasında Pil Tasarrufu özelliği kullanılamaz"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Pil Tasarrufu"</string> diff --git a/packages/SystemUI/res/values-uk/strings.xml b/packages/SystemUI/res/values-uk/strings.xml index 58f38553f749..a2245459219c 100644 --- a/packages/SystemUI/res/values-uk/strings.xml +++ b/packages/SystemUI/res/values-uk/strings.xml @@ -558,6 +558,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ви більше не отримуватимете ці сповіщення"</string> <string name="notification_num_channels" msgid="2048144408999179471">"Категорії сповіщень (<xliff:g id="NUMBER">%d</xliff:g>)"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"У цьому додатку немає категорій сповіщень"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 з <xliff:g id="NUMBER_1">%d</xliff:g> категорії сповіщень із цього додатка</item> <item quantity="few">1 з <xliff:g id="NUMBER_1">%d</xliff:g> категорій сповіщень із цього додатка</item> @@ -581,13 +583,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"елементи керування сповіщеннями"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"параметри відкладення сповіщень"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 хвилин"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 хвилин"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 годину"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"ВІДМІНИТИ"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Відкладено на <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Використання заряду"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Режим енергозбереження не можна ввімкнути під час заряджання"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Режим енергозбереження"</string> diff --git a/packages/SystemUI/res/values-ur/strings.xml b/packages/SystemUI/res/values-ur/strings.xml index 4d18eec415e2..2ad6bb84bbcb 100644 --- a/packages/SystemUI/res/values-ur/strings.xml +++ b/packages/SystemUI/res/values-ur/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"آپ کو یہ اطلاعات مزید نہیں ملیں گی"</string> <string name="notification_num_channels" msgid="2048144408999179471">"اطلاع کے <xliff:g id="NUMBER">%d</xliff:g> زمرے"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"اس ایپ میں اطلاعاتی زمرے نہیں ہیں"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">اس ایپ کے <xliff:g id="NUMBER_1">%d</xliff:g> اطلاعاتی زمروں میں سے 1</item> <item quantity="one">اس ایپ کے <xliff:g id="NUMBER_0">%d</xliff:g> اطلاعاتی زمرے میں سے 1</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"اطلاع کے کنٹرولز"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"اطلاع اسنوز کرنے کے اختیارات"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 منٹ"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 منٹ"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 گھنٹہ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"کالعدم کریں"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> کیلئے اسنوز کیا گیا"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"بیٹری کا استعمال"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"چارجنگ کے دوران بیٹری سیور دستیاب نہیں ہے"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"بیٹری سیور"</string> diff --git a/packages/SystemUI/res/values-uz/strings.xml b/packages/SystemUI/res/values-uz/strings.xml index 2b7f1a3efc7c..72fca86f7e06 100644 --- a/packages/SystemUI/res/values-uz/strings.xml +++ b/packages/SystemUI/res/values-uz/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ushbu bildirishnomalar endi ko‘rsatilmaydi"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> ta bildirishnoma turkumi"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Bu ilovada bildirishnomalar turkumi yo‘q"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">Bu ilovadagi <xliff:g id="NUMBER_1">%d</xliff:g> ta bildirishnomalar turkumidan 1 tasi</item> <item quantity="one">Bu ilovadagi <xliff:g id="NUMBER_0">%d</xliff:g> ta bildirishnomalar turkumidan 1 tasi</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"bildirishnoma sozlamalari"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"bildirishnomalarni kechiktirish parametrlari"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 daqiqa"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 daqiqa"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 soat"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"BEKOR QILISH"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"<xliff:g id="TIME_AMOUNT">%1$s</xliff:g> muddatga kechiktirildi"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Batareya sarfi"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Quvvat tejash rejimidan quvvatlash vaqtida foydalanib bo‘lmaydi"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Quvvat tejash rejimi"</string> diff --git a/packages/SystemUI/res/values-vi/strings.xml b/packages/SystemUI/res/values-vi/strings.xml index ebb869ce2b04..ad6d85ba1e67 100644 --- a/packages/SystemUI/res/values-vi/strings.xml +++ b/packages/SystemUI/res/values-vi/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Bạn sẽ không nhận được những thông báo này nữa"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> danh mục thông báo"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Ứng dụng này không có loại thông báo"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">1 trên tổng số <xliff:g id="NUMBER_1">%d</xliff:g> loại thông báo từ ứng dụng này</item> <item quantity="one">1 trên tổng số <xliff:g id="NUMBER_0">%d</xliff:g> loại thông báo từ ứng dụng này</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"điều khiển thông báo"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"Tùy chọn báo lại thông báo"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 phút"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 phút"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 giờ"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"HOÀN TÁC"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Báo lại sau <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Mức sử dụng pin"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Trình tiết kiệm pin không khả dụng trong khi sạc"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Trình tiết kiệm pin"</string> diff --git a/packages/SystemUI/res/values-zh-rCN/strings.xml b/packages/SystemUI/res/values-zh-rCN/strings.xml index 814bcffd29e7..d41c2512ab73 100644 --- a/packages/SystemUI/res/values-zh-rCN/strings.xml +++ b/packages/SystemUI/res/values-zh-rCN/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"您将不会再收到这类通知"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> 个通知类别"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"此应用没有通知类别"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">此应用指定的 1 个通知类别(共 <xliff:g id="NUMBER_1">%d</xliff:g> 个)</item> <item quantity="one">此应用指定的 1 个通知类别(共 <xliff:g id="NUMBER_0">%d</xliff:g> 个)</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g><xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"通知设置"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"通知延后选项"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 分钟"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 分钟"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 小时"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"撤消"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"已延后 <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"电池使用情况"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"充电过程中无法使用省电模式"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"省电模式"</string> diff --git a/packages/SystemUI/res/values-zh-rHK/strings.xml b/packages/SystemUI/res/values-zh-rHK/strings.xml index 2c9d321e7cd5..fc923bc75077 100644 --- a/packages/SystemUI/res/values-zh-rHK/strings.xml +++ b/packages/SystemUI/res/values-zh-rHK/strings.xml @@ -554,6 +554,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"您不會再收到這些通知"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> 個通知類別"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"此應用程式沒有通知類別"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">此應用程式的 1 個通知類別 (共 <xliff:g id="NUMBER_1">%d</xliff:g> 個)</item> <item quantity="one">此應用程式的 1 個通知類別 (共 <xliff:g id="NUMBER_0">%d</xliff:g> 個)</item> @@ -573,13 +575,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"通知控制項"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"通知延後選項"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 分鐘"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 分鐘"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 小時"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"復原"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"已延後 <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"電池用量"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"充電時無法使用「省電模式」"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"省電模式"</string> diff --git a/packages/SystemUI/res/values-zh-rTW/strings.xml b/packages/SystemUI/res/values-zh-rTW/strings.xml index 938947f61886..f4d1fbd12325 100644 --- a/packages/SystemUI/res/values-zh-rTW/strings.xml +++ b/packages/SystemUI/res/values-zh-rTW/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"你不會再收到這類通知"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> 個通知類別"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"這個應用程式沒有通知類別"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="other">在 <xliff:g id="NUMBER_1">%d</xliff:g> 個通知類別中,有 1 個類別是來自這個應用程式</item> <item quantity="one">在 <xliff:g id="NUMBER_0">%d</xliff:g> 個通知類別中,有 1 個類別是來自這個應用程式</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"通知控制項"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"通知延後選項"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 分鐘"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 分鐘"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 小時"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"復原"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"已延後 <xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"電池用量"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"充電時無法使用節約耗電量模式"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"節約耗電量"</string> diff --git a/packages/SystemUI/res/values-zu/strings.xml b/packages/SystemUI/res/values-zu/strings.xml index 38783e5e8147..bc82fc0aff9a 100644 --- a/packages/SystemUI/res/values-zu/strings.xml +++ b/packages/SystemUI/res/values-zu/strings.xml @@ -552,6 +552,8 @@ <string name="notification_channel_disabled" msgid="2139193533791840539">"Ngeke usathola izaziso"</string> <string name="notification_num_channels" msgid="2048144408999179471">"<xliff:g id="NUMBER">%d</xliff:g> izigaba zesaziso"</string> <string name="notification_default_channel_desc" msgid="2506053815870808359">"Lolu hlelo lokusebenza alunazo izigaba zesaziso"</string> + <!-- no translation found for notification_unblockable_desc (3561016061737896906) --> + <skip /> <plurals name="notification_num_channels_desc" formatted="false" msgid="5492793452274077663"> <item quantity="one">1 isigaba kwezingu-<xliff:g id="NUMBER_1">%d</xliff:g> sezaziso kusukela kulolu hlelo lokusebenza</item> <item quantity="other">1 isigaba kwezingu-<xliff:g id="NUMBER_1">%d</xliff:g> sezaziso kusukela kulolu hlelo lokusebenza</item> @@ -571,13 +573,10 @@ <string name="notification_menu_accessibility" msgid="2046162834248888553">"<xliff:g id="APP_NAME">%1$s</xliff:g> <xliff:g id="MENU_DESCRIPTION">%2$s</xliff:g>"</string> <string name="notification_menu_gear_description" msgid="2204480013726775108">"izilawuli zesaziso"</string> <string name="notification_menu_snooze_description" msgid="3653669438131034525">"izinketho zokusnuza zesaziso"</string> - <string name="snooze_option_15_min" msgid="1068727451405610715">"15 amaminithi"</string> - <string name="snooze_option_30_min" msgid="867081342535195788">"30 amaminithi"</string> - <string name="snooze_option_1_hour" msgid="1098086401880077154">"1 ihora"</string> - <!-- no translation found for snooze_option_2_hour (8332218255658969475) --> - <skip /> <string name="snooze_undo" msgid="6074877317002985129">"HLEHLISA"</string> <string name="snoozed_for_time" msgid="2390718332980204462">"Kusnuzwe u-<xliff:g id="TIME_AMOUNT">%1$s</xliff:g>"</string> + <!-- no translation found for snoozeHourOptions (2124335842674413030) --> + <!-- no translation found for snoozeMinuteOptions (4127251700591510196) --> <string name="battery_panel_title" msgid="7944156115535366613">"Ukusetshenziswa kwebhethri"</string> <string name="battery_detail_charging_summary" msgid="1279095653533044008">"Isilondolozi sebhethri asitholakali ngesikhathi sokushaja"</string> <string name="battery_detail_switch_title" msgid="6285872470260795421">"Isilondolozi sebhethri"</string> diff --git a/packages/VpnDialogs/res/values-fr-rCA/strings.xml b/packages/VpnDialogs/res/values-fr-rCA/strings.xml index 83aef218df02..0c434a05e02b 100644 --- a/packages/VpnDialogs/res/values-fr-rCA/strings.xml +++ b/packages/VpnDialogs/res/values-fr-rCA/strings.xml @@ -18,7 +18,7 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="prompt" msgid="3183836924226407828">"Demande de connexion"</string> <string name="warning" msgid="809658604548412033">"<xliff:g id="APP">%s</xliff:g> veut configurer une connexion RPV qui permet de surveiller le trafic réseau. N\'acceptez que si vous faites confiance à la source. <br /><br /><img src=vpn_icon/> s\'affiche dans le haut de votre écran lorsqu\'une connexion RPV est active."</string> - <string name="legacy_title" msgid="192936250066580964">"VPN connecté"</string> + <string name="legacy_title" msgid="192936250066580964">"RPV connecté"</string> <string name="configure" msgid="4905518375574791375">"Configurer"</string> <string name="disconnect" msgid="971412338304200056">"Déconnecter"</string> <string name="session" msgid="6470628549473641030">"Session :"</string> diff --git a/services/core/java/com/android/server/IpSecService.java b/services/core/java/com/android/server/IpSecService.java index a7ce95ba0c88..ec275cc6f77d 100644 --- a/services/core/java/com/android/server/IpSecService.java +++ b/services/core/java/com/android/server/IpSecService.java @@ -18,9 +18,10 @@ package com.android.server; import static android.Manifest.permission.DUMP; import static android.net.IpSecManager.INVALID_RESOURCE_ID; -import static android.net.IpSecManager.KEY_RESOURCE_ID; -import static android.net.IpSecManager.KEY_SPI; -import static android.net.IpSecManager.KEY_STATUS; +import static android.system.OsConstants.AF_INET; +import static android.system.OsConstants.IPPROTO_UDP; +import static android.system.OsConstants.SOCK_DGRAM; +import static com.android.internal.util.Preconditions.checkNotNull; import android.content.Context; import android.net.IIpSecService; @@ -28,47 +29,92 @@ 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.net.util.NetdService; import android.os.Binder; -import android.os.Bundle; import android.os.IBinder; import android.os.ParcelFileDescriptor; import android.os.RemoteException; import android.os.ServiceSpecificException; +import android.system.ErrnoException; +import android.system.Os; +import android.system.OsConstants; import android.util.Log; import android.util.Slog; import android.util.SparseArray; import com.android.internal.annotations.GuardedBy; import java.io.FileDescriptor; +import java.io.IOException; import java.io.PrintWriter; +import java.net.InetAddress; +import java.net.InetSocketAddress; +import java.net.UnknownHostException; import java.util.concurrent.atomic.AtomicInteger; +import libcore.io.IoUtils; /** @hide */ public class IpSecService extends IIpSecService.Stub { private static final String TAG = "IpSecService"; private static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG); + private static final String NETD_SERVICE_NAME = "netd"; private static final int[] DIRECTIONS = new int[] {IpSecTransform.DIRECTION_OUT, IpSecTransform.DIRECTION_IN}; - /** Binder context for this service */ + private static final int NETD_FETCH_TIMEOUT = 5000; //ms + private static final int MAX_PORT_BIND_ATTEMPTS = 10; + 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); + } + } + + static final int FREE_PORT_MIN = 1024; // ports 1-1023 are reserved + static final int PORT_MAX = 0xFFFF; // ports are an unsigned 16-bit integer + + /* Binder context for this service */ private final Context mContext; - private Object mLock = new Object(); + /** Should be a never-repeating global ID for resources */ + private static AtomicInteger mNextResourceId = new AtomicInteger(0x00FADED0); - private static final int NETD_FETCH_TIMEOUT = 5000; //ms + @GuardedBy("this") + private final ManagedResourceArray<SpiRecord> mSpiRecords = new ManagedResourceArray<>(); + + @GuardedBy("this") + private final ManagedResourceArray<TransformRecord> mTransformRecords = + new ManagedResourceArray<>(); - private AtomicInteger mNextResourceId = new AtomicInteger(0x00FADED0); + @GuardedBy("this") + private final ManagedResourceArray<UdpSocketRecord> mUdpSocketRecords = + new ManagedResourceArray<>(); + /** + * 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 + * clean up in the event that the Binder dies and a user-provided resourceId that should + * uniquely identify the managed resource. To use this class, the user should implement the + * releaseResources() method that is responsible for releasing system resources when invoked. + */ private abstract class ManagedResource implements IBinder.DeathRecipient { final int pid; final int uid; private IBinder mBinder; + protected int mResourceId; + + private AtomicInteger mReferenceCount = new AtomicInteger(0); - ManagedResource(IBinder binder) { + ManagedResource(int resourceId, IBinder binder) { super(); mBinder = binder; + mResourceId = resourceId; pid = Binder.getCallingPid(); uid = Binder.getCallingUid(); @@ -79,21 +125,53 @@ public class IpSecService extends IIpSecService.Stub { } } + public void addReference() { + mReferenceCount.incrementAndGet(); + } + + public void removeReference() { + if (mReferenceCount.decrementAndGet() < 0) { + Log.wtf(TAG, "Programming error: negative reference count"); + } + } + + public boolean isReferenced() { + return (mReferenceCount.get() > 0); + } + + public void checkOwnerOrSystemAndThrow() { + if (uid != Binder.getCallingUid() + && android.os.Process.SYSTEM_UID != Binder.getCallingUid()) { + throw new SecurityException("Only the owner may access managed resources!"); + } + } + /** * When this record is no longer needed for managing system resources this function should - * unlink all references held by the record to allow efficient garbage collection. + * clean up all system resources and nullify the record. This function shall perform all + * necessary cleanup of the resources managed by this record. + * + * <p>NOTE: this function verifies ownership before allowing resources to be freed. */ - public final void release() { - //Release all the underlying system resources first - releaseResources(); + public final void release() throws RemoteException { + synchronized (IpSecService.this) { + if (isReferenced()) { + throw new IllegalStateException( + "Cannot release a resource that has active references!"); + } - if (mBinder != null) { - mBinder.unlinkToDeath(this, 0); - } - mBinder = null; + if (mResourceId == INVALID_RESOURCE_ID) { + return; + } + + releaseResources(); + if (mBinder != null) { + mBinder.unlinkToDeath(this, 0); + } + mBinder = null; - //remove this record so that it can be cleaned up - nullifyRecord(); + mResourceId = INVALID_RESOURCE_ID; + } } /** @@ -102,41 +180,85 @@ public class IpSecService extends IIpSecService.Stub { * collection */ public final void binderDied() { - release(); + try { + release(); + } catch (Exception e) { + Log.e(TAG, "Failed to release resource: " + e); + } } /** - * Implement this method to release all object references contained in the subclass to allow - * efficient garbage collection of the record. This should remove any references to the - * record from all other locations that hold a reference as the record is no longer valid. - */ - protected abstract void nullifyRecord(); - - /** * Implement this method to release all system resources that are being protected by this * record. Once the resources are released, the record should be invalidated and no longer - * used by calling releaseRecord() + * used by calling release(). This should NEVER be called directly. + * + * <p>Calls to this are always guarded by IpSecService#this */ - protected abstract void releaseResources(); + protected abstract void releaseResources() throws RemoteException; }; + /** + * Minimal wrapper around SparseArray that performs ownership + * validation on element accesses. + */ + private class ManagedResourceArray<T extends ManagedResource> { + SparseArray<T> mArray = new SparseArray<>(); + + T get(int key) { + T val = mArray.get(key); + val.checkOwnerOrSystemAndThrow(); + return val; + } + + void put(int key, T obj) { + checkNotNull(obj, "Null resources cannot be added"); + mArray.put(key, obj); + } + + void remove(int key) { + mArray.remove(key); + } + } + private final class TransformRecord extends ManagedResource { - private IpSecConfig mConfig; - private int mResourceId; + private final IpSecConfig mConfig; + private final SpiRecord[] mSpis; + private final UdpSocketRecord mSocket; - TransformRecord(IpSecConfig config, int resourceId, IBinder binder) { - super(binder); + TransformRecord( + int resourceId, + IBinder binder, + IpSecConfig config, + SpiRecord[] spis, + UdpSocketRecord socket) { + super(resourceId, binder); mConfig = config; - mResourceId = resourceId; + mSpis = spis; + mSocket = socket; + + for (int direction : DIRECTIONS) { + mSpis[direction].addReference(); + mSpis[direction].setOwnedByTransform(); + } + + if (mSocket != null) { + mSocket.addReference(); + } } public IpSecConfig getConfig() { return mConfig; } + public SpiRecord getSpiRecord(int direction) { + return mSpis[direction]; + } + + /** always guarded by IpSecService#this */ @Override protected void releaseResources() { for (int direction : DIRECTIONS) { + int spi = mSpis[direction].getSpi(); try { getNetdInstance() .ipSecDeleteSecurityAssociation( @@ -148,19 +270,21 @@ public class IpSecService extends IIpSecService.Stub { (mConfig.getRemoteAddress() != null) ? mConfig.getRemoteAddress().getHostAddress() : "", - mConfig.getSpi(direction)); + spi); } catch (ServiceSpecificException e) { // FIXME: get the error code and throw is at an IOException from Errno Exception } catch (RemoteException e) { Log.e(TAG, "Failed to delete SA with ID: " + mResourceId); } } - } - @Override - protected void nullifyRecord() { - mConfig = null; - mResourceId = INVALID_RESOURCE_ID; + for (int direction : DIRECTIONS) { + mSpis[direction].removeReference(); + } + + if (mSocket != null) { + mSocket.removeReference(); + } } } @@ -168,27 +292,37 @@ public class IpSecService extends IIpSecService.Stub { private final int mDirection; private final String mLocalAddress; private final String mRemoteAddress; - private final IBinder mBinder; private int mSpi; - private int mResourceId; + + private boolean mOwnedByTransform = false; SpiRecord( int resourceId, + IBinder binder, int direction, String localAddress, String remoteAddress, - int spi, - IBinder binder) { - super(binder); - mResourceId = resourceId; + int spi) { + super(resourceId, binder); mDirection = direction; mLocalAddress = localAddress; mRemoteAddress = remoteAddress; mSpi = spi; - mBinder = binder; } + /** always guarded by IpSecService#this */ + @Override protected void releaseResources() { + if (mOwnedByTransform) { + Log.d(TAG, "Cannot release Spi " + mSpi + ": Currently locked by a Transform"); + // Because SPIs are "handed off" to transform, objects, they should never be + // freed from the SpiRecord once used in a transform. (They refer to the same SA, + // thus ownership and responsibility for freeing these resources passes to the + // Transform object). Thus, we should let the user free them without penalty once + // they are applied in a Transform object. + return; + } + try { getNetdInstance() .ipSecDeleteSecurityAssociation( @@ -198,19 +332,50 @@ public class IpSecService extends IIpSecService.Stub { } catch (RemoteException e) { Log.e(TAG, "Failed to delete SPI reservation with ID: " + mResourceId); } - } - protected void nullifyRecord() { mSpi = IpSecManager.INVALID_SECURITY_PARAMETER_INDEX; - mResourceId = INVALID_RESOURCE_ID; + } + + public int getSpi() { + return mSpi; + } + + public void setOwnedByTransform() { + if (mOwnedByTransform) { + // Programming error + new IllegalStateException("Cannot own an SPI twice!"); + } + + mOwnedByTransform = true; } } - @GuardedBy("mSpiRecords") - private final SparseArray<SpiRecord> mSpiRecords = new SparseArray<>(); + private final class UdpSocketRecord extends ManagedResource { + private FileDescriptor mSocket; + private final int mPort; + + UdpSocketRecord(int resourceId, IBinder binder, FileDescriptor socket, int port) { + super(resourceId, binder); + mSocket = socket; + mPort = port; + } + + /** always guarded by IpSecService#this */ + @Override + protected void releaseResources() { + Log.d(TAG, "Closing port " + mPort); + IoUtils.closeQuietly(mSocket); + mSocket = null; + } + + public int getPort() { + return mPort; + } - @GuardedBy("mTransformRecords") - private final SparseArray<TransformRecord> mTransformRecords = new SparseArray<>(); + public FileDescriptor getSocket() { + return mSocket; + } + } /** * Constructs a new IpSecService instance @@ -242,7 +407,7 @@ public class IpSecService extends IIpSecService.Stub { new Runnable() { @Override public void run() { - synchronized (mLock) { + synchronized (IpSecService.this) { NetdService.get(NETD_FETCH_TIMEOUT); } } @@ -258,30 +423,27 @@ public class IpSecService extends IIpSecService.Stub { return netd; } - boolean isNetdAlive() { - synchronized (mLock) { - try { - final INetd netd = getNetdInstance(); - if (netd == null) { - return false; - } - return netd.isAlive(); - } catch (RemoteException re) { + synchronized boolean isNetdAlive() { + try { + final INetd netd = getNetdInstance(); + if (netd == null) { return false; } + return netd.isAlive(); + } catch (RemoteException re) { + return false; } } @Override /** Get a new SPI and maintain the reservation in the system server */ - public Bundle reserveSecurityParameterIndex( + public synchronized IpSecSpiResponse reserveSecurityParameterIndex( int direction, String remoteAddress, int requestedSpi, IBinder binder) throws RemoteException { int resourceId = mNextResourceId.getAndIncrement(); int spi = IpSecManager.INVALID_SECURITY_PARAMETER_INDEX; String localAddress = ""; - Bundle retBundle = new Bundle(3); try { spi = getNetdInstance() @@ -292,29 +454,78 @@ public class IpSecService extends IIpSecService.Stub { remoteAddress, requestedSpi); Log.d(TAG, "Allocated SPI " + spi); - retBundle.putInt(KEY_STATUS, IpSecManager.Status.OK); - retBundle.putInt(KEY_RESOURCE_ID, resourceId); - retBundle.putInt(KEY_SPI, spi); - synchronized (mSpiRecords) { - mSpiRecords.put( - resourceId, - new SpiRecord( - resourceId, direction, localAddress, remoteAddress, spi, binder)); - } + mSpiRecords.put( + resourceId, + new SpiRecord(resourceId, binder, direction, localAddress, remoteAddress, spi)); } catch (ServiceSpecificException e) { // TODO: Add appropriate checks when other ServiceSpecificException types are supported - retBundle.putInt(KEY_STATUS, IpSecManager.Status.SPI_UNAVAILABLE); - retBundle.putInt(KEY_RESOURCE_ID, resourceId); - retBundle.putInt(KEY_SPI, spi); + return new IpSecSpiResponse( + IpSecManager.Status.SPI_UNAVAILABLE, IpSecManager.INVALID_RESOURCE_ID, spi); } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } - return retBundle; + return new IpSecSpiResponse(IpSecManager.Status.OK, resourceId, spi); + } + + /* This method should only be called from Binder threads. Do not call this from + * within the system server as it will crash the system on failure. + */ + private synchronized <T extends ManagedResource> void releaseManagedResource( + ManagedResourceArray<T> resArray, int resourceId, String typeName) + throws RemoteException { + // We want to non-destructively get so that we can check credentials before removing + // this from the records. + T record = resArray.get(resourceId); + + if (record == null) { + throw new IllegalArgumentException( + typeName + " " + resourceId + " is not available to be deleted"); + } + + record.release(); + resArray.remove(resourceId); } /** Release a previously allocated SPI that has been registered with the system server */ @Override - public void releaseSecurityParameterIndex(int resourceId) throws RemoteException {} + public void releaseSecurityParameterIndex(int resourceId) throws RemoteException { + releaseManagedResource(mSpiRecords, resourceId, "SecurityParameterIndex"); + } + + /** + * This function finds and forcibly binds to a random system port, ensuring that the port cannot + * be unbound. + * + * <p>A socket cannot be un-bound from a port if it was bound to that port by number. To select + * a random open port and then bind by number, this function creates a temp socket, binds to a + * random port (specifying 0), gets that port number, and then uses is to bind the user's UDP + * Encapsulation Socket forcibly, so that it cannot be un-bound by the user with the returned + * FileHandle. + * + * <p>The loop in this function handles the inherent race window between un-binding to a port + * and re-binding, during which the system could *technically* hand that port out to someone + * else. + */ + private void bindToRandomPort(FileDescriptor sockFd) throws IOException { + for (int i = MAX_PORT_BIND_ATTEMPTS; i > 0; i--) { + try { + FileDescriptor probeSocket = Os.socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); + Os.bind(probeSocket, INADDR_ANY, 0); + int port = ((InetSocketAddress) Os.getsockname(probeSocket)).getPort(); + Os.close(probeSocket); + Log.v(TAG, "Binding to port " + port); + Os.bind(sockFd, INADDR_ANY, port); + return; + } catch (ErrnoException e) { + // Someone miraculously claimed the port just after we closed probeSocket. + if (e.errno == OsConstants.EADDRINUSE) { + continue; + } + throw e.rethrowAsIOException(); + } + } + throw new IOException("Failed " + MAX_PORT_BIND_ATTEMPTS + " attempts to bind to a port"); + } /** * Open a socket via the system server and bind it to the specified port (random if port=0). @@ -323,13 +534,47 @@ public class IpSecService extends IIpSecService.Stub { * needed. */ @Override - public Bundle openUdpEncapsulationSocket(int port, IBinder binder) throws RemoteException { - return null; + public synchronized IpSecUdpEncapResponse openUdpEncapsulationSocket(int port, IBinder binder) + throws RemoteException { + if (port != 0 && (port < FREE_PORT_MIN || port > PORT_MAX)) { + throw new IllegalArgumentException( + "Specified port number must be a valid non-reserved UDP port"); + } + int resourceId = mNextResourceId.getAndIncrement(); + FileDescriptor sockFd = null; + try { + sockFd = Os.socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); + + if (port != 0) { + Log.v(TAG, "Binding to port " + port); + Os.bind(sockFd, INADDR_ANY, port); + } else { + bindToRandomPort(sockFd); + } + // This code is common to both the unspecified and specified port cases + Os.setsockoptInt( + sockFd, + OsConstants.IPPROTO_UDP, + OsConstants.UDP_ENCAP, + OsConstants.UDP_ENCAP_ESPINUDP); + + mUdpSocketRecords.put( + resourceId, new UdpSocketRecord(resourceId, binder, sockFd, port)); + return new IpSecUdpEncapResponse(IpSecManager.Status.OK, resourceId, port, sockFd); + } catch (IOException | ErrnoException e) { + IoUtils.closeQuietly(sockFd); + } + // If we make it to here, then something has gone wrong and we couldn't open a socket. + // The only reasonable condition that would cause that is resource unavailable. + return new IpSecUdpEncapResponse(IpSecManager.Status.RESOURCE_UNAVAILABLE); } /** close a socket that has been been allocated by and registered with the system server */ @Override - public void closeUdpEncapsulationSocket(ParcelFileDescriptor socket) {} + public void closeUdpEncapsulationSocket(int resourceId) throws RemoteException { + + releaseManagedResource(mUdpSocketRecords, resourceId, "UdpEncapsulationSocket"); + } /** * Create a transport mode transform, which represent two security associations (one in each @@ -339,13 +584,26 @@ public class IpSecService extends IIpSecService.Stub { * receive data. */ @Override - public Bundle createTransportModeTransform(IpSecConfig c, IBinder binder) - throws RemoteException { - // TODO: Basic input validation here since it's coming over the Binder + public synchronized IpSecTransformResponse createTransportModeTransform( + IpSecConfig c, IBinder binder) throws RemoteException { int resourceId = mNextResourceId.getAndIncrement(); + SpiRecord[] spis = new SpiRecord[DIRECTIONS.length]; + // TODO: Basic input validation here since it's coming over the Binder + int encapType, encapLocalPort = 0, encapRemotePort = 0; + UdpSocketRecord socketRecord = null; + encapType = c.getEncapType(); + if (encapType != IpSecTransform.ENCAP_NONE) { + socketRecord = mUdpSocketRecords.get(c.getEncapLocalResourceId()); + encapLocalPort = socketRecord.getPort(); + encapRemotePort = c.getEncapRemotePort(); + } + for (int direction : DIRECTIONS) { IpSecAlgorithm auth = c.getAuthentication(direction); IpSecAlgorithm crypt = c.getEncryption(direction); + + spis[direction] = mSpiRecords.get(c.getSpiResourceId(direction)); + int spi = spis[direction].getSpi(); try { int result = getNetdInstance() @@ -362,35 +620,29 @@ public class IpSecService extends IIpSecService.Stub { (c.getNetwork() != null) ? c.getNetwork().getNetworkHandle() : 0, - c.getSpi(direction), + spi, (auth != null) ? auth.getName() : "", (auth != null) ? auth.getKey() : null, (auth != null) ? auth.getTruncationLengthBits() : 0, (crypt != null) ? crypt.getName() : "", (crypt != null) ? crypt.getKey() : null, (crypt != null) ? crypt.getTruncationLengthBits() : 0, - c.getEncapType(), - c.getEncapLocalPort(), - c.getEncapRemotePort()); - if (result != c.getSpi(direction)) { + encapType, + encapLocalPort, + encapRemotePort); + if (result != spi) { // TODO: cleanup the first SA if creation of second SA fails - Bundle retBundle = new Bundle(2); - retBundle.putInt(KEY_STATUS, IpSecManager.Status.SPI_UNAVAILABLE); - retBundle.putInt(KEY_RESOURCE_ID, INVALID_RESOURCE_ID); - return retBundle; + return new IpSecTransformResponse( + IpSecManager.Status.SPI_UNAVAILABLE, INVALID_RESOURCE_ID); } } catch (ServiceSpecificException e) { // FIXME: get the error code and throw is at an IOException from Errno Exception } } - synchronized (mTransformRecords) { - mTransformRecords.put(resourceId, new TransformRecord(c, resourceId, binder)); - } - - Bundle retBundle = new Bundle(2); - retBundle.putInt(KEY_STATUS, IpSecManager.Status.OK); - retBundle.putInt(KEY_RESOURCE_ID, resourceId); - return retBundle; + // Both SAs were created successfully, time to construct a record and lock it away + mTransformRecords.put( + resourceId, new TransformRecord(resourceId, binder, c, spis, socketRecord)); + return new IpSecTransformResponse(IpSecManager.Status.OK, resourceId); } /** @@ -401,27 +653,7 @@ public class IpSecService extends IIpSecService.Stub { */ @Override public void deleteTransportModeTransform(int resourceId) throws RemoteException { - synchronized (mTransformRecords) { - TransformRecord record; - // We want to non-destructively get so that we can check credentials before removing - // this from the records. - record = mTransformRecords.get(resourceId); - - if (record == null) { - throw new IllegalArgumentException( - "Transform " + resourceId + " is not available to be deleted"); - } - - if (record.pid != Binder.getCallingPid() || record.uid != Binder.getCallingUid()) { - throw new SecurityException("Only the owner of an IpSec Transform may delete it!"); - } - - // TODO: if releaseResources() throws RemoteException, we can try again to clean up on - // binder death. Need to make sure that path is actually functional. - record.releaseResources(); - mTransformRecords.remove(resourceId); - record.nullifyRecord(); - } + releaseManagedResource(mTransformRecords, resourceId, "IpSecTransform"); } /** @@ -429,44 +661,43 @@ public class IpSecService extends IIpSecService.Stub { * association as a correspondent policy to the provided socket */ @Override - public void applyTransportModeTransform(ParcelFileDescriptor socket, int resourceId) - throws RemoteException { - - synchronized (mTransformRecords) { - TransformRecord info; - // FIXME: this code should be factored out into a security check + getter - info = mTransformRecords.get(resourceId); - - if (info == null) { - throw new IllegalArgumentException("Transform " + resourceId + " is not active"); - } + public synchronized void applyTransportModeTransform( + ParcelFileDescriptor socket, int resourceId) throws RemoteException { + // Synchronize liberally here because we are using ManagedResources in this block + TransformRecord info; + // FIXME: this code should be factored out into a security check + getter + info = mTransformRecords.get(resourceId); + + if (info == null) { + throw new IllegalArgumentException("Transform " + resourceId + " is not active"); + } - // TODO: make this a function. - if (info.pid != getCallingPid() || info.uid != getCallingUid()) { - throw new SecurityException("Only the owner of an IpSec Transform may apply it!"); - } + // TODO: make this a function. + if (info.pid != getCallingPid() || info.uid != getCallingUid()) { + throw new SecurityException("Only the owner of an IpSec Transform may apply it!"); + } - IpSecConfig c = info.getConfig(); - try { - for (int direction : DIRECTIONS) { - getNetdInstance() - .ipSecApplyTransportModeTransform( - socket.getFileDescriptor(), - resourceId, - direction, - (c.getLocalAddress() != null) - ? c.getLocalAddress().getHostAddress() - : "", - (c.getRemoteAddress() != null) - ? c.getRemoteAddress().getHostAddress() - : "", - c.getSpi(direction)); - } - } catch (ServiceSpecificException e) { - // FIXME: get the error code and throw is at an IOException from Errno Exception + IpSecConfig c = info.getConfig(); + try { + for (int direction : DIRECTIONS) { + getNetdInstance() + .ipSecApplyTransportModeTransform( + socket.getFileDescriptor(), + resourceId, + direction, + (c.getLocalAddress() != null) + ? c.getLocalAddress().getHostAddress() + : "", + (c.getRemoteAddress() != null) + ? c.getRemoteAddress().getHostAddress() + : "", + info.getSpiRecord(direction).getSpi()); } + } catch (ServiceSpecificException e) { + // FIXME: get the error code and throw is at an IOException from Errno Exception } } + /** * Remove a transport mode transform from a socket, applying the default (empty) policy. This * will ensure that NO IPsec policy is applied to the socket (would be the equivalent of @@ -486,7 +717,7 @@ public class IpSecService extends IIpSecService.Stub { @Override protected 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("NetdNativeService Connection: " + (isNetdAlive() ? "alive" : "dead")); pw.println(); diff --git a/services/core/java/com/android/server/Watchdog.java b/services/core/java/com/android/server/Watchdog.java index feb9ce49bf08..b18fa322bd2b 100644 --- a/services/core/java/com/android/server/Watchdog.java +++ b/services/core/java/com/android/server/Watchdog.java @@ -76,6 +76,7 @@ public class Watchdog extends Thread { "/system/bin/sdcard", "/system/bin/surfaceflinger", "media.extractor", // system/bin/mediaextractor + "media.codec", // vendor/bin/hw/android.hardware.media.omx@1.0-service "com.android.bluetooth", // Bluetooth service }; diff --git a/services/core/java/com/android/server/am/ActivityRecord.java b/services/core/java/com/android/server/am/ActivityRecord.java index 9698a8fa91fd..ec6a4f6b7f7c 100644 --- a/services/core/java/com/android/server/am/ActivityRecord.java +++ b/services/core/java/com/android/server/am/ActivityRecord.java @@ -1426,7 +1426,7 @@ final class ActivityRecord extends ConfigurationContainer implements AppWindowCo pendingOptions.getStartX(), pendingOptions.getStartY(), pendingOptions.getOnAnimationStartListener(), scaleUp); - if (intent.getSourceBounds() == null) { + if (intent.getSourceBounds() == null && buffer != null) { intent.setSourceBounds(new Rect(pendingOptions.getStartX(), pendingOptions.getStartY(), pendingOptions.getStartX() + buffer.getWidth(), diff --git a/services/core/java/com/android/server/wm/WindowState.java b/services/core/java/com/android/server/wm/WindowState.java index 44a867c9b65f..f74948f8e7f0 100644 --- a/services/core/java/com/android/server/wm/WindowState.java +++ b/services/core/java/com/android/server/wm/WindowState.java @@ -18,7 +18,9 @@ package com.android.server.wm; import static android.app.ActivityManager.ENABLE_TASK_SNAPSHOTS; import static android.app.ActivityManager.StackId; +import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID; import static android.app.ActivityManager.StackId.INVALID_STACK_ID; +import static android.app.ActivityManager.StackId.PINNED_STACK_ID; import static android.app.ActivityManager.isLowRamDeviceStatic; import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER; import static android.view.Display.DEFAULT_DISPLAY; @@ -761,16 +763,19 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP final WindowState imeWin = mService.mInputMethodWindow; // IME is up and obscuring this window. Adjust the window position so it is visible. if (imeWin != null && imeWin.isVisibleNow() && mService.mInputMethodTarget == this) { - if (windowsAreFloating && mContainingFrame.bottom > contentFrame.bottom) { - // In freeform we want to move the top up directly. - // TODO: Investigate why this is contentFrame not parentFrame. - mContainingFrame.top -= mContainingFrame.bottom - contentFrame.bottom; - } else if (mContainingFrame.bottom > parentFrame.bottom) { - // But in docked we want to behave like fullscreen - // and behave as if the task were given smaller bounds - // for the purposes of layout. - mContainingFrame.bottom = parentFrame.bottom; - } + final int stackId = getStackId(); + if (stackId == FREEFORM_WORKSPACE_STACK_ID + && mContainingFrame.bottom > contentFrame.bottom) { + // In freeform we want to move the top up directly. + // TODO: Investigate why this is contentFrame not parentFrame. + mContainingFrame.top -= mContainingFrame.bottom - contentFrame.bottom; + } else if (stackId != PINNED_STACK_ID + && mContainingFrame.bottom > parentFrame.bottom) { + // But in docked we want to behave like fullscreen and behave as if the task + // were given smaller bounds for the purposes of layout. Skip adjustments for + // the pinned stack, they are handled separately in the PinnedStackController. + mContainingFrame.bottom = parentFrame.bottom; + } } if (windowsAreFloating) { diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index b5d9d3935c53..4390fae226e5 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -92,6 +92,18 @@ public final class PhoneAccount implements Parcelable { /** * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which + * indicates whether this {@link PhoneAccount} supports using a fallback if video calling is + * not available. This extra is for device level support, {@link + * android.telephony.CarrierConfigManager#KEY_ALLOW_VIDEO_CALLING_FALLBACK_BOOL} should also + * be checked to ensure it is not disabled by individual carrier. + * + * @hide + */ + public static final String EXTRA_SUPPORTS_VIDEO_CALLING_FALLBACK = + "android.telecom.extra.SUPPORTS_VIDEO_CALLING_FALLBACK"; + + /** + * Boolean {@link PhoneAccount} extras key (see {@link PhoneAccount#getExtras()}) which * indicates whether this {@link PhoneAccount} is capable of supporting a request to handover a * connection from this {@link PhoneAccount} to another {@link PhoneAccount}. * (see {@link android.telecom.Call#EVENT_REQUEST_HANDOVER}) which specifies diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index f2d2253a8f38..414780869a4d 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -1220,6 +1220,15 @@ public class CarrierConfigManager { public static final String KEY_VIDEO_CALLS_CAN_BE_HD_AUDIO = "video_calls_can_be_hd_audio"; /** + * Whether system apps are allowed to use fallback if carrier video call is not available. + * Defaults to {@code true}. + * + * @hide + */ + public static final String KEY_ALLOW_VIDEO_CALLING_FALLBACK_BOOL = + "allow_video_calling_fallback_bool"; + + /** * Defines operator-specific {@link com.android.ims.ImsReasonInfo} mappings. * * Format: "ORIGINAL_CODE|MESSAGE|NEW_CODE" @@ -1665,6 +1674,7 @@ public class CarrierConfigManager { sDefaults.putBoolean(KEY_ALLOW_ADD_CALL_DURING_VIDEO_CALL_BOOL, true); sDefaults.putBoolean(KEY_WIFI_CALLS_CAN_BE_HD_AUDIO, true); sDefaults.putBoolean(KEY_VIDEO_CALLS_CAN_BE_HD_AUDIO, true); + sDefaults.putBoolean(KEY_ALLOW_VIDEO_CALLING_FALLBACK_BOOL, true); sDefaults.putStringArray(KEY_IMS_REASONINFO_MAPPING_STRING_ARRAY, null); sDefaults.putBoolean(KEY_ENHANCED_4G_LTE_TITLE_VARIANT_BOOL, false); diff --git a/tools/aapt2/Android.bp b/tools/aapt2/Android.bp index 064d86411463..1dc47f88ab92 100644 --- a/tools/aapt2/Android.bp +++ b/tools/aapt2/Android.bp @@ -160,7 +160,10 @@ cc_library_host_shared { // ========================================================== cc_test_host { name: "aapt2_tests", - srcs: ["**/*_test.cpp"], + srcs: [ + "test/Common.cpp", + "**/*_test.cpp", + ], static_libs: [ "libaapt2", "libgmock", diff --git a/tools/aapt2/ResourceParser.cpp b/tools/aapt2/ResourceParser.cpp index 084325a44d93..9a37913f0edc 100644 --- a/tools/aapt2/ResourceParser.cpp +++ b/tools/aapt2/ResourceParser.cpp @@ -623,6 +623,11 @@ std::unique_ptr<Item> ResourceParser::ParseXml(xml::XmlPullParser* parser, return std::move(string); } + // If the text is empty, and the value is not allowed to be a string, encode it as a @null. + if (util::TrimWhitespace(raw_value).empty()) { + return ResourceUtils::MakeNull(); + } + if (allow_raw_value) { // We can't parse this so return a RawString if we are allowed. return util::make_unique<RawString>( diff --git a/tools/aapt2/ResourceParser.h b/tools/aapt2/ResourceParser.h index 825801995862..5631dc2ad29c 100644 --- a/tools/aapt2/ResourceParser.h +++ b/tools/aapt2/ResourceParser.h @@ -78,42 +78,32 @@ class ResourceParser { * Item, then a * RawString is returned. Otherwise this returns false; */ - std::unique_ptr<Item> ParseXml(xml::XmlPullParser* parser, - const uint32_t type_mask, + std::unique_ptr<Item> ParseXml(xml::XmlPullParser* parser, const uint32_t type_mask, const bool allow_raw_value); bool ParseResources(xml::XmlPullParser* parser); bool ParseResource(xml::XmlPullParser* parser, ParsedResource* out_resource); - bool ParseItem(xml::XmlPullParser* parser, ParsedResource* out_resource, - uint32_t format); + bool ParseItem(xml::XmlPullParser* parser, ParsedResource* out_resource, uint32_t format); bool ParseString(xml::XmlPullParser* parser, ParsedResource* out_resource); bool ParsePublic(xml::XmlPullParser* parser, ParsedResource* out_resource); - bool ParsePublicGroup(xml::XmlPullParser* parser, - ParsedResource* out_resource); - bool ParseSymbolImpl(xml::XmlPullParser* parser, - ParsedResource* out_resource); + bool ParsePublicGroup(xml::XmlPullParser* parser, ParsedResource* out_resource); + bool ParseSymbolImpl(xml::XmlPullParser* parser, ParsedResource* out_resource); bool ParseSymbol(xml::XmlPullParser* parser, ParsedResource* out_resource); - bool ParseAddResource(xml::XmlPullParser* parser, - ParsedResource* out_resource); + bool ParseAddResource(xml::XmlPullParser* parser, ParsedResource* out_resource); bool ParseAttr(xml::XmlPullParser* parser, ParsedResource* out_resource); - bool ParseAttrImpl(xml::XmlPullParser* parser, ParsedResource* out_resource, - bool weak); + bool ParseAttrImpl(xml::XmlPullParser* parser, ParsedResource* out_resource, bool weak); Maybe<Attribute::Symbol> ParseEnumOrFlagItem(xml::XmlPullParser* parser, const android::StringPiece& tag); bool ParseStyle(const ResourceType type, xml::XmlPullParser* parser, ParsedResource* out_resource); bool ParseStyleItem(xml::XmlPullParser* parser, Style* style); - bool ParseDeclareStyleable(xml::XmlPullParser* parser, - ParsedResource* out_resource); + bool ParseDeclareStyleable(xml::XmlPullParser* parser, ParsedResource* out_resource); bool ParseArray(xml::XmlPullParser* parser, ParsedResource* out_resource); - bool ParseIntegerArray(xml::XmlPullParser* parser, - ParsedResource* out_resource); - bool ParseStringArray(xml::XmlPullParser* parser, - ParsedResource* out_resource); - bool ParseArrayImpl(xml::XmlPullParser* parser, ParsedResource* out_resource, - uint32_t typeMask); + bool ParseIntegerArray(xml::XmlPullParser* parser, ParsedResource* out_resource); + bool ParseStringArray(xml::XmlPullParser* parser, ParsedResource* out_resource); + bool ParseArrayImpl(xml::XmlPullParser* parser, ParsedResource* out_resource, uint32_t typeMask); bool ParsePlural(xml::XmlPullParser* parser, ParsedResource* out_resource); IDiagnostics* diag_; diff --git a/tools/aapt2/ResourceParser_test.cpp b/tools/aapt2/ResourceParser_test.cpp index e60ef66a21db..5352ca8679b3 100644 --- a/tools/aapt2/ResourceParser_test.cpp +++ b/tools/aapt2/ResourceParser_test.cpp @@ -25,19 +25,20 @@ #include "test/Test.h" #include "xml/XmlPullParser.h" +using ::aapt::test::ValueEq; using ::android::StringPiece; using ::testing::Eq; using ::testing::NotNull; +using ::testing::Pointee; namespace aapt { -constexpr const char* kXmlPreamble = - "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; +constexpr const char* kXmlPreamble = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; TEST(ResourceParserSingleTest, FailToParseWithNoRootResourcesElement) { std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build(); std::stringstream input(kXmlPreamble); - input << "<attr name=\"foo\"/>" << std::endl; + input << R"(<attr name="foo"/>)" << std::endl; ResourceTable table; ResourceParser parser(context->GetDiagnostics(), &table, Source{"test"}, {}); xml::XmlPullParser xml_parser(input); @@ -46,19 +47,20 @@ TEST(ResourceParserSingleTest, FailToParseWithNoRootResourcesElement) { class ResourceParserTest : public ::testing::Test { public: - void SetUp() override { context_ = test::ContextBuilder().Build(); } + void SetUp() override { + context_ = test::ContextBuilder().Build(); + } ::testing::AssertionResult TestParse(const StringPiece& str) { return TestParse(str, ConfigDescription{}); } - ::testing::AssertionResult TestParse(const StringPiece& str, - const ConfigDescription& config) { + ::testing::AssertionResult TestParse(const StringPiece& str, const ConfigDescription& config) { std::stringstream input(kXmlPreamble); input << "<resources>\n" << str << "\n</resources>" << std::endl; ResourceParserOptions parserOptions; - ResourceParser parser(context_->GetDiagnostics(), &table_, Source{"test"}, - config, parserOptions); + ResourceParser parser(context_->GetDiagnostics(), &table_, Source{"test"}, config, + parserOptions); xml::XmlPullParser xmlParser(input); if (parser.Parse(&xmlParser)) { return ::testing::AssertionSuccess(); @@ -205,18 +207,18 @@ TEST_F(ResourceParserTest, ParseNull) { // a non-existing value, and this causes problems in styles when trying to // resolve an attribute. Null values must be encoded as android::Res_value::TYPE_REFERENCE // with a data value of 0. - BinaryPrimitive* integer = test::GetValue<BinaryPrimitive>(&table_, "integer/foo"); - ASSERT_NE(nullptr, integer); - EXPECT_EQ(uint16_t(android::Res_value::TYPE_REFERENCE), integer->value.dataType); - EXPECT_EQ(0u, integer->value.data); + Reference* null_ref = test::GetValue<Reference>(&table_, "integer/foo"); + ASSERT_THAT(null_ref, NotNull()); + EXPECT_FALSE(null_ref->name); + EXPECT_FALSE(null_ref->id); + EXPECT_EQ(Reference::Type::kResource, null_ref->reference_type); } TEST_F(ResourceParserTest, ParseEmpty) { std::string input = "<integer name=\"foo\">@empty</integer>"; ASSERT_TRUE(TestParse(input)); - BinaryPrimitive* integer = - test::GetValue<BinaryPrimitive>(&table_, "integer/foo"); + BinaryPrimitive* integer = test::GetValue<BinaryPrimitive>(&table_, "integer/foo"); ASSERT_NE(nullptr, integer); EXPECT_EQ(uint16_t(android::Res_value::TYPE_NULL), integer->value.dataType); EXPECT_EQ(uint32_t(android::Res_value::DATA_NULL_EMPTY), integer->value.data); @@ -241,22 +243,18 @@ TEST_F(ResourceParserTest, ParseAttr) { // ultimately // stored them with the default configuration. Check that we have the same // behavior. -TEST_F(ResourceParserTest, - ParseAttrAndDeclareStyleableUnderConfigButRecordAsNoConfig) { +TEST_F(ResourceParserTest, ParseAttrAndDeclareStyleableUnderConfigButRecordAsNoConfig) { const ConfigDescription watch_config = test::ParseConfigOrDie("watch"); - std::string input = R"EOF( - <attr name="foo" /> - <declare-styleable name="bar"> - <attr name="baz" /> - </declare-styleable>)EOF"; + std::string input = R"( + <attr name="foo" /> + <declare-styleable name="bar"> + <attr name="baz" /> + </declare-styleable>)"; ASSERT_TRUE(TestParse(input, watch_config)); - EXPECT_EQ(nullptr, test::GetValueForConfig<Attribute>(&table_, "attr/foo", - watch_config)); - EXPECT_EQ(nullptr, test::GetValueForConfig<Attribute>(&table_, "attr/baz", - watch_config)); - EXPECT_EQ(nullptr, test::GetValueForConfig<Styleable>( - &table_, "styleable/bar", watch_config)); + EXPECT_EQ(nullptr, test::GetValueForConfig<Attribute>(&table_, "attr/foo", watch_config)); + EXPECT_EQ(nullptr, test::GetValueForConfig<Attribute>(&table_, "attr/baz", watch_config)); + EXPECT_EQ(nullptr, test::GetValueForConfig<Styleable>(&table_, "styleable/bar", watch_config)); EXPECT_NE(nullptr, test::GetValue<Attribute>(&table_, "attr/foo")); EXPECT_NE(nullptr, test::GetValue<Attribute>(&table_, "attr/baz")); @@ -833,4 +831,16 @@ TEST_F(ResourceParserTest, ParseBagElement) { EXPECT_NE(nullptr, ValueCast<RawString>(val->entries[0].value.get())); } +TEST_F(ResourceParserTest, ParseElementWithNoValue) { + std::string input = R"( + <item type="drawable" format="reference" name="foo" /> + <string name="foo" />)"; + ASSERT_TRUE(TestParse(input)); + ASSERT_THAT(test::GetValue(&table_, "drawable/foo"), Pointee(ValueEq(Reference()))); + + String* str = test::GetValue<String>(&table_, "string/foo"); + ASSERT_THAT(str, NotNull()); + EXPECT_THAT(*str->value, Eq("")); +} + } // namespace aapt diff --git a/tools/aapt2/ResourceUtils.cpp b/tools/aapt2/ResourceUtils.cpp index 818c8cec30f9..deeef6ebbcb7 100644 --- a/tools/aapt2/ResourceUtils.cpp +++ b/tools/aapt2/ResourceUtils.cpp @@ -305,21 +305,25 @@ std::unique_ptr<Reference> TryParseReference(const StringPiece& str, return {}; } -std::unique_ptr<BinaryPrimitive> TryParseNullOrEmpty(const StringPiece& str) { - StringPiece trimmed_str(util::TrimWhitespace(str)); - android::Res_value value = {}; +std::unique_ptr<Item> TryParseNullOrEmpty(const StringPiece& str) { + const StringPiece trimmed_str(util::TrimWhitespace(str)); if (trimmed_str == "@null") { - // TYPE_NULL with data set to 0 is interpreted by the runtime as an error. - // Instead we set the data type to TYPE_REFERENCE with a value of 0. - value.dataType = android::Res_value::TYPE_REFERENCE; + return MakeNull(); } else if (trimmed_str == "@empty") { - // TYPE_NULL with value of DATA_NULL_EMPTY is handled fine by the runtime. - value.dataType = android::Res_value::TYPE_NULL; - value.data = android::Res_value::DATA_NULL_EMPTY; - } else { - return {}; + return MakeEmpty(); } - return util::make_unique<BinaryPrimitive>(value); + return {}; +} + +std::unique_ptr<Reference> MakeNull() { + // TYPE_NULL with data set to 0 is interpreted by the runtime as an error. + // Instead we set the data type to TYPE_REFERENCE with a value of 0. + return util::make_unique<Reference>(); +} + +std::unique_ptr<BinaryPrimitive> MakeEmpty() { + return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_NULL, + android::Res_value::DATA_NULL_EMPTY); } std::unique_ptr<BinaryPrimitive> TryParseEnumSymbol(const Attribute* enum_attr, @@ -569,13 +573,15 @@ uint32_t AndroidTypeToAttributeTypeMask(uint16_t type) { std::unique_ptr<Item> TryParseItemForAttribute( const StringPiece& value, uint32_t type_mask, const std::function<void(const ResourceName&)>& on_create_reference) { - std::unique_ptr<BinaryPrimitive> null_or_empty = TryParseNullOrEmpty(value); + using android::ResTable_map; + + auto null_or_empty = TryParseNullOrEmpty(value); if (null_or_empty) { - return std::move(null_or_empty); + return null_or_empty; } bool create = false; - std::unique_ptr<Reference> reference = TryParseReference(value, &create); + auto reference = TryParseReference(value, &create); if (reference) { if (create && on_create_reference) { on_create_reference(reference->name.value()); @@ -583,39 +589,37 @@ std::unique_ptr<Item> TryParseItemForAttribute( return std::move(reference); } - if (type_mask & android::ResTable_map::TYPE_COLOR) { + if (type_mask & ResTable_map::TYPE_COLOR) { // Try parsing this as a color. - std::unique_ptr<BinaryPrimitive> color = TryParseColor(value); + auto color = TryParseColor(value); if (color) { return std::move(color); } } - if (type_mask & android::ResTable_map::TYPE_BOOLEAN) { + if (type_mask & ResTable_map::TYPE_BOOLEAN) { // Try parsing this as a boolean. - std::unique_ptr<BinaryPrimitive> boolean = TryParseBool(value); + auto boolean = TryParseBool(value); if (boolean) { return std::move(boolean); } } - if (type_mask & android::ResTable_map::TYPE_INTEGER) { + if (type_mask & ResTable_map::TYPE_INTEGER) { // Try parsing this as an integer. - std::unique_ptr<BinaryPrimitive> integer = TryParseInt(value); + auto integer = TryParseInt(value); if (integer) { return std::move(integer); } } - const uint32_t float_mask = android::ResTable_map::TYPE_FLOAT | - android::ResTable_map::TYPE_DIMENSION | - android::ResTable_map::TYPE_FRACTION; + const uint32_t float_mask = + ResTable_map::TYPE_FLOAT | ResTable_map::TYPE_DIMENSION | ResTable_map::TYPE_FRACTION; if (type_mask & float_mask) { // Try parsing this as a float. - std::unique_ptr<BinaryPrimitive> floating_point = TryParseFloat(value); + auto floating_point = TryParseFloat(value); if (floating_point) { - if (type_mask & - AndroidTypeToAttributeTypeMask(floating_point->value.dataType)) { + if (type_mask & AndroidTypeToAttributeTypeMask(floating_point->value.dataType)) { return std::move(floating_point); } } @@ -630,24 +634,25 @@ std::unique_ptr<Item> TryParseItemForAttribute( std::unique_ptr<Item> TryParseItemForAttribute( const StringPiece& str, const Attribute* attr, const std::function<void(const ResourceName&)>& on_create_reference) { + using android::ResTable_map; + const uint32_t type_mask = attr->type_mask; - std::unique_ptr<Item> value = - TryParseItemForAttribute(str, type_mask, on_create_reference); + auto value = TryParseItemForAttribute(str, type_mask, on_create_reference); if (value) { return value; } - if (type_mask & android::ResTable_map::TYPE_ENUM) { + if (type_mask & ResTable_map::TYPE_ENUM) { // Try parsing this as an enum. - std::unique_ptr<BinaryPrimitive> enum_value = TryParseEnumSymbol(attr, str); + auto enum_value = TryParseEnumSymbol(attr, str); if (enum_value) { return std::move(enum_value); } } - if (type_mask & android::ResTable_map::TYPE_FLAGS) { + if (type_mask & ResTable_map::TYPE_FLAGS) { // Try parsing this as a flag. - std::unique_ptr<BinaryPrimitive> flag_value = TryParseFlagSymbol(attr, str); + auto flag_value = TryParseFlagSymbol(attr, str); if (flag_value) { return std::move(flag_value); } @@ -655,8 +660,7 @@ std::unique_ptr<Item> TryParseItemForAttribute( return {}; } -std::string BuildResourceFileName(const ResourceFile& res_file, - const NameMangler* mangler) { +std::string BuildResourceFileName(const ResourceFile& res_file, const NameMangler* mangler) { std::stringstream out; out << "res/" << res_file.name.type; if (res_file.config != ConfigDescription{}) { @@ -719,9 +723,9 @@ std::unique_ptr<Item> ParseBinaryResValue(const ResourceType& type, const Config ref_type = Reference::Type::kAttribute; } - if (data == 0) { + if (data == 0u) { // A reference of 0, must be the magic @null reference. - return util::make_unique<BinaryPrimitive>(android::Res_value::TYPE_REFERENCE, 0u); + return util::make_unique<Reference>(); } // This is a normal reference. diff --git a/tools/aapt2/ResourceUtils.h b/tools/aapt2/ResourceUtils.h index da0fc8ee314a..36f6c2bda8f8 100644 --- a/tools/aapt2/ResourceUtils.h +++ b/tools/aapt2/ResourceUtils.h @@ -133,7 +133,16 @@ std::unique_ptr<Reference> TryParseReference(const android::StringPiece& str, * Returns a BinaryPrimitve object representing @null or @empty if the string * was parsed as one. */ -std::unique_ptr<BinaryPrimitive> TryParseNullOrEmpty(const android::StringPiece& str); +std::unique_ptr<Item> TryParseNullOrEmpty(const android::StringPiece& str); + +// Returns a Reference representing @null. +// Due to runtime compatibility issues, this is encoded as a reference with ID 0. +// The runtime will convert this to TYPE_NULL. +std::unique_ptr<Reference> MakeNull(); + +// Returns a BinaryPrimitive representing @empty. This is encoded as a Res_value with +// type Res_value::TYPE_NULL and data Res_value::DATA_NULL_EMPTY. +std::unique_ptr<BinaryPrimitive> MakeEmpty(); /* * Returns a BinaryPrimitve object representing a color if the string was parsed diff --git a/tools/aapt2/ResourceUtils_test.cpp b/tools/aapt2/ResourceUtils_test.cpp index 048c69252e47..cdc34f1ec752 100644 --- a/tools/aapt2/ResourceUtils_test.cpp +++ b/tools/aapt2/ResourceUtils_test.cpp @@ -19,6 +19,9 @@ #include "Resource.h" #include "test/Test.h" +using ::aapt::test::ValueEq; +using ::testing::Pointee; + namespace aapt { TEST(ResourceUtilsTest, ParseBool) { @@ -200,4 +203,22 @@ TEST(ResourceUtilsTest, ParseEmptyFlag) { EXPECT_EQ(0u, result->value.data); } +TEST(ResourceUtilsTest, NullIsEmptyReference) { + auto null_value = ResourceUtils::MakeNull(); + ASSERT_THAT(null_value, Pointee(ValueEq(Reference()))); + + auto value = ResourceUtils::TryParseNullOrEmpty("@null"); + ASSERT_THAT(value, Pointee(ValueEq(Reference()))); +} + +TEST(ResourceUtilsTest, EmptyIsBinaryPrimitive) { + auto empty_value = ResourceUtils::MakeEmpty(); + ASSERT_THAT(empty_value, Pointee(ValueEq(BinaryPrimitive(android::Res_value::TYPE_NULL, + android::Res_value::DATA_NULL_EMPTY)))); + + auto value = ResourceUtils::TryParseNullOrEmpty("@empty"); + ASSERT_THAT(value, Pointee(ValueEq(BinaryPrimitive(android::Res_value::TYPE_NULL, + android::Res_value::DATA_NULL_EMPTY)))); +} + } // namespace aapt diff --git a/tools/aapt2/ResourceValues.cpp b/tools/aapt2/ResourceValues.cpp index abfdec48df67..e808984c75f5 100644 --- a/tools/aapt2/ResourceValues.cpp +++ b/tools/aapt2/ResourceValues.cpp @@ -94,8 +94,8 @@ bool Reference::Equals(const Value* value) const { bool Reference::Flatten(android::Res_value* out_value) const { const ResourceId resid = id.value_or_default(ResourceId(0)); - const bool dynamic = - (resid.package_id() != kFrameworkPackageId && resid.package_id() != kAppPackageId); + const bool dynamic = resid.is_valid_dynamic() && resid.package_id() != kFrameworkPackageId && + resid.package_id() != kAppPackageId; if (reference_type == Reference::Type::kResource) { if (dynamic) { @@ -119,22 +119,29 @@ Reference* Reference::Clone(StringPool* /*new_pool*/) const { } void Reference::Print(std::ostream* out) const { - *out << "(reference) "; - if (reference_type == Reference::Type::kResource) { - *out << "@"; - if (private_reference) { - *out << "*"; + if (reference_type == Type::kResource) { + *out << "(reference) @"; + if (!name && !id) { + *out << "null"; + return; } } else { - *out << "?"; + *out << "(attr-reference) ?"; + } + + if (private_reference) { + *out << "*"; } if (name) { *out << name.value(); } - if (id && !Res_INTERNALID(id.value().id)) { - *out << " " << id.value(); + if (id && id.value().is_valid_dynamic()) { + if (name) { + *out << " "; + } + *out << id.value(); } } @@ -314,7 +321,11 @@ BinaryPrimitive* BinaryPrimitive::Clone(StringPool* /*new_pool*/) const { void BinaryPrimitive::Print(std::ostream* out) const { switch (value.dataType) { case android::Res_value::TYPE_NULL: - *out << "(null)"; + if (value.data == android::Res_value::DATA_NULL_EMPTY) { + *out << "(empty)"; + } else { + *out << "(null)"; + } break; case android::Res_value::TYPE_INT_DEC: *out << "(integer) " << static_cast<int32_t>(value.data); diff --git a/tools/aapt2/ResourceValues_test.cpp b/tools/aapt2/ResourceValues_test.cpp index e154d93b6f85..69f8e67530f6 100644 --- a/tools/aapt2/ResourceValues_test.cpp +++ b/tools/aapt2/ResourceValues_test.cpp @@ -180,4 +180,14 @@ TEST(ResourceValuesTest, StyleMerges) { EXPECT_TRUE(a->Equals(expected.get())); } +// TYPE_NULL is encoded as TYPE_REFERENCE with a value of 0. This is represented in AAPT2 +// by a default constructed Reference value. +TEST(ResourcesValuesTest, EmptyReferenceFlattens) { + android::Res_value value = {}; + ASSERT_TRUE(Reference().Flatten(&value)); + + EXPECT_EQ(android::Res_value::TYPE_REFERENCE, value.dataType); + EXPECT_EQ(0x0u, value.data); +} + } // namespace aapt diff --git a/tools/aapt2/integration-tests/AppOne/res/values/test.xml b/tools/aapt2/integration-tests/AppOne/res/values/test.xml index 5104f8212d8b..2c9e8b877565 100644 --- a/tools/aapt2/integration-tests/AppOne/res/values/test.xml +++ b/tools/aapt2/integration-tests/AppOne/res/values/test.xml @@ -38,4 +38,7 @@ <attr name="android:text" /> <attr name="layout_width" /> </declare-styleable> + + <!-- Declare an empty, resource --> + <item type="drawable" name="undefined" /> </resources> diff --git a/tools/aapt2/link/ReferenceLinker.cpp b/tools/aapt2/link/ReferenceLinker.cpp index 18498e3e3c67..a8e510cd6140 100644 --- a/tools/aapt2/link/ReferenceLinker.cpp +++ b/tools/aapt2/link/ReferenceLinker.cpp @@ -296,7 +296,10 @@ bool ReferenceLinker::LinkReference(const CallSite& callsite, Reference* referen IAaptContext* context, SymbolTable* symbols, xml::IPackageDeclStack* decls) { CHECK(reference != nullptr); - CHECK(reference->name || reference->id); + if (!reference->name && !reference->id) { + // This is @null. + return true; + } Reference transformed_reference = *reference; TransformReferenceFromNamespace(decls, context->GetCompilationPackage(), &transformed_reference); diff --git a/tools/aapt2/proto/TableProtoDeserializer.cpp b/tools/aapt2/proto/TableProtoDeserializer.cpp index 1d0041b2ac5a..4b5619235c06 100644 --- a/tools/aapt2/proto/TableProtoDeserializer.cpp +++ b/tools/aapt2/proto/TableProtoDeserializer.cpp @@ -343,26 +343,19 @@ class PackagePbDeserializer { return value; } - bool DeserializeReferenceFromPb(const pb::Reference& pb_ref, - Reference* out_ref) { + bool DeserializeReferenceFromPb(const pb::Reference& pb_ref, Reference* out_ref) { out_ref->reference_type = DeserializeReferenceTypeFromPb(pb_ref.type()); out_ref->private_reference = pb_ref.private_(); - if (!pb_ref.has_id() && !pb_ref.has_symbol_idx()) { - return false; - } - if (pb_ref.has_id()) { out_ref->id = ResourceId(pb_ref.id()); } if (pb_ref.has_symbol_idx()) { - const std::string str_symbol = - util::GetString(*symbol_pool_, pb_ref.symbol_idx()); + const std::string str_symbol = util::GetString(*symbol_pool_, pb_ref.symbol_idx()); ResourceNameRef name_ref; if (!ResourceUtils::ParseResourceName(str_symbol, &name_ref, nullptr)) { - diag_->Error(DiagMessage(source_) << "invalid reference name '" - << str_symbol << "'"); + diag_->Error(DiagMessage(source_) << "invalid reference name '" << str_symbol << "'"); return false; } diff --git a/tools/aapt2/proto/TableProtoSerializer.cpp b/tools/aapt2/proto/TableProtoSerializer.cpp index de10bb80bf7e..d87d64e1cb46 100644 --- a/tools/aapt2/proto/TableProtoSerializer.cpp +++ b/tools/aapt2/proto/TableProtoSerializer.cpp @@ -190,8 +190,7 @@ class PbSerializerVisitor : public RawValueVisitor { } if (ref.name) { - StringPool::Ref symbol_ref = - symbol_pool_->MakeRef(ref.name.value().ToString()); + StringPool::Ref symbol_ref = symbol_pool_->MakeRef(ref.name.value().ToString()); pb_ref->set_symbol_idx(static_cast<uint32_t>(symbol_ref.index())); } diff --git a/tools/aapt2/test/Builders.h b/tools/aapt2/test/Builders.h index 02acedbd8ac5..f3da780cacbd 100644 --- a/tools/aapt2/test/Builders.h +++ b/tools/aapt2/test/Builders.h @@ -59,8 +59,7 @@ class ResourceTableBuilder { ResourceTableBuilder& AddReference(const android::StringPiece& name, const ResourceId& id, const android::StringPiece& ref) { - return AddValue(name, id, - util::make_unique<Reference>(ParseNameOrDie(ref))); + return AddValue(name, id, util::make_unique<Reference>(ParseNameOrDie(ref))); } ResourceTableBuilder& AddString(const android::StringPiece& name, @@ -111,8 +110,8 @@ class ResourceTableBuilder { ResourceTableBuilder& AddValue(const android::StringPiece& name, const ConfigDescription& config, const ResourceId& id, std::unique_ptr<Value> value) { ResourceName res_name = ParseNameOrDie(name); - CHECK(table_->AddResourceAllowMangled(res_name, id, config, {}, - std::move(value), &diagnostics_)); + CHECK(table_->AddResourceAllowMangled(res_name, id, config, {}, std::move(value), + GetDiagnostics())); return *this; } @@ -122,7 +121,7 @@ class ResourceTableBuilder { Symbol symbol; symbol.state = state; symbol.allow_new = allow_new; - CHECK(table_->SetSymbolStateAllowMangled(res_name, id, symbol, &diagnostics_)); + CHECK(table_->SetSymbolStateAllowMangled(res_name, id, symbol, GetDiagnostics())); return *this; } @@ -131,7 +130,6 @@ class ResourceTableBuilder { private: DISALLOW_COPY_AND_ASSIGN(ResourceTableBuilder); - DummyDiagnosticsImpl diagnostics_; std::unique_ptr<ResourceTable> table_ = util::make_unique<ResourceTable>(); }; diff --git a/tools/aapt2/test/Common.cpp b/tools/aapt2/test/Common.cpp new file mode 100644 index 000000000000..0fabbc4070e7 --- /dev/null +++ b/tools/aapt2/test/Common.cpp @@ -0,0 +1,60 @@ +/* + * 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. + */ + +#include "test/Common.h" + +namespace aapt { +namespace test { + +struct DummyDiagnosticsImpl : public IDiagnostics { + void Log(Level level, DiagMessageActual& actual_msg) override { + switch (level) { + case Level::Note: + return; + + case Level::Warn: + std::cerr << actual_msg.source << ": warn: " << actual_msg.message << "." << std::endl; + break; + + case Level::Error: + std::cerr << actual_msg.source << ": error: " << actual_msg.message << "." << std::endl; + break; + } + } +}; + +IDiagnostics* GetDiagnostics() { + static DummyDiagnosticsImpl diag; + return &diag; +} + +template <> +Value* GetValueForConfigAndProduct<Value>(ResourceTable* table, + const android::StringPiece& res_name, + const ConfigDescription& config, + const android::StringPiece& product) { + Maybe<ResourceTable::SearchResult> result = table->FindResource(ParseNameOrDie(res_name)); + if (result) { + ResourceConfigValue* config_value = result.value().entry->FindValue(config, product); + if (config_value) { + return config_value->value.get(); + } + } + return nullptr; +} + +} // namespace test +} // namespace aapt diff --git a/tools/aapt2/test/Common.h b/tools/aapt2/test/Common.h index a937de8869a6..05851485e216 100644 --- a/tools/aapt2/test/Common.h +++ b/tools/aapt2/test/Common.h @@ -46,27 +46,7 @@ namespace aapt { namespace test { -struct DummyDiagnosticsImpl : public IDiagnostics { - void Log(Level level, DiagMessageActual& actual_msg) override { - switch (level) { - case Level::Note: - return; - - case Level::Warn: - std::cerr << actual_msg.source << ": warn: " << actual_msg.message << "." << std::endl; - break; - - case Level::Error: - std::cerr << actual_msg.source << ": error: " << actual_msg.message << "." << std::endl; - break; - } - } -}; - -inline IDiagnostics* GetDiagnostics() { - static DummyDiagnosticsImpl diag; - return &diag; -} +IDiagnostics* GetDiagnostics(); inline ResourceName ParseNameOrDie(const android::StringPiece& str) { ResourceNameRef ref; @@ -80,7 +60,7 @@ inline ConfigDescription ParseConfigOrDie(const android::StringPiece& str) { return config; } -template <typename T> +template <typename T = Value> T* GetValueForConfigAndProduct(ResourceTable* table, const android::StringPiece& res_name, const ConfigDescription& config, const android::StringPiece& product) { @@ -94,13 +74,19 @@ T* GetValueForConfigAndProduct(ResourceTable* table, const android::StringPiece& return nullptr; } -template <typename T> +template <> +Value* GetValueForConfigAndProduct<Value>(ResourceTable* table, + const android::StringPiece& res_name, + const ConfigDescription& config, + const android::StringPiece& product); + +template <typename T = Value> T* GetValueForConfig(ResourceTable* table, const android::StringPiece& res_name, const ConfigDescription& config) { return GetValueForConfigAndProduct<T>(table, res_name, config, {}); } -template <typename T> +template <typename T = Value> T* GetValue(ResourceTable* table, const android::StringPiece& res_name) { return GetValueForConfig<T>(table, res_name, {}); } |