diff options
326 files changed, 2814 insertions, 2652 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index cca933ec2fe4..e8c56f02fb77 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -201,6 +201,7 @@ package android { field public static final java.lang.String READ_SYNC_SETTINGS = "android.permission.READ_SYNC_SETTINGS"; field public static final java.lang.String READ_SYNC_STATS = "android.permission.READ_SYNC_STATS"; field public static final java.lang.String READ_VOICEMAIL = "com.android.voicemail.permission.READ_VOICEMAIL"; + field public static final java.lang.String READ_WALLPAPER_INTERNAL = "android.permission.READ_WALLPAPER_INTERNAL"; field public static final java.lang.String READ_WIFI_CREDENTIAL = "android.permission.READ_WIFI_CREDENTIAL"; field public static final java.lang.String REAL_GET_TASKS = "android.permission.REAL_GET_TASKS"; field public static final java.lang.String REBOOT = "android.permission.REBOOT"; diff --git a/config/copyright-header b/config/copyright-header new file mode 100644 index 000000000000..93071cd7e2ef --- /dev/null +++ b/config/copyright-header @@ -0,0 +1,15 @@ +# +# 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. +# diff --git a/config/generate-preloaded-classes.sh b/config/generate-preloaded-classes.sh new file mode 100755 index 000000000000..d55190bf4256 --- /dev/null +++ b/config/generate-preloaded-classes.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# +# 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. +if [ "$#" -lt 2 ]; then + echo "Usage $0 <input classes file> <blacklist file> [extra classes files]" + exit 1 +fi +echo "# Preloaded-classes filter file for phones. +# +# Classes in this file will be allocated into the boot image, and forcibly initialized in +# the zygote during initialization. This is a trade-off, using virtual address space to share +# common heap between apps. +# +# This file has been derived for mainline phone (and tablet) usage. +#" +input=$1 +blacklist=$2 +shift 2 +extra_classes_files=("$@") +sort "$input" "${extra_classes_files[@]}" | uniq | grep -f "$blacklist" -v -F -x + diff --git a/config/preloaded-classes-blacklist b/config/preloaded-classes-blacklist new file mode 100644 index 000000000000..48cdce852872 --- /dev/null +++ b/config/preloaded-classes-blacklist @@ -0,0 +1 @@ +placeholder diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index adb3152d4ae7..1c8a37606ffe 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -1006,6 +1006,11 @@ public class Activity extends ContextThemeWrapper Parcelable p = savedInstanceState.getParcelable(FRAGMENTS_TAG); mFragments.restoreAllState(p, mLastNonConfigurationInstances != null ? mLastNonConfigurationInstances.fragments : null); + } else { + AutofillManager afm = getAutofillManager(); + if (afm != null) { + afm.dismissUi(); + } } mFragments.dispatchCreate(); getApplication().dispatchActivityCreated(this, savedInstanceState); diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java index d8da8c5bee82..32a64b0336d9 100644 --- a/core/java/android/app/admin/DevicePolicyManager.java +++ b/core/java/android/app/admin/DevicePolicyManager.java @@ -2707,13 +2707,14 @@ public class DevicePolicyManager { } /** - * Flag for {@link #resetPassword}: don't allow other admins to change - * the password again until the user has entered it. + * Flag for {@link #resetPasswordWithToken} and {@link #resetPassword}: don't allow other admins + * to change the password again until the user has entered it. */ public static final int RESET_PASSWORD_REQUIRE_ENTRY = 0x0001; /** - * Flag for {@link #resetPassword}: don't ask for user credentials on device boot. + * Flag for {@link #resetPasswordWithToken} and {@link #resetPassword}: don't ask for user + * credentials on device boot. * If the flag is set, the device can be booted without asking for user password. * The absence of this flag does not change the current boot requirements. This flag * can be set by the device owner only. If the app is not the device owner, the flag @@ -2723,8 +2724,8 @@ public class DevicePolicyManager { public static final int RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT = 0x0002; /** - * Force a new device unlock password (the password needed to access the entire device, not for - * individual accounts) on the user. This takes effect immediately. + * Force a new password for device unlock (the password needed to access the entire device) or + * the work profile challenge on the current user. This takes effect immediately. * <p> * <em>For device owner and profile owners targeting SDK level * {@link android.os.Build.VERSION_CODES#O} or above, this API is no longer available and will @@ -2762,7 +2763,6 @@ public class DevicePolicyManager { * @throws SecurityException if the calling application does not own an active administrator * that uses {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} * @throws IllegalStateException if the calling user is locked or has a managed profile. - * @throws IllegalArgumentException if the password does not meet system requirements. */ public boolean resetPassword(String password, int flags) { throwIfParentInstance("resetPassword"); @@ -2804,8 +2804,8 @@ public class DevicePolicyManager { * @param token a secure token a least 32-byte long, which must be generated by a * cryptographically strong random number generator. * @return true if the operation is successful, false otherwise. + * @throws SecurityException if admin is not a device or profile owner. * @throws IllegalArgumentException if the supplied token is invalid. - * @throws SecurityException */ public boolean setResetPasswordToken(ComponentName admin, byte[] token) { throwIfParentInstance("setResetPasswordToken"); @@ -2824,6 +2824,7 @@ public class DevicePolicyManager { * * @param admin Which {@link DeviceAdminReceiver} this request is associated with. * @return true if the operation is successful, false otherwise. + * @throws SecurityException if admin is not a device or profile owner. */ public boolean clearResetPasswordToken(ComponentName admin) { throwIfParentInstance("clearResetPasswordToken"); @@ -2842,6 +2843,7 @@ public class DevicePolicyManager { * * @param admin Which {@link DeviceAdminReceiver} this request is associated with. * @return true if the token is active, false otherwise. + * @throws SecurityException if admin is not a device or profile owner. * @throws IllegalStateException if no token has been set. */ public boolean isResetPasswordTokenActive(ComponentName admin) { @@ -2867,24 +2869,23 @@ public class DevicePolicyManager { * The given password must be sufficient for the current password quality and length constraints * as returned by {@link #getPasswordQuality(ComponentName)} and * {@link #getPasswordMinimumLength(ComponentName)}; if it does not meet these constraints, then - * it will be rejected and false returned. Note that the password may be a stronger quality - * (containing alphanumeric characters when the requested quality is only numeric), in which - * case the currently active quality will be increased to match. + * it will be rejected and false returned. Note that the password may be a stronger quality, for + * example, a password containing alphanumeric characters when the requested quality is only + * numeric. * <p> - * Calling with a null or empty password will clear any existing PIN, pattern or password if the - * current password constraints allow it. + * Calling with a {@code null} or empty password will clear any existing PIN, pattern or + * password if the current password constraints allow it. * * @param admin Which {@link DeviceAdminReceiver} this request is associated with. - * @param password The new password for the user. Null or empty clears the password. - * @param token the password reset token previously provisioned by #setResetPasswordToken. + * @param password The new password for the user. {@code null} or empty clears the password. + * @param token the password reset token previously provisioned by + * {@link #setResetPasswordToken}. * @param flags May be 0 or combination of {@link #RESET_PASSWORD_REQUIRE_ENTRY} and - * {@link #RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT}. + * {@link #RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT}. * @return Returns true if the password was applied, or false if it is not acceptable for the * current constraints. - * @throws SecurityException if the calling application does not own an active administrator - * that uses {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} + * @throws SecurityException if admin is not a device or profile owner. * @throws IllegalStateException if the provided token is not valid. - * @throws IllegalArgumentException if the password does not meet system requirements. */ public boolean resetPasswordWithToken(@NonNull ComponentName admin, String password, byte[] token, int flags) { diff --git a/core/java/android/service/autofill/AutofillService.java b/core/java/android/service/autofill/AutofillService.java index c068e6a21db6..2755e8e7bee1 100644 --- a/core/java/android/service/autofill/AutofillService.java +++ b/core/java/android/service/autofill/AutofillService.java @@ -18,16 +18,15 @@ package android.service.autofill; import android.annotation.CallSuper; import android.annotation.NonNull; import android.annotation.Nullable; -import android.os.RemoteException; -import android.provider.Settings; - -import com.android.internal.os.HandlerCaller; import android.annotation.SdkConstant; -import android.app.Service;import android.content.Intent; +import android.app.Service; +import android.content.Intent; import android.os.CancellationSignal; import android.os.IBinder; import android.os.ICancellationSignal; import android.os.Looper; +import android.os.RemoteException; +import android.provider.Settings; import android.util.Log; import android.view.View; import android.view.ViewStructure; @@ -35,6 +34,7 @@ import android.view.autofill.AutofillId; import android.view.autofill.AutofillManager; import android.view.autofill.AutofillValue; +import com.android.internal.os.HandlerCaller; import com.android.internal.os.SomeArgs; /** @@ -280,6 +280,76 @@ import com.android.internal.os.SomeArgs; * calling {@link FillResponse.Builder#setIgnoredIds(AutofillId...)} so the system does not trigger * a new {@link #onFillRequest(FillRequest, CancellationSignal, FillCallback)} when these views are * focused. + * + * <h3>Web security</h3> + * + * <p>When handling autofill requests that represent web pages (typically + * view structures whose root's {@link android.app.assist.AssistStructure.ViewNode#getClassName()} + * is a {@link android.webkit.WebView}), the service should take the following steps to verify if + * the structure can be autofilled with the data associated with the app requesting it: + * + * <ol> + * <li>Use the {@link android.app.assist.AssistStructure.ViewNode#getWebDomain()} to get the + * source of the document. + * <li>Get the canonical domain using the + * <a href="https://publicsuffix.org/>Public Suffix List</a> (see example below). + * <li>Use <a href="https://developers.google.com/digital-asset-links/">Digital Asset Links</a> + * to obtain the package name and certificate fingerprint of the package corresponding to + * the canonical domain. + * <li>Make sure the certificate fingerprint matches the value returned by Package Manager + * (see "Package verification" section above). + * </ol> + * + * <p>Here's an example on how to get the canonical domain using + * <a href="https://github.com/google/guava">Guava</a>: + * + * <pre class="prettyprint"> + * private static String getCanonicalDomain(String domain) { + * InternetDomainName idn = InternetDomainName.from(domain); + * while (!idn.isTopPrivateDomain() && idn != null) { + * idn = idn.parent(); + * } + * return idn == null ? null : idn.toString(); + * } + * </pre> + * + * <p>If the association between the web domain and app package cannot be verified through the steps + * above, the service can still autofill the app, but it should warn the user about the potential + * data leakage first, and askfor the user to confirm. For example, the service could: + * + * <ol> + * <li>Create a dataset that requires + * {@link Dataset.Builder#setAuthentication(android.content.IntentSender) authentication} to + * unlock. + * <li>Include the web domain in the custom presentation for the + * {@link Dataset.Builder#setValue(AutofillId, AutofillValue, android.widget.RemoteViews) + * dataset value}. + * <li>When the user select that dataset, show a disclaimer dialog explaining that the app is + * requesting credentials for a web domain, but the service could not verify if the app owns + * that domain. If the user agrees, then the service can unlock the dataset. + * <li>Similarly, when adding a {@link SaveInfo} object for the request, the service should + * include the above disclaimer in the {@link SaveInfo.Builder#setDescription(CharSequence)}. + * </ol> + * + * <p>This same procedure could also be used when the autofillable data is contained inside an + * {@code IFRAME}, in which case the WebView generates a new autofill context when a node inside + * the {@code IFRAME} is focused, which the root node containing the {@code IFRAME}'s {@code src} + * attribute on {@link android.app.assist.AssistStructure.ViewNode#getWebDomain()}. A typical and + * legitimate use case for this scenario is a financial app that allows the user + * to login on different bank accounts. For example, a financial app {@code my_financial_app} could + * use a WebView that loads contents from {@code banklogin.my_financial_app.com}, which contains an + * {@code IFRAME} node whose {@code src} attribute is {@code login.some_bank.com}. When fulfilling + * that request, the service could add an + * {@link Dataset.Builder#setAuthentication(android.content.IntentSender) authenticated dataset} + * whose presentation displays "Username for some_bank.com" and + * "Password for some_bank.com". Then when the user taps one of these options, the service + * shows the disclaimer dialog explaining that selecting that option would release the + * {@code login.some_bank.com} credentials to the {@code my_financial_app}; if the user agrees, + * then the service returns an unlocked dataset with the {@code some_bank.com} credentials. + * + * <p><b>Note:</b> The autofill service could also whitelist well-known browser apps and skip the + * verifications above, as long as the service can verify the authenticity of the browser app by + * checking its signing certificate. */ public abstract class AutofillService extends Service { private static final String TAG = "AutofillService"; @@ -424,7 +494,7 @@ public abstract class AutofillService extends Service { * {@link SaveCallback#onSuccess()} or {@link SaveCallback#onFailure(CharSequence)}) * to notify the result of the request. * - * <p><b>NOTE: </b>to retrieve the actual value of the field, the service should call + * <p><b>Note:</b> To retrieve the actual value of the field, the service should call * {@link android.app.assist.AssistStructure.ViewNode#getAutofillValue()}; if it calls * {@link android.app.assist.AssistStructure.ViewNode#getText()} or other methods, there is no * guarantee such method will return the most recent value of the field. diff --git a/core/java/android/service/gatekeeper/GateKeeperResponse.java b/core/java/android/service/gatekeeper/GateKeeperResponse.java index 287dc76a9b01..9b529345851b 100644 --- a/core/java/android/service/gatekeeper/GateKeeperResponse.java +++ b/core/java/android/service/gatekeeper/GateKeeperResponse.java @@ -106,6 +106,8 @@ public final class GateKeeperResponse implements Parcelable { if (mPayload != null) { dest.writeInt(mPayload.length); dest.writeByteArray(mPayload); + } else { + dest.writeInt(0); } } } diff --git a/core/java/android/service/wallpaper/WallpaperService.java b/core/java/android/service/wallpaper/WallpaperService.java index f548d3b77bf3..1c6275fb8dc1 100644 --- a/core/java/android/service/wallpaper/WallpaperService.java +++ b/core/java/android/service/wallpaper/WallpaperService.java @@ -195,7 +195,8 @@ public abstract class WallpaperService extends Service { // Needed for throttling onComputeColors. private long mLastColorInvalidation; private final Runnable mNotifyColorsChanged = this::notifyColorsChanged; - private Supplier<Long> mClockFunction = SystemClock::elapsedRealtime; + private final Supplier<Long> mClockFunction; + private final Handler mHandler; DisplayManager mDisplayManager; Display mDisplay; @@ -362,6 +363,26 @@ public abstract class WallpaperService extends Service { } } }; + + /** + * Default constructor + */ + public Engine() { + this(SystemClock::elapsedRealtime, Handler.getMain()); + } + + /** + * Constructor used for test purposes. + * + * @param clockFunction Supplies current times in millis. + * @param handler Used for posting/deferring asynchronous calls. + * @hide + */ + @VisibleForTesting + public Engine(Supplier<Long> clockFunction, Handler handler) { + mClockFunction = clockFunction; + mHandler = handler; + } /** * Provides access to the surface in which this wallpaper is drawn. @@ -563,18 +584,17 @@ public abstract class WallpaperService extends Service { */ public void notifyColorsChanged() { final long now = mClockFunction.get(); - final Handler mainHandler = Handler.getMain(); if (now - mLastColorInvalidation < NOTIFY_COLORS_RATE_LIMIT_MS) { Log.w(TAG, "This call has been deferred. You should only call " + "notifyColorsChanged() once every " + (NOTIFY_COLORS_RATE_LIMIT_MS / 1000f) + " seconds."); - if (!mainHandler.hasCallbacks(mNotifyColorsChanged)) { - mainHandler.postDelayed(mNotifyColorsChanged, NOTIFY_COLORS_RATE_LIMIT_MS); + if (!mHandler.hasCallbacks(mNotifyColorsChanged)) { + mHandler.postDelayed(mNotifyColorsChanged, NOTIFY_COLORS_RATE_LIMIT_MS); } return; } mLastColorInvalidation = now; - mainHandler.removeCallbacks(mNotifyColorsChanged); + mHandler.removeCallbacks(mNotifyColorsChanged); try { final WallpaperColors newColors = onComputeColors(); @@ -662,14 +682,6 @@ public abstract class WallpaperService extends Service { } } - /** - * @hide - */ - @VisibleForTesting - public void setClockFunction(Supplier<Long> clockFunction) { - mClockFunction = clockFunction; - } - void updateSurface(boolean forceRelayout, boolean forceReport, boolean redrawNeeded) { if (mDestroyed) { Log.w(TAG, "Ignoring updateSurface: destroyed"); diff --git a/core/java/android/view/autofill/AutofillManager.java b/core/java/android/view/autofill/AutofillManager.java index 29e5523ceb7c..a0d909949db2 100644 --- a/core/java/android/view/autofill/AutofillManager.java +++ b/core/java/android/view/autofill/AutofillManager.java @@ -1339,6 +1339,25 @@ public final class AutofillManager { } /** + * Dismiss the Autofill UI, even if associated with other sessions. + * + * <p>Typically called when a new activity starts so it can hide the existing Save UI (if any). + * + * @hide + */ + public void dismissUi() { + if (sVerbose) Log.v(TAG, "dismissUi()"); + + if (mService == null) return; + + try { + mService.dismissUi(); + } catch (RemoteException e) { + e.rethrowFromSystemServer(); + } + } + + /** * View tracking information. Once all tracked views become invisible the session is finished. */ private class TrackedViews { diff --git a/core/java/android/view/autofill/IAutoFillManager.aidl b/core/java/android/view/autofill/IAutoFillManager.aidl index 627afa7f8364..aa8e19a8ceb2 100644 --- a/core/java/android/view/autofill/IAutoFillManager.aidl +++ b/core/java/android/view/autofill/IAutoFillManager.aidl @@ -49,4 +49,5 @@ interface IAutoFillManager { void disableOwnedAutofillServices(int userId); boolean isServiceSupported(int userId); boolean isServiceEnabled(int userId, String packageName); + void dismissUi(); } diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 650c7d97d357..049f1efbb101 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -2725,6 +2725,18 @@ public class WebView extends AbsoluteLayout * understood by the {@link android.service.autofill.AutofillService} implementations: * * <ol> + * <li>Only the HTML nodes inside a {@code FORM} are generated. + * <li>The source of the HTML is set using {@link ViewStructure#setWebDomain(String)} in the + * node representing the WebView. + * <li>If a web page has multiple {@code FORM}s, only the data for the current form is + * represented—if the user taps a field from another form, then the current autofill + * context is canceled (by calling {@link android.view.autofill.AutofillManager#cancel()} and + * a new context is created for that {@code FORM}. + * <li>Similarly, if the page has {@code IFRAME} nodes, they are not initially represented in + * the view structure until the user taps a field from a {@code FORM} inside the + * {@code IFRAME}, in which case it would be treated the same way as multiple forms described + * above, except that the {@link ViewStructure#setWebDomain(String) web domain} of the + * {@code FORM} contains the {@code src} attribute from the {@code IFRAME} node. * <li>If the Android SDK provides a similar View, then should be set with the * fully-qualified class name of such view. * <li>The W3C autofill field ({@code autocomplete} tag attribute) maps to diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index f294b98712c6..86c0b436ae29 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -1984,6 +1984,15 @@ android:description="@string/permdesc_setWallpaperHints" android:protectionLevel="normal" /> + <!-- Allow the app to read the system wallpaper image without + holding the READ_EXTERNAL_STORAGE permission. + <p>Not for use by third-party applications. + @hide + @SystemApi + --> + <permission android:name="android.permission.READ_WALLPAPER_INTERNAL" + android:protectionLevel="signature|privileged" /> + <!-- ============================================ --> <!-- Permissions for changing the system clock --> <!-- ============================================ --> diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index bc4181075319..8b0346867cbc 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp @@ -99,13 +99,22 @@ FontRenderer::FontRenderer(const uint8_t* gammaTable) } auto deviceInfo = DeviceInfo::get(); + auto displayInfo = deviceInfo->displayInfo(); int maxTextureSize = deviceInfo->maxTextureSize(); + // Adjust cache size based on Pixel's desnsity. + constexpr float PIXEL_DENSITY = 2.6; + const float densityRatio = displayInfo.density / PIXEL_DENSITY; + // TODO: Most devices are hardcoded with this configuration, does it need to be dynamic? - mSmallCacheWidth = std::min(1024, maxTextureSize); - mSmallCacheHeight = std::min(1024, maxTextureSize); - mLargeCacheWidth = std::min(2048, maxTextureSize); - mLargeCacheHeight = std::min(1024, maxTextureSize); + mSmallCacheWidth = + OffscreenBuffer::computeIdealDimension(std::min(1024, maxTextureSize) * densityRatio); + mSmallCacheHeight = + OffscreenBuffer::computeIdealDimension(std::min(1024, maxTextureSize) * densityRatio); + mLargeCacheWidth = + OffscreenBuffer::computeIdealDimension(std::min(2048, maxTextureSize) * densityRatio); + mLargeCacheHeight = + OffscreenBuffer::computeIdealDimension(std::min(1024, maxTextureSize) * densityRatio); if (sLogFontRendererCreate) { INIT_LOGD(" Text cache sizes, in pixels: %i x %i, %i x %i, %i x %i, %i x %i", diff --git a/packages/BackupRestoreConfirmation/res/values-ar/strings.xml b/packages/BackupRestoreConfirmation/res/values-ar/strings.xml index b7a56d179b00..4d4d6befce97 100644 --- a/packages/BackupRestoreConfirmation/res/values-ar/strings.xml +++ b/packages/BackupRestoreConfirmation/res/values-ar/strings.xml @@ -24,10 +24,10 @@ <string name="restore_confirm_text" msgid="7499866728030461776">"تم طلب استرداد جميع البيانات بالكامل من كمبيوتر سطح مكتب متصل. هل تريد السماح بإجراء ذلك؟\n\nإذا لم تطلب الاسترداد بنفسك، فلا تسمح بمتابعة العملية. يؤدي لك إلى استبدال أية بيانات حاليًا على الجهاز."</string> <string name="allow_restore_button_label" msgid="3081286752277127827">"استرداد بياناتي"</string> <string name="deny_restore_button_label" msgid="1724367334453104378">"عدم الاسترداد"</string> - <string name="current_password_text" msgid="8268189555578298067">"الرجاء إدخال كلمة مرور النسخ الاحتياطي أدناه:"</string> - <string name="device_encryption_restore_text" msgid="1570864916855208992">"الرجاء إدخال كلمة مرور تشفير جهازك أدناه."</string> - <string name="device_encryption_backup_text" msgid="5866590762672844664">"الرجاء إدخال كلمة مرور تشفير الجهاز. سيتم استخدام ذلك أيضًا لتشفير أرشيف النسخ الاحتياطي."</string> - <string name="backup_enc_password_text" msgid="4981585714795233099">"الرجاء إدخال كلمة المرور للاستخدام لتشفير بيانات النسخة الاحتياطية بالكامل. إذا تم ترك هذا فارغًا، فسيتم استخدام كلمة مرور النسخ الاحتياطي الحالية:"</string> + <string name="current_password_text" msgid="8268189555578298067">"يُرجى إدخال كلمة مرور النسخ الاحتياطي أدناه:"</string> + <string name="device_encryption_restore_text" msgid="1570864916855208992">"يُرجى إدخال كلمة مرور تشفير جهازك أدناه."</string> + <string name="device_encryption_backup_text" msgid="5866590762672844664">"يُرجى إدخال كلمة مرور تشفير الجهاز. سيتم استخدام ذلك أيضًا لتشفير أرشيف النسخ الاحتياطي."</string> + <string name="backup_enc_password_text" msgid="4981585714795233099">"يُرجى إدخال كلمة المرور للاستخدام لتشفير بيانات النسخة الاحتياطية بالكامل. إذا تم ترك هذا فارغًا، فسيتم استخدام كلمة مرور النسخ الاحتياطي الحالية:"</string> <string name="backup_enc_password_optional" msgid="1350137345907579306">"إذا كنت ترغب في تشفير بيانات النسخة الاحتياطية بالكامل، فأدخل كلمة المرور أدناه:"</string> <string name="backup_enc_password_required" msgid="7889652203371654149">"نظرًا لكون جهازك مشفرًا، أنت مطالب بتشفير النسخة الاحتياطية. يُرجى إدخال كلمة المرور أدناه:"</string> <string name="restore_enc_password_text" msgid="6140898525580710823">"إذا كانت بيانات الاسترداد مشفرة، فالرجاء إدخال كلمة المرور أدناه:"</string> diff --git a/packages/BackupRestoreConfirmation/res/values-en-rCA/strings.xml b/packages/BackupRestoreConfirmation/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..badad601114e --- /dev/null +++ b/packages/BackupRestoreConfirmation/res/values-en-rCA/strings.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="backup_confirm_title" msgid="827563724209303345">"Full backup"</string> + <string name="restore_confirm_title" msgid="5469365809567486602">"Full restoration"</string> + <string name="backup_confirm_text" msgid="1878021282758896593">"A full backup of all data to a connected desktop computer has been requested. Do you want to allow this to happen?\n\nIf you did not request the backup yourself, do not allow the operation to proceed."</string> + <string name="allow_backup_button_label" msgid="4217228747769644068">"Back up my data"</string> + <string name="deny_backup_button_label" msgid="6009119115581097708">"Do not back up"</string> + <string name="restore_confirm_text" msgid="7499866728030461776">"A full restore of all data from a connected desktop computer has been requested. Do you want to allow this to happen?\n\nIf you did not request the restore yourself, do not allow the operation to proceed. This will replace any data currently on the device!"</string> + <string name="allow_restore_button_label" msgid="3081286752277127827">"Restore my data"</string> + <string name="deny_restore_button_label" msgid="1724367334453104378">"Do not restore"</string> + <string name="current_password_text" msgid="8268189555578298067">"Please enter your current backup password below:"</string> + <string name="device_encryption_restore_text" msgid="1570864916855208992">"Please enter your device encryption password below."</string> + <string name="device_encryption_backup_text" msgid="5866590762672844664">"Please enter your device encryption password below. This will also be used to encrypt the backup archive."</string> + <string name="backup_enc_password_text" msgid="4981585714795233099">"Please enter a password to use for encrypting the full backup data. If this is left blank, your current backup password will be used:"</string> + <string name="backup_enc_password_optional" msgid="1350137345907579306">"If you wish to encrypt the full backup data, enter a password below:"</string> + <string name="backup_enc_password_required" msgid="7889652203371654149">"Since your device is encrypted, you are required to encrypt your backup. Please enter a password below:"</string> + <string name="restore_enc_password_text" msgid="6140898525580710823">"If the restore data is encrypted, please enter the password below:"</string> + <string name="toast_backup_started" msgid="550354281452756121">"Backup starting..."</string> + <string name="toast_backup_ended" msgid="3818080769548726424">"Backup finished"</string> + <string name="toast_restore_started" msgid="7881679218971277385">"Restoration starting..."</string> + <string name="toast_restore_ended" msgid="1764041639199696132">"Restoration ended"</string> + <string name="toast_timeout" msgid="5276598587087626877">"Operation timed out"</string> +</resources> diff --git a/packages/BackupRestoreConfirmation/res/values-hi/strings.xml b/packages/BackupRestoreConfirmation/res/values-hi/strings.xml index 2578e8fec895..f758fa1c5495 100644 --- a/packages/BackupRestoreConfirmation/res/values-hi/strings.xml +++ b/packages/BackupRestoreConfirmation/res/values-hi/strings.xml @@ -35,5 +35,5 @@ <string name="toast_backup_ended" msgid="3818080769548726424">"सुरक्षित करना पूर्ण"</string> <string name="toast_restore_started" msgid="7881679218971277385">"पुनर्स्थापना प्रारंभ हो रही है..."</string> <string name="toast_restore_ended" msgid="1764041639199696132">"पुनर्स्थापना समाप्त"</string> - <string name="toast_timeout" msgid="5276598587087626877">"कार्यवाही समयबाह्य हो गई"</string> + <string name="toast_timeout" msgid="5276598587087626877">"काम नहीं हो सका. टाइम आउट हो गया"</string> </resources> diff --git a/packages/BackupRestoreConfirmation/res/values-mr/strings.xml b/packages/BackupRestoreConfirmation/res/values-mr/strings.xml index 121ad0066e85..f94ec4b1a027 100644 --- a/packages/BackupRestoreConfirmation/res/values-mr/strings.xml +++ b/packages/BackupRestoreConfirmation/res/values-mr/strings.xml @@ -25,15 +25,15 @@ <string name="allow_restore_button_label" msgid="3081286752277127827">"माझा डेटा पुनर्संचयित करा"</string> <string name="deny_restore_button_label" msgid="1724367334453104378">"पुनर्संचयित करू नका"</string> <string name="current_password_text" msgid="8268189555578298067">"कृपया आपला वर्तमान बॅकअप संकेतशब्द खाली प्रविष्ट करा:"</string> - <string name="device_encryption_restore_text" msgid="1570864916855208992">"कृपया आपला डिव्हाइस कूटबद्धीकरण संकेतशब्द खाली प्रविष्ट करा."</string> - <string name="device_encryption_backup_text" msgid="5866590762672844664">"कृपया आपला डिव्हाइस कूटबद्धीकरण संकेतशब्द खाली प्रविष्ट करा. हा बॅकअप संग्रह कूटबद्ध करण्यासाठी देखील वापरला जाईल."</string> + <string name="device_encryption_restore_text" msgid="1570864916855208992">"कृपया तुमचे डीव्हाइस एंक्रिप्शन पासवर्ड खाली एंटर करा."</string> + <string name="device_encryption_backup_text" msgid="5866590762672844664">"कृपया तुमचे डीव्हाइस एंक्रिप्शन पासवर्ड खाली एंटर करा. हा बॅकअप संग्रह एंक्रिप्ट करण्यासाठी देखील वापरला जाईल."</string> <string name="backup_enc_password_text" msgid="4981585714795233099">"कृपया पूर्ण बॅकअप डेटा कूटबद्ध करण्यासाठी वापरण्याकरिता संकेतशब्द प्रविष्ट करा. हे रिक्त सोडल्यास, आपला वर्तमान बॅकअप संकेतशब्द वापरला जाईल:"</string> <string name="backup_enc_password_optional" msgid="1350137345907579306">"आपण पूर्ण बॅकअप डेटा कूटबद्ध करू इच्छित असल्यास, खालील संकेतशब्द प्रविष्ट करा:"</string> - <string name="backup_enc_password_required" msgid="7889652203371654149">"आपले डिव्हाइस कूटबद्ध केले असल्यामुळे, आपल्याला आपला बॅक अप कूटबद्ध करणे आवश्यक आहे. कृपया खाली एक संकेतशब्द प्रविष्ट करा:"</string> + <string name="backup_enc_password_required" msgid="7889652203371654149">"तुमचे डीव्हाइस एंक्रिप्ट केले असल्यामुळे, तुम्हाला तुमचा बॅक अप एंक्रिप्ट करणे आवश्यक आहे. कृपया खाली एक पासवर्ड एंटर करा:"</string> <string name="restore_enc_password_text" msgid="6140898525580710823">"पुनर्संचयित डेटा कूटबद्ध केला असल्यास, कृपया संकेतशब्द खाली प्रविष्ट करा:"</string> <string name="toast_backup_started" msgid="550354281452756121">"बॅकअप सुरू होत आहे..."</string> <string name="toast_backup_ended" msgid="3818080769548726424">"बॅकअप समाप्त झाले"</string> <string name="toast_restore_started" msgid="7881679218971277385">"पुनर्संचयन सुरू होत आहे..."</string> <string name="toast_restore_ended" msgid="1764041639199696132">"पुनर्संचयन समाप्त झाले"</string> - <string name="toast_timeout" msgid="5276598587087626877">"कार्य कालबाह्य झाले"</string> + <string name="toast_timeout" msgid="5276598587087626877">"कार्य टाइमआउट झाले"</string> </resources> diff --git a/packages/BackupRestoreConfirmation/res/values-pa/strings.xml b/packages/BackupRestoreConfirmation/res/values-pa/strings.xml index 12dd5463b8e8..dd3b5800fb69 100644 --- a/packages/BackupRestoreConfirmation/res/values-pa/strings.xml +++ b/packages/BackupRestoreConfirmation/res/values-pa/strings.xml @@ -21,15 +21,15 @@ <string name="backup_confirm_text" msgid="1878021282758896593">"ਇੱਕ ਕਨੈਕਟ ਕੀਤੇ ਡੈਸਕਟੌਪ ਕੰਪਿਊਟਰ ਦੇ ਸਾਰੇ ਡੈਟਾ ਦੇ ਇੱਕ ਪੁੂਰੇ ਬੈਕਅਪ ਦੀ ਬੇਨਤੀ ਕੀਤੀ ਗਈ ਹੈ। ਕੀ ਤੁਸੀਂ ਅਜਿਹਾ ਹੋਣ ਦੀ ਆਗਿਆ ਦੇਣਾ ਚਾਹੁੰਦੇ ਹੋ?\n\nਜੇਕਰ ਤੁਸੀਂ ਖੁਦ ਬੈਕਅਪ ਦੀ ਬੇਨਤੀ ਨਹੀਂ ਕੀਤੀ ਸੀ, ਤਾਂ ਓਪਰੇਸ਼ਨ ਜਾਰੀ ਰੱਖਣ ਦੀ ਆਗਿਆ ਨਾ ਦਿਓ।"</string> <string name="allow_backup_button_label" msgid="4217228747769644068">"ਮੇਰਾ ਡੈਟਾ ਬੈਕ ਅਪ ਕਰੋ"</string> <string name="deny_backup_button_label" msgid="6009119115581097708">"ਬੈਕ ਅਪ ਨਾ ਕਰੋ"</string> - <string name="restore_confirm_text" msgid="7499866728030461776">"ਇੱਕ ਕਨੈਕਟ ਕੀਤੇ ਡੈਸਕਟੌਪ ਕੰਪਿਊਟਰ ਦੇ ਸਾਰੇ ਡੈਟਾ ਦੇ ਇੱਕ ਪੁੂਰੇ ਰੀਸਟੋਰ ਦੀ ਬੇਨਤੀ ਕੀਤੀ ਗਈ ਹੈ। ਕੀ ਤੁਸੀਂ ਅਜਿਹਾ ਹੋਣ ਦੀ ਆਗਿਆ ਦੇਣਾ ਚਾਹੁੰਦੇ ਹੋ?\n\nਜੇਕਰ ਤੁਸੀਂ ਖੁਦ ਰੀਸਟੋਰ ਦੀ ਬੇਨਤੀ ਨਹੀਂ ਕੀਤੀ ਸੀ, ਤਾਂ ਓਪਰੇਸ਼ਨ ਜਾਰੀ ਰੱਖਣ ਦੀ ਆਗਿਆ ਨਾ ਦਿਓ। ਇਹ ਡੀਵਾਈਸ ਤੇ ਇਸ ਵੇਲੇ ਮੌਜੂਦ ਕਿਸੇ ਵੀ ਡੈਟਾ ਨੂੰ ਬਦਲ ਦੇਵੇਗਾ!"</string> + <string name="restore_confirm_text" msgid="7499866728030461776">"ਇੱਕ ਕਨੈਕਟ ਕੀਤੇ ਡੈਸਕਟਾਪ ਕੰਪਿਊਟਰ ਦੇ ਸਾਰੇ ਡਾਟਾ ਦੇ ਇੱਕ ਪੁੂਰੇ ਰੀਸਟੋਰ ਦੀ ਬੇਨਤੀ ਕੀਤੀ ਗਈ ਹੈ। ਕੀ ਤੁਸੀਂ ਅਜਿਹਾ ਹੋਣ ਦੀ ਆਗਿਆ ਦੇਣਾ ਚਾਹੁੰਦੇ ਹੋ?\n\nਜੇਕਰ ਤੁਸੀਂ ਖੁਦ ਰੀਸਟੋਰ ਦੀ ਬੇਨਤੀ ਨਹੀਂ ਕੀਤੀ ਸੀ, ਤਾਂ ਓਪਰੇਸ਼ਨ ਜਾਰੀ ਰੱਖਣ ਦੀ ਆਗਿਆ ਨਾ ਦਿਓ। ਇਹ ਡੀਵਾਈਸ ਤੇ ਇਸ ਵੇਲੇ ਮੌਜੂਦ ਕਿਸੇ ਵੀ ਡਾਟਾ ਨੂੰ ਬਦਲ ਦੇਵੇਗਾ!"</string> <string name="allow_restore_button_label" msgid="3081286752277127827">"ਮੇਰਾ ਡੈਟਾ ਰੀਸਟੋਰ ਕਰੋ"</string> <string name="deny_restore_button_label" msgid="1724367334453104378">"ਰੀਸਟੋਰ ਨਾ ਕਰੋ"</string> <string name="current_password_text" msgid="8268189555578298067">"ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਆਪਣਾ ਮੌਜੂਦਾ ਬੈਕਅਪ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ:"</string> <string name="device_encryption_restore_text" msgid="1570864916855208992">"ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਆਪਣਾ ਡੀਵਾਈਸ ਇਨਕ੍ਰਿਪਸ਼ਨ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ।"</string> - <string name="device_encryption_backup_text" msgid="5866590762672844664">"ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਆਪਣਾ ਡੀਵਾਈਸ ਇਨਕ੍ਰਿਪਸ਼ਨ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ। ਇਹ ਬੈਕਅਪ ਆਰਕਾਈਵ ਇਨਕ੍ਰਿਪਟ ਕਰਨ ਲਈ ਵੀ ਵਰਤਿਆ ਜਾਏਗਾ।"</string> + <string name="device_encryption_backup_text" msgid="5866590762672844664">"ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਆਪਣਾ ਡੀਵਾਈਸ ਇਨਕ੍ਰਿਪਸ਼ਨ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ। ਇਹ ਬੈਕਅੱਪ ਆਰਕਾਈਵ ਇਨਕ੍ਰਿਪਟ ਕਰਨ ਲਈ ਵੀ ਵਰਤਿਆ ਜਾਏਗਾ।"</string> <string name="backup_enc_password_text" msgid="4981585714795233099">"ਕਿਰਪਾ ਕਰਕੇ ਪੂਰਾ ਬੈਕਅਪ ਡੈਟਾ ਇਨਕ੍ਰਿਪਟ ਕਰਨ ਦੀ ਵਰਤੋਂ ਲਈ ਇੱਕ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ। ਜੇਕਰ ਇਸਨੂੰ ਖਾਲੀ ਛੱਡਿਆ ਜਾਂਦਾ ਹੈ, ਤਾਂ ਤੁਹਾਡਾ ਵਰਤਮਾਨ ਬੈਕਅਪ ਪਾਸਵਰਡ ਵਰਤਿਆ ਜਾਏਗਾ:"</string> <string name="backup_enc_password_optional" msgid="1350137345907579306">"ਜੇਕਰ ਤੁਸੀਂ ਪੂਰਾ ਬੈਕਅਪ ਡੈਟਾ ਇਨਕ੍ਰਿਪਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ, ਤਾਂ ਹੇਠਾਂ ਇੱਕ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ:"</string> - <string name="backup_enc_password_required" msgid="7889652203371654149">"ਕਿਉਂਕਿ ਤੁਹਾਡੀ ਡੀਵਾਈਸ ਇਨਕ੍ਰਿਪਟਿਡ ਬੈ, ਇਸਲਈ ਤੁਹਾਡੇ ਤੋਂ ਆਪਣਾ ਬੈਕਅਪ ਇਨਕ੍ਰਿਪਟ ਕਰਨ ਦੀ ਮੰਗ ਕੀਤੀ ਜਾਂਦੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਇੱਕ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ:"</string> + <string name="backup_enc_password_required" msgid="7889652203371654149">"ਕਿਉਂਕਿ ਤੁਹਾਡਾ ਡੀਵਾਈਸ ਇਨਕ੍ਰਿਪਟਿਡ ਹੈ, ਇਸਲਈ ਤੁਹਾਡੇ ਤੋਂ ਆਪਣਾ ਬੈਕਅੱਪ ਇਨਕ੍ਰਿਪਟ ਕਰਨ ਦੀ ਮੰਗ ਕੀਤੀ ਜਾਂਦੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਇੱਕ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ:"</string> <string name="restore_enc_password_text" msgid="6140898525580710823">"ਜੇਕਰ ਰੀਸਟੋਰ ਡੈਟਾ ਇਨਕ੍ਰਿਪਟ ਕੀਤਾ ਗਿਆ ਹੈ, ਤਾਂ ਹੇਠਾਂ ਪਾਸਵਰਡ ਦਾਖਲ ਕਰੋ:"</string> <string name="toast_backup_started" msgid="550354281452756121">"ਬੈਕਅਪ ਚਾਲੂ ਕਰ ਰਿਹਾ ਹੈ..."</string> <string name="toast_backup_ended" msgid="3818080769548726424">"ਬੈਕਅਪ ਪੂਰਾ ਹੋਇਆ"</string> diff --git a/packages/CaptivePortalLogin/res/values-en-rCA/strings.xml b/packages/CaptivePortalLogin/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..2e8d1f082d1f --- /dev/null +++ b/packages/CaptivePortalLogin/res/values-en-rCA/strings.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_name" msgid="5934709770924185752">"CaptivePortalLogin"</string> + <string name="action_use_network" msgid="6076184727448466030">"Use this network as is"</string> + <string name="action_do_not_use_network" msgid="4577366536956516683">"Do not use this network"</string> + <string name="action_bar_label" msgid="917235635415966620">"Sign in to network"</string> + <string name="action_bar_title" msgid="5645564790486983117">"Sign in to %1$s"</string> + <string name="ssl_error_warning" msgid="6653188881418638872">"The network that you’re trying to join has security issues."</string> + <string name="ssl_error_example" msgid="647898534624078900">"For example, the login page might not belong to the organisation shown."</string> + <string name="ssl_error_continue" msgid="6492718244923937110">"Continue anyway via browser"</string> +</resources> diff --git a/packages/CaptivePortalLogin/res/values-pa/strings.xml b/packages/CaptivePortalLogin/res/values-pa/strings.xml index c1b014c351a1..11bfc777cbaa 100644 --- a/packages/CaptivePortalLogin/res/values-pa/strings.xml +++ b/packages/CaptivePortalLogin/res/values-pa/strings.xml @@ -8,5 +8,5 @@ <string name="action_bar_title" msgid="5645564790486983117">"%1$s \'ਤੇ ਸਾਈਨ ਇਨ ਕਰੋ"</string> <string name="ssl_error_warning" msgid="6653188881418638872">"ਤੁਹਾਡੇ ਦੁਆਰਾ ਸ਼ਾਮਿਲ ਹੋਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਨੈੱਟਵਰਕ ਵਿੱਚ ਸੁਰੱਖਿਆ ਸੰਬੰਧੀ ਸਮੱਸਿਆਵਾਂ ਹਨ।"</string> <string name="ssl_error_example" msgid="647898534624078900">"ਉਦਾਹਰਣ ਵੱਜੋਂ, ਲੌਗਇਨ ਪੰਨਾ ਦਿਖਾਈ ਗਈ ਸੰਸਥਾ ਨਾਲ ਸੰਬੰਧਿਤ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।"</string> - <string name="ssl_error_continue" msgid="6492718244923937110">"ਬ੍ਰਾਉਜ਼ਰ ਰਾਹੀਂ ਫਿਰ ਵੀ ਜਾਰੀ ਰੱਖੋ"</string> + <string name="ssl_error_continue" msgid="6492718244923937110">"ਬ੍ਰਾਊਜ਼ਰ ਰਾਹੀਂ ਫਿਰ ਵੀ ਜਾਰੀ ਰੱਖੋ"</string> </resources> diff --git a/packages/CarrierDefaultApp/res/values-en-rCA/strings.xml b/packages/CarrierDefaultApp/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..a925a30f3fc8 --- /dev/null +++ b/packages/CarrierDefaultApp/res/values-en-rCA/strings.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_name" msgid="5247871339820894594">"CarrierDefaultApp"</string> + <string name="android_system_label" msgid="2797790869522345065">"Mobile Operator"</string> + <string name="portal_notification_id" msgid="5155057562457079297">"Mobile data has run out"</string> + <string name="no_data_notification_id" msgid="668400731803969521">"Your mobile data has been deactivated"</string> + <string name="portal_notification_detail" msgid="2295729385924660881">"Tap to visit the %s website"</string> + <string name="no_data_notification_detail" msgid="3112125343857014825">"Please contact your service provider %s"</string> + <string name="no_mobile_data_connection_title" msgid="7449525772416200578">"No mobile data connection"</string> + <string name="no_mobile_data_connection" msgid="544980465184147010">"Add data or roaming plan through %s"</string> + <string name="mobile_data_status_notification_channel_name" msgid="833999690121305708">"Mobile data status"</string> + <string name="action_bar_label" msgid="4290345990334377177">"Sign in to mobile network"</string> + <string name="ssl_error_warning" msgid="3127935140338254180">"The network that you’re trying to join has security issues."</string> + <string name="ssl_error_example" msgid="6188711843183058764">"For example, the login page might not belong to the organisation shown."</string> + <string name="ssl_error_continue" msgid="1138548463994095584">"Continue anyway via browser"</string> +</resources> diff --git a/packages/CarrierDefaultApp/res/values-hi/strings.xml b/packages/CarrierDefaultApp/res/values-hi/strings.xml index b49022b6f481..842bb5dcb87f 100644 --- a/packages/CarrierDefaultApp/res/values-hi/strings.xml +++ b/packages/CarrierDefaultApp/res/values-hi/strings.xml @@ -2,9 +2,9 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_name" msgid="5247871339820894594">"CarrierDefaultApp"</string> - <string name="android_system_label" msgid="2797790869522345065">"मोबाइल वाहक"</string> + <string name="android_system_label" msgid="2797790869522345065">"मोबाइल सेवा देने वाली कंपनी"</string> <string name="portal_notification_id" msgid="5155057562457079297">"मोबाइल डेटा खत्म हो गया है"</string> - <string name="no_data_notification_id" msgid="668400731803969521">"आपका मोबाइल डेटा निष्क्रिय कर दिया गया है"</string> + <string name="no_data_notification_id" msgid="668400731803969521">"आपका मोबाइल डेटा बंद कर दिया गया है"</string> <string name="portal_notification_detail" msgid="2295729385924660881">"%s वेबसाइट पर जाने के लिए टैप करें"</string> <string name="no_data_notification_detail" msgid="3112125343857014825">"कृपया अपने सेवा प्रदाता %s से संपर्क करें"</string> <string name="no_mobile_data_connection_title" msgid="7449525772416200578">"कोई भी मोबाइल डेटा कनेक्शन नहीं है"</string> diff --git a/packages/CarrierDefaultApp/res/values-pa/strings.xml b/packages/CarrierDefaultApp/res/values-pa/strings.xml index 37aa2ac9d86d..4f77b5d27214 100644 --- a/packages/CarrierDefaultApp/res/values-pa/strings.xml +++ b/packages/CarrierDefaultApp/res/values-pa/strings.xml @@ -7,7 +7,7 @@ <string name="no_data_notification_id" msgid="668400731803969521">"ਤੁਹਾਡਾ ਮੋਬਾਈਲ ਡੈਟਾ ਅਕਿਰਿਆਸ਼ੀਲ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ"</string> <string name="portal_notification_detail" msgid="2295729385924660881">"%s ਵੈੱਬਸਾਈਟ \'ਤੇ ਜਾਣ ਲਈ ਟੈਪ ਕਰੋ"</string> <string name="no_data_notification_detail" msgid="3112125343857014825">"ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ ਸੇਵਾ ਪ੍ਰਦਾਨਕ %s ਨੂੰ ਸੰਪਰਕ ਕਰੋ"</string> - <string name="no_mobile_data_connection_title" msgid="7449525772416200578">"ਕੋਈ ਮੋਬਾਈਲ ਡੈਟਾ ਕਨੈਕਸ਼ਨ ਨਹੀਂ"</string> + <string name="no_mobile_data_connection_title" msgid="7449525772416200578">"ਕੋਈ ਮੋਬਾਈਲ ਡਾਟਾ ਕਨੈਕਸ਼ਨ ਨਹੀਂ"</string> <string name="no_mobile_data_connection" msgid="544980465184147010">"%s ਰਾਹੀਂ ਡੈਟਾ ਜਾਂ ਰੋਮਿੰਗ ਯੋਜਨਾ ਸ਼ਾਮਲ ਕਰੋ"</string> <string name="mobile_data_status_notification_channel_name" msgid="833999690121305708">"ਮੋਬਾਈਲ ਡੈਟੇ ਦੀ ਅਵਸਥਾ"</string> <string name="action_bar_label" msgid="4290345990334377177">"ਮੋਬਾਈਲ ਨੈੱਟਵਰਕ ਵਿੱਚ ਸਾਈਨ-ਇਨ ਕਰੋ"</string> diff --git a/packages/DefaultContainerService/res/values-en-rCA/strings.xml b/packages/DefaultContainerService/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..216d715996c7 --- /dev/null +++ b/packages/DefaultContainerService/res/values-en-rCA/strings.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/* +** +** Copyright 2008, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="service_name" msgid="4841491635055379553">"Package Access Helper"</string> +</resources> diff --git a/packages/ExternalStorageProvider/res/values-en-rCA/strings.xml b/packages/ExternalStorageProvider/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..beaaf0d8556b --- /dev/null +++ b/packages/ExternalStorageProvider/res/values-en-rCA/strings.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_label" msgid="7123375275748530234">"External Storage"</string> + <string name="storage_description" msgid="8541974407321172792">"Local storage"</string> + <string name="root_internal_storage" msgid="827844243068584127">"Internal storage"</string> + <string name="root_documents" msgid="4051252304075469250">"Documents"</string> +</resources> diff --git a/packages/ExternalStorageProvider/res/values-gu/strings.xml b/packages/ExternalStorageProvider/res/values-gu/strings.xml index 3e8a099929ef..3f59dd3889fb 100644 --- a/packages/ExternalStorageProvider/res/values-gu/strings.xml +++ b/packages/ExternalStorageProvider/res/values-gu/strings.xml @@ -18,6 +18,6 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="7123375275748530234">"બાહ્ય સંગ્રહ"</string> <string name="storage_description" msgid="8541974407321172792">"સ્થાનિક સ્ટોરેજ"</string> - <string name="root_internal_storage" msgid="827844243068584127">"આંતરિક સંગ્રહ"</string> + <string name="root_internal_storage" msgid="827844243068584127">"આંતરિક સ્ટોરેજ"</string> <string name="root_documents" msgid="4051252304075469250">"દસ્તાવેજો"</string> </resources> diff --git a/packages/ExternalStorageProvider/res/values-mk/strings.xml b/packages/ExternalStorageProvider/res/values-mk/strings.xml index 83a22d974c6b..5ebf8a60658f 100644 --- a/packages/ExternalStorageProvider/res/values-mk/strings.xml +++ b/packages/ExternalStorageProvider/res/values-mk/strings.xml @@ -18,6 +18,6 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="7123375275748530234">"Надворешна меморија"</string> <string name="storage_description" msgid="8541974407321172792">"Локална меморија"</string> - <string name="root_internal_storage" msgid="827844243068584127">"Внатрешна меморија"</string> + <string name="root_internal_storage" msgid="827844243068584127">"Внатрешен капацитет"</string> <string name="root_documents" msgid="4051252304075469250">"Документи"</string> </resources> diff --git a/packages/ExternalStorageProvider/res/values-mr/strings.xml b/packages/ExternalStorageProvider/res/values-mr/strings.xml index 5b81cc5d5ab5..2bf3000a9b52 100644 --- a/packages/ExternalStorageProvider/res/values-mr/strings.xml +++ b/packages/ExternalStorageProvider/res/values-mr/strings.xml @@ -18,6 +18,6 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="7123375275748530234">"बाह्य संचयन"</string> <string name="storage_description" msgid="8541974407321172792">"स्थानिक संचय"</string> - <string name="root_internal_storage" msgid="827844243068584127">"अंतर्गत संचयन"</string> + <string name="root_internal_storage" msgid="827844243068584127">"अंतर्गत स्टोरेज"</string> <string name="root_documents" msgid="4051252304075469250">"दस्तऐवज"</string> </resources> diff --git a/packages/FusedLocation/res/values-en-rCA/strings.xml b/packages/FusedLocation/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..0d2cccc66dc0 --- /dev/null +++ b/packages/FusedLocation/res/values-en-rCA/strings.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_label" msgid="5379477904423203699">"Fused Location"</string> +</resources> diff --git a/packages/InputDevices/res/values-bn/strings.xml b/packages/InputDevices/res/values-bn/strings.xml index a0ce313c7f91..e9540b64f894 100644 --- a/packages/InputDevices/res/values-bn/strings.xml +++ b/packages/InputDevices/res/values-bn/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="8016145283189546017">"ইনপুট ডিভাইসগুলি"</string> + <string name="app_label" msgid="8016145283189546017">"ইনপুট ডিভাইস"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android কীবোর্ড"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"ইংরেজি (UK)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"ইংরেজি (US)"</string> diff --git a/packages/InputDevices/res/values-en-rCA/strings.xml b/packages/InputDevices/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..01c2979ec107 --- /dev/null +++ b/packages/InputDevices/res/values-en-rCA/strings.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_label" msgid="8016145283189546017">"Input Devices"</string> + <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android keyboard"</string> + <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"English (UK)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"English (US)"</string> + <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"English (US), International style"</string> + <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"English (US), Colemak style"</string> + <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"English (US), Dvorak style"</string> + <string name="keyboard_layout_english_us_workman_label" msgid="2944541595262173111">"English (US), Workman style"</string> + <string name="keyboard_layout_german_label" msgid="8451565865467909999">"German"</string> + <string name="keyboard_layout_french_label" msgid="813450119589383723">"French"</string> + <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"French (Canada)"</string> + <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"Russian"</string> + <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Russian, Mac style"</string> + <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"Spanish"</string> + <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"Swiss French"</string> + <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"Swiss German"</string> + <string name="keyboard_layout_belgian" msgid="2011984572838651558">"Belgian"</string> + <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"Bulgarian"</string> + <string name="keyboard_layout_italian" msgid="6497079660449781213">"Italian"</string> + <string name="keyboard_layout_danish" msgid="8036432066627127851">"Danish"</string> + <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"Norwegian"</string> + <string name="keyboard_layout_swedish" msgid="732959109088479351">"Swedish"</string> + <string name="keyboard_layout_finnish" msgid="5585659438924315466">"Finnish"</string> + <string name="keyboard_layout_croatian" msgid="4172229471079281138">"Croatian"</string> + <string name="keyboard_layout_czech" msgid="1349256901452975343">"Czech"</string> + <string name="keyboard_layout_estonian" msgid="8775830985185665274">"Estonian"</string> + <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"Hungarian"</string> + <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"Icelandic"</string> + <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"Brazilian"</string> + <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"Portuguese"</string> + <string name="keyboard_layout_slovak" msgid="2469379934672837296">"Slovak"</string> + <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"Slovenian"</string> + <string name="keyboard_layout_turkish" msgid="7736163250907964898">"Turkish"</string> + <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"Ukrainian"</string> + <string name="keyboard_layout_arabic" msgid="5671970465174968712">"Arabic"</string> + <string name="keyboard_layout_greek" msgid="7289253560162386040">"Greek"</string> + <string name="keyboard_layout_hebrew" msgid="7241473985890173812">"Hebrew"</string> + <string name="keyboard_layout_lithuanian" msgid="6943110873053106534">"Lithuanian"</string> + <string name="keyboard_layout_spanish_latin" msgid="5690539836069535697">"Spanish (Latin)"</string> + <string name="keyboard_layout_latvian" msgid="4405417142306250595">"Latvian"</string> +</resources> diff --git a/packages/InputDevices/res/values-ml/strings.xml b/packages/InputDevices/res/values-ml/strings.xml index 0faa40ee2e39..51866673bdcd 100644 --- a/packages/InputDevices/res/values-ml/strings.xml +++ b/packages/InputDevices/res/values-ml/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="8016145283189546017">"ടൈപ്പുചെയ്യൽ ഉപകരണങ്ങൾ"</string> + <string name="app_label" msgid="8016145283189546017">"ഇൻപുട്ട് ഉപകരണങ്ങൾ"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android കീബോർഡ്"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"ഇംഗ്ലീഷ് (യുകെ)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"ഇംഗ്ലീഷ് (യുഎസ്)"</string> diff --git a/packages/InputDevices/res/values-mr/strings.xml b/packages/InputDevices/res/values-mr/strings.xml index 9ffcc70f0ae5..33d01e97ef6e 100644 --- a/packages/InputDevices/res/values-mr/strings.xml +++ b/packages/InputDevices/res/values-mr/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="8016145283189546017">"इनपुट डिव्हाइसेस"</string> + <string name="app_label" msgid="8016145283189546017">"इनपुट डीव्हाइस"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android कीबोर्ड"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"इंग्रजी (यूके)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"इंग्रजी (यूएस)"</string> diff --git a/packages/PrintSpooler/res/values-en-rCA/strings.xml b/packages/PrintSpooler/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..7fbfeb3b3d3b --- /dev/null +++ b/packages/PrintSpooler/res/values-en-rCA/strings.xml @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="app_label" msgid="4469836075319831821">"Print Spooler"</string> + <string name="more_options_button" msgid="2243228396432556771">"More options"</string> + <string name="label_destination" msgid="9132510997381599275">"Destination"</string> + <string name="label_copies" msgid="3634531042822968308">"Copies"</string> + <string name="label_copies_summary" msgid="3861966063536529540">"Copies:"</string> + <string name="label_paper_size" msgid="908654383827777759">"Paper size"</string> + <string name="label_paper_size_summary" msgid="5668204981332138168">"Paper size:"</string> + <string name="label_color" msgid="1108690305218188969">"Colour"</string> + <string name="label_duplex" msgid="5370037254347072243">"Two-sided"</string> + <string name="label_orientation" msgid="2853142581990496477">"Orientation"</string> + <string name="label_pages" msgid="7768589729282182230">"Pages"</string> + <string name="destination_default_text" msgid="5422708056807065710">"Select a printer"</string> + <string name="template_all_pages" msgid="3322235982020148762">"All <xliff:g id="PAGE_COUNT">%1$s</xliff:g>"</string> + <string name="template_page_range" msgid="428638530038286328">"Range of <xliff:g id="PAGE_COUNT">%1$s</xliff:g>"</string> + <string name="pages_range_example" msgid="8558694453556945172">"e.g. 1–5,8,11–13"</string> + <string name="print_preview" msgid="8010217796057763343">"Print preview"</string> + <string name="install_for_print_preview" msgid="6366303997385509332">"Install PDF viewer for preview"</string> + <string name="printing_app_crashed" msgid="854477616686566398">"Printing app crashed"</string> + <string name="generating_print_job" msgid="3119608742651698916">"Generating print job"</string> + <string name="save_as_pdf" msgid="5718454119847596853">"Save as PDF"</string> + <string name="all_printers" msgid="5018829726861876202">"All printers…"</string> + <string name="print_dialog" msgid="32628687461331979">"Print dialogue"</string> + <string name="current_page_template" msgid="5145005201131935302">"<xliff:g id="CURRENT_PAGE">%1$d</xliff:g>/<xliff:g id="PAGE_COUNT">%2$d</xliff:g>"</string> + <string name="page_description_template" msgid="6831239682256197161">"Page <xliff:g id="CURRENT_PAGE">%1$d</xliff:g> of <xliff:g id="PAGE_COUNT">%2$d</xliff:g>"</string> + <string name="summary_template" msgid="8899734908625669193">"Summary, copies <xliff:g id="COPIES">%1$s</xliff:g>, paper size <xliff:g id="PAPER_SIZE">%2$s</xliff:g>"</string> + <string name="expand_handle" msgid="7282974448109280522">"Expand handle"</string> + <string name="collapse_handle" msgid="6886637989442507451">"Collapse handle"</string> + <string name="print_button" msgid="645164566271246268">"Print"</string> + <string name="savetopdf_button" msgid="2976186791686924743">"Save to PDF"</string> + <string name="print_options_expanded" msgid="6944679157471691859">"Print options expanded"</string> + <string name="print_options_collapsed" msgid="7455930445670414332">"Print options collapsed"</string> + <string name="search" msgid="5421724265322228497">"Search"</string> + <string name="all_printers_label" msgid="3178848870161526399">"All printers"</string> + <string name="add_print_service_label" msgid="5356702546188981940">"Add service"</string> + <string name="print_search_box_shown_utterance" msgid="7967404953901376090">"Search box shown"</string> + <string name="print_search_box_hidden_utterance" msgid="5727755169343113351">"Search box hidden"</string> + <string name="print_add_printer" msgid="1088656468360653455">"Add printer"</string> + <string name="print_select_printer" msgid="7388760939873368698">"Select printer"</string> + <string name="print_forget_printer" msgid="5035287497291910766">"Forget printer"</string> + <plurals name="print_search_result_count_utterance" formatted="false" msgid="6997663738361080868"> + <item quantity="other"><xliff:g id="COUNT_1">%1$s</xliff:g> printers found</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$s</xliff:g> printer found</item> + </plurals> + <string name="printer_extended_description_template" msgid="1366699227703381874">"<xliff:g id="PRINT_SERVICE_LABEL">%1$s</xliff:g> - <xliff:g id="PRINTER_DESCRIPTION">%2$s</xliff:g>"</string> + <string name="printer_info_desc" msgid="7181988788991581654">"More information about this printer"</string> + <string name="notification_channel_progress" msgid="872788690775721436">"Running print jobs"</string> + <string name="notification_channel_failure" msgid="9042250774797916414">"Failed print jobs"</string> + <string name="could_not_create_file" msgid="3425025039427448443">"Could not create file"</string> + <string name="print_services_disabled_toast" msgid="9089060734685174685">"Some print services are disabled"</string> + <string name="print_searching_for_printers" msgid="6550424555079932867">"Searching for printers"</string> + <string name="print_no_print_services" msgid="8561247706423327966">"No print services enabled"</string> + <string name="print_no_printers" msgid="4869403323900054866">"No printers found"</string> + <string name="cannot_add_printer" msgid="7840348733668023106">"Cannot add printers"</string> + <string name="select_to_add_printers" msgid="3800709038689830974">"Select to add printer"</string> + <string name="enable_print_service" msgid="3482815747043533842">"Select to enable"</string> + <string name="enabled_services_title" msgid="7036986099096582296">"Enabled services"</string> + <string name="recommended_services_title" msgid="3799434882937956924">"Recommended services"</string> + <string name="disabled_services_title" msgid="7313253167968363211">"Disabled services"</string> + <string name="all_services_title" msgid="5578662754874906455">"All services"</string> + <plurals name="print_services_recommendation_subtitle" formatted="false" msgid="5678487708807185138"> + <item quantity="other">Install to discover <xliff:g id="COUNT_1">%1$s</xliff:g> printers</item> + <item quantity="one">Install to discover <xliff:g id="COUNT_0">%1$s</xliff:g> printer</item> + </plurals> + <string name="printing_notification_title_template" msgid="295903957762447362">"Printing <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> + <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Cancelling <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> + <string name="failed_notification_title_template" msgid="2256217208186530973">"Printer error <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> + <string name="blocked_notification_title_template" msgid="1175435827331588646">"Printer blocked <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> + <string name="cancel" msgid="4373674107267141885">"Cancel"</string> + <string name="restart" msgid="2472034227037808749">"Restart"</string> + <string name="no_connection_to_printer" msgid="2159246915977282728">"No connection to printer"</string> + <string name="reason_unknown" msgid="5507940196503246139">"unknown"</string> + <string name="print_service_security_warning_title" msgid="2160752291246775320">"Use <xliff:g id="SERVICE">%1$s</xliff:g>?"</string> + <string name="print_service_security_warning_summary" msgid="1427434625361692006">"Your document may pass through one or more servers on its way to the printer."</string> + <string-array name="color_mode_labels"> + <item msgid="7602948745415174937">"Black & White"</item> + <item msgid="2762241247228983754">"Colour"</item> + </string-array> + <string-array name="duplex_mode_labels"> + <item msgid="3882302912790928315">"None"</item> + <item msgid="7296563835355641719">"Long edge"</item> + <item msgid="79513688117503758">"Short edge"</item> + </string-array> + <string-array name="orientation_labels"> + <item msgid="4061931020926489228">"Portrait"</item> + <item msgid="3199660090246166812">"Landscape"</item> + </string-array> + <string name="print_write_error_message" msgid="5787642615179572543">"Couldn\'t write to file"</string> + <string name="print_error_default_message" msgid="8602678405502922346">"Sorry, that didn\'t work. Try again."</string> + <string name="print_error_retry" msgid="1426421728784259538">"Retry"</string> + <string name="print_error_printer_unavailable" msgid="8985614415253203381">"This printer isn\'t available right now."</string> + <string name="print_cannot_load_page" msgid="6179560924492912009">"Can\'t display preview"</string> + <string name="print_preparing_preview" msgid="3939930735671364712">"Preparing preview…"</string> +</resources> diff --git a/packages/PrintSpooler/res/values-gu/strings.xml b/packages/PrintSpooler/res/values-gu/strings.xml index f5d698d49eb5..7ad8d57bfead 100644 --- a/packages/PrintSpooler/res/values-gu/strings.xml +++ b/packages/PrintSpooler/res/values-gu/strings.xml @@ -26,7 +26,7 @@ <string name="label_color" msgid="1108690305218188969">"રંગ"</string> <string name="label_duplex" msgid="5370037254347072243">"દ્વિભુજ"</string> <string name="label_orientation" msgid="2853142581990496477">"ઓરિએન્ટેશન"</string> - <string name="label_pages" msgid="7768589729282182230">"પૃષ્ઠો"</string> + <string name="label_pages" msgid="7768589729282182230">"પેજ"</string> <string name="destination_default_text" msgid="5422708056807065710">"પ્રિન્ટર પસંદ કરો"</string> <string name="template_all_pages" msgid="3322235982020148762">"તમામ <xliff:g id="PAGE_COUNT">%1$s</xliff:g>"</string> <string name="template_page_range" msgid="428638530038286328">"<xliff:g id="PAGE_COUNT">%1$s</xliff:g> ની શ્રેણી"</string> diff --git a/packages/PrintSpooler/res/values-hi/strings.xml b/packages/PrintSpooler/res/values-hi/strings.xml index 809431d1483c..bfe558c37679 100644 --- a/packages/PrintSpooler/res/values-hi/strings.xml +++ b/packages/PrintSpooler/res/values-hi/strings.xml @@ -25,7 +25,7 @@ <string name="label_paper_size_summary" msgid="5668204981332138168">"काग़ज़ का आकार:"</string> <string name="label_color" msgid="1108690305218188969">"रंग"</string> <string name="label_duplex" msgid="5370037254347072243">"दो-तरफ़ा"</string> - <string name="label_orientation" msgid="2853142581990496477">"अभिविन्यास"</string> + <string name="label_orientation" msgid="2853142581990496477">"स्क्रीन की दिशा"</string> <string name="label_pages" msgid="7768589729282182230">"पेज"</string> <string name="destination_default_text" msgid="5422708056807065710">"कोई प्रिंटर चुनें"</string> <string name="template_all_pages" msgid="3322235982020148762">"सभी <xliff:g id="PAGE_COUNT">%1$s</xliff:g>"</string> diff --git a/packages/PrintSpooler/res/values-mr/strings.xml b/packages/PrintSpooler/res/values-mr/strings.xml index 8981cd83c649..1ccc721d3eb3 100644 --- a/packages/PrintSpooler/res/values-mr/strings.xml +++ b/packages/PrintSpooler/res/values-mr/strings.xml @@ -25,7 +25,7 @@ <string name="label_paper_size_summary" msgid="5668204981332138168">"कागद आकार:"</string> <string name="label_color" msgid="1108690305218188969">"रंग"</string> <string name="label_duplex" msgid="5370037254347072243">"दोन्ही बाजूंनी"</string> - <string name="label_orientation" msgid="2853142581990496477">"अभिमुखता"</string> + <string name="label_orientation" msgid="2853142581990496477">"ओरिएंटेशन"</string> <string name="label_pages" msgid="7768589729282182230">"पृष्ठे"</string> <string name="destination_default_text" msgid="5422708056807065710">"प्रिंटर निवडा"</string> <string name="template_all_pages" msgid="3322235982020148762">"सर्व <xliff:g id="PAGE_COUNT">%1$s</xliff:g>"</string> diff --git a/packages/PrintSpooler/res/values-te/strings.xml b/packages/PrintSpooler/res/values-te/strings.xml index e5a0879736a1..2a20fc8d44b1 100644 --- a/packages/PrintSpooler/res/values-te/strings.xml +++ b/packages/PrintSpooler/res/values-te/strings.xml @@ -25,7 +25,7 @@ <string name="label_paper_size_summary" msgid="5668204981332138168">"కాగితపు పరిమాణం:"</string> <string name="label_color" msgid="1108690305218188969">"రంగు"</string> <string name="label_duplex" msgid="5370037254347072243">"రెండు వైపుల"</string> - <string name="label_orientation" msgid="2853142581990496477">"దృగ్విన్యాసం"</string> + <string name="label_orientation" msgid="2853142581990496477">"ఓరియంటేషన్"</string> <string name="label_pages" msgid="7768589729282182230">"పేజీలు"</string> <string name="destination_default_text" msgid="5422708056807065710">"ప్రింటర్ ఎంచుకోండి"</string> <string name="template_all_pages" msgid="3322235982020148762">"మొత్తం <xliff:g id="PAGE_COUNT">%1$s</xliff:g>"</string> @@ -33,7 +33,7 @@ <string name="pages_range_example" msgid="8558694453556945172">"ఉదా. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"ముద్రణ పరిదృశ్యం"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"పరిదృశ్యం చేయడానికి PDF వ్యూయర్ను ఇన్స్టాల్ చేయండి"</string> - <string name="printing_app_crashed" msgid="854477616686566398">"ముద్రణ అనువర్తనం క్రాష్ అయ్యింది"</string> + <string name="printing_app_crashed" msgid="854477616686566398">"ముద్రణ యాప్ క్రాష్ అయ్యింది"</string> <string name="generating_print_job" msgid="3119608742651698916">"ముద్రణ జాబ్ను ఉత్పన్నం చేస్తోంది"</string> <string name="save_as_pdf" msgid="5718454119847596853">"PDF వలె సేవ్ చేయి"</string> <string name="all_printers" msgid="5018829726861876202">"అన్ని ప్రింటర్లు…"</string> diff --git a/packages/SettingsLib/res/values-af/arrays.xml b/packages/SettingsLib/res/values-af/arrays.xml index bc27c301cc8f..d656a5b11a56 100644 --- a/packages/SettingsLib/res/values-af/arrays.xml +++ b/packages/SettingsLib/res/values-af/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Gebruik stelselkeuse (verstek)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX-HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Aktiveer opsionele kodekke"</item> - <item msgid="3304843301758635896">"Deaktiveer opsionele kodekke"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Gebruik stelselkeuse (verstek)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX-HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Aktiveer opsionele kodekke"</item> - <item msgid="741805482892725657">"Deaktiveer opsionele kodekke"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Gebruik stelselkeuse (verstek)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-af/strings.xml b/packages/SettingsLib/res/values-af/strings.xml index 866aa0fa31d0..27b32442e00d 100644 --- a/packages/SettingsLib/res/values-af/strings.xml +++ b/packages/SettingsLib/res/values-af/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Laai"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"laai tans"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Laai nie"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Ingeprop; kan nie op die oomblik laai nie"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Vol"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Beheer deur administrateur"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Geaktiveer deur administrateur"</string> diff --git a/packages/SettingsLib/res/values-am/arrays.xml b/packages/SettingsLib/res/values-am/arrays.xml index 79dad14e59c7..26ad9efd459e 100644 --- a/packages/SettingsLib/res/values-am/arrays.xml +++ b/packages/SettingsLib/res/values-am/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"የስርዓቱን ምርጫ (ነባሪ) ተጠቀም"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"አማራጭ ኮዴኮችን አንቃ"</item> - <item msgid="3304843301758635896">"አማራጭ ኮዴኮችን አሰናክል"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"የስርዓቱን ምርጫ (ነባሪ) ተጠቀም"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"አማራጭ ኮዴኮችን አንቃ"</item> - <item msgid="741805482892725657">"አማራጭ ኮዴኮችን አሰናክል"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"የስርዓቱን ምርጫ (ነባሪ) ተጠቀም"</item> <item msgid="8895532488906185219">"44.1 ኪኸ"</item> diff --git a/packages/SettingsLib/res/values-am/strings.xml b/packages/SettingsLib/res/values-am/strings.xml index 100a5b239e35..bac17a9b8144 100644 --- a/packages/SettingsLib/res/values-am/strings.xml +++ b/packages/SettingsLib/res/values-am/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ኃይል በመሙላት ላይ"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ኃይል በመሙላት ላይ"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ባትሪ እየሞላ አይደለም"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ተሰክቷል፣ አሁን ኃይል መሙላት አይቻልም"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ሙሉነው"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"በአስተዳዳሪ ቁጥጥር የተደረገበት"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"በአስተዳዳሪ ነቅቷል"</string> diff --git a/packages/SettingsLib/res/values-ar/arrays.xml b/packages/SettingsLib/res/values-ar/arrays.xml index ea31dbe7ebc0..dbf35c7b0cf1 100644 --- a/packages/SettingsLib/res/values-ar/arrays.xml +++ b/packages/SettingsLib/res/values-ar/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"استخدام اختيار النظام (افتراضي)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"تمكين برامج الترميز الاختيارية"</item> - <item msgid="3304843301758635896">"تعطيل برامج الترميز الاختيارية"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"استخدام اختيار النظام (افتراضي)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"تمكين برامج الترميز الاختيارية"</item> - <item msgid="741805482892725657">"تعطيل برامج الترميز الاختيارية"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"استخدام اختيار النظام (افتراضي)"</item> <item msgid="8895532488906185219">"44.1 كيلو هرتز"</item> diff --git a/packages/SettingsLib/res/values-ar/strings.xml b/packages/SettingsLib/res/values-ar/strings.xml index 67d0a918decf..8dc6ebc405ea 100644 --- a/packages/SettingsLib/res/values-ar/strings.xml +++ b/packages/SettingsLib/res/values-ar/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"جارٍ الشحن"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"جارٍ الشحن"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"لا يتم الشحن"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"تم التوصيل، ولكن يتعذّر الشحن الآن"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ممتلئة"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"إعدادات يتحكم فيها المشرف"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"تم تمكين الإعداد بواسطة المشرف"</string> @@ -375,7 +374,7 @@ <string name="charge_length_format" msgid="8978516217024434156">"قبل <xliff:g id="ID_1">%1$s</xliff:g>"</string> <string name="remaining_length_format" msgid="7886337596669190587">"يتبقى <xliff:g id="ID_1">%1$s</xliff:g>"</string> <string name="screen_zoom_summary_small" msgid="5867245310241621570">"صغير"</string> - <string name="screen_zoom_summary_default" msgid="2247006805614056507">"افتراضي"</string> + <string name="screen_zoom_summary_default" msgid="2247006805614056507">"تلقائي"</string> <string name="screen_zoom_summary_large" msgid="4835294730065424084">"كبير"</string> <string name="screen_zoom_summary_very_large" msgid="7108563375663670067">"أكبر"</string> <string name="screen_zoom_summary_extremely_large" msgid="7427320168263276227">"أكبر مستوى"</string> diff --git a/packages/SettingsLib/res/values-az/arrays.xml b/packages/SettingsLib/res/values-az/arrays.xml index b25b38252c53..a20a250a8ace 100644 --- a/packages/SettingsLib/res/values-az/arrays.xml +++ b/packages/SettingsLib/res/values-az/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Sistem Seçimini istifadə edin (Defolt)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Şəxsi Kodekləri Aktiv edin"</item> - <item msgid="3304843301758635896">"Şəxsi Kodekləri Deaktiv edin"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Sistem Seçimini istifadə edin (Defolt)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Şəxsi Kodekləri Aktiv edin"</item> - <item msgid="741805482892725657">"Şəxsi Kodekləri Deaktiv edin"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Sistem Seçimini istifadə edin (Defolt)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-az/strings.xml b/packages/SettingsLib/res/values-az/strings.xml index 1732c87212c5..6674a999446b 100644 --- a/packages/SettingsLib/res/values-az/strings.xml +++ b/packages/SettingsLib/res/values-az/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Enerji doldurma"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"enerji yığır"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Doldurulmur"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Cihaz hazırda batareya yığa bilmir"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Tam"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Admin tərəfindən nəzarət olunur"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Admin tərəfindən aktiv edildi"</string> diff --git a/packages/SettingsLib/res/values-b+sr+Latn/arrays.xml b/packages/SettingsLib/res/values-b+sr+Latn/arrays.xml index 0bfda36a37d6..efdf34a18323 100644 --- a/packages/SettingsLib/res/values-b+sr+Latn/arrays.xml +++ b/packages/SettingsLib/res/values-b+sr+Latn/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Koristi izbor sistema (podrazumevano)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Omogući opcionalne kodeke"</item> - <item msgid="3304843301758635896">"Onemogući opcionalne kodeke"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Koristi izbor sistema (podrazumevano)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Omogući opcionalne kodeke"</item> - <item msgid="741805482892725657">"Onemogući opcionalne kodeke"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Koristi izbor sistema (podrazumevano)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-b+sr+Latn/strings.xml b/packages/SettingsLib/res/values-b+sr+Latn/strings.xml index 3336164bacfb..04cc0c23ef3a 100644 --- a/packages/SettingsLib/res/values-b+sr+Latn/strings.xml +++ b/packages/SettingsLib/res/values-b+sr+Latn/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Punjenje"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"puni se"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ne puni se"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Priključeno je, ali punjenje trenutno nije moguće"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Puno"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontroliše administrator"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Omogućio je administrator"</string> diff --git a/packages/SettingsLib/res/values-be/arrays.xml b/packages/SettingsLib/res/values-be/arrays.xml index 8ea31e58943e..bf83692bffe1 100644 --- a/packages/SettingsLib/res/values-be/arrays.xml +++ b/packages/SettingsLib/res/values-be/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Выбар сістэмы (стандартны)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Уключыць дадатковыя кодэкі"</item> - <item msgid="3304843301758635896">"Адключыць дадатковыя кодэкі"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Выбар сістэмы (стандартны)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Уключыць дадатковыя кодэкі"</item> - <item msgid="741805482892725657">"Адключыць дадатковыя кодэкі"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Выбар сістэмы (стандартны)"</item> <item msgid="8895532488906185219">"44,1 кГц"</item> diff --git a/packages/SettingsLib/res/values-be/strings.xml b/packages/SettingsLib/res/values-be/strings.xml index b50285f04bc6..907745d097f4 100644 --- a/packages/SettingsLib/res/values-be/strings.xml +++ b/packages/SettingsLib/res/values-be/strings.xml @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"Госць"</string> <string name="unknown" msgid="1592123443519355854">"Невядома"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"Карыстальнiк: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"Некат. параметры па змаўч. усталяваныя"</string> + <string name="launch_defaults_some" msgid="313159469856372621">"Усталяваны некаторыя стандартныя налады"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"Параметры па змаўчанні не ўсталяваныя"</string> <string name="tts_settings" msgid="8186971894801348327">"Налады Text-to-speech"</string> <string name="tts_settings_title" msgid="1237820681016639683">"Сінтэз маўлення"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Зарадка"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ідзе зарадка"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Не зараджаецца"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Падключана да сеткі сілкавання, зарадзіць зараз немагчыма"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Поўная"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Кантралюецца адміністратарам"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Уключана адміністратарам"</string> diff --git a/packages/SettingsLib/res/values-bg/arrays.xml b/packages/SettingsLib/res/values-bg/arrays.xml index 3f25978791ec..f118c7699eab 100644 --- a/packages/SettingsLib/res/values-bg/arrays.xml +++ b/packages/SettingsLib/res/values-bg/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Използване на сист. избор (стандартно)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"Разширено аудиокодиране (AAC)"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Активиране на кодеците по избор"</item> - <item msgid="3304843301758635896">"Деактивиране на кодеците по избор"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Използване на сист. избор (стандартно)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"Разширено аудиокодиране (AAC)"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Активиране на кодеците по избор"</item> - <item msgid="741805482892725657">"Деактивиране на кодеците по избор"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Използване на сист. избор (стандартно)"</item> <item msgid="8895532488906185219">"44,1 кХц"</item> diff --git a/packages/SettingsLib/res/values-bg/strings.xml b/packages/SettingsLib/res/values-bg/strings.xml index ef3f1f6b6abc..35e99aa37c18 100644 --- a/packages/SettingsLib/res/values-bg/strings.xml +++ b/packages/SettingsLib/res/values-bg/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Зарежда се"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"зарежда се"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Не се зарежда"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Включена в захранването, в момента не се зарежда"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Пълна"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Контролира се от администратор"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Активирано от администратора"</string> diff --git a/packages/SettingsLib/res/values-bn/arrays.xml b/packages/SettingsLib/res/values-bn/arrays.xml index 4d5c1f19b726..75a9e6a30d20 100644 --- a/packages/SettingsLib/res/values-bn/arrays.xml +++ b/packages/SettingsLib/res/values-bn/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"সিস্টেমের নির্বাচন ব্যবহার করুন (ডিফল্ট)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"ঐচ্ছিক কোডেক সক্ষম করুন"</item> - <item msgid="3304843301758635896">"ঐচ্ছিক কোডেক অক্ষম করুন"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"সিস্টেমের নির্বাচন ব্যবহার করুন (ডিফল্ট)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"ঐচ্ছিক কোডেক সক্ষম করুন"</item> - <item msgid="741805482892725657">"ঐচ্ছিক কোডেক অক্ষম করুন"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"সিস্টেমের নির্বাচন ব্যবহার করুন (ডিফল্ট)"</item> <item msgid="8895532488906185219">"৪৪.১ kHz"</item> diff --git a/packages/SettingsLib/res/values-bn/strings.xml b/packages/SettingsLib/res/values-bn/strings.xml index 2cf27305b708..a32c4fa65181 100644 --- a/packages/SettingsLib/res/values-bn/strings.xml +++ b/packages/SettingsLib/res/values-bn/strings.xml @@ -54,7 +54,7 @@ <string name="bluetooth_disconnecting" msgid="8913264760027764974">"সংযোগ বিচ্ছিন্ন হচ্ছে..."</string> <string name="bluetooth_connecting" msgid="8555009514614320497">"সংযুক্ত হচ্ছে..."</string> <string name="bluetooth_connected" msgid="6038755206916626419">"সংযুক্ত হয়েছে"</string> - <string name="bluetooth_pairing" msgid="1426882272690346242">"যুক্ত করা হচ্ছে..."</string> + <string name="bluetooth_pairing" msgid="1426882272690346242">"চেনানো হচ্ছে..."</string> <string name="bluetooth_connected_no_headset" msgid="2866994875046035609">"সংযুক্ত (কোনো ফোন নেই)"</string> <string name="bluetooth_connected_no_a2dp" msgid="4576188601581440337">"সংযুক্ত (কোনো মিডিয়া নেই)"</string> <string name="bluetooth_connected_no_map" msgid="6504436917057479986">"সংযুক্ত (কোনো বার্তা অ্যাক্সেস নেই)"</string> @@ -94,11 +94,11 @@ <string name="bluetooth_pairing_accept" msgid="6163520056536604875">"যুক্ত করুন"</string> <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"যুক্ত করুন"</string> <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"বাতিল করুন"</string> - <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"যুক্ত করা থাকলে তা সংযুক্ত থাকাকালীন অবস্থায় আপনার পরিচিতিগুলি এবং কলের ইতিহাসকে অ্যাক্সেস করতে অনুমোদিত করে৷"</string> - <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> এর সাথে যুক্ত করা যায়নি।"</string> - <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"ভুল পিন বা পাস কী দেওয়ার কারণে <xliff:g id="DEVICE_NAME">%1$s</xliff:g> এর সঙ্গে যুক্ত করা যায়নি।"</string> + <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"চেনানো থাকলে তা সংযুক্ত থাকাকালীন অবস্থায় আপনার পরিচিতিগুলি এবং কলের ইতিহাসকে অ্যাক্সেস করতে অনুমোদিত করে৷"</string> + <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> এর সাথে চেনানো যায়নি।"</string> + <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"ভুল পিন বা কোড দেওয়ার কারণে <xliff:g id="DEVICE_NAME">%1$s</xliff:g> এর সঙ্গে চেনানো যায়নি।"</string> <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> এর সঙ্গে যোগাযোগ করতে পারবেন না।"</string> - <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"যুক্ত করা <xliff:g id="DEVICE_NAME">%1$s</xliff:g> প্রত্যাখ্যান করেছে।"</string> + <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"চেনানো <xliff:g id="DEVICE_NAME">%1$s</xliff:g> প্রত্যাখ্যান করেছে।"</string> <string name="accessibility_wifi_off" msgid="1166761729660614716">"ওয়াই ফাই বন্ধ৷"</string> <string name="accessibility_no_wifi" msgid="8834610636137374508">"ওয়াই ফাই এর সংযোগ বিচ্ছিন্ন হয়েছে৷"</string> <string name="accessibility_wifi_one_bar" msgid="4869376278894301820">"ওয়াই ফাই এ একটি দণ্ড৷"</string> @@ -163,10 +163,10 @@ <string name="choose_profile" msgid="6921016979430278661">"প্রোফাইল বেছে নিন"</string> <string name="category_personal" msgid="1299663247844969448">"ব্যক্তিগত"</string> <string name="category_work" msgid="8699184680584175622">"কর্মক্ষেত্র"</string> - <string name="development_settings_title" msgid="215179176067683667">"বিকাশকারী বিকল্পগুলি"</string> - <string name="development_settings_enable" msgid="542530994778109538">"বিকাশকারী বিকল্পগুলি সক্ষম করুন"</string> + <string name="development_settings_title" msgid="215179176067683667">"ডেভেলপার বিকল্প"</string> + <string name="development_settings_enable" msgid="542530994778109538">"ডেভেলপার বিকল্প সক্ষম করুন"</string> <string name="development_settings_summary" msgid="1815795401632854041">"অ্যাপ্লিকেশান উন্নয়নের জন্য বিকল্পগুলি সেট করুন"</string> - <string name="development_settings_not_available" msgid="4308569041701535607">"এই ব্যবহারকারীর জন্য বিকাশকারী বিকল্পগুলি উপলব্ধ নয়"</string> + <string name="development_settings_not_available" msgid="4308569041701535607">"এই ব্যবহারকারীর জন্য ডেভেলপার বিকল্প উপলব্ধ নয়"</string> <string name="vpn_settings_not_available" msgid="956841430176985598">"এই ব্যবহারকারীর জন্য VPN সেটিংস উপলব্ধ নয়"</string> <string name="tethering_settings_not_available" msgid="6765770438438291012">"এই ব্যবহারকারীর জন্য টেদারিং সেটিংস উপলব্ধ নয়"</string> <string name="apn_settings_not_available" msgid="7873729032165324000">"এই ব্যবহারকারীর জন্য অ্যাক্সেস পয়েন্ট নাম সেটিংস উপলব্ধ নয়"</string> @@ -230,7 +230,7 @@ <string name="adb_keys_warning_message" msgid="5659849457135841625">"আপনি আগে যে সব কম্পিউটার USB ডিবাগিং এর অ্যাক্সেসের অনুমতি দিয়েছিলেন তা প্রত্যাহার করবেন?"</string> <string name="dev_settings_warning_title" msgid="7244607768088540165">"উন্নতি সেটিংসের অনুমতি দেবেন?"</string> <string name="dev_settings_warning_message" msgid="2298337781139097964">"এইসব সেটিংস কেবলমাত্র উন্নত করার উদ্দেশ্য। সেগুলি কারণে আপনার ডিভাইস ভেঙ্গে এবং অ্যাপ্লিকেশানগুলি ভালো ভাবে কাজ করা নাও কারতে পারে।"</string> - <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB এর অ্যাপ্লিকেশানগুলি যাচাই করুন"</string> + <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB এর অ্যাপ্লিকেশনগুলি যাচাই করুন"</string> <string name="verify_apps_over_usb_summary" msgid="9164096969924529200">"ক্ষতিকারক ক্রিয়াকলাপ করছে কিনা তার জন্য ADB/ADT মারফত ইনস্টল করা অ্যাপ্লিকেশানগুলি চেক করুন।"</string> <string name="bluetooth_disable_absolute_volume_summary" msgid="6031284410786545957">"অপ্রত্যাশিত উচ্চ ভলিউম বা নিয়ন্ত্রণের অভাবের মত দূরবর্তী ডিভাইসের ভলিউম সমস্যাগুলির ক্ষেত্রে, ব্লুটুথ চুড়ান্ত ভলিউম বৈশিষ্ট্য অক্ষম করে৷"</string> <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"ফোনের রিংটোন ব্লুটুথ হেডসেটে শোনা সক্ষম করুন"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"চার্জ হচ্ছে"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"চার্জ হচ্ছে"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"চার্জ হচ্ছে না"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"প্লাগ-ইন করা হয়েছে কিন্তু এখনই চার্জ করা যাবে না"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"পূর্ণ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"প্রশাসকের দ্বারা নিয়ন্ত্রিত"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"প্রশাসক দ্বারা সক্ষম করা হয়েছে"</string> diff --git a/packages/SettingsLib/res/values-bs/arrays.xml b/packages/SettingsLib/res/values-bs/arrays.xml index 2bfb4a574970..71d09582e3d2 100644 --- a/packages/SettingsLib/res/values-bs/arrays.xml +++ b/packages/SettingsLib/res/values-bs/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Koristi odabir sistema (Zadano)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Omogućite opcionalne kodeke"</item> - <item msgid="3304843301758635896">"Onemogućite opcionalne kodeke"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Koristi odabir sistema (Zadano)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Omogućite opcionalne kodeke"</item> - <item msgid="741805482892725657">"Onemogućite opcionalne kodeke"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Koristi odabir sistema (Zadano)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-bs/strings.xml b/packages/SettingsLib/res/values-bs/strings.xml index 614bdb1ba3ac..82fb6cb9c220 100644 --- a/packages/SettingsLib/res/values-bs/strings.xml +++ b/packages/SettingsLib/res/values-bs/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Punjenje"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"punjenje"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ne puni se"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Priključen, trenutno se ne može puniti"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Puna"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Pod kontrolom administratora"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Omogućio administrator"</string> diff --git a/packages/SettingsLib/res/values-ca/arrays.xml b/packages/SettingsLib/res/values-ca/arrays.xml index bdc2cacd4a86..1382419058af 100644 --- a/packages/SettingsLib/res/values-ca/arrays.xml +++ b/packages/SettingsLib/res/values-ca/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Utilitza selecció del sistema (predeterminada)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Activa els còdecs opcionals"</item> - <item msgid="3304843301758635896">"Desactiva els còdecs opcionals"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Utilitza selecció del sistema (predeterminada)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Activa els còdecs opcionals"</item> - <item msgid="741805482892725657">"Desactiva els còdecs opcionals"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Utilitza selecció del sistema (predeterminada)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ca/strings.xml b/packages/SettingsLib/res/values-ca/strings.xml index b2b2b1cc372a..3d923300fc67 100644 --- a/packages/SettingsLib/res/values-ca/strings.xml +++ b/packages/SettingsLib/res/values-ca/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"S\'està carregant"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"s\'està carregant"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"No s\'està carregant"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"El dispositiu està endollat però en aquests moments no es pot carregar"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Plena"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlat per l\'administrador"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Activada per l\'administrador"</string> diff --git a/packages/SettingsLib/res/values-cs/arrays.xml b/packages/SettingsLib/res/values-cs/arrays.xml index 7457308b80a8..cbb3cc100ed4 100644 --- a/packages/SettingsLib/res/values-cs/arrays.xml +++ b/packages/SettingsLib/res/values-cs/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Použít systémový výběr (výchozí)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Povolit volitelné kodeky"</item> - <item msgid="3304843301758635896">"Zakázat volitelné kodeky"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Použít systémový výběr (výchozí)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Povolit volitelné kodeky"</item> - <item msgid="741805482892725657">"Zakázat volitelné kodeky"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Použít systémový výběr (výchozí)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-cs/strings.xml b/packages/SettingsLib/res/values-cs/strings.xml index fcb0b028a251..7609daa940fe 100644 --- a/packages/SettingsLib/res/values-cs/strings.xml +++ b/packages/SettingsLib/res/values-cs/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Nabíjí se"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"nabíjení"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nenabíjí se"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Zapojeno, ale nelze nabíjet"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Nabitá"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Spravováno administrátorem"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Zapnuto administrátorem"</string> diff --git a/packages/SettingsLib/res/values-da/arrays.xml b/packages/SettingsLib/res/values-da/arrays.xml index 6c322ed741bb..055ee514dcc7 100644 --- a/packages/SettingsLib/res/values-da/arrays.xml +++ b/packages/SettingsLib/res/values-da/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Brug systemvalg (standard)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Aktivér Optional Codecs"</item> - <item msgid="3304843301758635896">"Deaktiver Optional Codecs"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Brug systemvalg (standard)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Aktivér Optional Codecs"</item> - <item msgid="741805482892725657">"Deaktiver Optional Codecs"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Brug systemvalg (standard)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-da/strings.xml b/packages/SettingsLib/res/values-da/strings.xml index 1c40c524db06..4c217a155800 100644 --- a/packages/SettingsLib/res/values-da/strings.xml +++ b/packages/SettingsLib/res/values-da/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Oplader"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"oplader"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Oplader ikke"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Enheden er tilsluttet en strømkilde. Det er ikke muligt at oplade på nuværende tidspunkt."</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Fuld"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontrolleret af administratoren"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Aktiveret af administratoren"</string> diff --git a/packages/SettingsLib/res/values-de/arrays.xml b/packages/SettingsLib/res/values-de/arrays.xml index 2c441a508117..ac61e8da94de 100644 --- a/packages/SettingsLib/res/values-de/arrays.xml +++ b/packages/SettingsLib/res/values-de/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Systemauswahl verwenden (Standard)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Optionale Codecs aktivieren"</item> - <item msgid="3304843301758635896">"Optionale Codecs deaktivieren"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Systemauswahl verwenden (Standard)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Optionale Codecs aktivieren"</item> - <item msgid="741805482892725657">"Optionale Codecs deaktivieren"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Systemauswahl verwenden (Standard)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-de/strings.xml b/packages/SettingsLib/res/values-de/strings.xml index 8c0e7271b0c8..d18bd9b36e10 100644 --- a/packages/SettingsLib/res/values-de/strings.xml +++ b/packages/SettingsLib/res/values-de/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Wird aufgeladen"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"wird aufgeladen..."</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Wird nicht geladen"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Angeschlossen, kann derzeit nicht geladen werden"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Voll"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Durch den Administrator verwaltet"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Vom Administrator aktiviert"</string> diff --git a/packages/SettingsLib/res/values-el/arrays.xml b/packages/SettingsLib/res/values-el/arrays.xml index 2f86aa755ac4..3a99fd657af6 100644 --- a/packages/SettingsLib/res/values-el/arrays.xml +++ b/packages/SettingsLib/res/values-el/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Χρήση επιλογής συστήματος (Προεπιλογή)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Ενεργοποίηση προαιρετικών κωδικοποιητών"</item> - <item msgid="3304843301758635896">"Απενεργοποίηση προαιρετικών κωδικοποιητών"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Χρήση επιλογής συστήματος (Προεπιλογή)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Ενεργοποίηση προαιρετικών κωδικοποιητών"</item> - <item msgid="741805482892725657">"Απενεργοποίηση προαιρετικών κωδικοποιητών"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Χρήση επιλογής συστήματος (Προεπιλογή)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-el/strings.xml b/packages/SettingsLib/res/values-el/strings.xml index 46aa2c5a23c5..6419e82d9f3e 100644 --- a/packages/SettingsLib/res/values-el/strings.xml +++ b/packages/SettingsLib/res/values-el/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Φόρτιση"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"φόρτιση"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Δεν φορτίζει"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Συνδέθηκε, δεν είναι δυνατή η φόρτιση αυτήν τη στιγμή"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Πλήρης"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Ελέγχονται από το διαχειριστή"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Ενεργοποιήθηκε από τον διαχειριστή"</string> diff --git a/packages/SettingsLib/res/values-en-rAU/arrays.xml b/packages/SettingsLib/res/values-en-rAU/arrays.xml index 77af30ecb6f8..bb48f2f29a34 100644 --- a/packages/SettingsLib/res/values-en-rAU/arrays.xml +++ b/packages/SettingsLib/res/values-en-rAU/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Use System Selection (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Enable Optional Codecs"</item> - <item msgid="3304843301758635896">"Disable Optional Codecs"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Use System Selection (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Enable Optional Codecs"</item> - <item msgid="741805482892725657">"Disable Optional Codecs"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Use System Selection (Default)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-en-rAU/strings.xml b/packages/SettingsLib/res/values-en-rAU/strings.xml index bbc114463582..92046562dc3b 100644 --- a/packages/SettingsLib/res/values-en-rAU/strings.xml +++ b/packages/SettingsLib/res/values-en-rAU/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Charging"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"charging"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Not charging"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Plugged in, can\'t charge right now"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Full"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlled by admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Enabled by admin"</string> diff --git a/packages/SettingsLib/res/values-en-rCA/arrays.xml b/packages/SettingsLib/res/values-en-rCA/arrays.xml new file mode 100644 index 000000000000..bb48f2f29a34 --- /dev/null +++ b/packages/SettingsLib/res/values-en-rCA/arrays.xml @@ -0,0 +1,239 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/* +** +** Copyright 2015 The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string-array name="wifi_status"> + <item msgid="1922181315419294640"></item> + <item msgid="8934131797783724664">"Scanning…"</item> + <item msgid="8513729475867537913">"Connecting…"</item> + <item msgid="515055375277271756">"Authenticating…"</item> + <item msgid="1943354004029184381">"Obtaining IP address…"</item> + <item msgid="4221763391123233270">"Connected"</item> + <item msgid="624838831631122137">"Suspended"</item> + <item msgid="7979680559596111948">"Disconnecting…"</item> + <item msgid="1634960474403853625">"Disconnected"</item> + <item msgid="746097431216080650">"Unsuccessful"</item> + <item msgid="6367044185730295334">"Blocked"</item> + <item msgid="503942654197908005">"Temporarily avoiding poor connection"</item> + </string-array> + <string-array name="wifi_status_with_ssid"> + <item msgid="7714855332363650812"></item> + <item msgid="8878186979715711006">"Scanning…"</item> + <item msgid="355508996603873860">"Connecting to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item> + <item msgid="554971459996405634">"Authenticating with <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item> + <item msgid="7928343808033020343">"Obtaining IP address from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item> + <item msgid="8937994881315223448">"Connected to <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</item> + <item msgid="1330262655415760617">"Suspended"</item> + <item msgid="7698638434317271902">"Disconnecting from <xliff:g id="NETWORK_NAME">%1$s</xliff:g>…"</item> + <item msgid="197508606402264311">"Disconnected"</item> + <item msgid="8578370891960825148">"Unsuccessful"</item> + <item msgid="5660739516542454527">"Blocked"</item> + <item msgid="1805837518286731242">"Temporarily avoiding poor connection"</item> + </string-array> + <string-array name="hdcp_checking_titles"> + <item msgid="441827799230089869">"Never check"</item> + <item msgid="6042769699089883931">"Check for DRM content only"</item> + <item msgid="9174900380056846820">"Always check"</item> + </string-array> + <string-array name="hdcp_checking_summaries"> + <item msgid="505558545611516707">"Never use HDCP checking"</item> + <item msgid="3878793616631049349">"Use HDCP checking for DRM content only"</item> + <item msgid="45075631231212732">"Always use HDCP checking"</item> + </string-array> + <string-array name="bluetooth_avrcp_versions"> + <item msgid="5347678900838034763">"AVRCP 1.4 (Default)"</item> + <item msgid="2089555299377409443">"AVRCP 1.5"</item> + <item msgid="2895327394279434278">"AVRCP 1.6"</item> + </string-array> + <string-array name="bluetooth_avrcp_version_values"> + <item msgid="2838624067805073303">"avrcp14"</item> + <item msgid="1913619118958233129">"avrcp15"</item> + <item msgid="7142710449249088270">"avrcp16"</item> + </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> + <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> + <item msgid="3093023430402746802">"Use System Selection (Default)"</item> + <item msgid="8895532488906185219">"44.1 kHz"</item> + <item msgid="2909915718994807056">"48.0 kHz"</item> + <item msgid="3347287377354164611">"88.2 kHz"</item> + <item msgid="1234212100239985373">"96.0 kHz"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_sample_rate_summaries"> + <item msgid="3214516120190965356">"Use System Selection (Default)"</item> + <item msgid="4482862757811638365">"44.1 kHz"</item> + <item msgid="354495328188724404">"48.0 kHz"</item> + <item msgid="7329816882213695083">"88.2 kHz"</item> + <item msgid="6967397666254430476">"96.0 kHz"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_bits_per_sample_titles"> + <item msgid="2684127272582591429">"Use System Selection (Default)"</item> + <item msgid="5618929009984956469">"16 bits/sample"</item> + <item msgid="3412640499234627248">"24 bits/sample"</item> + <item msgid="121583001492929387">"32 bits/sample"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_bits_per_sample_summaries"> + <item msgid="1081159789834584363">"Use System Selection (Default)"</item> + <item msgid="4726688794884191540">"16 bits/sample"</item> + <item msgid="305344756485516870">"24 bits/sample"</item> + <item msgid="244568657919675099">"32 bits/sample"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_channel_mode_titles"> + <item msgid="5226878858503393706">"Use System Selection (Default)"</item> + <item msgid="4106832974775067314">"Mono"</item> + <item msgid="5571632958424639155">"Stereo"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_channel_mode_summaries"> + <item msgid="4118561796005528173">"Use System Selection (Default)"</item> + <item msgid="8900559293912978337">"Mono"</item> + <item msgid="8883739882299884241">"Stereo"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_ldac_playback_quality_titles"> + <item msgid="7158319962230727476">"Optimised for Audio Quality (990kbps/909kbps)"</item> + <item msgid="2921767058740704969">"Balanced Audio And Connection Quality (660 kbps/606 kbps)"</item> + <item msgid="8860982705384396512">"Optimised for Connection Quality (330kbps/303kbps)"</item> + <item msgid="4414060457677684127">"Best Effort (Adaptive Bit Rate)"</item> + </string-array> + <string-array name="bluetooth_a2dp_codec_ldac_playback_quality_summaries"> + <item msgid="6398189564246596868">"Optimised for Audio Quality"</item> + <item msgid="4327143584633311908">"Balanced Audio and Connection Quality"</item> + <item msgid="4681409244565426925">"Optimised for Connection Quality"</item> + <item msgid="364670732877872677">"Best Effort (Adaptive Bit Rate)"</item> + </string-array> + <string-array name="select_logd_size_titles"> + <item msgid="8665206199209698501">"Off"</item> + <item msgid="1593289376502312923">"64 K"</item> + <item msgid="487545340236145324">"256 K"</item> + <item msgid="2423528675294333831">"1 M"</item> + <item msgid="180883774509476541">"4 M"</item> + <item msgid="2803199102589126938">"16 M"</item> + </string-array> + <string-array name="select_logd_size_lowram_titles"> + <item msgid="6089470720451068364">"Off"</item> + <item msgid="4622460333038586791">"64 K"</item> + <item msgid="2212125625169582330">"256 K"</item> + <item msgid="1704946766699242653">"1 M"</item> + </string-array> + <string-array name="select_logd_size_summaries"> + <item msgid="6921048829791179331">"Off"</item> + <item msgid="2969458029344750262">"64 K per log buffer"</item> + <item msgid="1342285115665698168">"256 K per log buffer"</item> + <item msgid="1314234299552254621">"1 M per log buffer"</item> + <item msgid="3606047780792894151">"4 M per log buffer"</item> + <item msgid="5431354956856655120">"16 M per log buffer"</item> + </string-array> + <string-array name="select_logpersist_titles"> + <item msgid="1744840221860799971">"Off"</item> + <item msgid="3054662377365844197">"All"</item> + <item msgid="688870735111627832">"All but radio"</item> + <item msgid="2850427388488887328">"kernel only"</item> + </string-array> + <string-array name="select_logpersist_summaries"> + <item msgid="2216470072500521830">"Off"</item> + <item msgid="172978079776521897">"All log buffers"</item> + <item msgid="3873873912383879240">"All but radio log buffers"</item> + <item msgid="8489661142527693381">"kernel log buffer only"</item> + </string-array> + <string-array name="window_animation_scale_entries"> + <item msgid="8134156599370824081">"Animation off"</item> + <item msgid="6624864048416710414">"Animation scale .5x"</item> + <item msgid="2219332261255416635">"Animation scale 1x"</item> + <item msgid="3544428804137048509">"Animation scale 1.5x"</item> + <item msgid="3110710404225974514">"Animation scale 2x"</item> + <item msgid="4402738611528318731">"Animation scale 5x"</item> + <item msgid="6189539267968330656">"Animation scale 10x"</item> + </string-array> + <string-array name="transition_animation_scale_entries"> + <item msgid="8464255836173039442">"Animation off"</item> + <item msgid="3375781541913316411">"Animation scale .5x"</item> + <item msgid="1991041427801869945">"Animation scale 1x"</item> + <item msgid="4012689927622382874">"Animation scale 1.5x"</item> + <item msgid="3289156759925947169">"Animation scale 2x"</item> + <item msgid="7705857441213621835">"Animation scale 5x"</item> + <item msgid="6660750935954853365">"Animation scale 10x"</item> + </string-array> + <string-array name="animator_duration_scale_entries"> + <item msgid="6039901060648228241">"Animation off"</item> + <item msgid="1138649021950863198">"Animation scale .5x"</item> + <item msgid="4394388961370833040">"Animation scale 1x"</item> + <item msgid="8125427921655194973">"Animation scale 1.5x"</item> + <item msgid="3334024790739189573">"Animation scale 2x"</item> + <item msgid="3170120558236848008">"Animation scale 5x"</item> + <item msgid="1069584980746680398">"Animation scale 10x"</item> + </string-array> + <string-array name="overlay_display_devices_entries"> + <item msgid="1606809880904982133">"None"</item> + <item msgid="9033194758688161545">"480 p"</item> + <item msgid="1025306206556583600">"480p (secure)"</item> + <item msgid="1853913333042744661">"720p"</item> + <item msgid="3414540279805870511">"720p (secure)"</item> + <item msgid="9039818062847141551">"1080p"</item> + <item msgid="4939496949750174834">"1080p (secure)"</item> + <item msgid="1833612718524903568">"4K"</item> + <item msgid="238303513127879234">"4K (secure)"</item> + <item msgid="3547211260846843098">"4K (upscaled)"</item> + <item msgid="5411365648951414254">"4K (upscaled, secure)"</item> + <item msgid="1311305077526792901">"720p, 1080p (dual screen)"</item> + </string-array> + <string-array name="enable_opengl_traces_entries"> + <item msgid="3191973083884253830">"None"</item> + <item msgid="9089630089455370183">"Logcat"</item> + <item msgid="5397807424362304288">"Systrace (Graphics)"</item> + <item msgid="1340692776955662664">"Call stack on glGetError"</item> + </string-array> + <string-array name="show_non_rect_clip_entries"> + <item msgid="993742912147090253">"Off"</item> + <item msgid="675719912558941285">"Draw non-rectangular clip region in blue"</item> + <item msgid="1064373276095698656">"Highlight tested drawing commands in green"</item> + </string-array> + <string-array name="track_frame_time_entries"> + <item msgid="2193584639058893150">"Off"</item> + <item msgid="2751513398307949636">"On screen as bars"</item> + <item msgid="2355151170975410323">"In <xliff:g id="AS_TYPED_COMMAND">adb shell dumpsys gfxinfo</xliff:g>"</item> + </string-array> + <string-array name="debug_hw_overdraw_entries"> + <item msgid="8190572633763871652">"Off"</item> + <item msgid="7688197031296835369">"Show overdraw areas"</item> + <item msgid="2290859360633824369">"Show areas for Deuteranomaly"</item> + </string-array> + <string-array name="debug_hw_renderer_entries"> + <item msgid="2578620445459945681">"OpenGL (Default)"</item> + <item msgid="2839130076198120436">"OpenGL (Skia)"</item> + </string-array> + <string-array name="app_process_limit_entries"> + <item msgid="3401625457385943795">"Standard limit"</item> + <item msgid="4071574792028999443">"No background processes"</item> + <item msgid="4810006996171705398">"At most, 1 process"</item> + <item msgid="8586370216857360863">"At most, 2 processes"</item> + <item msgid="836593137872605381">"At most, 3 processes"</item> + <item msgid="7899496259191969307">"At most, 4 processes"</item> + </string-array> + <string-array name="usb_configuration_titles"> + <item msgid="488237561639712799">"Charging"</item> + <item msgid="5220695614993094977">"MTP (Media Transfer Protocol)"</item> + <item msgid="2086000968159047375">"PTP (Picture Transfer Protocol)"</item> + <item msgid="7398830860950841822">"RNDIS (USB Ethernet)"</item> + <item msgid="1718924214939774352">"Audio Source"</item> + <item msgid="8126315616613006284">"MIDI"</item> + </string-array> +</resources> diff --git a/packages/SettingsLib/res/values-en-rCA/strings.xml b/packages/SettingsLib/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..92046562dc3b --- /dev/null +++ b/packages/SettingsLib/res/values-en-rCA/strings.xml @@ -0,0 +1,392 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/* +** +** Copyright 2015 The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="wifi_fail_to_scan" msgid="1265540342578081461">"Can\'t scan for networks"</string> + <string name="wifi_security_none" msgid="7985461072596594400">"None"</string> + <string name="wifi_remembered" msgid="4955746899347821096">"Saved"</string> + <string name="wifi_disabled_generic" msgid="4259794910584943386">"Disabled"</string> + <string name="wifi_disabled_network_failure" msgid="2364951338436007124">"IP Configuration Failure"</string> + <string name="wifi_disabled_by_recommendation_provider" msgid="5168315140978066096">"Not connected due to low quality network"</string> + <string name="wifi_disabled_wifi_failure" msgid="3081668066612876581">"Wi-Fi Connection Failure"</string> + <string name="wifi_disabled_password_failure" msgid="8659805351763133575">"Authentication problem"</string> + <string name="wifi_cant_connect" msgid="5410016875644565884">"Can\'t connect"</string> + <string name="wifi_cant_connect_to_ap" msgid="1222553274052685331">"Can\'t connect to \'<xliff:g id="AP_NAME">%1$s</xliff:g>\'"</string> + <string name="wifi_check_password_try_again" msgid="516958988102584767">"Check password and try again"</string> + <string name="wifi_not_in_range" msgid="1136191511238508967">"Not in range"</string> + <string name="wifi_no_internet_no_reconnect" msgid="5724903347310541706">"Won\'t automatically connect"</string> + <string name="wifi_no_internet" msgid="3880396223819116454">"No Internet access"</string> + <string name="saved_network" msgid="4352716707126620811">"Saved by <xliff:g id="NAME">%1$s</xliff:g>"</string> + <string name="connected_via_network_scorer" msgid="5713793306870815341">"Automatically connected via %1$s"</string> + <string name="connected_via_network_scorer_default" msgid="7867260222020343104">"Automatically connected via network rating provider"</string> + <string name="connected_via_passpoint" msgid="2826205693803088747">"Connected via %1$s"</string> + <string name="available_via_passpoint" msgid="1617440946846329613">"Available via %1$s"</string> + <string name="wifi_connected_no_internet" msgid="3149853966840874992">"Connected, no Internet"</string> + <string name="wifi_ap_unable_to_handle_new_sta" msgid="5348824313514404541">"Access point temporarily full"</string> + <string name="connected_via_carrier" msgid="7583780074526041912">"Connected via %1$s"</string> + <string name="available_via_carrier" msgid="1469036129740799053">"Available via %1$s"</string> + <string name="speed_label_very_slow" msgid="1867055264243608530">"Very slow"</string> + <string name="speed_label_slow" msgid="813109590815810235">"Slow"</string> + <string name="speed_label_okay" msgid="2331665440671174858">"OK"</string> + <string name="speed_label_medium" msgid="3175763313268941953">"Medium"</string> + <string name="speed_label_fast" msgid="7715732164050975057">"Fast"</string> + <string name="speed_label_very_fast" msgid="2265363430784523409">"Very fast"</string> + <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g>/<xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string> + <string name="bluetooth_disconnected" msgid="6557104142667339895">"Disconnected"</string> + <string name="bluetooth_disconnecting" msgid="8913264760027764974">"Disconnecting…"</string> + <string name="bluetooth_connecting" msgid="8555009514614320497">"Connecting…"</string> + <string name="bluetooth_connected" msgid="6038755206916626419">"Connected"</string> + <string name="bluetooth_pairing" msgid="1426882272690346242">"Pairing…"</string> + <string name="bluetooth_connected_no_headset" msgid="2866994875046035609">"Connected (no phone)"</string> + <string name="bluetooth_connected_no_a2dp" msgid="4576188601581440337">"Connected (no media)"</string> + <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_connected_battery_level" msgid="7049181126136692368">"Connected, battery <xliff:g id="BATTERY_LEVEL_AS_PERCENTAGE">%1$s</xliff:g>"</string> + <string name="bluetooth_connected_no_headset_battery_level" msgid="5504193961248406027">"Connected (no phone), battery <xliff:g id="BATTERY_LEVEL_AS_PERCENTAGE">%1$s</xliff:g>"</string> + <string name="bluetooth_connected_no_a2dp_battery_level" msgid="4751724026365870779">"Connected (no media), battery <xliff:g id="BATTERY_LEVEL_AS_PERCENTAGE">%1$s</xliff:g>"</string> + <string name="bluetooth_connected_no_headset_no_a2dp_battery_level" msgid="1549265779323455261">"Connected (no phone or media), battery <xliff:g id="BATTERY_LEVEL_AS_PERCENTAGE">%1$s</xliff:g>"</string> + <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"Media audio"</string> + <string name="bluetooth_profile_headset" msgid="7815495680863246034">"Phone calls"</string> + <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="1019763341565580450">"Text messages"</string> + <string name="bluetooth_profile_sap" msgid="5764222021851283125">"SIM Access"</string> + <string name="bluetooth_profile_a2dp_high_quality" msgid="5444517801472820055">"HD audio: <xliff:g id="CODEC_NAME">%1$s</xliff:g>"</string> + <string name="bluetooth_profile_a2dp_high_quality_unknown_codec" msgid="8510588052415438887">"HD audio"</string> + <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> + <string name="bluetooth_map_profile_summary_connected" msgid="8191407438851351713">"Connected to map"</string> + <string name="bluetooth_sap_profile_summary_connected" msgid="8561765057453083838">"Connected to SAP"</string> + <string name="bluetooth_opp_profile_summary_not_connected" msgid="1267091356089086285">"Not connected to file-transfer server"</string> + <string name="bluetooth_hid_profile_summary_connected" msgid="3381760054215168689">"Connected to input device"</string> + <string name="bluetooth_pan_user_profile_summary_connected" msgid="4602294638909590612">"Connected to device for Internet access"</string> + <string name="bluetooth_pan_nap_profile_summary_connected" msgid="1561383706411975199">"Sharing local Internet connection with device"</string> + <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Use for Internet access"</string> + <string name="bluetooth_map_profile_summary_use_for" msgid="5154200119919927434">"Use for map"</string> + <string name="bluetooth_sap_profile_summary_use_for" msgid="7085362712786907993">"Use for SIM access"</string> + <string name="bluetooth_a2dp_profile_summary_use_for" msgid="4630849022250168427">"Use for media audio"</string> + <string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Use for phone audio"</string> + <string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Use for file transfer"</string> + <string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Use for input"</string> + <string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Pair"</string> + <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"PAIR"</string> + <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"Cancel"</string> + <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"Pairing grants access to your contacts and call history when connected."</string> + <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"Couldn\'t pair with <xliff:g id="DEVICE_NAME">%1$s</xliff:g>."</string> + <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"Couldn\'t pair with <xliff:g id="DEVICE_NAME">%1$s</xliff:g> because of an incorrect PIN or passkey."</string> + <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"Can\'t communicate with <xliff:g id="DEVICE_NAME">%1$s</xliff:g>."</string> + <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"Pairing rejected by <xliff:g id="DEVICE_NAME">%1$s</xliff:g>."</string> + <string name="accessibility_wifi_off" msgid="1166761729660614716">"Wi-Fi off."</string> + <string name="accessibility_no_wifi" msgid="8834610636137374508">"Wi-Fi disconnected."</string> + <string name="accessibility_wifi_one_bar" msgid="4869376278894301820">"Wi-Fi one bar."</string> + <string name="accessibility_wifi_two_bars" msgid="3569851234710034416">"Wi-Fi two bars."</string> + <string name="accessibility_wifi_three_bars" msgid="8134185644861380311">"Wi-Fi three bars."</string> + <string name="accessibility_wifi_signal_full" msgid="7061045677694702">"Wi-Fi signal full."</string> + <string name="accessibility_wifi_security_type_none" msgid="1223747559986205423">"Open network"</string> + <string name="accessibility_wifi_security_type_secured" msgid="862921720418885331">"Secure network"</string> + <string name="process_kernel_label" msgid="3916858646836739323">"Android OS"</string> + <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"Removed apps"</string> + <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"Removed apps and users"</string> + <string name="tether_settings_title_usb" msgid="6688416425801386511">"USB tethering"</string> + <string name="tether_settings_title_wifi" msgid="3277144155960302049">"Portable hotspot"</string> + <string name="tether_settings_title_bluetooth" msgid="355855408317564420">"Bluetooth tethering"</string> + <string name="tether_settings_title_usb_bluetooth" msgid="5355828977109785001">"Tethering"</string> + <string name="tether_settings_title_all" msgid="8356136101061143841">"Tethering & portable hotspot"</string> + <string name="managed_user_title" msgid="8109605045406748842">"All work apps"</string> + <string name="user_guest" msgid="8475274842845401871">"Guest"</string> + <string name="unknown" msgid="1592123443519355854">"Unknown"</string> + <string name="running_process_item_user_label" msgid="3129887865552025943">"User: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> + <string name="launch_defaults_some" msgid="313159469856372621">"Some defaults set"</string> + <string name="launch_defaults_none" msgid="4241129108140034876">"No defaults set"</string> + <string name="tts_settings" msgid="8186971894801348327">"Text-to-speech settings"</string> + <string name="tts_settings_title" msgid="1237820681016639683">"Text-to-speech output"</string> + <string name="tts_default_rate_title" msgid="6030550998379310088">"Speech rate"</string> + <string name="tts_default_rate_summary" msgid="4061815292287182801">"Speed at which the text is spoken"</string> + <string name="tts_default_pitch_title" msgid="6135942113172488671">"Pitch"</string> + <string name="tts_default_pitch_summary" msgid="1944885882882650009">"Affects the tone of the synthesised speech"</string> + <string name="tts_default_lang_title" msgid="8018087612299820556">"Language"</string> + <string name="tts_lang_use_system" msgid="2679252467416513208">"Use system language"</string> + <string name="tts_lang_not_selected" msgid="7395787019276734765">"Language not selected"</string> + <string name="tts_default_lang_summary" msgid="5219362163902707785">"Sets the language-specific voice for the spoken text"</string> + <string name="tts_play_example_title" msgid="7094780383253097230">"Listen to an example"</string> + <string name="tts_play_example_summary" msgid="8029071615047894486">"Play a short demonstration of speech synthesis"</string> + <string name="tts_install_data_title" msgid="4264378440508149986">"Install voice data"</string> + <string name="tts_install_data_summary" msgid="5742135732511822589">"Install the voice data required for speech synthesis"</string> + <string name="tts_engine_security_warning" msgid="8786238102020223650">"This speech synthesis engine may be able to collect all the text that will be spoken, including personal data like passwords and credit card numbers. It comes from the <xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g> engine. Enable the use of this speech synthesis engine?"</string> + <string name="tts_engine_network_required" msgid="1190837151485314743">"This language requires a working network connection for text-to-speech output."</string> + <string name="tts_default_sample_string" msgid="4040835213373086322">"This is an example of speech synthesis"</string> + <string name="tts_status_title" msgid="7268566550242584413">"Default language status"</string> + <string name="tts_status_ok" msgid="1309762510278029765">"<xliff:g id="LOCALE">%1$s</xliff:g> is fully supported"</string> + <string name="tts_status_requires_network" msgid="6042500821503226892">"<xliff:g id="LOCALE">%1$s</xliff:g> requires network connection"</string> + <string name="tts_status_not_supported" msgid="4491154212762472495">"<xliff:g id="LOCALE">%1$s</xliff:g> is not supported"</string> + <string name="tts_status_checking" msgid="5339150797940483592">"Checking…"</string> + <string name="tts_engine_settings_title" msgid="3499112142425680334">"Settings for <xliff:g id="TTS_ENGINE_NAME">%s</xliff:g>"</string> + <string name="tts_engine_settings_button" msgid="1030512042040722285">"Launch engine settings"</string> + <string name="tts_engine_preference_section_title" msgid="448294500990971413">"Preferred engine"</string> + <string name="tts_general_section_title" msgid="4402572014604490502">"General"</string> + <string name="tts_reset_speech_pitch_title" msgid="5789394019544785915">"Reset speech pitch"</string> + <string name="tts_reset_speech_pitch_summary" msgid="8700539616245004418">"Reset the pitch at which the text is spoken to default."</string> + <string-array name="tts_rate_entries"> + <item msgid="6695494874362656215">"Very slow"</item> + <item msgid="4795095314303559268">"Slow"</item> + <item msgid="8903157781070679765">"Normal"</item> + <item msgid="164347302621392996">"Fast"</item> + <item msgid="5794028588101562009">"Faster"</item> + <item msgid="7163942783888652942">"Very fast"</item> + <item msgid="7831712693748700507">"Rapid"</item> + <item msgid="5194774745031751806">"Very rapid"</item> + <item msgid="9085102246155045744">"Fastest"</item> + </string-array> + <string name="choose_profile" msgid="6921016979430278661">"Choose profile"</string> + <string name="category_personal" msgid="1299663247844969448">"Personal"</string> + <string name="category_work" msgid="8699184680584175622">"Work"</string> + <string name="development_settings_title" msgid="215179176067683667">"Developer options"</string> + <string name="development_settings_enable" msgid="542530994778109538">"Enable developer options"</string> + <string name="development_settings_summary" msgid="1815795401632854041">"Set options for app development"</string> + <string name="development_settings_not_available" msgid="4308569041701535607">"Developer options are not available for this user"</string> + <string name="vpn_settings_not_available" msgid="956841430176985598">"VPN settings are not available for this user"</string> + <string name="tethering_settings_not_available" msgid="6765770438438291012">"Tethering settings are not available for this user"</string> + <string name="apn_settings_not_available" msgid="7873729032165324000">"Access Point Name settings are not available for this user"</string> + <string name="enable_adb" msgid="7982306934419797485">"USB debugging"</string> + <string name="enable_adb_summary" msgid="4881186971746056635">"Debug mode when USB is connected"</string> + <string name="clear_adb_keys" msgid="4038889221503122743">"Revoke USB debugging authorisations"</string> + <string name="bugreport_in_power" msgid="7923901846375587241">"Bug report shortcut"</string> + <string name="bugreport_in_power_summary" msgid="1778455732762984579">"Show a button in the power menu for taking a bug report"</string> + <string name="keep_screen_on" msgid="1146389631208760344">"Stay awake"</string> + <string name="keep_screen_on_summary" msgid="2173114350754293009">"Screen will never sleep while charging"</string> + <string name="bt_hci_snoop_log" msgid="3340699311158865670">"Enable Bluetooth HCI snoop log"</string> + <string name="bt_hci_snoop_log_summary" msgid="730247028210113851">"Capture all Bluetooth HCI packets in a file"</string> + <string name="oem_unlock_enable" msgid="6040763321967327691">"OEM unlocking"</string> + <string name="oem_unlock_enable_summary" msgid="4720281828891618376">"Allow the bootloader to be unlocked"</string> + <string name="confirm_enable_oem_unlock_title" msgid="4802157344812385674">"Allow OEM unlocking?"</string> + <string name="confirm_enable_oem_unlock_text" msgid="5517144575601647022">"WARNING: Device protection features will not work on this device while this setting is turned on."</string> + <string name="mock_location_app" msgid="7966220972812881854">"Select mock location app"</string> + <string name="mock_location_app_not_set" msgid="809543285495344223">"No mock location app set"</string> + <string name="mock_location_app_set" msgid="8966420655295102685">"Mock location app: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> + <string name="debug_networking_category" msgid="7044075693643009662">"Networking"</string> + <string name="wifi_display_certification" msgid="8611569543791307533">"Wireless display certification"</string> + <string name="wifi_verbose_logging" msgid="4203729756047242344">"Enable Wi‑Fi verbose logging"</string> + <string name="wifi_aggressive_handover" msgid="5309131983693661320">"Aggressive Wi‑Fi to mobile handover"</string> + <string name="wifi_allow_scan_with_traffic" msgid="3601853081178265786">"Always allow Wi‑Fi Roam Scans"</string> + <string name="mobile_data_always_on" msgid="8774857027458200434">"Mobile data always active"</string> + <string name="tethering_hardware_offload" msgid="7470077827090325814">"Tethering hardware acceleration"</string> + <string name="bluetooth_disable_absolute_volume" msgid="2660673801947898809">"Disable absolute volume"</string> + <string name="bluetooth_enable_inband_ringing" msgid="3291686366721786740">"Enable in-band ringing"</string> + <string name="bluetooth_select_avrcp_version_string" msgid="3750059931120293633">"Bluetooth AVRCP Version"</string> + <string name="bluetooth_select_avrcp_version_dialog_title" msgid="7277329668298705702">"Select Bluetooth AVRCP Version"</string> + <string name="bluetooth_select_a2dp_codec_type" msgid="90597356942154882">"Bluetooth Audio Codec"</string> + <string name="bluetooth_select_a2dp_codec_type_dialog_title" msgid="4558347981670553665">"Select Bluetooth Audio Codec"</string> + <string name="bluetooth_select_a2dp_codec_sample_rate" msgid="4788245703824623062">"Bluetooth Audio Sample Rate"</string> + <string name="bluetooth_select_a2dp_codec_sample_rate_dialog_title" msgid="5628790207448471613">"Select Bluetooth Audio Codec:\nSample Rate"</string> + <string name="bluetooth_select_a2dp_codec_bits_per_sample" msgid="2099645202720164141">"Bluetooth Audio Bits Per Sample"</string> + <string name="bluetooth_select_a2dp_codec_bits_per_sample_dialog_title" msgid="4546131401358681321">"Select Bluetooth Audio Codec:\nBits Per Sample"</string> + <string name="bluetooth_select_a2dp_codec_channel_mode" msgid="884855779449390540">"Bluetooth Audio Channel Mode"</string> + <string name="bluetooth_select_a2dp_codec_channel_mode_dialog_title" msgid="9133545781346216071">"Select Bluetooth Audio Codec:\nChannel Mode"</string> + <string name="bluetooth_select_a2dp_codec_ldac_playback_quality" msgid="3619694372407843405">"Bluetooth Audio LDAC Codec: Playback Quality"</string> + <string name="bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title" msgid="3181967377574368400">"Select Bluetooth Audio LDAC Codec:\nPlayback Quality"</string> + <string name="bluetooth_select_a2dp_codec_streaming_label" msgid="5347862512596240506">"Streaming: <xliff:g id="STREAMING_PARAMETER">%1$s</xliff:g>"</string> + <string name="wifi_display_certification_summary" msgid="1155182309166746973">"Show options for wireless display certification"</string> + <string name="wifi_verbose_logging_summary" msgid="6615071616111731958">"Increase Wi‑Fi logging level, show per SSID RSSI in Wi‑Fi Picker"</string> + <string name="wifi_aggressive_handover_summary" msgid="7266329646559808827">"When enabled, Wi‑Fi will be more aggressive in handing over the data connection to mobile, when Wi‑Fi signal is low"</string> + <string name="wifi_allow_scan_with_traffic_summary" msgid="2575101424972686310">"Allow/Disallow Wi‑Fi Roam Scans based on the amount of data traffic present at the interface"</string> + <string name="select_logd_size_title" msgid="7433137108348553508">"Logger buffer sizes"</string> + <string name="select_logd_size_dialog_title" msgid="1206769310236476760">"Select Logger sizes per log buffer"</string> + <string name="dev_logpersist_clear_warning_title" msgid="684806692440237967">"Clear logger persistent storage?"</string> + <string name="dev_logpersist_clear_warning_message" msgid="2256582531342994562">"When we are no longer monitoring with the persistent logger, we are required to erase the logger data resident on your device."</string> + <string name="select_logpersist_title" msgid="7530031344550073166">"Store logger data persistently on device"</string> + <string name="select_logpersist_dialog_title" msgid="4003400579973269060">"Select log buffers to store persistently on device"</string> + <string name="select_usb_configuration_title" msgid="2649938511506971843">"Select USB Configuration"</string> + <string name="select_usb_configuration_dialog_title" msgid="6385564442851599963">"Select USB Configuration"</string> + <string name="allow_mock_location" msgid="2787962564578664888">"Allow mock locations"</string> + <string name="allow_mock_location_summary" msgid="317615105156345626">"Allow mock locations"</string> + <string name="debug_view_attributes" msgid="6485448367803310384">"Enable view attribute inspection"</string> + <string name="mobile_data_always_on_summary" msgid="8149773901431697910">"Always keep mobile data active, even when Wi‑Fi is active (for fast network switching)."</string> + <string name="tethering_hardware_offload_summary" msgid="7726082075333346982">"Use tethering hardware acceleration if available"</string> + <string name="adb_warning_title" msgid="6234463310896563253">"Allow USB debugging?"</string> + <string name="adb_warning_message" msgid="7316799925425402244">"USB debugging is intended for development purposes only. Use it to copy data between your computer and your device, install apps on your device without notification and read log data."</string> + <string name="adb_keys_warning_message" msgid="5659849457135841625">"Revoke access to USB debugging from all computers you\'ve previously authorised?"</string> + <string name="dev_settings_warning_title" msgid="7244607768088540165">"Allow development settings?"</string> + <string name="dev_settings_warning_message" msgid="2298337781139097964">"These settings are intended for development use only. They can cause your device and the applications on it to break or misbehave."</string> + <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"Verify apps over USB"</string> + <string name="verify_apps_over_usb_summary" msgid="9164096969924529200">"Check apps installed via ADB/ADT for harmful behaviour."</string> + <string name="bluetooth_disable_absolute_volume_summary" msgid="6031284410786545957">"Disables the Bluetooth absolute volume feature in case of volume issues with remote devices such as unacceptably loud volume or lack of control."</string> + <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"Allow ringtones on the phone to be played on Bluetooth headsets"</string> + <string name="enable_terminal_title" msgid="95572094356054120">"Local terminal"</string> + <string name="enable_terminal_summary" msgid="67667852659359206">"Enable terminal app that offers local shell access"</string> + <string name="hdcp_checking_title" msgid="8605478913544273282">"HDCP checking"</string> + <string name="hdcp_checking_dialog_title" msgid="5141305530923283">"Set HDCP checking behaviour"</string> + <string name="debug_debugging_category" msgid="6781250159513471316">"Debugging"</string> + <string name="debug_app" msgid="8349591734751384446">"Select debug app"</string> + <string name="debug_app_not_set" msgid="718752499586403499">"No debug application set"</string> + <string name="debug_app_set" msgid="2063077997870280017">"Debugging application: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> + <string name="select_application" msgid="5156029161289091703">"Select application"</string> + <string name="no_application" msgid="2813387563129153880">"Nothing"</string> + <string name="wait_for_debugger" msgid="1202370874528893091">"Wait for debugger"</string> + <string name="wait_for_debugger_summary" msgid="1766918303462746804">"Debugged application waits for debugger to attach before executing"</string> + <string name="telephony_monitor_switch" msgid="1764958220062121194">"Telephony Monitor"</string> + <string name="telephony_monitor_switch_summary" msgid="7695552966547975635">"TelephonyMonitor will collect logs when it detects a problem with telephony/modem functionality and prompt notification to user to file a bug"</string> + <string name="debug_input_category" msgid="1811069939601180246">"Input"</string> + <string name="debug_drawing_category" msgid="6755716469267367852">"Drawing"</string> + <string name="debug_hw_drawing_category" msgid="6220174216912308658">"Hardware accelerated rendering"</string> + <string name="media_category" msgid="4388305075496848353">"Media"</string> + <string name="debug_monitoring_category" msgid="7640508148375798343">"Monitoring"</string> + <string name="strict_mode" msgid="1938795874357830695">"Strict mode enabled"</string> + <string name="strict_mode_summary" msgid="142834318897332338">"Flash screen when apps do long operations on main thread"</string> + <string name="pointer_location" msgid="6084434787496938001">"Pointer location"</string> + <string name="pointer_location_summary" msgid="840819275172753713">"Screen overlay showing current touch data"</string> + <string name="show_touches" msgid="2642976305235070316">"Show taps"</string> + <string name="show_touches_summary" msgid="6101183132903926324">"Show visual feedback for taps"</string> + <string name="show_screen_updates" msgid="5470814345876056420">"Show surface updates"</string> + <string name="show_screen_updates_summary" msgid="2569622766672785529">"Flash entire window surfaces when they update"</string> + <string name="show_hw_screen_updates" msgid="5036904558145941590">"Show GPU view updates"</string> + <string name="show_hw_screen_updates_summary" msgid="1115593565980196197">"Flash views inside windows when drawn with the GPU"</string> + <string name="show_hw_layers_updates" msgid="5645728765605699821">"Show hardware layers updates"</string> + <string name="show_hw_layers_updates_summary" msgid="5296917233236661465">"Flash hardware layers green when they update"</string> + <string name="debug_hw_overdraw" msgid="2968692419951565417">"Debug GPU overdraw"</string> + <string name="debug_hw_renderer" msgid="7568529019431785816">"Set GPU Renderer"</string> + <string name="disable_overlays" msgid="2074488440505934665">"Disable HW overlays"</string> + <string name="disable_overlays_summary" msgid="3578941133710758592">"Always use GPU for screen compositing"</string> + <string name="simulate_color_space" msgid="6745847141353345872">"Simulate colour space"</string> + <string name="enable_opengl_traces_title" msgid="6790444011053219871">"Enable OpenGL traces"</string> + <string name="usb_audio_disable_routing" msgid="8114498436003102671">"Disable USB audio routing"</string> + <string name="usb_audio_disable_routing_summary" msgid="980282760277312264">"Disable automatic routing to USB audio peripherals"</string> + <string name="debug_layout" msgid="5981361776594526155">"Show layout bounds"</string> + <string name="debug_layout_summary" msgid="2001775315258637682">"Show clip bounds, margins, etc."</string> + <string name="force_rtl_layout_all_locales" msgid="2259906643093138978">"Force RTL layout direction"</string> + <string name="force_rtl_layout_all_locales_summary" msgid="9192797796616132534">"Force screen layout direction to RTL for all locales"</string> + <string name="force_hw_ui" msgid="6426383462520888732">"Force GPU rendering"</string> + <string name="force_hw_ui_summary" msgid="5535991166074861515">"Force use of GPU for 2D drawing"</string> + <string name="force_msaa" msgid="7920323238677284387">"Force 4x MSAA"</string> + <string name="force_msaa_summary" msgid="9123553203895817537">"Enable 4x MSAA in OpenGL ES 2.0 apps"</string> + <string name="show_non_rect_clip" msgid="505954950474595172">"Debug non-rectangular clip operations"</string> + <string name="track_frame_time" msgid="6146354853663863443">"Profile GPU rendering"</string> + <string name="window_animation_scale_title" msgid="6162587588166114700">"Window animation scale"</string> + <string name="transition_animation_scale_title" msgid="387527540523595875">"Transition animation scale"</string> + <string name="animator_duration_scale_title" msgid="3406722410819934083">"Animator duration scale"</string> + <string name="overlay_display_devices_title" msgid="5364176287998398539">"Simulate secondary displays"</string> + <string name="debug_applications_category" msgid="4206913653849771549">"Apps"</string> + <string name="immediately_destroy_activities" msgid="1579659389568133959">"Don\'t keep activities"</string> + <string name="immediately_destroy_activities_summary" msgid="3592221124808773368">"Destroy every activity as soon as the user leaves it"</string> + <string name="app_process_limit_title" msgid="4280600650253107163">"Background process limit"</string> + <string name="show_all_anrs" msgid="28462979638729082">"Show all ANRs"</string> + <string name="show_all_anrs_summary" msgid="641908614413544127">"Show App Not Responding dialogue for background apps"</string> + <string name="show_notification_channel_warnings" msgid="1399948193466922683">"Show notification channel warnings"</string> + <string name="show_notification_channel_warnings_summary" msgid="5536803251863694895">"Displays on-screen warning when an app posts a notification without a valid channel"</string> + <string name="force_allow_on_external" msgid="3215759785081916381">"Force allow apps on external"</string> + <string name="force_allow_on_external_summary" msgid="3640752408258034689">"Makes any app eligible to be written to external storage, regardless of manifest values"</string> + <string name="force_resizable_activities" msgid="8615764378147824985">"Force activities to be re-sizable"</string> + <string name="force_resizable_activities_summary" msgid="6667493494706124459">"Make all activities resizable for multi-window, regardless of manifest values."</string> + <string name="enable_freeform_support" msgid="1461893351278940416">"Enable freeform windows"</string> + <string name="enable_freeform_support_summary" msgid="8247310463288834487">"Enable support for experimental freeform windows."</string> + <string name="local_backup_password_title" msgid="3860471654439418822">"Desktop backup password"</string> + <string name="local_backup_password_summary_none" msgid="6951095485537767956">"Desktop full backups aren\'t currently protected"</string> + <string name="local_backup_password_summary_change" msgid="5376206246809190364">"Tap to change or remove the password for desktop full backups"</string> + <string name="local_backup_password_toast_success" msgid="582016086228434290">"New backup password set"</string> + <string name="local_backup_password_toast_confirmation_mismatch" msgid="7805892532752708288">"New password and confirmation don\'t match"</string> + <string name="local_backup_password_toast_validation_failure" msgid="5646377234895626531">"Failure setting backup password"</string> + <string-array name="color_mode_names"> + <item msgid="2425514299220523812">"Vibrant (default)"</item> + <item msgid="8446070607501413455">"Natural"</item> + <item msgid="6553408765810699025">"Standard"</item> + </string-array> + <string-array name="color_mode_descriptions"> + <item msgid="4979629397075120893">"Enhanced colours"</item> + <item msgid="8280754435979370728">"Natural colours as seen by the eye"</item> + <item msgid="5363960654009010371">"Colours optimised for digital content"</item> + </string-array> + <string name="inactive_apps_title" msgid="1317817863508274533">"Inactive apps"</string> + <string name="inactive_app_inactive_summary" msgid="5091363706699855725">"Inactive. Tap to toggle."</string> + <string name="inactive_app_active_summary" msgid="4174921824958516106">"Active. Tap to toggle."</string> + <string name="runningservices_settings_title" msgid="8097287939865165213">"Running services"</string> + <string name="runningservices_settings_summary" msgid="854608995821032748">"View and control currently running services"</string> + <string name="select_webview_provider_title" msgid="4628592979751918907">"WebView implementation"</string> + <string name="select_webview_provider_dialog_title" msgid="4370551378720004872">"Set WebView implementation"</string> + <string name="select_webview_provider_toast_text" msgid="5466970498308266359">"This choice is no longer valid. Try again."</string> + <string name="convert_to_file_encryption" msgid="3060156730651061223">"Convert to file encryption"</string> + <string name="convert_to_file_encryption_enabled" msgid="2861258671151428346">"Convert…"</string> + <string name="convert_to_file_encryption_done" msgid="7859766358000523953">"Already file encrypted"</string> + <string name="title_convert_fbe" msgid="1263622876196444453">"Converting to file-based encryption"</string> + <string name="convert_to_fbe_warning" msgid="6139067817148865527">"Convert data partition to file-based encryption.\n !!Warning!! This will delete all your data.\n This feature is alpha, and may not work correctly.\n Press \'Wipe and convert…\' to continue."</string> + <string name="button_convert_fbe" msgid="5152671181309826405">"Wipe and convert…"</string> + <string name="picture_color_mode" msgid="4560755008730283695">"Picture colour mode"</string> + <string name="picture_color_mode_desc" msgid="1141891467675548590">"Use sRGB"</string> + <string name="daltonizer_mode_disabled" msgid="7482661936053801862">"Disabled"</string> + <string name="daltonizer_mode_monochromacy" msgid="8485709880666106721">"Monochromacy"</string> + <string name="daltonizer_mode_deuteranomaly" msgid="5475532989673586329">"Deuteranomaly (red-green)"</string> + <string name="daltonizer_mode_protanomaly" msgid="8424148009038666065">"Protanomaly (red-green)"</string> + <string name="daltonizer_mode_tritanomaly" msgid="481725854987912389">"Tritanomaly (blue-yellow)"</string> + <string name="accessibility_display_daltonizer_preference_title" msgid="5800761362678707872">"Colour correction"</string> + <string name="accessibility_display_daltonizer_preference_subtitle" msgid="3484969015295282911">"This feature is experimental and may affect performance."</string> + <string name="daltonizer_type_overridden" msgid="3116947244410245916">"Overridden by <xliff:g id="TITLE">%1$s</xliff:g>"</string> + <string name="power_remaining_duration_only" msgid="845431008899029842">"About <xliff:g id="TIME">^1</xliff:g> left"</string> + <string name="power_remaining_duration_only_enhanced" msgid="5992456722677973678">"About <xliff:g id="TIME">^1</xliff:g> left based on your usage"</string> + <string name="power_remaining_charging_duration_only" msgid="1421102457410268886">"<xliff:g id="TIME">^1</xliff:g> left until fully charged"</string> + <string name="power_remaining_duration_only_short" msgid="5329694252258605547">"<xliff:g id="TIME">^1</xliff:g> left"</string> + <string name="power_remaining_duration_only_short_enhanced" msgid="7450425624026394823">"<xliff:g id="TIME">^1</xliff:g> left based on your usage"</string> + <string name="power_discharging_duration" msgid="2843747179907396142">"<xliff:g id="LEVEL">^1</xliff:g> – about <xliff:g id="TIME">^2</xliff:g> left"</string> + <string name="power_discharging_duration_enhanced" msgid="4401782117770255046">"<xliff:g id="LEVEL">^1</xliff:g> - about <xliff:g id="TIME">^2</xliff:g> left based on your usage"</string> + <string name="power_discharging_duration_short" msgid="4192244429001842403">"<xliff:g id="LEVEL">^1</xliff:g> - <xliff:g id="TIME">^2</xliff:g> left"</string> + <string name="power_charging" msgid="1779532561355864267">"<xliff:g id="LEVEL">%1$s</xliff:g> - <xliff:g id="STATE">%2$s</xliff:g>"</string> + <string name="power_charging_duration" msgid="4676999980973411875">"<xliff:g id="LEVEL">^1</xliff:g> – <xliff:g id="TIME">^2</xliff:g> until fully charged"</string> + <string name="power_charging_duration_short" msgid="1098603958472207920">"<xliff:g id="LEVEL">^1</xliff:g> - <xliff:g id="TIME">^2</xliff:g>"</string> + <string name="battery_info_status_unknown" msgid="196130600938058547">"Unknown"</string> + <string name="battery_info_status_charging" msgid="1705179948350365604">"Charging"</string> + <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"charging"</string> + <string name="battery_info_status_discharging" msgid="310932812698268588">"Not charging"</string> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Plugged in, can\'t charge right now"</string> + <string name="battery_info_status_full" msgid="2824614753861462808">"Full"</string> + <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlled by admin"</string> + <string name="enabled_by_admin" msgid="5302986023578399263">"Enabled by admin"</string> + <string name="disabled_by_admin" msgid="8505398946020816620">"Disabled by admin"</string> + <string name="disabled" msgid="9206776641295849915">"Disabled"</string> + <string name="external_source_trusted" msgid="2707996266575928037">"Allowed"</string> + <string name="external_source_untrusted" msgid="2677442511837596726">"Not allowed"</string> + <string name="install_other_apps" msgid="6986686991775883017">"Install unknown apps"</string> + <string name="home" msgid="3256884684164448244">"Settings Home"</string> + <string-array name="battery_labels"> + <item msgid="8494684293649631252">"0%"</item> + <item msgid="8934126114226089439">"50%"</item> + <item msgid="1286113608943010849">"100%"</item> + </string-array> + <string name="charge_length_format" msgid="8978516217024434156">"<xliff:g id="ID_1">%1$s</xliff:g> ago"</string> + <string name="remaining_length_format" msgid="7886337596669190587">"<xliff:g id="ID_1">%1$s</xliff:g> left"</string> + <string name="screen_zoom_summary_small" msgid="5867245310241621570">"Small"</string> + <string name="screen_zoom_summary_default" msgid="2247006805614056507">"Default"</string> + <string name="screen_zoom_summary_large" msgid="4835294730065424084">"Large"</string> + <string name="screen_zoom_summary_very_large" msgid="7108563375663670067">"Larger"</string> + <string name="screen_zoom_summary_extremely_large" msgid="7427320168263276227">"Largest"</string> + <string name="screen_zoom_summary_custom" msgid="5611979864124160447">"Custom (<xliff:g id="DENSITYDPI">%d</xliff:g>)"</string> + <string name="help_feedback_label" msgid="6815040660801785649">"Help & feedback"</string> + <string name="content_description_menu_button" msgid="8182594799812351266">"Menu"</string> + <string name="retail_demo_reset_message" msgid="118771671364131297">"Enter password to perform factory reset in demo mode"</string> + <string name="retail_demo_reset_next" msgid="8356731459226304963">"Next"</string> + <string name="retail_demo_reset_title" msgid="696589204029930100">"Password required"</string> + <string name="active_input_method_subtypes" msgid="3596398805424733238">"Active input methods"</string> + <string name="use_system_language_to_select_input_method_subtypes" msgid="5747329075020379587">"Use system languages"</string> + <string name="failed_to_open_app_settings_toast" msgid="1251067459298072462">"Failed to open settings for <xliff:g id="SPELL_APPLICATION_NAME">%1$s</xliff:g>"</string> + <string name="ime_security_warning" msgid="4135828934735934248">"This input method may be able to collect all the text that you type, including personal data like passwords and credit card numbers. It comes from the app <xliff:g id="IME_APPLICATION_NAME">%1$s</xliff:g>. Use this input method?"</string> + <string name="direct_boot_unaware_dialog_message" msgid="7870273558547549125">"Note: After a reboot, this app can\'t start until you unlock your phone"</string> +</resources> diff --git a/packages/SettingsLib/res/values-en-rGB/arrays.xml b/packages/SettingsLib/res/values-en-rGB/arrays.xml index 77af30ecb6f8..bb48f2f29a34 100644 --- a/packages/SettingsLib/res/values-en-rGB/arrays.xml +++ b/packages/SettingsLib/res/values-en-rGB/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Use System Selection (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Enable Optional Codecs"</item> - <item msgid="3304843301758635896">"Disable Optional Codecs"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Use System Selection (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Enable Optional Codecs"</item> - <item msgid="741805482892725657">"Disable Optional Codecs"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Use System Selection (Default)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-en-rGB/strings.xml b/packages/SettingsLib/res/values-en-rGB/strings.xml index bbc114463582..92046562dc3b 100644 --- a/packages/SettingsLib/res/values-en-rGB/strings.xml +++ b/packages/SettingsLib/res/values-en-rGB/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Charging"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"charging"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Not charging"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Plugged in, can\'t charge right now"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Full"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlled by admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Enabled by admin"</string> diff --git a/packages/SettingsLib/res/values-en-rIN/arrays.xml b/packages/SettingsLib/res/values-en-rIN/arrays.xml index 77af30ecb6f8..bb48f2f29a34 100644 --- a/packages/SettingsLib/res/values-en-rIN/arrays.xml +++ b/packages/SettingsLib/res/values-en-rIN/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Use System Selection (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Enable Optional Codecs"</item> - <item msgid="3304843301758635896">"Disable Optional Codecs"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Use System Selection (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Enable Optional Codecs"</item> - <item msgid="741805482892725657">"Disable Optional Codecs"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Use System Selection (Default)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-en-rIN/strings.xml b/packages/SettingsLib/res/values-en-rIN/strings.xml index bbc114463582..92046562dc3b 100644 --- a/packages/SettingsLib/res/values-en-rIN/strings.xml +++ b/packages/SettingsLib/res/values-en-rIN/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Charging"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"charging"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Not charging"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Plugged in, can\'t charge right now"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Full"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlled by admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Enabled by admin"</string> diff --git a/packages/SettingsLib/res/values-en-rXC/arrays.xml b/packages/SettingsLib/res/values-en-rXC/arrays.xml index 1a110ea0ac5a..be061721acab 100644 --- a/packages/SettingsLib/res/values-en-rXC/arrays.xml +++ b/packages/SettingsLib/res/values-en-rXC/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Use System Selection (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Enable Optional Codecs"</item> - <item msgid="3304843301758635896">"Disable Optional Codecs"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Use System Selection (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Enable Optional Codecs"</item> - <item msgid="741805482892725657">"Disable Optional Codecs"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Use System Selection (Default)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-en-rXC/strings.xml b/packages/SettingsLib/res/values-en-rXC/strings.xml index 6af9692ad5cc..06c4d8675338 100644 --- a/packages/SettingsLib/res/values-en-rXC/strings.xml +++ b/packages/SettingsLib/res/values-en-rXC/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Charging"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"charging"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Not charging"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Plugged in, can\'t charge right now"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Full"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlled by admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Enabled by admin"</string> diff --git a/packages/SettingsLib/res/values-es-rUS/arrays.xml b/packages/SettingsLib/res/values-es-rUS/arrays.xml index ef6911401627..512591f12e06 100644 --- a/packages/SettingsLib/res/values-es-rUS/arrays.xml +++ b/packages/SettingsLib/res/values-es-rUS/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Usar selección del sistema (predeterminado)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Habilitar códecs opcionales"</item> - <item msgid="3304843301758635896">"Inhabilitar códecs opcionales"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Usar selección del sistema (predeterminado)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Habilitar códecs opcionales"</item> - <item msgid="741805482892725657">"Inhabilitar códecs opcionales"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Usar selección del sistema (predeterminado)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-es-rUS/strings.xml b/packages/SettingsLib/res/values-es-rUS/strings.xml index 8eff989dc8ff..3df363f3cb61 100644 --- a/packages/SettingsLib/res/values-es-rUS/strings.xml +++ b/packages/SettingsLib/res/values-es-rUS/strings.xml @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"Invitado"</string> <string name="unknown" msgid="1592123443519355854">"Desconocido"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"Usuario: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"Hay algunas configuraciones predeterminadas establecidas."</string> + <string name="launch_defaults_some" msgid="313159469856372621">"Configuraciones predeterminadas establecidas"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"No hay configuraciones predeterminadas establecidas."</string> <string name="tts_settings" msgid="8186971894801348327">"Configuración de texto a voz"</string> <string name="tts_settings_title" msgid="1237820681016639683">"Salida de texto a voz"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Cargando"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"cargando"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"No se está cargando."</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Conectado. No se puede cargar en este momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Cargado"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlada por el administrador"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"El administrador habilitó esta opción"</string> diff --git a/packages/SettingsLib/res/values-es/arrays.xml b/packages/SettingsLib/res/values-es/arrays.xml index 53c547dacd85..55ff28bd1e75 100644 --- a/packages/SettingsLib/res/values-es/arrays.xml +++ b/packages/SettingsLib/res/values-es/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Usar preferencia del sistema (predeter.)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Habilitar códecs opcionales"</item> - <item msgid="3304843301758635896">"Inhabilitar códecs opcionales"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Usar preferencia del sistema (predeter.)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Habilitar códecs opcionales"</item> - <item msgid="741805482892725657">"Inhabilitar códecs opcionales"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Usar preferencia del sistema (predeter.)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-es/strings.xml b/packages/SettingsLib/res/values-es/strings.xml index 4ac4b27db638..3e09c14bdb14 100644 --- a/packages/SettingsLib/res/values-es/strings.xml +++ b/packages/SettingsLib/res/values-es/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Cargando"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"cargando"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"No se está cargando"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Se ha conectado, pero no se puede cargar en este momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Completa"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlada por el administrador"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Habilitada por el administrador"</string> diff --git a/packages/SettingsLib/res/values-et/arrays.xml b/packages/SettingsLib/res/values-et/arrays.xml index 77668900b27e..b4cc90f527fd 100644 --- a/packages/SettingsLib/res/values-et/arrays.xml +++ b/packages/SettingsLib/res/values-et/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Süsteemi valiku kasutamine (vaikeseade)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Lubatakse valikulised kodekid"</item> - <item msgid="3304843301758635896">"Keelatakse valikulised kodekid"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Süsteemi valiku kasutamine (vaikeseade)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Lubatakse valikulised kodekid"</item> - <item msgid="741805482892725657">"Keelatakse valikulised kodekid"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Süsteemi valiku kasutamine (vaikeseade)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-et/strings.xml b/packages/SettingsLib/res/values-et/strings.xml index 28a2a596d627..c4e2ab4dda04 100644 --- a/packages/SettingsLib/res/values-et/strings.xml +++ b/packages/SettingsLib/res/values-et/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Laadimine"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"laadimine"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ei lae"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Vooluvõrgus, praegu ei saa laadida"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Täis"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Juhib administraator"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Administraatori lubatud"</string> diff --git a/packages/SettingsLib/res/values-eu/arrays.xml b/packages/SettingsLib/res/values-eu/arrays.xml index 444ffbc4de22..13912c145861 100644 --- a/packages/SettingsLib/res/values-eu/arrays.xml +++ b/packages/SettingsLib/res/values-eu/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Erabili sistema-hautapena (lehenetsia)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Gaitu aukerako kodekak"</item> - <item msgid="3304843301758635896">"Desgaitu aukerako kodekak"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Erabili sistema-hautapena (lehenetsia)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Gaitu aukerako kodekak"</item> - <item msgid="741805482892725657">"Desgaitu aukerako kodekak"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Erabili sistema-hautapena (lehenetsia)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-eu/strings.xml b/packages/SettingsLib/res/values-eu/strings.xml index 4e19b9942b91..e200166c1313 100644 --- a/packages/SettingsLib/res/values-eu/strings.xml +++ b/packages/SettingsLib/res/values-eu/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Kargatzen"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"kargatzen"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ez da kargatzen ari"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Konektatuta dago. Ezin da kargatu une honetan."</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Beteta"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Administratzaileak kontrolatzen du"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Administratzaileak gaitu du"</string> diff --git a/packages/SettingsLib/res/values-fa/arrays.xml b/packages/SettingsLib/res/values-fa/arrays.xml index b9fa5e40f603..711a2e47ba2c 100644 --- a/packages/SettingsLib/res/values-fa/arrays.xml +++ b/packages/SettingsLib/res/values-fa/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp نسخه ۱۵"</item> <item msgid="7142710449249088270">"avrcp نسخه ۱۶"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"استفاده از انتخاب سیستم (پیشفرض)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"فعال کردن کدکهای اختیاری"</item> - <item msgid="3304843301758635896">"غیرفعال کردن کدکهای اختیاری"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"استفاده از انتخاب سیستم (پیشفرض)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"فعال کردن کدکهای اختیاری"</item> - <item msgid="741805482892725657">"غیرفعال کردن کدکهای اختیاری"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"استفاده از انتخاب سیستم (پیشفرض)"</item> <item msgid="8895532488906185219">"۴۴٫۱ کیلوهرتز"</item> diff --git a/packages/SettingsLib/res/values-fa/strings.xml b/packages/SettingsLib/res/values-fa/strings.xml index 15facd8bf190..4dc4dc9878e7 100644 --- a/packages/SettingsLib/res/values-fa/strings.xml +++ b/packages/SettingsLib/res/values-fa/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"در حال شارژ شدن"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"درحال شارژ شدن"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"شارژ نمیشود"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"به برق وصل شده است، درحالحاضر شارژ نمیشود"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"پر"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"توسط سرپرست سیستم کنترل میشود"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"فعالشده توسط سرپرست"</string> diff --git a/packages/SettingsLib/res/values-fi/arrays.xml b/packages/SettingsLib/res/values-fi/arrays.xml index 7a5f8604face..2caae5b15474 100644 --- a/packages/SettingsLib/res/values-fi/arrays.xml +++ b/packages/SettingsLib/res/values-fi/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Käytä järjestelmän valintaa (oletus)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Ota valinnaiset koodekit käyttöön"</item> - <item msgid="3304843301758635896">"Poista valinnaiset koodekit käytöstä"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Käytä järjestelmän valintaa (oletus)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Ota valinnaiset koodekit käyttöön"</item> - <item msgid="741805482892725657">"Poista valinnaiset koodekit käytöstä"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Käytä järjestelmän valintaa (oletus)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-fi/strings.xml b/packages/SettingsLib/res/values-fi/strings.xml index 59ba1379d246..4facaec8cb59 100644 --- a/packages/SettingsLib/res/values-fi/strings.xml +++ b/packages/SettingsLib/res/values-fi/strings.xml @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"Vieras"</string> <string name="unknown" msgid="1592123443519355854">"Tuntematon"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"Käyttäjä: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"Joitakin oletuksia on asetettu."</string> + <string name="launch_defaults_some" msgid="313159469856372621">"Joitakin oletuksia on asetettu"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"Oletuksia ei asetettu."</string> <string name="tts_settings" msgid="8186971894801348327">"Tekstistä puheeksi -asetukset"</string> <string name="tts_settings_title" msgid="1237820681016639683">"Tekstistä puheeksi -toisto"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Ladataan"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ladataan"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ei laturissa"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Kytketty virtalähteeseen, lataaminen ei onnistu"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Täynnä"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Järjestelmänvalvoja hallinnoi tätä asetusta."</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Järjestelmänvalvojan käyttöön ottama"</string> diff --git a/packages/SettingsLib/res/values-fr-rCA/arrays.xml b/packages/SettingsLib/res/values-fr-rCA/arrays.xml index 29348c921595..996e3c2290ca 100644 --- a/packages/SettingsLib/res/values-fr-rCA/arrays.xml +++ b/packages/SettingsLib/res/values-fr-rCA/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Utiliser sélect. du système (par défaut)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Activer les codecs optionnels"</item> - <item msgid="3304843301758635896">"Désactiver les codecs optionnels"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Utiliser sélect. du système (par défaut)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Activer les codecs optionnels"</item> - <item msgid="741805482892725657">"Désactiver les codecs optionnels"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Utiliser sélect. du système (par défaut)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-fr-rCA/strings.xml b/packages/SettingsLib/res/values-fr-rCA/strings.xml index 201984c3415e..aea79916e203 100644 --- a/packages/SettingsLib/res/values-fr-rCA/strings.xml +++ b/packages/SettingsLib/res/values-fr-rCA/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Charge en cours…"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"en cours de charge"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"N\'est pas en charge"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"L\'appareil est branché, mais il ne peut pas être chargé pour le moment"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Pleine"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Contrôlé par l\'administrateur"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Activé par l\'administrateur"</string> diff --git a/packages/SettingsLib/res/values-fr/arrays.xml b/packages/SettingsLib/res/values-fr/arrays.xml index 1c3605e525b3..7d7706295dee 100644 --- a/packages/SettingsLib/res/values-fr/arrays.xml +++ b/packages/SettingsLib/res/values-fr/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Utiliser sélection système (par défaut)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Activer les codecs facultatifs"</item> - <item msgid="3304843301758635896">"Désactiver les codecs facultatifs"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Utiliser sélection système (par défaut)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Activer les codecs facultatifs"</item> - <item msgid="741805482892725657">"Désactiver les codecs facultatifs"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Utiliser sélection système (par défaut)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-fr/strings.xml b/packages/SettingsLib/res/values-fr/strings.xml index 281e9575371a..4f71d3302562 100644 --- a/packages/SettingsLib/res/values-fr/strings.xml +++ b/packages/SettingsLib/res/values-fr/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Batterie en charge"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"chargement…"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Pas en charge"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Appareil branché, mais impossible de le charger pour le moment"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"pleine"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Contrôlé par l\'administrateur"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Activé par l\'administrateur"</string> diff --git a/packages/SettingsLib/res/values-gl/arrays.xml b/packages/SettingsLib/res/values-gl/arrays.xml index 1bfbbdfe0870..163608cf8418 100644 --- a/packages/SettingsLib/res/values-gl/arrays.xml +++ b/packages/SettingsLib/res/values-gl/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Usar selección sistema (predeterminado)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Activar códecs opcionais"</item> - <item msgid="3304843301758635896">"Desactivar códecs opcionais"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Usa selección sistema (predeterminado)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Activa os códecs opcionais"</item> - <item msgid="741805482892725657">"Desactiva os códecs opcionais"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Usar selección sistema (predeterminado)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-gl/strings.xml b/packages/SettingsLib/res/values-gl/strings.xml index 3311a5fe3017..4a2e477f24f1 100644 --- a/packages/SettingsLib/res/values-gl/strings.xml +++ b/packages/SettingsLib/res/values-gl/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Cargando"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"cargando"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Non se está cargando"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Conectouse, pero non se pode cargar neste momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Completa"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Opción controlada polo administrador"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Activado polo administrador"</string> diff --git a/packages/SettingsLib/res/values-gu/arrays.xml b/packages/SettingsLib/res/values-gu/arrays.xml index 1fc1d7c5a1da..1d79ba4e2cf7 100644 --- a/packages/SettingsLib/res/values-gu/arrays.xml +++ b/packages/SettingsLib/res/values-gu/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"સિસ્ટમ પસંદગીનો ઉપયોગ કરો (ડિફૉલ્ટ)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"વૈકલ્પિક કોડેક સક્ષમ કરો"</item> - <item msgid="3304843301758635896">"વૈકલ્પિક કોડેક અક્ષમ કરો"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"સિસ્ટમ પસંદગીનો ઉપયોગ કરો (ડિફૉલ્ટ)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"વૈકલ્પિક કોડેક સક્ષમ કરો"</item> - <item msgid="741805482892725657">"વૈકલ્પિક કોડેક અક્ષમ કરો"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"સિસ્ટમ પસંદગીનો ઉપયોગ કરો (ડિફૉલ્ટ)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-gu/strings.xml b/packages/SettingsLib/res/values-gu/strings.xml index b931fd11ed74..0112dcf091b2 100644 --- a/packages/SettingsLib/res/values-gu/strings.xml +++ b/packages/SettingsLib/res/values-gu/strings.xml @@ -92,11 +92,11 @@ <string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"ફાઇલ સ્થાનાંતર માટે ઉપયોગ કરો"</string> <string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"ઇનપુટ માટે ઉપયોગ કરો"</string> <string name="bluetooth_pairing_accept" msgid="6163520056536604875">"જોડી"</string> - <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"જોડી કરો"</string> + <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"જોડાણ બનાવો"</string> <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"રદ કરો"</string> - <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"જોડી કરવી એ કનેક્ટ કરેલ હોય ત્યારે તમારા સંપર્કો અને કૉલ ઇતિહાસની અૅક્સેસ આપે છે."</string> + <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"એ કનેક્ટ કરેલ હોય ત્યારે જોડાણ બનાવવાથી તમારા સંપર્કો અને કૉલ ઇતિહાસનો અૅક્સેસ મળે છે."</string> <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> સાથે જોડી કરી શક્યાં નહીં."</string> - <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"એક ખોટા PIN અથવા પાસકીને કારણે <xliff:g id="DEVICE_NAME">%1$s</xliff:g> સાથે જોડી બનાવી શકાઈ નથી."</string> + <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"એક ખોટા પિન અથવા પાસકીને કારણે <xliff:g id="DEVICE_NAME">%1$s</xliff:g> સાથે જોડી બનાવી શકાઈ નથી."</string> <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> સાથે સંચાર કરી શકાતો નથી."</string> <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> દ્વારા જોડી કરવાનું નકાર્યું."</string> <string name="accessibility_wifi_off" msgid="1166761729660614716">"Wifi બંધ."</string> @@ -111,10 +111,10 @@ <string name="data_usage_uninstalled_apps" msgid="614263770923231598">"દૂર કરેલી ઍપ્લિકેશનો"</string> <string name="data_usage_uninstalled_apps_users" msgid="7986294489899813194">"દૂર કરેલી ઍપ્લિકેશનો અને વપરાશકર્તાઓ"</string> <string name="tether_settings_title_usb" msgid="6688416425801386511">"USB ટિથરિંગ"</string> - <string name="tether_settings_title_wifi" msgid="3277144155960302049">"પોર્ટેબલ હોટસ્પોટ"</string> + <string name="tether_settings_title_wifi" msgid="3277144155960302049">"પોર્ટેબલ હૉટસ્પૉટ"</string> <string name="tether_settings_title_bluetooth" msgid="355855408317564420">"Bluetooth ટિથરિંગ"</string> <string name="tether_settings_title_usb_bluetooth" msgid="5355828977109785001">"ટિથરિંગ"</string> - <string name="tether_settings_title_all" msgid="8356136101061143841">"ટિથરિંગ અને પોર્ટેબલ હોટસ્પોટ"</string> + <string name="tether_settings_title_all" msgid="8356136101061143841">"ટિથરિંગ અને પોર્ટેબલ હૉટસ્પૉટ"</string> <string name="managed_user_title" msgid="8109605045406748842">"તમામ કાર્ય અૅપ્લિકેશનો"</string> <string name="user_guest" msgid="8475274842845401871">"અતિથિ"</string> <string name="unknown" msgid="1592123443519355854">"અજાણ્યું"</string> @@ -175,7 +175,7 @@ <string name="clear_adb_keys" msgid="4038889221503122743">"USB ડીબગિંગ પ્રમાણીકરણોને રદબાતલ કરો"</string> <string name="bugreport_in_power" msgid="7923901846375587241">"બગ રિપોર્ટ શોર્ટકટ"</string> <string name="bugreport_in_power_summary" msgid="1778455732762984579">"બગ રિપોર્ટ લેવા માટે પાવર મેનૂમાં એક બટન બતાવો"</string> - <string name="keep_screen_on" msgid="1146389631208760344">"જાગૃત રહો"</string> + <string name="keep_screen_on" msgid="1146389631208760344">"સક્રિય રાખો"</string> <string name="keep_screen_on_summary" msgid="2173114350754293009">"ચાર્જિંગ દરમિયાન સ્ક્રીન ક્યારેય નિષ્ક્રિય થશે નહીં"</string> <string name="bt_hci_snoop_log" msgid="3340699311158865670">"Bluetooth HCI સ્નૂપ લૉગ સક્ષમ કરો"</string> <string name="bt_hci_snoop_log_summary" msgid="730247028210113851">"ફાઇલમાં તમામ Bluetooth HCI પૅકેટ્સ કેપ્ચર કરો"</string> @@ -187,7 +187,7 @@ <string name="mock_location_app_not_set" msgid="809543285495344223">"કોઈ મોક સ્થાન ઍપ્લિકેશન સેટ કરાયેલ નથી"</string> <string name="mock_location_app_set" msgid="8966420655295102685">"મોક સ્થાન ઍપ્લિકેશન: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="debug_networking_category" msgid="7044075693643009662">"નેટવર્કિંગ"</string> - <string name="wifi_display_certification" msgid="8611569543791307533">"બિનતારી પ્રદર્શન પ્રમાણન"</string> + <string name="wifi_display_certification" msgid="8611569543791307533">"વાયરલેસ ડિસ્પ્લે પ્રમાણન"</string> <string name="wifi_verbose_logging" msgid="4203729756047242344">"Wi-Fi વર્બોઝ લૉગિંગ સક્ષમ કરો"</string> <string name="wifi_aggressive_handover" msgid="5309131983693661320">"સશક્ત Wi‑Fiથી મોબાઇલ પર હૅન્ડઓવર"</string> <string name="wifi_allow_scan_with_traffic" msgid="3601853081178265786">"હંમેશા Wi‑Fi રોમ સ્કૅન્સને મંજૂરી આપો"</string> @@ -233,7 +233,7 @@ <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB પર ઍપ્લિકેશનો ચકાસો"</string> <string name="verify_apps_over_usb_summary" msgid="9164096969924529200">"હાનિકારક વર્તણૂંક માટે ADB/ADT મારફતે ઇન્સ્ટોલ કરવામાં આવેલી ઍપ્લિકેશનો તપાસો."</string> <string name="bluetooth_disable_absolute_volume_summary" msgid="6031284410786545957">"રિમોટ ઉપકરણોમાં વધુ પડતું ઊંચું વૉલ્યૂમ અથવા નિયંત્રણની કમી જેવી વૉલ્યૂમની સમસ્યાઓની સ્થિતિમાં Bluetooth ચોક્કસ વૉલ્યૂમ સુવિધાને અક્ષમ કરે છે."</string> - <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"ફોનનો રિંગટોન Bluetooth હેડસેટ પર વાગવાની મંજૂરી આપો"</string> + <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"ફોનની રિંગટોન બ્લૂટૂથ હૅડસેટ પર વાગવાની મંજૂરી આપો"</string> <string name="enable_terminal_title" msgid="95572094356054120">"સ્થાનિક ટર્મિનલ"</string> <string name="enable_terminal_summary" msgid="67667852659359206">"સ્થાનિક શેલ અૅક્સેસની ઑફર કરતી ટર્મિનલ એપ્લિકેશનને સક્ષમ કરો"</string> <string name="hdcp_checking_title" msgid="8605478913544273282">"HDCP તપાસણી"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ચાર્જ થઈ રહ્યું છે"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ચાર્જ થઈ રહ્યું છે"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ચાર્જ થઈ રહ્યું નથી"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"પ્લગ ઇન કરેલ, હમણાં ચાર્જ કરી શકતા નથી"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"પૂર્ણ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"વ્યવસ્થાપક દ્વારા નિયંત્રિત"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"વ્યવસ્થાપકે સક્ષમ કરેલ"</string> diff --git a/packages/SettingsLib/res/values-hi/arrays.xml b/packages/SettingsLib/res/values-hi/arrays.xml index e304e908564f..b8a7a7761722 100644 --- a/packages/SettingsLib/res/values-hi/arrays.xml +++ b/packages/SettingsLib/res/values-hi/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"सिस्टम चयन का उपयोग करें (डिफ़ॉल्ट)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"वैकल्पिक कोडेक सक्षम करें"</item> - <item msgid="3304843301758635896">"वैकल्पिक कोडेक अक्षम करें"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"सिस्टम चयन का उपयोग करें (डिफ़ॉल्ट)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"वैकल्पिक कोडेक सक्षम करें"</item> - <item msgid="741805482892725657">"वैकल्पिक कोडेक अक्षम करें"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"सिस्टम चयन का उपयोग करें (डिफ़ॉल्ट)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> @@ -215,7 +199,7 @@ <item msgid="3191973083884253830">"कोई नहीं"</item> <item msgid="9089630089455370183">"Logcat"</item> <item msgid="5397807424362304288">"Systrace (ग्राफ़िक)"</item> - <item msgid="1340692776955662664">"glGetError पर स्टैक कॉल करें"</item> + <item msgid="1340692776955662664">"glGetError पर कॉल स्टैक"</item> </string-array> <string-array name="show_non_rect_clip_entries"> <item msgid="993742912147090253">"बंद"</item> diff --git a/packages/SettingsLib/res/values-hi/strings.xml b/packages/SettingsLib/res/values-hi/strings.xml index b383b2ebdc33..b6cf2312d873 100644 --- a/packages/SettingsLib/res/values-hi/strings.xml +++ b/packages/SettingsLib/res/values-hi/strings.xml @@ -92,13 +92,13 @@ <string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"फ़ाइल स्थानांतरण के लिए उपयोग करें"</string> <string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"इनपुट के लिए उपयोग करें"</string> <string name="bluetooth_pairing_accept" msgid="6163520056536604875">"युग्म बनाएं"</string> - <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"युग्मित करें"</string> + <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"दूसरे डिवाइस से जोड़ें"</string> <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"अभी नहीं"</string> <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"कनेक्ट रहने पर, पेयरिंग आपको अपने संपर्कों और कॉल इतिहास की एक्सेस प्रदान करता है."</string> <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> के साथ युग्मित नहीं हो सका."</string> <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"गलत पिन या पासकी के कारण <xliff:g id="DEVICE_NAME">%1$s</xliff:g> के साथ युग्मित नहीं हो सका."</string> <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> से संचार नहीं कर सकता."</string> - <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> द्वारा युग्मन अस्वीकृत किया गया."</string> + <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ने जोड़ने का अनुरोध नहीं माना."</string> <string name="accessibility_wifi_off" msgid="1166761729660614716">"वाई-फ़ाई बंद है."</string> <string name="accessibility_no_wifi" msgid="8834610636137374508">"वाई-फ़ाई डिसकनेक्ट है."</string> <string name="accessibility_wifi_one_bar" msgid="4869376278894301820">"वाई-फ़ाई का एक बार है."</string> @@ -163,10 +163,10 @@ <string name="choose_profile" msgid="6921016979430278661">"प्रोफ़ाइल चुनें"</string> <string name="category_personal" msgid="1299663247844969448">"व्यक्तिगत"</string> <string name="category_work" msgid="8699184680584175622">"कार्यालय"</string> - <string name="development_settings_title" msgid="215179176067683667">"डेवलपर विकल्प"</string> - <string name="development_settings_enable" msgid="542530994778109538">"डेवलपर विकल्प सक्षम करें"</string> + <string name="development_settings_title" msgid="215179176067683667">"डेवलपर के लिए सेटिंग और टूल"</string> + <string name="development_settings_enable" msgid="542530994778109538">"डेवलपर के लिए सेटिंग और टूल सक्षम करें"</string> <string name="development_settings_summary" msgid="1815795401632854041">"ऐप्स विकास के लिए विकल्प सेट करें"</string> - <string name="development_settings_not_available" msgid="4308569041701535607">"इस उपयोगकर्ता के लिए डेवलपर विकल्प उपलब्ध नहीं हैं"</string> + <string name="development_settings_not_available" msgid="4308569041701535607">"इस उपयोगकर्ता के लिए डेवलपर के लिए सेटिंग और टूल उपलब्ध नहीं हैं"</string> <string name="vpn_settings_not_available" msgid="956841430176985598">"VPN सेटिंग इस उपयोगकर्ता के लिए उपलब्ध नहीं हैं"</string> <string name="tethering_settings_not_available" msgid="6765770438438291012">"टेदरिंग सेटिंग इस उपयोगकर्ता के लिए उपलब्ध नहीं हैं"</string> <string name="apn_settings_not_available" msgid="7873729032165324000">"एक्सेस पॉइंट नाम सेटिंग इस उपयोगकर्ता के लिए उपलब्ध नहीं हैं"</string> @@ -175,8 +175,8 @@ <string name="clear_adb_keys" msgid="4038889221503122743">"USB डीबगिंग प्राधिकरणों को निरस्त करें"</string> <string name="bugreport_in_power" msgid="7923901846375587241">"बग रिपोर्ट शॉर्टकट"</string> <string name="bugreport_in_power_summary" msgid="1778455732762984579">"बग रिपोर्ट लेने के लिए पावर मेनू में कोई बटन दिखाएं"</string> - <string name="keep_screen_on" msgid="1146389631208760344">"सचेत रहें"</string> - <string name="keep_screen_on_summary" msgid="2173114350754293009">"चार्ज होने के दौरान स्क्रीन कभी निष्क्रिय नहीं होगी"</string> + <string name="keep_screen_on" msgid="1146389631208760344">"स्क्रीन को चालू रखें"</string> + <string name="keep_screen_on_summary" msgid="2173114350754293009">"चार्ज करते समय स्क्रीन कभी भी कम बैटरी मोड में नहीं जाएगी"</string> <string name="bt_hci_snoop_log" msgid="3340699311158865670">"ब्लूटूथ HCI स्नूप लॉग सक्षम करें"</string> <string name="bt_hci_snoop_log_summary" msgid="730247028210113851">"फ़ाइल के सभी ब्लूटूथ HCI पैकेट कैप्चर करें"</string> <string name="oem_unlock_enable" msgid="6040763321967327691">"OEM अनलॉक करना"</string> @@ -230,10 +230,10 @@ <string name="adb_keys_warning_message" msgid="5659849457135841625">"आपके द्वारा पूर्व में प्राधिकृत सभी कंप्यूटर से USB डीबगिंग की पहुंच निरस्त करें?"</string> <string name="dev_settings_warning_title" msgid="7244607768088540165">"विकास सेटिंग की अनुमति दें?"</string> <string name="dev_settings_warning_message" msgid="2298337781139097964">"ये सेटिंग केवल विकास संबंधी उपयोग के प्रयोजन से हैं. वे आपके डिवाइस और उस पर स्थित ऐप्स को खराब कर सकती हैं या उनके दुर्व्यवहार का कारण हो सकती हैं."</string> - <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB पर ऐप्स सत्यापित करें"</string> + <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB पर ऐप की पुष्टि करें"</string> <string name="verify_apps_over_usb_summary" msgid="9164096969924529200">"नुकसानदेह व्यवहार के लिए ADB/ADT के द्वारा इंस्टॉल किए गए ऐप्स जांचें."</string> <string name="bluetooth_disable_absolute_volume_summary" msgid="6031284410786545957">"दूरस्थ डिवाइस के साथ वॉल्यूम की समस्याओं जैसे अस्वीकार्य तेज़ वॉल्यूम या नियंत्रण की कमी की स्थिति में ब्लूटूथ पूर्ण वॉल्यूम सुविधा को अक्षम करता है."</string> - <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"फ़ोन की रिंगटोन को ब्लूटूथ हैडसेट पर बजने दें"</string> + <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"फ़ोन की रिंगटोन को ब्लूटूथ हेडसेट पर बजने दें"</string> <string name="enable_terminal_title" msgid="95572094356054120">"स्थानीय टर्मिनल"</string> <string name="enable_terminal_summary" msgid="67667852659359206">"स्थानीय शेल एक्सेस ऑफ़र करने वाला टर्मिनल ऐप्स सक्षम करें"</string> <string name="hdcp_checking_title" msgid="8605478913544273282">"HDCP जांच"</string> @@ -298,7 +298,7 @@ <string name="force_allow_on_external" msgid="3215759785081916381">"ऐप्स को बाहरी मेमोरी पर बाध्य करें"</string> <string name="force_allow_on_external_summary" msgid="3640752408258034689">"इससे कोई भी ऐप्लिकेशन, मेनिफेस्ट मानों को अनदेखा करके, बाहरी मेमोरी पर लिखने योग्य बन जाता है"</string> <string name="force_resizable_activities" msgid="8615764378147824985">"आकार बदले जाने के लिए गतिविधियों को बाध्य करें"</string> - <string name="force_resizable_activities_summary" msgid="6667493494706124459">"सभी गतिविधियों को एकाधिक विंडो के लिए आकार बदलने योग्य बनाएं, चाहे मेनिफेस्ट मान कुछ भी हों."</string> + <string name="force_resizable_activities_summary" msgid="6667493494706124459">"मेनिफेस्ट मान पर ध्यान दिए बिना, सभी गतिविधियों को मल्टी-विंडो (एक से ज़्यादा ऐप, एक साथ) के लिए आकार बदलने लायक बनाएं."</string> <string name="enable_freeform_support" msgid="1461893351278940416">"फ़्रीफ़ॉर्म विंडो सक्षम करें"</string> <string name="enable_freeform_support_summary" msgid="8247310463288834487">"प्रयोगात्मक फ़्रीफ़ॉर्म विंडो का समर्थन सक्षम करें."</string> <string name="local_backup_password_title" msgid="3860471654439418822">"डेस्कटॉप बैकअप पासवर्ड"</string> @@ -317,13 +317,13 @@ <item msgid="8280754435979370728">"आंखों को दिखाई देने वाले प्राकृतिक रंग"</item> <item msgid="5363960654009010371">"डिजिटल सामग्री के लिए ऑप्टिमाइज़़ किए गए रंग"</item> </string-array> - <string name="inactive_apps_title" msgid="1317817863508274533">"निष्क्रिय ऐप्स"</string> - <string name="inactive_app_inactive_summary" msgid="5091363706699855725">"निष्क्रिय. टॉगल करने के लिए टैप करें."</string> + <string name="inactive_apps_title" msgid="1317817863508274533">"बंद एेप"</string> + <string name="inactive_app_inactive_summary" msgid="5091363706699855725">"बंद है. टॉगल करने के लिए टैप करें."</string> <string name="inactive_app_active_summary" msgid="4174921824958516106">"सक्रिय. टॉगल करने पर टैप करें."</string> <string name="runningservices_settings_title" msgid="8097287939865165213">"चल रही सेवाएं"</string> <string name="runningservices_settings_summary" msgid="854608995821032748">"वर्तमान में चल रही सेवाओं को देखें और नियंत्रित करें"</string> - <string name="select_webview_provider_title" msgid="4628592979751918907">"WebView कार्यान्वयन"</string> - <string name="select_webview_provider_dialog_title" msgid="4370551378720004872">"WebView कार्यान्वयन सेट करें"</string> + <string name="select_webview_provider_title" msgid="4628592979751918907">"वेबव्यू लागू करें"</string> + <string name="select_webview_provider_dialog_title" msgid="4370551378720004872">"वेबव्यू सेट करें"</string> <string name="select_webview_provider_toast_text" msgid="5466970498308266359">"यह चयन अब मान्य नहीं है. पुनः प्रयास करें."</string> <string name="convert_to_file_encryption" msgid="3060156730651061223">"फ़ाइल एन्क्रिप्शन में रूपांतरित करें"</string> <string name="convert_to_file_encryption_enabled" msgid="2861258671151428346">"रूपांतरित करें..."</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"चार्ज हो रही है"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"चार्ज किया जा रहा है"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"चार्ज नहीं हो रही है"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"प्लग इन है, अभी चार्ज नहीं हो सकती"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"पूरी"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"व्यवस्थापक द्वारा नियंत्रित"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"व्यवस्थापक ने सक्षम किया है"</string> diff --git a/packages/SettingsLib/res/values-hr/arrays.xml b/packages/SettingsLib/res/values-hr/arrays.xml index 5deba6f32c84..36ba5c167e0d 100644 --- a/packages/SettingsLib/res/values-hr/arrays.xml +++ b/packages/SettingsLib/res/values-hr/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Upotreba odabira sustava (zadano)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Omogućivanje izbornih kodeka"</item> - <item msgid="3304843301758635896">"Onemogućivanje izbornih kodeka"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Upotreba odabira sustava (zadano)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Omogućivanje izbornih kodeka"</item> - <item msgid="741805482892725657">"Onemogućivanje izbornih kodeka"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Upotreba odabira sustava (zadano)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-hr/strings.xml b/packages/SettingsLib/res/values-hr/strings.xml index 0b8661578db7..163da54a966d 100644 --- a/packages/SettingsLib/res/values-hr/strings.xml +++ b/packages/SettingsLib/res/values-hr/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Punjenje"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"punjenje"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ne puni se"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Uključen, trenutačno se ne može puniti"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Puna"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontrolira administrator"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Omogućio administrator"</string> @@ -365,7 +364,7 @@ <string name="disabled" msgid="9206776641295849915">"Onemogućeno"</string> <string name="external_source_trusted" msgid="2707996266575928037">"Dopušteno"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"Nije dopušteno"</string> - <string name="install_other_apps" msgid="6986686991775883017">"Instalacija nepoznatih aplikacija"</string> + <string name="install_other_apps" msgid="6986686991775883017">"Instalacija nepoznatih apl."</string> <string name="home" msgid="3256884684164448244">"Početni zaslon postavki"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"0%"</item> diff --git a/packages/SettingsLib/res/values-hu/arrays.xml b/packages/SettingsLib/res/values-hu/arrays.xml index 81d69d030144..42e46bb88268 100644 --- a/packages/SettingsLib/res/values-hu/arrays.xml +++ b/packages/SettingsLib/res/values-hu/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Rendszerérték (alapértelmezett)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Nem kötelező kodekek engedélyezése"</item> - <item msgid="3304843301758635896">"Nem kötelező kodekek letiltása"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Rendszerérték (alapértelmezett)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Engedélyezi a nem kötelező kodekeket"</item> - <item msgid="741805482892725657">"Letiltja a nem kötelező kodekeket"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Rendszerérték (alapértelmezett)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-hu/strings.xml b/packages/SettingsLib/res/values-hu/strings.xml index b6e55eca0c4d..4be2f173a25a 100644 --- a/packages/SettingsLib/res/values-hu/strings.xml +++ b/packages/SettingsLib/res/values-hu/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Töltés"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"töltés"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nem tölt"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Csatlakoztatva, jelenleg nem tölt"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Feltöltve"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Rendszergazda által irányítva"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"A rendszergazda bekapcsolta"</string> @@ -365,7 +364,7 @@ <string name="disabled" msgid="9206776641295849915">"Letiltva"</string> <string name="external_source_trusted" msgid="2707996266575928037">"Engedélyezett"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"Nem engedélyezett"</string> - <string name="install_other_apps" msgid="6986686991775883017">"Ismeretlen alkalmazások telepítése"</string> + <string name="install_other_apps" msgid="6986686991775883017">"Új alkalmazások telepítése"</string> <string name="home" msgid="3256884684164448244">"Beállítások kezdőlapja"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"0%"</item> diff --git a/packages/SettingsLib/res/values-hy/arrays.xml b/packages/SettingsLib/res/values-hy/arrays.xml index 22de9389e9ad..a445eac89dce 100644 --- a/packages/SettingsLib/res/values-hy/arrays.xml +++ b/packages/SettingsLib/res/values-hy/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Օգտագործել համակարգի կարգավորումը (կանխադրված)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Միացնել լրացուցիչ կոդեկները"</item> - <item msgid="3304843301758635896">"Անջատել լրացուցիչ կոդեկները"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Օգտագործել համակարգի կարգավորումը (կանխադրված)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Միացնել լրացուցիչ կոդեկները"</item> - <item msgid="741805482892725657">"Անջատել լրացուցիչ կոդեկները"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Օգտագործել համակարգի կարգավորումը (կանխադրված)"</item> <item msgid="8895532488906185219">"44,1 կՀց"</item> diff --git a/packages/SettingsLib/res/values-hy/strings.xml b/packages/SettingsLib/res/values-hy/strings.xml index e44e38707842..cfd276f07434 100644 --- a/packages/SettingsLib/res/values-hy/strings.xml +++ b/packages/SettingsLib/res/values-hy/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Լիցքավորում"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"լիցքավորում"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Չի լիցքավորվում"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Միացված է հոսանքի աղբյուրին, սակայն այս պահին չի կարող լիցքավորվել"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Լիցքավորված"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Վերահսկվում է ադմինիստրատորի կողմից"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Միացված է ադմինիստրատորի կողմից"</string> diff --git a/packages/SettingsLib/res/values-in/arrays.xml b/packages/SettingsLib/res/values-in/arrays.xml index 7f02a6a29fa1..ec1b6c4ff58b 100644 --- a/packages/SettingsLib/res/values-in/arrays.xml +++ b/packages/SettingsLib/res/values-in/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Gunakan Pilihan Sistem (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Aktifkan Codec Opsional"</item> - <item msgid="3304843301758635896">"Nonaktifkan Codec Opsional"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Gunakan Pilihan Sistem (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Aktifkan Codec Opsional"</item> - <item msgid="741805482892725657">"Nonaktifkan Codec Opsional"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Gunakan Pilihan Sistem (Default)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-in/strings.xml b/packages/SettingsLib/res/values-in/strings.xml index 89da94bdbb8f..133572f4a161 100644 --- a/packages/SettingsLib/res/values-in/strings.xml +++ b/packages/SettingsLib/res/values-in/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Mengisi daya"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"mengisi daya baterai"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Tidak mengisi daya"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Tercolok, tidak dapat mengisi baterai sekarang"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Penuh"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Dikontrol oleh admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Diaktifkan oleh admin"</string> diff --git a/packages/SettingsLib/res/values-is/arrays.xml b/packages/SettingsLib/res/values-is/arrays.xml index 7f6141d160e5..3c3aca039413 100644 --- a/packages/SettingsLib/res/values-is/arrays.xml +++ b/packages/SettingsLib/res/values-is/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Nota val kerfisins (sjálfgefið)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Gera valfrjálsa kóðara virka"</item> - <item msgid="3304843301758635896">"Gera valfrjálsa kóðara óvirka"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Nota val kerfisins (sjálfgefið)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Gera valfrjálsa kóðara virka"</item> - <item msgid="741805482892725657">"Gera valfrjálsa kóðara óvirka"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Nota val kerfisins (sjálfgefið)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-is/strings.xml b/packages/SettingsLib/res/values-is/strings.xml index c5bca1c05167..8d73eb22d3d7 100644 --- a/packages/SettingsLib/res/values-is/strings.xml +++ b/packages/SettingsLib/res/values-is/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Í hleðslu"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"í hleðslu"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ekki í hleðslu"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Í sambandi, ekki hægt að hlaða eins og er"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Fullhlaðin"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Stjórnað af kerfisstjóra"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Gert virkt af kerfisstjóra"</string> diff --git a/packages/SettingsLib/res/values-it/arrays.xml b/packages/SettingsLib/res/values-it/arrays.xml index cb6d5f7eaea6..d30befa663cd 100644 --- a/packages/SettingsLib/res/values-it/arrays.xml +++ b/packages/SettingsLib/res/values-it/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Usa selezione di sistema (predefinita)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Attiva codec facoltativi"</item> - <item msgid="3304843301758635896">"Disattiva codec facoltativi"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Usa selezione di sistema (predefinita)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Attiva codec facoltativi"</item> - <item msgid="741805482892725657">"Disattiva codec facoltativi"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Usa selezione di sistema (predefinita)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-it/strings.xml b/packages/SettingsLib/res/values-it/strings.xml index cd6b785e32be..0f01a90f84e1 100644 --- a/packages/SettingsLib/res/values-it/strings.xml +++ b/packages/SettingsLib/res/values-it/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"In carica"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"in carica"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Non in carica"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Collegato alla corrente. Impossibile caricare al momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Carica"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Gestita dall\'amministratore"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Attivata dall\'amministratore"</string> diff --git a/packages/SettingsLib/res/values-iw/arrays.xml b/packages/SettingsLib/res/values-iw/arrays.xml index 917f7108b851..5d7f220cc540 100644 --- a/packages/SettingsLib/res/values-iw/arrays.xml +++ b/packages/SettingsLib/res/values-iw/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"שימוש בבחירת המערכת (ברירת המחדל)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"הפעלה של Codecs אופציונליים"</item> - <item msgid="3304843301758635896">"השבתה של Codecs אופציונליים"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"השתמש בבחירת המערכת (ברירת המחדל)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"הפעלה של Codecs אופציונליים"</item> - <item msgid="741805482892725657">"השבתה של Codecs אופציונליים"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"שימוש בבחירת המערכת (ברירת המחדל)"</item> <item msgid="8895532488906185219">"44.1 קילו-הרץ"</item> diff --git a/packages/SettingsLib/res/values-iw/strings.xml b/packages/SettingsLib/res/values-iw/strings.xml index 3c0bf6bef275..a48b07579339 100644 --- a/packages/SettingsLib/res/values-iw/strings.xml +++ b/packages/SettingsLib/res/values-iw/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"טוען"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"בטעינה"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"לא בטעינה"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"המכשיר מחובר, אבל לא ניתן לטעון עכשיו"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"מלא"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"נמצא בשליטת מנהל מערכת"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"מופעל על ידי מנהל המכשיר"</string> @@ -365,7 +364,7 @@ <string name="disabled" msgid="9206776641295849915">"מושבת"</string> <string name="external_source_trusted" msgid="2707996266575928037">"מורשה"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"לא מורשה"</string> - <string name="install_other_apps" msgid="6986686991775883017">"להתקין גם אם לא מוכר?"</string> + <string name="install_other_apps" msgid="6986686991775883017">"להתקין גם אם לא מוכר לך?"</string> <string name="home" msgid="3256884684164448244">"דף הבית של ההגדרות"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"0%"</item> diff --git a/packages/SettingsLib/res/values-ja/arrays.xml b/packages/SettingsLib/res/values-ja/arrays.xml index 779e2b11dbe8..3bec57059076 100644 --- a/packages/SettingsLib/res/values-ja/arrays.xml +++ b/packages/SettingsLib/res/values-ja/arrays.xml @@ -23,7 +23,7 @@ <string-array name="wifi_status"> <item msgid="1922181315419294640"></item> <item msgid="8934131797783724664">"スキャン中..."</item> - <item msgid="8513729475867537913">"接続中..."</item> + <item msgid="8513729475867537913">"接続処理中..."</item> <item msgid="515055375277271756">"認証中..."</item> <item msgid="1943354004029184381">"IPアドレスを取得中..."</item> <item msgid="4221763391123233270">"接続済み"</item> @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"システムの選択(デフォルト)を使用"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"オプションのコーデックの有効化"</item> - <item msgid="3304843301758635896">"オプションのコーデックの無効化"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"システムの選択(デフォルト)を使用"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"オプションのコーデックを有効にします"</item> - <item msgid="741805482892725657">"オプションのコーデックを無効にします"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"システムの選択(デフォルト)を使用"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ja/strings.xml b/packages/SettingsLib/res/values-ja/strings.xml index 713f796a6a3a..39eef1782f86 100644 --- a/packages/SettingsLib/res/values-ja/strings.xml +++ b/packages/SettingsLib/res/values-ja/strings.xml @@ -52,7 +52,7 @@ <string name="preference_summary_default_combination" msgid="8532964268242666060">"<xliff:g id="STATE">%1$s</xliff:g> / <xliff:g id="DESCRIPTION">%2$s</xliff:g>"</string> <string name="bluetooth_disconnected" msgid="6557104142667339895">"切断"</string> <string name="bluetooth_disconnecting" msgid="8913264760027764974">"切断中..."</string> - <string name="bluetooth_connecting" msgid="8555009514614320497">"接続中..."</string> + <string name="bluetooth_connecting" msgid="8555009514614320497">"接続処理中..."</string> <string name="bluetooth_connected" msgid="6038755206916626419">"接続"</string> <string name="bluetooth_pairing" msgid="1426882272690346242">"ペアとして設定中..."</string> <string name="bluetooth_connected_no_headset" msgid="2866994875046035609">"接続済み(電話を除く)"</string> @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"ゲスト"</string> <string name="unknown" msgid="1592123443519355854">"不明"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"ユーザー: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"一部デフォルトを設定"</string> + <string name="launch_defaults_some" msgid="313159469856372621">"一部デフォルトで設定"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"デフォルトの設定なし"</string> <string name="tts_settings" msgid="8186971894801348327">"テキスト読み上げの設定"</string> <string name="tts_settings_title" msgid="1237820681016639683">"テキスト読み上げの出力"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"充電中"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"充電しています"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"充電していません"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"接続されていますが、現在、充電できません"</string> <!-- String.format failed for translation --> <!-- no translation found for battery_info_status_full (2824614753861462808) --> <skip /> diff --git a/packages/SettingsLib/res/values-ka/arrays.xml b/packages/SettingsLib/res/values-ka/arrays.xml index cf2113b60336..e9cfc61e0848 100644 --- a/packages/SettingsLib/res/values-ka/arrays.xml +++ b/packages/SettingsLib/res/values-ka/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"სისტემის არჩეულის გამოყენება (ნაგულისხმევი)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"არასავალდებულო კოდეკების ჩართვა"</item> - <item msgid="3304843301758635896">"არასავალდებულო კოდეკების გათიშვა"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"სისტემის არჩეულის გამოყენება (ნაგულისხმევი)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"არასავალდებულო კოდეკების ჩართვა"</item> - <item msgid="741805482892725657">"არასავალდებულო კოდეკების გათიშვა"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"სისტემის არჩეულის გამოყენება (ნაგულისხმევი)"</item> <item msgid="8895532488906185219">"44,1 კჰც"</item> diff --git a/packages/SettingsLib/res/values-ka/strings.xml b/packages/SettingsLib/res/values-ka/strings.xml index ff275236e84f..81da023052d4 100644 --- a/packages/SettingsLib/res/values-ka/strings.xml +++ b/packages/SettingsLib/res/values-ka/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"იტენება"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"იტენება"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"არ იტენება"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"მიერთებულია, დატენვა ამჟამად ვერ ხერხდება"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ბატარეა დატენილია"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"იმართება ადმინისტრატორის მიერ"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"ჩართულია ადმინისტრატორის მიერ"</string> diff --git a/packages/SettingsLib/res/values-kk/arrays.xml b/packages/SettingsLib/res/values-kk/arrays.xml index e3481084ab43..c856439eb6a8 100644 --- a/packages/SettingsLib/res/values-kk/arrays.xml +++ b/packages/SettingsLib/res/values-kk/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Жүйені таңдау (әдепкі)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Қосымша кодектерді қосу"</item> - <item msgid="3304843301758635896">"Қосымша кодектерді өшіру"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Жүйені таңдау (әдепкі)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Қосымша кодектерді қосу"</item> - <item msgid="741805482892725657">"Қосымша кодектерді өшіру"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Жүйені таңдау (әдепкі)"</item> <item msgid="8895532488906185219">"44,1 кГц"</item> diff --git a/packages/SettingsLib/res/values-kk/strings.xml b/packages/SettingsLib/res/values-kk/strings.xml index 5c0713914864..8348591addeb 100644 --- a/packages/SettingsLib/res/values-kk/strings.xml +++ b/packages/SettingsLib/res/values-kk/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Зарядталуда"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"зарядталуда"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Зарядталу орындалып жатқан жоқ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Қосылған, зарядталмайды"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Толық"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Әкімші басқарады"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Әкімші қосқан"</string> diff --git a/packages/SettingsLib/res/values-km/arrays.xml b/packages/SettingsLib/res/values-km/arrays.xml index 27e0e5917f26..dcdc63a31a3e 100644 --- a/packages/SettingsLib/res/values-km/arrays.xml +++ b/packages/SettingsLib/res/values-km/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"ប្រើការជ្រើសរើសប្រព័ន្ធ (លំនាំដើម)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"បើកកូឌិកប្រភេទស្រេចចិត្ត"</item> - <item msgid="3304843301758635896">"បិទកូឌិកប្រភេទស្រេចចិត្ត"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"ប្រើការជ្រើសរើសប្រព័ន្ធ (លំនាំដើម)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"បើកកូឌិកប្រភេទស្រេចចិត្ត"</item> - <item msgid="741805482892725657">"បិទកូឌិកប្រភេទស្រេចចិត្ត"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"ប្រើការជ្រើសរើសប្រព័ន្ធ (លំនាំដើម)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-km/strings.xml b/packages/SettingsLib/res/values-km/strings.xml index 45687bfe30aa..7c2dd5fb554b 100644 --- a/packages/SettingsLib/res/values-km/strings.xml +++ b/packages/SettingsLib/res/values-km/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"កំពុងបញ្ចូលថ្ម"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"កំពុងសាកថ្ម"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"មិនកំពុងបញ្ចូលថ្ម"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ដោតសាកថ្មរួចហើយ ប៉ុន្តែសាកថ្មមិនចូលទេឥឡូវនេះ"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ពេញ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"គ្រប់គ្រងដោយអ្នកគ្រប់គ្រង"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"បើកដោយអ្នកគ្រប់គ្រង"</string> diff --git a/packages/SettingsLib/res/values-kn/arrays.xml b/packages/SettingsLib/res/values-kn/arrays.xml index 810aefedb04d..2e4db0b1b951 100644 --- a/packages/SettingsLib/res/values-kn/arrays.xml +++ b/packages/SettingsLib/res/values-kn/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"ಸಿಸ್ಟಂ ಆಯ್ಕೆಯನ್ನು ಬಳಸಿ (ಡಿಫಾಲ್ಟ್)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"ಐಚ್ಛಿಕ ಕೋಡೆಕ್ಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</item> - <item msgid="3304843301758635896">"ಐಚ್ಛಿಕ ಕೋಡೆಕ್ಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"ಸಿಸ್ಟಂ ಆಯ್ಕೆಯನ್ನು ಬಳಸಿ (ಡಿಫಾಲ್ಟ್)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"ಐಚ್ಛಿಕ ಕೋಡೆಕ್ಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</item> - <item msgid="741805482892725657">"ಐಚ್ಛಿಕ ಕೋಡೆಕ್ಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"ಸಿಸ್ಟಂ ಆಯ್ಕೆಯನ್ನು ಬಳಸಿ (ಡಿಫಾಲ್ಟ್)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-kn/strings.xml b/packages/SettingsLib/res/values-kn/strings.xml index 0b39e26cf7df..b42aa20b181f 100644 --- a/packages/SettingsLib/res/values-kn/strings.xml +++ b/packages/SettingsLib/res/values-kn/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ಚಾರ್ಜ್ ಆಗುತ್ತಿದೆ"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ಚಾರ್ಜ್ ಆಗುತ್ತಿದೆ"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ಚಾರ್ಜ್ ಆಗುತ್ತಿಲ್ಲ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ಪ್ಲಗ್ ಇನ್ ಮಾಡಲಾಗಿದೆ, ಇದೀಗ ಚಾರ್ಜ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ಭರ್ತಿ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"ನಿರ್ವಾಹಕರ ಮೂಲಕ ನಿಯಂತ್ರಿಸಲಾಗಿದೆ"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"ನಿರ್ವಾಹಕರು ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಾರೆ"</string> diff --git a/packages/SettingsLib/res/values-ko/arrays.xml b/packages/SettingsLib/res/values-ko/arrays.xml index dbbe89dbeed9..72ef56448541 100644 --- a/packages/SettingsLib/res/values-ko/arrays.xml +++ b/packages/SettingsLib/res/values-ko/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"시스템 설정 사용(기본)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"선택사항 코덱 사용 설정"</item> - <item msgid="3304843301758635896">"선택사항 코덱 사용 중지"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"시스템 설정 사용(기본)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"선택사항 코덱 사용 설정"</item> - <item msgid="741805482892725657">"선택사항 코덱 사용 중지"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"시스템 설정 사용(기본)"</item> <item msgid="8895532488906185219">"44.1kHz"</item> diff --git a/packages/SettingsLib/res/values-ko/strings.xml b/packages/SettingsLib/res/values-ko/strings.xml index 9bd711130759..4fef63e28c64 100644 --- a/packages/SettingsLib/res/values-ko/strings.xml +++ b/packages/SettingsLib/res/values-ko/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"충전 중"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"충전 중"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"충전 안함"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"전원이 연결되었지만 현재 충전할 수 없음"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"충전 완료"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"관리자가 제어"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"관리자가 사용 설정함"</string> diff --git a/packages/SettingsLib/res/values-ky/arrays.xml b/packages/SettingsLib/res/values-ky/arrays.xml index 9c8e28a1e42d..ecaa146bed4d 100644 --- a/packages/SettingsLib/res/values-ky/arrays.xml +++ b/packages/SettingsLib/res/values-ky/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Тутум тандаганды колдонуу (демейки)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Кошумча кодекстер иштетилсин"</item> - <item msgid="3304843301758635896">"Кошумча кодекстер өчүрүлсүн"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Тутум тандаганды колдонуу (демейки)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Кошумча кодекстер иштетилсин"</item> - <item msgid="741805482892725657">"Кошумча кодекстер өчүрүлсүн"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Тутум тандаганды колдонуу (демейки)"</item> <item msgid="8895532488906185219">"44,1 кГц"</item> diff --git a/packages/SettingsLib/res/values-ky/strings.xml b/packages/SettingsLib/res/values-ky/strings.xml index f26ed8c6b6c5..3b17507250a9 100644 --- a/packages/SettingsLib/res/values-ky/strings.xml +++ b/packages/SettingsLib/res/values-ky/strings.xml @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"Конок"</string> <string name="unknown" msgid="1592123443519355854">"Белгисиз"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"Колдонуучу: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"Айрым демейкилер коюлду"</string> + <string name="launch_defaults_some" msgid="313159469856372621">"Айрым демейки параметрлер туураланды"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"Демейкилер коюлган жок"</string> <string name="tts_settings" msgid="8186971894801348327">"Кеп синтезаторунун жөндөөлөрү"</string> <string name="tts_settings_title" msgid="1237820681016639683">"Текстти-оозекилөө"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Кубатталууда"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"кубатталууда"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Кубат алган жок"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Сайылып турат, учурда кубаттоо мүмкүн эмес"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Толук"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Администратор тарабынан көзөмөлдөнөт"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Администратор иштетип койгон"</string> diff --git a/packages/SettingsLib/res/values-lo/arrays.xml b/packages/SettingsLib/res/values-lo/arrays.xml index 63889e03fc9e..302c80302ce7 100644 --- a/packages/SettingsLib/res/values-lo/arrays.xml +++ b/packages/SettingsLib/res/values-lo/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Use System Selection (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"ເປີດໃຊ້ Codecs ແບບເສີມ"</item> - <item msgid="3304843301758635896">"ປິດການໃຊ້ Codecs ແບບເສີມ"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Use System Selection (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"ເປີດໃຊ້ Codecs ແບບເສີມ"</item> - <item msgid="741805482892725657">"ປິດການໃຊ້ Codecs ແບບເສີມ"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Use System Selection (Default)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-lo/strings.xml b/packages/SettingsLib/res/values-lo/strings.xml index 350066471dce..2e254bdc1c36 100644 --- a/packages/SettingsLib/res/values-lo/strings.xml +++ b/packages/SettingsLib/res/values-lo/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ກຳລັງສາກໄຟ"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ກຳລັງສາກໄຟ"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ບໍ່ໄດ້ສາກໄຟ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ສຽບສາຍແລ້ວ, ບໍ່ສາມາດສາກໄດ້ໃນຕອນນີ້"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ເຕັມ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"ຄວບຄຸມໂດຍຜູ້ເບິ່ງແຍງ"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"ຜູ້ເບິ່ງແຍງລະບົບເປີດໃຫ້ໃຊ້ແລ້ວ"</string> diff --git a/packages/SettingsLib/res/values-lt/arrays.xml b/packages/SettingsLib/res/values-lt/arrays.xml index 3c325c17320a..6def306353bc 100644 --- a/packages/SettingsLib/res/values-lt/arrays.xml +++ b/packages/SettingsLib/res/values-lt/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Naudoti sistemos pasirink. (numatytasis)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Įgalinti nebūtinus kodekus"</item> - <item msgid="3304843301758635896">"Išjungti nebūtinus kodekus"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Naudoti sistemos pasirink. (numatytasis)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Įgalinti nebūtinus kodekus"</item> - <item msgid="741805482892725657">"Išjungti nebūtinus kodekus"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Naudoti sistemos pasirink. (numatytasis)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-lt/strings.xml b/packages/SettingsLib/res/values-lt/strings.xml index 889f312c8edf..11500a04551b 100644 --- a/packages/SettingsLib/res/values-lt/strings.xml +++ b/packages/SettingsLib/res/values-lt/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Kraunasi..."</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"įkraunama"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nekraunama"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Įjungta į maitinimo lizdą, bet šiuo metu įkrauti neįmanoma"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Visiškai įkrautas"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Valdo administratorius"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Įgalino administratorius"</string> diff --git a/packages/SettingsLib/res/values-lv/arrays.xml b/packages/SettingsLib/res/values-lv/arrays.xml index 2c69c7e61f56..00b1e6ea1523 100644 --- a/packages/SettingsLib/res/values-lv/arrays.xml +++ b/packages/SettingsLib/res/values-lv/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Sistēmas atlases izmantošana (nokl.)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Iespējot neobligātos kodekus"</item> - <item msgid="3304843301758635896">"Atspējot neobligātos kodekus"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Sistēmas atlases izmantošana (nokl.)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Iespējot neobligātos kodekus"</item> - <item msgid="741805482892725657">"Atspējot neobligātos kodekus"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Sistēmas atlases izmantošana (nokl.)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-lv/strings.xml b/packages/SettingsLib/res/values-lv/strings.xml index 512ebaaba0ef..a787740d8043 100644 --- a/packages/SettingsLib/res/values-lv/strings.xml +++ b/packages/SettingsLib/res/values-lv/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Uzlāde"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"notiek uzlāde"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nenotiek uzlāde"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Pievienots, taču pašlaik nevar veikt uzlādi"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Pilns"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontrolē administrators"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Iespējoja administrators"</string> diff --git a/packages/SettingsLib/res/values-mk/arrays.xml b/packages/SettingsLib/res/values-mk/arrays.xml index 2da43f0925b8..680184edc7a0 100644 --- a/packages/SettingsLib/res/values-mk/arrays.xml +++ b/packages/SettingsLib/res/values-mk/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Користи избор на системот (стандардно)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Овозможување на „Кодеци по избор“"</item> - <item msgid="3304843301758635896">"Оневозможување на „Кодеци по избор“"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Користи избор на системот (стандардно)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Овозможи ја „Кодеци по избор“"</item> - <item msgid="741805482892725657">"Оневозможи ја „Кодеци по избор“"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Користи избор на системот (стандардно)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-mk/strings.xml b/packages/SettingsLib/res/values-mk/strings.xml index 0dbaae2fea0d..fcd8479ab245 100644 --- a/packages/SettingsLib/res/values-mk/strings.xml +++ b/packages/SettingsLib/res/values-mk/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Се полни"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"се полни"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Не се полни"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Приклучен е, но батеријата не може да се полни во моментов"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Полна"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Контролирано од администраторот"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Овозможено од администраторот"</string> diff --git a/packages/SettingsLib/res/values-ml/arrays.xml b/packages/SettingsLib/res/values-ml/arrays.xml index 57382f1a0c00..624edfeae649 100644 --- a/packages/SettingsLib/res/values-ml/arrays.xml +++ b/packages/SettingsLib/res/values-ml/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"സിസ്റ്റം സെലക്ഷൻ ഉപയോഗിക്കൂ (ഡിഫോൾട്ട്)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"ഓപ്ഷണൽ കോഡെകുകൾ പ്രവർത്തനക്ഷമമാക്കുക"</item> - <item msgid="3304843301758635896">"ഓപ്ഷണൽ കോഡെകുകൾ പ്രവർത്തനരഹിതമാക്കുക"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"സിസ്റ്റം സെലക്ഷൻ ഉപയോഗിക്കൂ (ഡിഫോൾട്ട്)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"ഓപ്ഷണൽ കോഡെകുകൾ പ്രവർത്തനക്ഷമമാക്കുക"</item> - <item msgid="741805482892725657">"ഓപ്ഷണൽ കോഡെകുകൾ പ്രവർത്തനരഹിതമാക്കുക"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"സിസ്റ്റം സെലക്ഷൻ ഉപയോഗിക്കൂ (ഡിഫോൾട്ട്)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ml/strings.xml b/packages/SettingsLib/res/values-ml/strings.xml index 84c1279dbdcb..a5de2f5d25d8 100644 --- a/packages/SettingsLib/res/values-ml/strings.xml +++ b/packages/SettingsLib/res/values-ml/strings.xml @@ -124,7 +124,7 @@ <string name="tts_settings" msgid="8186971894801348327">"ടെക്സ്റ്റ്-ടു-സ്പീച്ച് ക്രമീകരണങ്ങൾ"</string> <string name="tts_settings_title" msgid="1237820681016639683">"ടെക്സ്റ്റ്-ടു-സ്പീച്ച് ഔട്ട്പുട്ട്"</string> <string name="tts_default_rate_title" msgid="6030550998379310088">"വായന നിരക്ക്"</string> - <string name="tts_default_rate_summary" msgid="4061815292287182801">"വാചകം പറയുന്ന വേഗത"</string> + <string name="tts_default_rate_summary" msgid="4061815292287182801">"ടെക്സ്റ്റ് ചെയ്യൽ പറയുമ്പോഴുടെക്കുന്ന വേഗത"</string> <string name="tts_default_pitch_title" msgid="6135942113172488671">"പിച്ച്"</string> <string name="tts_default_pitch_summary" msgid="1944885882882650009">"സിന്തസൈസ് ചെയ്ത സംസാരത്തിന്റെ സ്വരഭേദത്തെ ബാധിക്കുന്നു"</string> <string name="tts_default_lang_title" msgid="8018087612299820556">"ഭാഷ"</string> @@ -261,7 +261,7 @@ <string name="show_touches_summary" msgid="6101183132903926324">"ടാപ്പുകൾക്ക് ദൃശ്യ ഫീഡ്ബാക്ക് കാണിക്കുക"</string> <string name="show_screen_updates" msgid="5470814345876056420">"സർഫേസ് അപ്ഡേറ്റ് കാണിക്കൂ"</string> <string name="show_screen_updates_summary" msgid="2569622766672785529">"മുഴുവൻ വിൻഡോ സർഫേസുകളും അപ്ഡേറ്റുചെയ്തുകഴിയുമ്പോൾ അവ ഫ്ലാഷുചെയ്യുക"</string> - <string name="show_hw_screen_updates" msgid="5036904558145941590">"GPU കാഴ്ച അപ്ഡേറ്റ് കാണിക്കൂ"</string> + <string name="show_hw_screen_updates" msgid="5036904558145941590">"GPU കാഴ്ചയുടെ അപ്ഡേറ്റുകൾ കാണിക്കൂ"</string> <string name="show_hw_screen_updates_summary" msgid="1115593565980196197">"GPU ഉപയോഗിച്ച് വലിക്കുമ്പോൾ വിൻഡോകൾക്കുള്ളിൽ കാഴ്ചകൾ ഫ്ലാഷുചെയ്യുക"</string> <string name="show_hw_layers_updates" msgid="5645728765605699821">"ഹാർഡ്വെയർ ലേയർ അപ്ഡേറ്റ് കാണിക്കൂ"</string> <string name="show_hw_layers_updates_summary" msgid="5296917233236661465">"ഹാർഡ്വെയർ ലേയറുകളുടെ അപ്ഡേറ്റുകൾ പൂർത്തിയാകുമ്പോൾ അവ പച്ച നിറത്തിൽ പ്രകാശിപ്പിക്കുക"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ചാർജ്ജുചെയ്യുന്നു"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ചാർജ് ചെയ്യുന്നു"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ചാർജ്ജുചെയ്യുന്നില്ല"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"പ്ലഗ് ഇൻ ചെയ്തു, ഇപ്പോൾ ചാർജ് ചെയ്യാനാവില്ല"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"നിറഞ്ഞു"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"അഡ്മിൻ നിയന്ത്രിക്കുന്നത്"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"അഡ്മിൻ പ്രവർത്തനക്ഷമമാക്കി"</string> diff --git a/packages/SettingsLib/res/values-mn/arrays.xml b/packages/SettingsLib/res/values-mn/arrays.xml index d6a0772d36db..66806a79e869 100644 --- a/packages/SettingsLib/res/values-mn/arrays.xml +++ b/packages/SettingsLib/res/values-mn/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Системийн сонголтыг ашиглах (Өгөгдмөл)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Нэмэлт кодлогчийг идэвхжүүлэх"</item> - <item msgid="3304843301758635896">"Нэмэлт кодлогчийг идэвхгүй болгох"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Системийн сонголтыг ашиглах (Өгөгдмөл)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Нэмэлт кодлогчийг идэвхжүүлэх"</item> - <item msgid="741805482892725657">"Нэмэлт кодлогчийг идэвхгүй болгох"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Системийн сонголтыг ашиглах (Өгөгдмөл)"</item> <item msgid="8895532488906185219">"44.1 кГц"</item> diff --git a/packages/SettingsLib/res/values-mn/strings.xml b/packages/SettingsLib/res/values-mn/strings.xml index 8f4b695bf83d..f018e0e4f58e 100644 --- a/packages/SettingsLib/res/values-mn/strings.xml +++ b/packages/SettingsLib/res/values-mn/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Цэнэглэж байна"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"цэнэглэж байна"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Цэнэглэхгүй байна"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Залгаастай тул одоо цэнэглэх боломжгүй"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Дүүрэн"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Админ удирдсан"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Админ идэвхжүүлсэн"</string> diff --git a/packages/SettingsLib/res/values-mr/arrays.xml b/packages/SettingsLib/res/values-mr/arrays.xml index 5c7b15fa61fa..5b4d18419375 100644 --- a/packages/SettingsLib/res/values-mr/arrays.xml +++ b/packages/SettingsLib/res/values-mr/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"प्रणाली निवड वापरा (डीफॉल्ट)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"पर्यायी कोडेक सक्षम करा"</item> - <item msgid="3304843301758635896">"पर्यायी कोडेक अक्षम करा"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"प्रणाली निवड वापरा (डीफॉल्ट)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"पर्यायी कोडेक सक्षम करा"</item> - <item msgid="741805482892725657">"पर्यायी कोडेक अक्षम करा"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"प्रणाली निवड वापरा (डीफॉल्ट)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> @@ -104,15 +88,15 @@ </string-array> <string-array name="bluetooth_a2dp_codec_bits_per_sample_titles"> <item msgid="2684127272582591429">"प्रणाली निवड वापरा (डीफॉल्ट)"</item> - <item msgid="5618929009984956469">"16 बिट/नमुना"</item> - <item msgid="3412640499234627248">"24 बिट/नमुना"</item> - <item msgid="121583001492929387">"32 बिट/नमुना"</item> + <item msgid="5618929009984956469">"16 बिट/पॅटर्न"</item> + <item msgid="3412640499234627248">"24 बिट/पॅटर्न"</item> + <item msgid="121583001492929387">"32 बिट/पॅटर्न"</item> </string-array> <string-array name="bluetooth_a2dp_codec_bits_per_sample_summaries"> <item msgid="1081159789834584363">"प्रणाली निवड वापरा (डीफॉल्ट)"</item> - <item msgid="4726688794884191540">"16 बिट/नमुना"</item> - <item msgid="305344756485516870">"24 बिट/नमुना"</item> - <item msgid="244568657919675099">"32 बिट/नमुना"</item> + <item msgid="4726688794884191540">"16 बिट/पॅटर्न"</item> + <item msgid="305344756485516870">"24 बिट/पॅटर्न"</item> + <item msgid="244568657919675099">"32 बिट/पॅटर्न"</item> </string-array> <string-array name="bluetooth_a2dp_codec_channel_mode_titles"> <item msgid="5226878858503393706">"प्रणाली निवड वापरा (डीफॉल्ट)"</item> diff --git a/packages/SettingsLib/res/values-mr/strings.xml b/packages/SettingsLib/res/values-mr/strings.xml index 4f7cff752c6b..7819190ab791 100644 --- a/packages/SettingsLib/res/values-mr/strings.xml +++ b/packages/SettingsLib/res/values-mr/strings.xml @@ -66,7 +66,7 @@ <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"मीडिया ऑडिओ"</string> <string name="bluetooth_profile_headset" msgid="7815495680863246034">"फोन कॉल"</string> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"फाइल स्थानांतरण"</string> - <string name="bluetooth_profile_hid" msgid="3680729023366986480">"इनपुट डिव्हाइस"</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> @@ -91,14 +91,14 @@ <string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"फोन ऑडिओसाठी वापरा"</string> <string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"फाईल स्थानांतरणासाठी वापरा"</string> <string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"इनपुट साठी वापरा"</string> - <string name="bluetooth_pairing_accept" msgid="6163520056536604875">"जोडा"</string> - <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"जोडा"</string> + <string name="bluetooth_pairing_accept" msgid="6163520056536604875">"पेअर करा"</string> + <string name="bluetooth_pairing_accept_all_caps" msgid="6061699265220789149">"पेअर करा"</string> <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"रद्द करा"</string> - <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"कनेक्ट केल्यावर जोडणी आपले संपर्क आणि कॉल इतिहास यावरील प्रवेशास मंजूरी देते."</string> + <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"कनेक्ट केल्यावर पेअरींग तुमचे संपर्क आणि कॉल इतिहास यामध्ये अॅक्सेस देते."</string> <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> शी जोडू शकलो नाही."</string> <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"अयोग्य पिन किंवा पासकीमुळे <xliff:g id="DEVICE_NAME">%1$s</xliff:g> सह जोडू शकलो नाही."</string> <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> शी संप्रेषण करू शकत नाही."</string> - <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> द्वारे जोडणी नाकारली."</string> + <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> द्वारे पेअरींग नाकारले."</string> <string name="accessibility_wifi_off" msgid="1166761729660614716">"वाय फाय बंद."</string> <string name="accessibility_no_wifi" msgid="8834610636137374508">"वाय फाय डिस्कनेक्ट झाले."</string> <string name="accessibility_wifi_one_bar" msgid="4869376278894301820">"वाय फाय एक बार."</string> @@ -163,13 +163,13 @@ <string name="choose_profile" msgid="6921016979430278661">"प्रोफाइल निवडा"</string> <string name="category_personal" msgid="1299663247844969448">"वैयक्तिक"</string> <string name="category_work" msgid="8699184680584175622">"कार्य"</string> - <string name="development_settings_title" msgid="215179176067683667">"विकासक पर्याय"</string> - <string name="development_settings_enable" msgid="542530994778109538">"विकासक पर्याय सक्षम करा"</string> + <string name="development_settings_title" msgid="215179176067683667">"डेव्हलपर पर्याय"</string> + <string name="development_settings_enable" msgid="542530994778109538">"डेव्हलपर पर्याय सक्षम करा"</string> <string name="development_settings_summary" msgid="1815795401632854041">"अॅप विकासासाठी पर्याय सेट करा"</string> - <string name="development_settings_not_available" msgid="4308569041701535607">"या वापरकर्त्यासाठी विकासक पर्याय उपलब्ध नाहीत"</string> + <string name="development_settings_not_available" msgid="4308569041701535607">"या वापरकर्त्यासाठी डेव्हलपर पर्याय उपलब्ध नाहीत"</string> <string name="vpn_settings_not_available" msgid="956841430176985598">"या वापरकर्त्यासाठी VPN सेटिंग्ज उपलब्ध नाहीत"</string> <string name="tethering_settings_not_available" msgid="6765770438438291012">"या वापरकर्त्यासाठी टिथरिंग सेटिंग्ज उपलब्ध नाहीत"</string> - <string name="apn_settings_not_available" msgid="7873729032165324000">"या वापरकर्त्यासाठी प्रवेश बिंदू नाव सेटिंग्ज उपलब्ध नाहीत"</string> + <string name="apn_settings_not_available" msgid="7873729032165324000">"या वापरकर्त्यासाठी अॅक्सेस बिंदू नाव सेटिंग्ज उपलब्ध नाहीत"</string> <string name="enable_adb" msgid="7982306934419797485">"USB डीबग करणे"</string> <string name="enable_adb_summary" msgid="4881186971746056635">"USB कनेक्ट केलेले असताना डीबग मोड"</string> <string name="clear_adb_keys" msgid="4038889221503122743">"USB डीबग करणारी प्रमाणिकरणे पुनर्प्राप्त करा"</string> @@ -182,12 +182,12 @@ <string name="oem_unlock_enable" msgid="6040763321967327691">"OEM अनलॉक करणे"</string> <string name="oem_unlock_enable_summary" msgid="4720281828891618376">"बूटलोडर अनलॉक करण्यासाठी अनुमती द्या"</string> <string name="confirm_enable_oem_unlock_title" msgid="4802157344812385674">"OEM अनलॉक करण्यास अनुमती द्यायची?"</string> - <string name="confirm_enable_oem_unlock_text" msgid="5517144575601647022">"चेतावणी: ही सेटिंग चालू असताना या डिव्हाइसवर डिव्हाइस संरक्षण वैशिष्ट्ये कार्य करणार नाहीत."</string> + <string name="confirm_enable_oem_unlock_text" msgid="5517144575601647022">"चेतावणी: हे सेटिंग चालू असताना या डीव्हाइस वर डीव्हाइस संरक्षण वैशिष्ट्ये काम करणार नाहीत."</string> <string name="mock_location_app" msgid="7966220972812881854">"बनावट स्थान अॅप निवडा"</string> <string name="mock_location_app_not_set" msgid="809543285495344223">"कोणताही बनावट स्थान अॅप सेट केला नाही"</string> <string name="mock_location_app_set" msgid="8966420655295102685">"बनावट स्थान अॅप: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="debug_networking_category" msgid="7044075693643009662">"नेटवर्किंग"</string> - <string name="wifi_display_certification" msgid="8611569543791307533">"वायरलेस प्रदर्शन प्रमाणीकरण"</string> + <string name="wifi_display_certification" msgid="8611569543791307533">"वायरलेस डिस्प्ले प्रमाणीकरण"</string> <string name="wifi_verbose_logging" msgid="4203729756047242344">"वाय-फाय शब्दपाल्हाळ लॉगिंग सक्षम करा"</string> <string name="wifi_aggressive_handover" msgid="5309131983693661320">"मोबाइलकडे सोपवण्यासाठी आक्रमक वाय-फाय"</string> <string name="wifi_allow_scan_with_traffic" msgid="3601853081178265786">"वाय-फाय रोम स्कॅनला नेहमी अनुमती द्या"</string> @@ -199,16 +199,16 @@ <string name="bluetooth_select_avrcp_version_dialog_title" msgid="7277329668298705702">"ब्लूटुथ AVRCP आवृत्ती निवडा"</string> <string name="bluetooth_select_a2dp_codec_type" msgid="90597356942154882">"ब्लूटूथ ऑडिओ कोडेक"</string> <string name="bluetooth_select_a2dp_codec_type_dialog_title" msgid="4558347981670553665">"ब्लूटुथ ऑडिओ कोडेक निवडा"</string> - <string name="bluetooth_select_a2dp_codec_sample_rate" msgid="4788245703824623062">"ब्लूटूथ ऑडिओ नमुना दर"</string> - <string name="bluetooth_select_a2dp_codec_sample_rate_dialog_title" msgid="5628790207448471613">"ब्लूटुथ ऑडिओ कोडेक निवडा:\nनमुना दर"</string> - <string name="bluetooth_select_a2dp_codec_bits_per_sample" msgid="2099645202720164141">"प्रति नमुना ब्लूटुथ ऑडिओ बिट"</string> - <string name="bluetooth_select_a2dp_codec_bits_per_sample_dialog_title" msgid="4546131401358681321">"ब्लूटुथ ऑडिओ कोडेक निवडा:\nबिट प्रति नमुना"</string> + <string name="bluetooth_select_a2dp_codec_sample_rate" msgid="4788245703824623062">"ब्लूटूथ ऑडिओ पॅटर्न दर"</string> + <string name="bluetooth_select_a2dp_codec_sample_rate_dialog_title" msgid="5628790207448471613">"ब्लूटूध ऑडिओ कोडेक निवडा:\nपॅटर्न दर"</string> + <string name="bluetooth_select_a2dp_codec_bits_per_sample" msgid="2099645202720164141">"प्रति पॅटर्न ब्लूटूध ऑडिओ बिट"</string> + <string name="bluetooth_select_a2dp_codec_bits_per_sample_dialog_title" msgid="4546131401358681321">"ब्लूटूध ऑडिओ कोडेक निवडा:\nबिट प्रति पॅटर्न"</string> <string name="bluetooth_select_a2dp_codec_channel_mode" msgid="884855779449390540">"ब्लूटूथ ऑडिओ चॅनेल मोड"</string> <string name="bluetooth_select_a2dp_codec_channel_mode_dialog_title" msgid="9133545781346216071">"ब्लूटुथ ऑडिओ कोडेक निवडा:\nचॅनेल मोड"</string> <string name="bluetooth_select_a2dp_codec_ldac_playback_quality" msgid="3619694372407843405">"ब्लूटुथ ऑडिओ LDAC कोडेक: प्लेबॅक गुणवत्ता"</string> <string name="bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title" msgid="3181967377574368400">"ब्लूटुथ ऑडिओ LDAC कोडेक निवडा:\nप्लेबॅक गुणवत्ता"</string> <string name="bluetooth_select_a2dp_codec_streaming_label" msgid="5347862512596240506">"धारावाहिक: <xliff:g id="STREAMING_PARAMETER">%1$s</xliff:g>"</string> - <string name="wifi_display_certification_summary" msgid="1155182309166746973">"वायरलेस प्रदर्शन प्रमाणिकरणासाठी पर्याय दर्शवा"</string> + <string name="wifi_display_certification_summary" msgid="1155182309166746973">"वायरलेस डिस्प्ले प्रमाणिकरणाचे पर्याय दाखवा"</string> <string name="wifi_verbose_logging_summary" msgid="6615071616111731958">"वाय-फाय लॉगिंग स्तर वाढवा, वाय-फाय निवडकामध्ये प्रति SSID RSSI दर्शवा"</string> <string name="wifi_aggressive_handover_summary" msgid="7266329646559808827">"सक्षम केले असताना, वाय-फाय सिग्नल कमी असताना, मोबाइलकडे डेटा कनेक्शन सोपवण्यासाठी वाय-फाय अधिक आक्रमक असेल."</string> <string name="wifi_allow_scan_with_traffic_summary" msgid="2575101424972686310">"वाय-फाय रोम स्कॅनला इंटरफेसवर उपस्थित असलेल्या रहदारी डेटाच्या प्रमाणावर आधारित अनुमती द्या/अनुमती देऊ नका"</string> @@ -223,14 +223,14 @@ <string name="allow_mock_location" msgid="2787962564578664888">"बनावट स्थानांना अनुमती द्या"</string> <string name="allow_mock_location_summary" msgid="317615105156345626">"बनावट स्थानांना अनुमती द्या"</string> <string name="debug_view_attributes" msgid="6485448367803310384">"दृश्य विशेषता तपासणी सक्षम करा"</string> - <string name="mobile_data_always_on_summary" msgid="8149773901431697910">"जरी वाय-फाय सक्रिय असले तरीही, नेहमी मोबाईल डेटा सक्रिय ठेवा (जलद नेटवर्क स्विच करण्यासाठी)."</string> + <string name="mobile_data_always_on_summary" msgid="8149773901431697910">"जरी वाय-फाय सक्रिय असले तरीही, मोबाईल डेटा नेहमी सक्रिय ठेवा (नेटवर्क जलदरीत्या स्विच करण्यासाठी)."</string> <string name="tethering_hardware_offload_summary" msgid="7726082075333346982">"उपलब्ध असल्यास टेदरिंग हार्डवेअर प्रवेग वापरा"</string> <string name="adb_warning_title" msgid="6234463310896563253">"USB डीबग करण्यास अनुमती द्यायची?"</string> - <string name="adb_warning_message" msgid="7316799925425402244">"USB डीबग करण्याचा हेतू फक्त विकासाच्या उद्देशांसाठी आहे. याचा वापर आपला संगणक आणि आपले डिव्हाइस यांच्या दरम्यान डेटा कॉपी करण्यासाठी करा, सूचनेशिवाय आपल्या डिव्हाइसवर अॅप्स स्थापित करा आणि लॉग डेटा वाचा."</string> + <string name="adb_warning_message" msgid="7316799925425402244">"USB डीबग करण्याचा हेतू फक्त विकास उद्देशांसाठी आहे. याचा वापर तुमचा कॉंप्युटर आणि तुमचे डीव्हाइस यांच्या दरम्यान डेटा कॉपी करण्यासाठी करा, सूचनेशिवाय तुमच्या डीव्हाइस वर अॅप्स इंस्टॉल करा आणि लॉग डेटा वाचा."</string> <string name="adb_keys_warning_message" msgid="5659849457135841625">"आपण पूर्वी प्राधिकृत केलेल्या सर्व संगणकांवरुन USB डीबग करण्यासाठी प्रवेश पुनर्प्राप्त करायचा?"</string> <string name="dev_settings_warning_title" msgid="7244607768088540165">"विकास सेटिंग्जला अनुमती द्यायची?"</string> - <string name="dev_settings_warning_message" msgid="2298337781139097964">"या सेटिंग्जचा हेतू फक्त विकास करण्याच्या वापरासाठी आहे. त्यामुळे आपले डिव्हाइस आणि त्यावरील अनुप्रयोग विघटित होऊ शकतात किंवा गैरवर्तन करू शकतात."</string> - <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB वरील अॅप्स सत्यापित करा"</string> + <string name="dev_settings_warning_message" msgid="2298337781139097964">"या सेटिंग्जचा हेतू फक्त विकास वापरासाठी आहे. त्यामुळे तुमचे डीव्हाइस आणि त्यावरील अनुप्रयोग ब्रेक होऊ शकतात किंवा नेहमीपेक्षा वेगळे वर्तन करू शकतात."</string> + <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB वर अॅप्स पडताळून पाहा"</string> <string name="verify_apps_over_usb_summary" msgid="9164096969924529200">"हानिकारक वर्तनासाठी ADB/ADT द्वारे स्थापित अॅप्स तपासा."</string> <string name="bluetooth_disable_absolute_volume_summary" msgid="6031284410786545957">"दूरस्थ डिव्हाइसेसमध्ये सहन न होणारा मोठा आवाज किंवा नियंत्रणचा अभाव यासारखी आवाजाची समस्या असल्यास ब्लूटुथ संपूर्ण आवाज वैशिष्ट्य अक्षम करते."</string> <string name="bluetooth_enable_inband_ringing_summary" msgid="2787866074741784975">"फोनवरील रिंगटोन ब्लूटुथ हेडसेटवर वाजू द्या"</string> @@ -288,8 +288,8 @@ <string name="animator_duration_scale_title" msgid="3406722410819934083">"अॅनिमेटर कालावधी स्केल"</string> <string name="overlay_display_devices_title" msgid="5364176287998398539">"दुय्यम प्रदर्शनांची बतावणी करा"</string> <string name="debug_applications_category" msgid="4206913653849771549">"अॅप्स"</string> - <string name="immediately_destroy_activities" msgid="1579659389568133959">"क्रियाकलाप ठेवू नका"</string> - <string name="immediately_destroy_activities_summary" msgid="3592221124808773368">"वापरकर्त्याने प्रत्येक क्रियाकलाप सोडताच तो नष्ट करा"</string> + <string name="immediately_destroy_activities" msgid="1579659389568133959">"अॅक्टिव्हिटी ठेवू नका"</string> + <string name="immediately_destroy_activities_summary" msgid="3592221124808773368">"वापरकर्त्याने प्रत्येक अॅक्टिव्हिटी सोडताच ती नष्ट करा"</string> <string name="app_process_limit_title" msgid="4280600650253107163">"पार्श्वभूमी प्रक्रिया मर्यादा"</string> <string name="show_all_anrs" msgid="28462979638729082">"सर्व ANR दर्शवा"</string> <string name="show_all_anrs_summary" msgid="641908614413544127">"पार्श्वभूमी अॅप्ससाठी अॅप प्रतिसाद देत नाही संवाद दर्शवा"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"चार्ज होत आहे"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"चार्ज होत आहे"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"चार्ज होत नाही"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"प्लग इन केलेले आहे, आता चार्ज करू शकत नाही"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"पूर्ण"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"प्रशासकाने नियंत्रित केलेले"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"प्रशासकाने सक्षम केलेले"</string> @@ -366,7 +365,7 @@ <string name="external_source_trusted" msgid="2707996266575928037">"अनुमती आहे"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"अनुमती नाही"</string> <string name="install_other_apps" msgid="6986686991775883017">"अज्ञात अॅप्स स्थापित करा"</string> - <string name="home" msgid="3256884684164448244">"सेटिंग्ज मुख्यपृष्ठ"</string> + <string name="home" msgid="3256884684164448244">"सेटिंग्ज होम"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"0%"</item> <item msgid="8934126114226089439">"50%"</item> diff --git a/packages/SettingsLib/res/values-ms/arrays.xml b/packages/SettingsLib/res/values-ms/arrays.xml index bab4642fc1a4..d6fd2ec2a85f 100644 --- a/packages/SettingsLib/res/values-ms/arrays.xml +++ b/packages/SettingsLib/res/values-ms/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Gunakan Pilihan Sistem (Lalai)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Dayakan Codec Pilihan"</item> - <item msgid="3304843301758635896">"Lumpuhkan Codec Pilihan"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Gunakan Pilihan Sistem (Lalai)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Dayakan Codec Pilihan"</item> - <item msgid="741805482892725657">"Lumpuhkan Codec Pilihan"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Gunakan Pilihan Sistem (Lalai)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ms/strings.xml b/packages/SettingsLib/res/values-ms/strings.xml index eef4dd5d7688..8fe4ae13f5ca 100644 --- a/packages/SettingsLib/res/values-ms/strings.xml +++ b/packages/SettingsLib/res/values-ms/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Mengecas"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"mengecas"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Tidak mengecas"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Dipalamkan, tidak boleh mengecas sekarang"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Penuh"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Dikawal oleh pentadbir"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Didayakan oleh pentadbir"</string> diff --git a/packages/SettingsLib/res/values-my/arrays.xml b/packages/SettingsLib/res/values-my/arrays.xml index 97a9c53a70ff..732599e03cf1 100644 --- a/packages/SettingsLib/res/values-my/arrays.xml +++ b/packages/SettingsLib/res/values-my/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"စနစ်ရွေးချယ်မှုကို အသုံးပြုပါ (မူရင်း)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"စိတ်ကြိုက်ထည့်သွင်းနိုင်သော ကိုးဒက်ခ်များကို ဖွင့်ပါ"</item> - <item msgid="3304843301758635896">"စိတ်ကြိုက်ထည့်သွင်းနိုင်သော ကိုးဒက်ခ်များကို ပိတ်ပါ"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"စနစ်ရွေးချယ်မှုကို အသုံးပြုပါ (မူရင်း)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"စိတ်ကြိုက်ထည့်သွင်းနိုင်သော ကိုးဒက်ခ်များကို ဖွင့်ပါ"</item> - <item msgid="741805482892725657">"စိတ်ကြိုက်ထည့်သွင်းနိုင်သော ကိုးဒက်ခ်များကို ပိတ်ပါ"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"စနစ်ရွေးချယ်မှုကို အသုံးပြုပါ (မူရင်း)"</item> <item msgid="8895532488906185219">"၄၄.၁ kHz"</item> diff --git a/packages/SettingsLib/res/values-my/strings.xml b/packages/SettingsLib/res/values-my/strings.xml index 6aad3aabf651..ea2bb82d3057 100644 --- a/packages/SettingsLib/res/values-my/strings.xml +++ b/packages/SettingsLib/res/values-my/strings.xml @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"ဧည့်သည်"</string> <string name="unknown" msgid="1592123443519355854">"အကြောင်းအရာ မသိရှိ"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"သုံးစွဲသူ၊ <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"တချို့အားပုံမှတ်အဖြစ်သတ်မှတ်"</string> + <string name="launch_defaults_some" msgid="313159469856372621">"မူရင်းအချို့ သတ်မှတ်ပြီး"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"ပုံမှန်သတ်မှတ်ထားခြင်းမရှိ"</string> <string name="tts_settings" msgid="8186971894801348327">"စာသားမှစကားပြောပြောင်း ဆက်တင်များ"</string> <string name="tts_settings_title" msgid="1237820681016639683">"စာသားမှ အသံထွက်စေခြင်း"</string> @@ -356,16 +356,15 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"အားသွင်းနေပါသည်"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"အားသွင်းနေပါသည်"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"အားသွင်းမနေပါ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ပလပ်ထိုးထားသောကြောင့် ယခုအားသွင်း၍ မရသေးပါ"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"အပြည့်"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"စီမံခန့်ခွဲသူမှ ထိန်းချုပ်ပါသည်"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"စီမံခန့်ခွဲသူက ဖွင့်ထားသည်"</string> <string name="disabled_by_admin" msgid="8505398946020816620">"စီမံခန့်ခွဲသူက ပိတ်ထားသည်"</string> <string name="disabled" msgid="9206776641295849915">"ပိတ်ထားပြီး"</string> <string name="external_source_trusted" msgid="2707996266575928037">"ခွင့်ပြုထားသည်"</string> - <string name="external_source_untrusted" msgid="2677442511837596726">"ခွင့်ပြုမထားပါ"</string> - <string name="install_other_apps" msgid="6986686991775883017">"အမျိုးအမည်မသိအက်ပ် ထည့်သွင်းနိုင်ခြင်း"</string> + <string name="external_source_untrusted" msgid="2677442511837596726">"ခွင့်မပြုပါ"</string> + <string name="install_other_apps" msgid="6986686991775883017">"အမည်မသိအက်ပ်"</string> <string name="home" msgid="3256884684164448244">"ဆက်တင် ပင်မစာမျက်နှာ"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"၀%"</item> diff --git a/packages/SettingsLib/res/values-nb/arrays.xml b/packages/SettingsLib/res/values-nb/arrays.xml index 287c38618802..86d0c1ec9a0a 100644 --- a/packages/SettingsLib/res/values-nb/arrays.xml +++ b/packages/SettingsLib/res/values-nb/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Bruk systemvalg (standard)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Slå på valgfrie kodeker"</item> - <item msgid="3304843301758635896">"Slå av valgfrie kodeker"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Bruk systemvalg (standard)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Slå på valgfrie kodeker"</item> - <item msgid="741805482892725657">"Slå av valgfrie kodeker"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Bruk systemvalg (standard)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-nb/strings.xml b/packages/SettingsLib/res/values-nb/strings.xml index 756c2fc94096..a284a455cdb0 100644 --- a/packages/SettingsLib/res/values-nb/strings.xml +++ b/packages/SettingsLib/res/values-nb/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Lader"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"lader"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Lader ikke"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Laderen er koblet til – kan ikke lade akkurat nå"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Fullt"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontrollert av administratoren"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Slått på av administratoren"</string> diff --git a/packages/SettingsLib/res/values-ne/arrays.xml b/packages/SettingsLib/res/values-ne/arrays.xml index ba7affd95971..6079a758b1db 100644 --- a/packages/SettingsLib/res/values-ne/arrays.xml +++ b/packages/SettingsLib/res/values-ne/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"प्रणालीको चयन प्रयोग गर्नुहोस् (पूर्वनिर्धारित)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"वैकल्पिक कोडेकहरूलाई सक्षम पार्नुहोस्"</item> - <item msgid="3304843301758635896">"वैकल्पिक कोडेकहरूलाई असक्षम पार्नुहोस्"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"प्रणालीको चयन प्रयोग गर्नुहोस् (पूर्वनिर्धारित)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"वैकल्पिक कोडेकहरूलाई सक्षम पार्नुहोस्"</item> - <item msgid="741805482892725657">"वैकल्पिक कोडेकहरूलाई असक्षम पार्नुहोस्"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"प्रणालीको चयन प्रयोग गर्नुहोस् (पूर्वनिर्धारित)"</item> <item msgid="8895532488906185219">"४४.१ kHz"</item> diff --git a/packages/SettingsLib/res/values-ne/strings.xml b/packages/SettingsLib/res/values-ne/strings.xml index 03d39afe0c25..379e7e7fa4eb 100644 --- a/packages/SettingsLib/res/values-ne/strings.xml +++ b/packages/SettingsLib/res/values-ne/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"चार्ज हुँदै"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"चार्ज हुँदै"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"चार्ज भइरहेको छैन"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"प्लगइन गरिएको छ, अहिले नै चार्ज गर्न सकिँदैन"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"पूर्ण"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"प्रशासकद्वारा नियन्त्रित"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"प्रशासकद्वारा सक्षम पारिएको छ"</string> diff --git a/packages/SettingsLib/res/values-nl/arrays.xml b/packages/SettingsLib/res/values-nl/arrays.xml index 25b803ac6771..996bb1087244 100644 --- a/packages/SettingsLib/res/values-nl/arrays.xml +++ b/packages/SettingsLib/res/values-nl/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Systeemselectie gebruiken (standaard)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Optionele codecs inschakelen"</item> - <item msgid="3304843301758635896">"Optionele codecs uitschakelen"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Systeemselectie gebruiken (standaard)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Optionele codecs inschakelen"</item> - <item msgid="741805482892725657">"Optionele codecs uitschakelen"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Systeemselectie gebruiken (standaard)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-nl/strings.xml b/packages/SettingsLib/res/values-nl/strings.xml index 6ca23af74946..8e4d3c17a2d7 100644 --- a/packages/SettingsLib/res/values-nl/strings.xml +++ b/packages/SettingsLib/res/values-nl/strings.xml @@ -163,7 +163,7 @@ <string name="choose_profile" msgid="6921016979430278661">"Profiel kiezen"</string> <string name="category_personal" msgid="1299663247844969448">"Persoonlijk"</string> <string name="category_work" msgid="8699184680584175622">"Werk"</string> - <string name="development_settings_title" msgid="215179176067683667">"Opties voor ontwikkelaars"</string> + <string name="development_settings_title" msgid="215179176067683667">"Ontwikkelaarsopties"</string> <string name="development_settings_enable" msgid="542530994778109538">"Opties voor ontwikkelaars inschakelen"</string> <string name="development_settings_summary" msgid="1815795401632854041">"Opties instellen voor appontwikkeling"</string> <string name="development_settings_not_available" msgid="4308569041701535607">"Ontwikkelaarsopties zijn niet beschikbaar voor deze gebruiker"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Opladen"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"opladen"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Wordt niet opgeladen"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Aangesloten, kan nu niet opladen"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Volledig"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Ingesteld door beheerder"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Ingeschakeld door beheerder"</string> diff --git a/packages/SettingsLib/res/values-pa/arrays.xml b/packages/SettingsLib/res/values-pa/arrays.xml index 2715f9d78df8..ca369d1cec47 100644 --- a/packages/SettingsLib/res/values-pa/arrays.xml +++ b/packages/SettingsLib/res/values-pa/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"ਸਿਸਟਮ ਚੋਣ ਦੀ ਵਰਤੋਂ ਕਰੋ (ਪੂਰਵ-ਨਿਰਧਾਰਤ)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"ਵਿਕਲਪਿਕ ਕੋਡੈਕ ਯੋਗ ਬਣਾਓ"</item> - <item msgid="3304843301758635896">"ਵਿਕਲਪਿਕ ਕੋਡੈਕ ਅਯੋਗ ਬਣਾਓ"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"ਸਿਸਟਮ ਚੋਣ ਦੀ ਵਰਤੋਂ ਕਰੋ (ਪੂਰਵ-ਨਿਰਧਾਰਤ)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"ਵਿਕਲਪਿਕ ਕੋਡੈਕ ਯੋਗ ਬਣਾਓ"</item> - <item msgid="741805482892725657">"ਵਿਕਲਪਿਕ ਕੋਡੈਕ ਅਯੋਗ ਬਣਾਓ"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"ਸਿਸਟਮ ਚੋਣ ਦੀ ਵਰਤੋਂ ਕਰੋ (ਪੂਰਵ-ਨਿਰਧਾਰਤ)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-pa/strings.xml b/packages/SettingsLib/res/values-pa/strings.xml index 3a4349575696..fca958a23491 100644 --- a/packages/SettingsLib/res/values-pa/strings.xml +++ b/packages/SettingsLib/res/values-pa/strings.xml @@ -66,7 +66,7 @@ <string name="bluetooth_profile_a2dp" msgid="2031475486179830674">"ਮੀਡੀਆ ਔਡੀਓ"</string> <string name="bluetooth_profile_headset" msgid="7815495680863246034">"ਫ਼ੋਨ ਕਾਲਾਂ"</string> <string name="bluetooth_profile_opp" msgid="9168139293654233697">"ਫਾਈਲ ਟ੍ਰਾਂਸਫਰ"</string> - <string name="bluetooth_profile_hid" msgid="3680729023366986480">"ਇਨਪੁਟ ਡੀਵਾਈਸ"</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> @@ -81,9 +81,9 @@ <string name="bluetooth_map_profile_summary_connected" msgid="8191407438851351713">"ਨਕਸ਼ੇ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> <string name="bluetooth_sap_profile_summary_connected" msgid="8561765057453083838">"SAP ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> <string name="bluetooth_opp_profile_summary_not_connected" msgid="1267091356089086285">"ਫਾਈਲ ਟ੍ਰਾਂਸਫਰ ਸਰਵਰ ਨਾਲ ਕਨੈਕਟ ਨਹੀਂ ਕੀਤਾ"</string> - <string name="bluetooth_hid_profile_summary_connected" msgid="3381760054215168689">"ਇਨਪੁਟ ਡੀਵਾਈਸ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> - <string name="bluetooth_pan_user_profile_summary_connected" msgid="4602294638909590612">"ਇੰਟਰਨੈਟ ਪਹੁੰਚ ਲਈ ਡੀਵਾਈਸ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> - <string name="bluetooth_pan_nap_profile_summary_connected" msgid="1561383706411975199">"ਡੀਵਾਈਸ ਨਾਲ ਸਥਾਨਕ ਇੰਟਰਨੈਟ ਕਨੈਕਸ਼ਨ ਸ਼ੇਅਰ ਕਰ ਰਿਹਾ ਹੈ"</string> + <string name="bluetooth_hid_profile_summary_connected" msgid="3381760054215168689">"ਇਨਪੁੱਟ ਡੀਵਾਈਸ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> + <string name="bluetooth_pan_user_profile_summary_connected" msgid="4602294638909590612">"ਇੰਟਰਨੈੱਟ ਪਹੁੰਚ ਲਈ ਡੀਵਾਈਸ ਨਾਲ ਕਨੈਕਟ ਕੀਤਾ"</string> + <string name="bluetooth_pan_nap_profile_summary_connected" msgid="1561383706411975199">"ਡੀਵਾਈਸ ਨਾਲ ਸਥਾਨਕ ਇੰਟਰਨੈੱਟ ਕਨੈਕਸ਼ਨ ਸਾਂਝਾ ਕਰ ਰਿਹਾ ਹੈ"</string> <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"ਇੰਟਰਨੈਟ ਪਹੁੰਚ ਲਈ ਵਰਤੋ"</string> <string name="bluetooth_map_profile_summary_use_for" msgid="5154200119919927434">"ਨਕਸ਼ੇ ਲਈ ਵਰਤੋ"</string> <string name="bluetooth_sap_profile_summary_use_for" msgid="7085362712786907993">"SIM ਪਹੁੰਚ ਲਈ ਵਰਤੋ"</string> @@ -96,7 +96,7 @@ <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"ਰੱਦ ਕਰੋ"</string> <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"ਪੇਅਰ ਕਰਨਾ ਕਨੈਕਟ ਕੀਤੇ ਜਾਣ ਤੇ ਤੁਹਾਡੇ ਸੰਪਰਕਾਂ ਅਤੇ ਕਾਲ ਇਤਿਹਾਸ ਤੱਕ ਪਹੁੰਚ ਦੀ ਅਨੁਮਤੀ ਦਿੰਦਾ ਹੈ।"</string> <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ਨਾਲ ਪੇਅਰ ਨਹੀਂ ਕਰ ਸਕਿਆ।"</string> - <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"ਇੱਕ ਗ਼ਲਤ PIN ਜਾਂ ਪਾਸਕੁੰਜੀ ਦੇ ਕਾਰਨ <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ਨਾਲ ਪੇਅਰ ਨਹੀਂ ਕਰ ਸਕਿਆ।"</string> + <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"ਇੱਕ ਗ਼ਲਤ ਪਿੰਨ ਜਾਂ ਪਾਸਕੁੰਜੀ ਦੇ ਕਾਰਨ <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ਨਾਲ ਜੋੜਾਬੱਧ ਨਹੀਂ ਹੋ ਸਕਿਆ।"</string> <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ਨਾਲ ਸੰਚਾਰ ਨਹੀਂ ਕਰ ਸਕਦਾ।"</string> <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"ਪੇਅਰਿੰਗ <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ਵੱਲੋਂ ਰੱਦ ਕੀਤੀ ਗਈ।"</string> <string name="accessibility_wifi_off" msgid="1166761729660614716">"Wifi ਬੰਦ।"</string> @@ -182,7 +182,7 @@ <string name="oem_unlock_enable" msgid="6040763321967327691">"OEM ਅਨਲੌਕ ਕਰਨਾ"</string> <string name="oem_unlock_enable_summary" msgid="4720281828891618376">"ਬੂਟਲੋਡਰ ਨੂੰ ਅਨਲੌਕ ਕੀਤੇ ਜਾਣ ਦੀ ਆਗਿਆ ਦਿਓ"</string> <string name="confirm_enable_oem_unlock_title" msgid="4802157344812385674">"ਕੀ OEM ਨੂੰ ਅਨਲੌਕ ਕਰਨ ਦੀ ਆਗਿਆ ਦੇਣੀ ਹੈ?"</string> - <string name="confirm_enable_oem_unlock_text" msgid="5517144575601647022">"ਚਿਤਾਵਨੀ: ਡੀਵਾਈਸ ਸੁਰੱਖਿਆ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਉਦੋਂ ਇਸ ਡੀਵਾਈਸ ਤੇ ਕੰਮ ਨਹੀਂ ਕਰਨਗੀਆਂ ਜਦੋਂ ਇਹ ਸੈਟਿੰਗ ਚਾਲੂ ਹੋਵੇਗੀ।"</string> + <string name="confirm_enable_oem_unlock_text" msgid="5517144575601647022">"ਚਿਤਾਵਨੀ: ਉਦੋਂ ਇਸ ਡੀਵਾਈਸ ਤੇ ਕੰਮ ਨਹੀਂ ਕਰਨਗੀਆਂ ਜਦੋਂ ਇਹ ਸੈਟਿੰਗ ਚਾਲੂ ਹੋਵੇਗੀ।"</string> <string name="mock_location_app" msgid="7966220972812881854">"ਮੌਕ ਸਥਾਨ ਐਪ ਚੁਣੋ"</string> <string name="mock_location_app_not_set" msgid="809543285495344223">"ਕੋਈ ਵੀ ਮੌਕ ਸਥਾਨ ਐਪ ਸੈੱਟ ਨਹੀਂ ਕੀਤੀ ਗਈ"</string> <string name="mock_location_app_set" msgid="8966420655295102685">"ਮੌਕ ਸਥਾਨ ਐਪ: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> @@ -215,7 +215,7 @@ <string name="select_logd_size_title" msgid="7433137108348553508">"ਲੌਗਰ ਬਫਰ ਆਕਾਰ"</string> <string name="select_logd_size_dialog_title" msgid="1206769310236476760">"ਪ੍ਰਤੀ ਲੌਗ ਬਫਰ ਲੌਗਰ ਆਕਾਰ ਚੁਣੋ"</string> <string name="dev_logpersist_clear_warning_title" msgid="684806692440237967">"ਕੀ ਲੌਗਰ ਪ੍ਰਸਿੱਸਟੈਂਟ ਸਟੋਰੇਜ ਨੂੰ ਸਾਫ਼ ਕਰਨਾ ਹੈ?"</string> - <string name="dev_logpersist_clear_warning_message" msgid="2256582531342994562">"ਜਦੋਂ ਅਸੀਂ ਪ੍ਰਸਿੱਸਟੈਂਟ ਲੌਗਰ ਨਾਲ ਨਿਗਰਾਨੀ ਨਹੀਂ ਕਰ ਰਹੇ ਹੁੰਦੇ ਹਾਂ, ਤਾਂ ਸਾਨੂੰ ਤੁਹਾਡੀ ਡੀਵਾਈਸ ਵਿੱਚ ਮੌਜੂਦ ਲੌਗਰ ਡੈਟੇ ਨੂੰ ਮਿਟਾਉਣ ਦੀ ਲੋੜ ਪੈਂਦੀ ਹੈ।"</string> + <string name="dev_logpersist_clear_warning_message" msgid="2256582531342994562">"ਜਦੋਂ ਅਸੀਂ ਪ੍ਰਸਿੱਸਟੈਂਟ ਲੌਗਰ ਨਾਲ ਨਿਗਰਾਨੀ ਨਹੀਂ ਕਰ ਰਹੇ ਹੁੰਦੇ ਹਾਂ, ਤਾਂ ਸਾਨੂੰ ਤੁਹਾਡੇ ਡੀਵਾਈਸ ਵਿੱਚ ਮੌਜੂਦ ਲੌਗਰ ਡਾਟੇ ਨੂੰ ਮਿਟਾਉਣ ਦੀ ਲੋੜ ਪੈਂਦੀ ਹੈ।"</string> <string name="select_logpersist_title" msgid="7530031344550073166">"ਡੀਵਾਈਸ \'ਤੇ ਲੌਗ ਬਫ਼ਰਾਂ ਨੂੰ ਸਥਾਈ ਤੌਰ \'ਤੇ ਸਟੋਰ ਕਰੋ"</string> <string name="select_logpersist_dialog_title" msgid="4003400579973269060">"ਡੀਵਾਈਸ \'ਤੇ ਸਥਾਈ ਤੌਰ \'ਤੇ ਸਟੋਰ ਕਰਨ ਲਈ ਲੌਗ ਬਫ਼ਰਾਂ ਨੂੰ ਚੁਣੋ"</string> <string name="select_usb_configuration_title" msgid="2649938511506971843">"USB ਕੌਂਫਿਗਰੇਸ਼ਨ ਚੁਣੋ"</string> @@ -226,10 +226,10 @@ <string name="mobile_data_always_on_summary" msgid="8149773901431697910">"ਹਮੇਸ਼ਾ ਮੋਬਾਈਲ ਡੇਟਾ ਨੂੰ ਕਿਰਿਆਸ਼ੀਲ ਰੱਖੋ ਭਾਵੇਂ Wi‑Fi ਕਿਰਿਆਸ਼ੀਲ ਹੋਵੇ (ਤੇਜ਼ ਨੈੱਟਵਰਕ ਸਵਿੱਚਿੰਗ ਲਈ)।"</string> <string name="tethering_hardware_offload_summary" msgid="7726082075333346982">"ਉਪਲਬਧ ਹੋਣ \'ਤੇ ਟੈਦਰਿੰਗ ਹਾਰਡਵੇਅਰ ਐਕਸੇਲਰੇਸ਼ਨ ਵਰਤੋ"</string> <string name="adb_warning_title" msgid="6234463310896563253">"ਕੀ USB ਡੀਬਗਿੰਗ ਦੀ ਆਗਿਆ ਦੇਣੀ ਹੈ?"</string> - <string name="adb_warning_message" msgid="7316799925425402244">"USB ਡੀਬਗਿੰਗ ਕੇਵਲ ਵਿਕਾਸ ਮੰਤਵਾਂ ਲਈ ਹੁੰਦੀ ਹੈ। ਇਸਨੂੰ ਆਪਣੇ ਕੰਪਿਊਟਰ ਅਤੇ ਆਪਣੀ ਡੀਵਾਈਸ ਵਿਚਕਾਰ ਡੈਟਾ ਕਾਪੀ ਕਰਨ ਲਈ ਵਰਤੋ, ਸੂਚਨਾ ਦੇ ਬਿਨਾਂ ਆਪਣੀ ਡੀਵਾਈਸ ਤੇ ਐਪਸ ਇੰਸਟੌਲ ਕਰੋ ਅਤੇ ਲੌਗ ਡੈਟਾ ਪੜ੍ਹੋ।"</string> + <string name="adb_warning_message" msgid="7316799925425402244">"USB ਡੀਬਗਿੰਗ ਕੇਵਲ ਵਿਕਾਸ ਮੰਤਵਾਂ ਲਈ ਹੁੰਦੀ ਹੈ। ਇਸਨੂੰ ਆਪਣੇ ਕੰਪਿਊਟਰ ਅਤੇ ਆਪਣੇ ਡੀਵਾਈਸ ਵਿਚਕਾਰ ਡਾਟਾ ਕਾਪੀ ਕਰਨ ਲਈ ਵਰਤੋ, ਸੂਚਨਾ ਦੇ ਬਿਨਾਂ ਆਪਣੇ ਡੀਵਾਈਸ ਤੇ ਐਪਾਂ ਸਥਾਪਤ ਕਰੋ ਅਤੇ ਲੌਗ ਡਾਟਾ ਪੜ੍ਹੋ।"</string> <string name="adb_keys_warning_message" msgid="5659849457135841625">"ਕੀ ਉਹਨਾਂ ਸਾਰੇ ਕੰਪਿਊਟਰਾਂ ਤੋਂ USB ਡੀਬਗਿੰਗ ਤੱਕ ਪਹੁੰਚ ਰੱਦ ਕਰਨੀ ਹੈ, ਜਿਹਨਾਂ ਲਈ ਪਹਿਲਾਂ ਤੁਸੀਂ ਅਧਿਕਾਰਤ ਕੀਤਾ ਹੈ?"</string> <string name="dev_settings_warning_title" msgid="7244607768088540165">"ਕੀ ਵਿਕਾਸ ਸੈਟਿੰਗਾਂ ਦੀ ਆਗਿਆ ਦੇਣੀ ਹੈ?"</string> - <string name="dev_settings_warning_message" msgid="2298337781139097964">"ਇਹ ਸੈਟਿੰਗਾਂ ਕੇਵਲ ਵਿਕਾਸਕਾਰ ਦੀ ਵਰਤੋਂ ਲਈ ਹਨ। ਇਹ ਤੁਹਾਡੀ ਡੀਵਾਈਸ ਅਤੇ ਇਸਤੇ ਮੌਜੂਦ ਐਪਲੀਕੇਸ਼ਨ ਨੂੰ ਬ੍ਰੇਕ ਕਰਨ ਜਾਂ ਦੁਰਵਿਵਹਾਰ ਕਰਨ ਦਾ ਕਾਰਨ ਬਣ ਸਕਦੇ ਹਨ।"</string> + <string name="dev_settings_warning_message" msgid="2298337781139097964">"ਇਹ ਸੈਟਿੰਗਾਂ ਕੇਵਲ ਵਿਕਾਸਕਾਰ ਦੀ ਵਰਤੋਂ ਲਈ ਹਨ। ਇਹ ਤੁਹਾਡੇ ਡੀਵਾਈਸ ਅਤੇ ਇਸਤੇ ਮੌਜੂਦ ਐਪਲੀਕੇਸ਼ਨ ਨੂੰ ਬ੍ਰੇਕ ਕਰਨ ਜਾਂ ਦੁਰਵਿਵਹਾਰ ਕਰਨ ਦਾ ਕਾਰਨ ਬਣ ਸਕਦੇ ਹਨ।"</string> <string name="verify_apps_over_usb_title" msgid="4177086489869041953">"USB ਤੇ ਐਪਸ ਨੂੰ ਪ੍ਰਮਾਣਿਤ ਕਰੋ"</string> <string name="verify_apps_over_usb_summary" msgid="9164096969924529200">"ਹਾਨੀਕਾਰਕ ਵਿਵਹਾਰ ਲਈ ADB/ADT ਰਾਹੀਂ ਇੰਸਟੌਲ ਕੀਤੇ ਐਪਸ ਦੀ ਜਾਂਚ ਕਰੋ।"</string> <string name="bluetooth_disable_absolute_volume_summary" msgid="6031284410786545957">"ਰਿਮੋਟ ਡੀਵਾਈਸਾਂ ਨਾਲ ਵੌਲਿਊਮ ਸਮੱਸਿਆਵਾਂ ਜਿਵੇਂ ਕਿ ਨਾ ਪਸੰਦ ਕੀਤੀ ਜਾਣ ਵਾਲੀ ਉੱਚੀ ਵੌਲਿਊਮ ਜਾਂ ਕੰਟਰੋਲ ਦੀ ਕਮੀ ਵਰਗੀ ਹਾਲਤ ਵਿੱਚ ਬਲੂਟੁੱਥ ਪੂਰਨ ਵੌਲਿਊਮ ਵਿਸ਼ੇਸ਼ਤਾ ਨੂੰ ਅਯੋਗ ਬਣਾਉਂਦਾ ਹੈ।"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ਚਾਰਜਿੰਗ"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ਚਾਰਜ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ਚਾਰਜ ਨਹੀਂ ਹੋ ਰਿਹਾ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ਪਲੱਗ ਲੱਗਾ ਹੋਇਆ ਹੈ, ਇਸ ਸਮੇਂ ਚਾਰਜ ਨਹੀਂ ਹੋ ਸਕਦੀ"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"ਪੂਰੀ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"ਪ੍ਰਸ਼ਾਸਕ ਵੱਲੋਂ ਕੰਟਰੋਲ ਕੀਤੀ ਗਈ"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"ਪ੍ਰਸ਼ਾਸਕ ਦੁਆਰਾ ਯੋਗ ਬਣਾਇਆ ਗਿਆ"</string> diff --git a/packages/SettingsLib/res/values-pl/arrays.xml b/packages/SettingsLib/res/values-pl/arrays.xml index 375615f7b801..175d11bafcfb 100644 --- a/packages/SettingsLib/res/values-pl/arrays.xml +++ b/packages/SettingsLib/res/values-pl/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Użyj wyboru systemu (domyślnie)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Włącz opcjonalne kodeki"</item> - <item msgid="3304843301758635896">"Wyłącz opcjonalne kodeki"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Użyj wyboru systemu (domyślnie)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Włączenie opcjonalnych kodeków"</item> - <item msgid="741805482892725657">"Wyłączenie opcjonalnych kodeków"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Użyj wyboru systemu (domyślnie)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-pl/strings.xml b/packages/SettingsLib/res/values-pl/strings.xml index a635a85f31b3..619be6314f9b 100644 --- a/packages/SettingsLib/res/values-pl/strings.xml +++ b/packages/SettingsLib/res/values-pl/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Ładowanie"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ładowanie"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nie podłączony"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Podłączony. Nie można teraz ładować"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Naładowana"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontrolowane przez administratora"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Włączone przez administratora"</string> diff --git a/packages/SettingsLib/res/values-pt-rBR/arrays.xml b/packages/SettingsLib/res/values-pt-rBR/arrays.xml index e3f287bb3829..19bd0d32fd79 100644 --- a/packages/SettingsLib/res/values-pt-rBR/arrays.xml +++ b/packages/SettingsLib/res/values-pt-rBR/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Usar seleção do sistema (padrão)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Ativar codecs opcionais"</item> - <item msgid="3304843301758635896">"Desativar codecs opcionais"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Usar seleção do sistema (padrão)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Ativar codecs opcionais"</item> - <item msgid="741805482892725657">"Desativar codecs opcionais"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Usar seleção do sistema (padrão)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-pt-rBR/strings.xml b/packages/SettingsLib/res/values-pt-rBR/strings.xml index 2e1855bfc332..9ae2ba31d2b1 100644 --- a/packages/SettingsLib/res/values-pt-rBR/strings.xml +++ b/packages/SettingsLib/res/values-pt-rBR/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Carregando"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"carregando"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Não está carregando"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Conectado. Não é possível carregar no momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Cheio"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlada pelo admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Ativado pelo administrador"</string> diff --git a/packages/SettingsLib/res/values-pt-rPT/arrays.xml b/packages/SettingsLib/res/values-pt-rPT/arrays.xml index 3eeade0644d0..833c7959997e 100644 --- a/packages/SettingsLib/res/values-pt-rPT/arrays.xml +++ b/packages/SettingsLib/res/values-pt-rPT/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Utilizar seleção do sistema (predef.)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Ativar codecs opcionais"</item> - <item msgid="3304843301758635896">"Desativar codecs opcionais"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Utilizar seleção do sistema (predef.)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Ativar codecs opcionais"</item> - <item msgid="741805482892725657">"Desativar codecs opcionais"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Utilizar seleção do sistema (predef.)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-pt-rPT/strings.xml b/packages/SettingsLib/res/values-pt-rPT/strings.xml index 02af40fc27d3..54322315c2ff 100644 --- a/packages/SettingsLib/res/values-pt-rPT/strings.xml +++ b/packages/SettingsLib/res/values-pt-rPT/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"A carregar"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"a carregar…"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Não está a carregar"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Ligada à corrente, não é possível carregar neste momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Completo"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlado pelo administrador"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Ativada pelo administrador"</string> diff --git a/packages/SettingsLib/res/values-pt/arrays.xml b/packages/SettingsLib/res/values-pt/arrays.xml index e3f287bb3829..19bd0d32fd79 100644 --- a/packages/SettingsLib/res/values-pt/arrays.xml +++ b/packages/SettingsLib/res/values-pt/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Usar seleção do sistema (padrão)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Ativar codecs opcionais"</item> - <item msgid="3304843301758635896">"Desativar codecs opcionais"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Usar seleção do sistema (padrão)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Ativar codecs opcionais"</item> - <item msgid="741805482892725657">"Desativar codecs opcionais"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Usar seleção do sistema (padrão)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-pt/strings.xml b/packages/SettingsLib/res/values-pt/strings.xml index 2e1855bfc332..9ae2ba31d2b1 100644 --- a/packages/SettingsLib/res/values-pt/strings.xml +++ b/packages/SettingsLib/res/values-pt/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Carregando"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"carregando"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Não está carregando"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Conectado. Não é possível carregar no momento"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Cheio"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlada pelo admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Ativado pelo administrador"</string> diff --git a/packages/SettingsLib/res/values-ro/arrays.xml b/packages/SettingsLib/res/values-ro/arrays.xml index 39ebb82345c0..d6488954f45d 100644 --- a/packages/SettingsLib/res/values-ro/arrays.xml +++ b/packages/SettingsLib/res/values-ro/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Folosiți selectarea sist. (prestabilit)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Activați codecurile opționale"</item> - <item msgid="3304843301758635896">"Dezactivați codecurile opționale"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Folosiți selectarea sist. (prestabilit)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Activați codecurile opționale"</item> - <item msgid="741805482892725657">"Dezactivați codecurile opționale"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Folosiți selectarea sist. (prestabilit)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ro/strings.xml b/packages/SettingsLib/res/values-ro/strings.xml index 3ecec0ebae6d..3000b82eaa45 100644 --- a/packages/SettingsLib/res/values-ro/strings.xml +++ b/packages/SettingsLib/res/values-ro/strings.xml @@ -353,11 +353,10 @@ <string name="power_charging_duration" msgid="4676999980973411875">"<xliff:g id="LEVEL">^1</xliff:g> - <xliff:g id="TIME">^2</xliff:g> până la încărcarea completă"</string> <string name="power_charging_duration_short" msgid="1098603958472207920">"<xliff:g id="LEVEL">^1</xliff:g> – <xliff:g id="TIME">^2</xliff:g>"</string> <string name="battery_info_status_unknown" msgid="196130600938058547">"Necunoscut"</string> - <string name="battery_info_status_charging" msgid="1705179948350365604">"Încarcă"</string> + <string name="battery_info_status_charging" msgid="1705179948350365604">"Se încarcă"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"se încarcă"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nu se încarcă"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Conectat, nu se poate încărca chiar acum"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Complet"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Controlată de administrator"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Activat de administrator"</string> diff --git a/packages/SettingsLib/res/values-ru/arrays.xml b/packages/SettingsLib/res/values-ru/arrays.xml index 784e48e7031f..a8315cb81f61 100644 --- a/packages/SettingsLib/res/values-ru/arrays.xml +++ b/packages/SettingsLib/res/values-ru/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Выбор системы (по умолчанию)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Включить дополнительные кодеки"</item> - <item msgid="3304843301758635896">"Отключить дополнительные кодеки"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Выбор системы (по умолчанию)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Включить дополнительные кодеки"</item> - <item msgid="741805482892725657">"Отключить дополнительные кодеки"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Выбор системы (по умолчанию)"</item> <item msgid="8895532488906185219">"44,1 кГц"</item> diff --git a/packages/SettingsLib/res/values-ru/strings.xml b/packages/SettingsLib/res/values-ru/strings.xml index c35a1e1c7359..afd78b14eb22 100644 --- a/packages/SettingsLib/res/values-ru/strings.xml +++ b/packages/SettingsLib/res/values-ru/strings.xml @@ -276,12 +276,12 @@ <string name="debug_layout" msgid="5981361776594526155">"Показывать границы элементов"</string> <string name="debug_layout_summary" msgid="2001775315258637682">"Показывать границы обрезки, поля и т. п."</string> <string name="force_rtl_layout_all_locales" msgid="2259906643093138978">"Отразить интерфейс"</string> - <string name="force_rtl_layout_all_locales_summary" msgid="9192797796616132534">"Включить написание справа налево для всех языков"</string> + <string name="force_rtl_layout_all_locales_summary" msgid="9192797796616132534">"Принудительно расположить элементы интерфейса справа налево во всех локалях"</string> <string name="force_hw_ui" msgid="6426383462520888732">"GPU-ускорение"</string> <string name="force_hw_ui_summary" msgid="5535991166074861515">"Всегда использовать GPU для двухмерного рисования"</string> <string name="force_msaa" msgid="7920323238677284387">"Включить 4x MSAA"</string> <string name="force_msaa_summary" msgid="9123553203895817537">"Включить 4x MSAA в приложениях OpenGL ES 2.0"</string> - <string name="show_non_rect_clip" msgid="505954950474595172">"Отладить операции непрямоугольного усечения"</string> + <string name="show_non_rect_clip" msgid="505954950474595172">"Отладка операций усечения сложной формы"</string> <string name="track_frame_time" msgid="6146354853663863443">"Профилировать GPU-отрисовку"</string> <string name="window_animation_scale_title" msgid="6162587588166114700">"Анимация окон"</string> <string name="transition_animation_scale_title" msgid="387527540523595875">"Анимация переходов"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Идет зарядка"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"заряжается"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Не заряжается"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Подключено, не заряжается"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Батарея заряжена"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Контролируется администратором"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Включено администратором"</string> diff --git a/packages/SettingsLib/res/values-si/arrays.xml b/packages/SettingsLib/res/values-si/arrays.xml index 582c2482d1ec..a3c4934dca1a 100644 --- a/packages/SettingsLib/res/values-si/arrays.xml +++ b/packages/SettingsLib/res/values-si/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"පද්ධති තේරීම භාවිත කරන්න (පෙරනිමි)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"විකල්පමය කොඩෙක් සබල කරන්න"</item> - <item msgid="3304843301758635896">"විකල්පමය කොඩෙක් අබල කරන්න"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"පද්ධති තේරීම භාවිත කරන්න (පෙරනිමි)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"විකල්පමය කොඩෙක් සබල කරන්න"</item> - <item msgid="741805482892725657">"විකල්පමය කොඩෙක් අබල කරන්න"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"පද්ධති තේරීම භාවිත කරන්න (පෙරනිමි)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-si/strings.xml b/packages/SettingsLib/res/values-si/strings.xml index 5e8011a870d7..609f67a74298 100644 --- a/packages/SettingsLib/res/values-si/strings.xml +++ b/packages/SettingsLib/res/values-si/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ආරෝපණය වෙමින්"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ආරෝපණය වේ"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ආරෝපණය නොවේ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"පේනුගත කර ඇත, මේ අවස්ථාවේදී ආරෝපණය කළ නොහැකිය"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"පූර්ණ"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"පරිපාලක විසින් පාලනය කරන ලදී"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"පරිපාලක විසින් සබල කර ඇත"</string> diff --git a/packages/SettingsLib/res/values-sk/arrays.xml b/packages/SettingsLib/res/values-sk/arrays.xml index b7ac4353d3de..dbffb0c120d2 100644 --- a/packages/SettingsLib/res/values-sk/arrays.xml +++ b/packages/SettingsLib/res/values-sk/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Použiť voľbu systému (predvolené)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Povoliť voliteľné kodeky"</item> - <item msgid="3304843301758635896">"Zakázať voliteľné kodeky"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Použiť voľbu systému (predvolené)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Povoliť voliteľné kodeky"</item> - <item msgid="741805482892725657">"Zakázať voliteľné kodeky"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Použiť voľbu systému (predvolené)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> @@ -245,7 +229,7 @@ <item msgid="7899496259191969307">"Najviac 4 procesy"</item> </string-array> <string-array name="usb_configuration_titles"> - <item msgid="488237561639712799">"Nabíjanie"</item> + <item msgid="488237561639712799">"Nabíja sa"</item> <item msgid="5220695614993094977">"MTP (Media Transfer Protocol – protokol na prenos médií)"</item> <item msgid="2086000968159047375">"PTP (Picture Transfer Protocol – protokol na prenos obrázkov)"</item> <item msgid="7398830860950841822">"RNDIS (USB Ethernet)"</item> diff --git a/packages/SettingsLib/res/values-sk/strings.xml b/packages/SettingsLib/res/values-sk/strings.xml index b81fee1f3d41..1816ae7121f6 100644 --- a/packages/SettingsLib/res/values-sk/strings.xml +++ b/packages/SettingsLib/res/values-sk/strings.xml @@ -23,7 +23,7 @@ <string name="wifi_fail_to_scan" msgid="1265540342578081461">"Siete sa nedajú vyhľadávať"</string> <string name="wifi_security_none" msgid="7985461072596594400">"Žiadne"</string> <string name="wifi_remembered" msgid="4955746899347821096">"Uložené"</string> - <string name="wifi_disabled_generic" msgid="4259794910584943386">"Zakázané"</string> + <string name="wifi_disabled_generic" msgid="4259794910584943386">"Vypnuté"</string> <string name="wifi_disabled_network_failure" msgid="2364951338436007124">"Zlyhanie konfigurácie adresy IP"</string> <string name="wifi_disabled_by_recommendation_provider" msgid="5168315140978066096">"Nepripojené z dôvodu siete nízkej kvality"</string> <string name="wifi_disabled_wifi_failure" msgid="3081668066612876581">"Zlyhanie pripojenia Wi-Fi"</string> @@ -119,7 +119,7 @@ <string name="user_guest" msgid="8475274842845401871">"Hosť"</string> <string name="unknown" msgid="1592123443519355854">"Neznáme"</string> <string name="running_process_item_user_label" msgid="3129887865552025943">"Používateľ: <xliff:g id="USER_NAME">%1$s</xliff:g>"</string> - <string name="launch_defaults_some" msgid="313159469856372621">"Predvolená pre niektoré akcie"</string> + <string name="launch_defaults_some" msgid="313159469856372621">"Pre niektoré akcie"</string> <string name="launch_defaults_none" msgid="4241129108140034876">"Nie je predvolená pre žiadne akcie"</string> <string name="tts_settings" msgid="8186971894801348327">"Nastavenia prevodu textu na reč"</string> <string name="tts_settings_title" msgid="1237820681016639683">"Prevod textu na reč"</string> @@ -333,7 +333,7 @@ <string name="button_convert_fbe" msgid="5152671181309826405">"Vymazať a konvertovať…"</string> <string name="picture_color_mode" msgid="4560755008730283695">"Farebný režim obrázka"</string> <string name="picture_color_mode_desc" msgid="1141891467675548590">"Použije sa sRGB"</string> - <string name="daltonizer_mode_disabled" msgid="7482661936053801862">"Zakázané"</string> + <string name="daltonizer_mode_disabled" msgid="7482661936053801862">"Vypnuté"</string> <string name="daltonizer_mode_monochromacy" msgid="8485709880666106721">"Monochromázia (úplna farbosleposť)"</string> <string name="daltonizer_mode_deuteranomaly" msgid="5475532989673586329">"Deuteranomália (červená a zelená)"</string> <string name="daltonizer_mode_protanomaly" msgid="8424148009038666065">"Protanomália (červená a zelená)"</string> @@ -353,16 +353,15 @@ <string name="power_charging_duration" msgid="4676999980973411875">"<xliff:g id="LEVEL">^1</xliff:g> – <xliff:g id="TIME">^2</xliff:g> do úplného nabitia"</string> <string name="power_charging_duration_short" msgid="1098603958472207920">"<xliff:g id="LEVEL">^1</xliff:g> – <xliff:g id="TIME">^2</xliff:g>"</string> <string name="battery_info_status_unknown" msgid="196130600938058547">"Neznáme"</string> - <string name="battery_info_status_charging" msgid="1705179948350365604">"Nabíjanie"</string> - <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"nabíjanie"</string> + <string name="battery_info_status_charging" msgid="1705179948350365604">"Nabíja sa"</string> + <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"nabíja sa"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nenabíja sa"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Pripojené, ale nie je možné nabíjať"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Nabitá"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Ovládané správcom"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Povolené správcom"</string> <string name="disabled_by_admin" msgid="8505398946020816620">"Zakázané správcom"</string> - <string name="disabled" msgid="9206776641295849915">"Zakázané"</string> + <string name="disabled" msgid="9206776641295849915">"Deaktivované"</string> <string name="external_source_trusted" msgid="2707996266575928037">"Povolené"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"Nie je povolené"</string> <string name="install_other_apps" msgid="6986686991775883017">"Inštalácia neznámych aplikácií"</string> diff --git a/packages/SettingsLib/res/values-sl/arrays.xml b/packages/SettingsLib/res/values-sl/arrays.xml index 5ffdd17f1407..699409662c76 100644 --- a/packages/SettingsLib/res/values-sl/arrays.xml +++ b/packages/SettingsLib/res/values-sl/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Uporabi sistemsko izbiro (privzeto)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Omogoči izbirne kodeke"</item> - <item msgid="3304843301758635896">"Onemogoči izbirne kodeke"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Uporabi sistemsko izbiro (privzeto)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Omogoči izbirne kodeke"</item> - <item msgid="741805482892725657">"Onemogoči izbirne kodeke"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Uporabi sistemsko izbiro (privzeto)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-sl/strings.xml b/packages/SettingsLib/res/values-sl/strings.xml index 4f3bce1f9ad1..644709414bbf 100644 --- a/packages/SettingsLib/res/values-sl/strings.xml +++ b/packages/SettingsLib/res/values-sl/strings.xml @@ -356,15 +356,14 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Polnjenje"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"polnjenje"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Se ne polni"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Priključeno, trenutno ni mogoče polniti"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Poln"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Nadzira skrbnik"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Omogočil skrbnik"</string> <string name="disabled_by_admin" msgid="8505398946020816620">"Onemogočil skrbnik"</string> <string name="disabled" msgid="9206776641295849915">"Onemogočeno"</string> <string name="external_source_trusted" msgid="2707996266575928037">"Dovoljene"</string> - <string name="external_source_untrusted" msgid="2677442511837596726">"Nedovoljene"</string> + <string name="external_source_untrusted" msgid="2677442511837596726">"Ni dovoljeno"</string> <string name="install_other_apps" msgid="6986686991775883017">"Nameščanje neznanih aplikacij"</string> <string name="home" msgid="3256884684164448244">"Začetna stran nastavitev"</string> <string-array name="battery_labels"> diff --git a/packages/SettingsLib/res/values-sq/arrays.xml b/packages/SettingsLib/res/values-sq/arrays.xml index 3db4250bac59..5f6845013125 100644 --- a/packages/SettingsLib/res/values-sq/arrays.xml +++ b/packages/SettingsLib/res/values-sq/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Përdor përzgjedhjen e sistemit (e parazgjedhur)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Aktivizo kodekët opsionalë"</item> - <item msgid="3304843301758635896">"Çaktivizo kodekët opsionalë"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Përdor përzgjedhjen e sistemit (e parazgjedhur)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Aktivizo kodekët opsionalë"</item> - <item msgid="741805482892725657">"Çaktivizo kodekët opsionalë"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Përdor përzgjedhjen e sistemit (e parazgjedhur)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-sq/strings.xml b/packages/SettingsLib/res/values-sq/strings.xml index 0558c362f2f3..cb104f9eaa19 100644 --- a/packages/SettingsLib/res/values-sq/strings.xml +++ b/packages/SettingsLib/res/values-sq/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Po ngarkohet"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"po ngarkohet"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Nuk po ngarkohet"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Në prizë, por nuk mund të ngarkohet për momentin"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"E mbushur"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kontrolluar nga administratori"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Aktivizuar nga administratori"</string> diff --git a/packages/SettingsLib/res/values-sr/arrays.xml b/packages/SettingsLib/res/values-sr/arrays.xml index ef1c9de94847..8c79f56f6bff 100644 --- a/packages/SettingsLib/res/values-sr/arrays.xml +++ b/packages/SettingsLib/res/values-sr/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Користи избор система (подразумевано)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Омогући опционалне кодеке"</item> - <item msgid="3304843301758635896">"Онемогући опционалне кодеке"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Користи избор система (подразумевано)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Омогући опционалне кодеке"</item> - <item msgid="741805482892725657">"Онемогући опционалне кодеке"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Користи избор система (подразумевано)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-sr/strings.xml b/packages/SettingsLib/res/values-sr/strings.xml index f1506d277aa1..5f0a3e2d0f03 100644 --- a/packages/SettingsLib/res/values-sr/strings.xml +++ b/packages/SettingsLib/res/values-sr/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Пуњење"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"пуни се"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Не пуни се"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Прикључено је, али пуњење тренутно није могуће"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Пуно"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Контролише администратор"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Омогућио је администратор"</string> diff --git a/packages/SettingsLib/res/values-sv/arrays.xml b/packages/SettingsLib/res/values-sv/arrays.xml index 23bb7977f934..008a2df6857a 100644 --- a/packages/SettingsLib/res/values-sv/arrays.xml +++ b/packages/SettingsLib/res/values-sv/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Använd systemval (standardinställning)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Aktivera valfria kodekar"</item> - <item msgid="3304843301758635896">"Inaktivera valfria kodekar"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Använd systemval (standardinställning)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Aktivera valfria kodekar"</item> - <item msgid="741805482892725657">"Inaktivera valfria kodekar"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Använd systemval (standardinställning)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-sv/strings.xml b/packages/SettingsLib/res/values-sv/strings.xml index 97511cf01ca5..5d4c8c124476 100644 --- a/packages/SettingsLib/res/values-sv/strings.xml +++ b/packages/SettingsLib/res/values-sv/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Laddar"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"laddas"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Laddar inte"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Inkopplad, kan inte laddas just nu"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Fullt"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Strys av administratören"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Aktiverad av administratör"</string> diff --git a/packages/SettingsLib/res/values-sw/arrays.xml b/packages/SettingsLib/res/values-sw/arrays.xml index b5953a347c79..70553680186a 100644 --- a/packages/SettingsLib/res/values-sw/arrays.xml +++ b/packages/SettingsLib/res/values-sw/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Tumia Uteuzi wa Mfumo (Chaguo-msingi)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Washa Kodeki Zisizo za Lazima"</item> - <item msgid="3304843301758635896">"Zima Kodeki Zisizo za Lazima"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Tumia Uteuzi wa Mfumo (Chaguo-msingi)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Washa Kodeki Zisizo za Lazima"</item> - <item msgid="741805482892725657">"Zima Kodeki Zisizo za Lazima"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Tumia Uteuzi wa Mfumo (Chaguo-msingi)"</item> <item msgid="8895532488906185219">"kHz 44.1"</item> diff --git a/packages/SettingsLib/res/values-sw/strings.xml b/packages/SettingsLib/res/values-sw/strings.xml index 6e4e85e1d732..a58fc97a906c 100644 --- a/packages/SettingsLib/res/values-sw/strings.xml +++ b/packages/SettingsLib/res/values-sw/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Inachaji"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"inachaji"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Haichaji"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Haiwezi kuchaji kwa sasa"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Imejaa"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Imedhibitiwa na msimamizi"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Imewashwa na msimamizi"</string> @@ -365,7 +364,7 @@ <string name="disabled" msgid="9206776641295849915">"Imezimwa"</string> <string name="external_source_trusted" msgid="2707996266575928037">"Imeruhusiwa"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"Hairuhusiwi"</string> - <string name="install_other_apps" msgid="6986686991775883017">"Sakinisha programu ambazo hazijulikani"</string> + <string name="install_other_apps" msgid="6986686991775883017">"Kuweka programu zisizojulikana"</string> <string name="home" msgid="3256884684164448244">"Ukurasa wa Kwanza wa Mipangilio"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"0%"</item> diff --git a/packages/SettingsLib/res/values-ta/arrays.xml b/packages/SettingsLib/res/values-ta/arrays.xml index 96c9122357ed..d45034de118f 100644 --- a/packages/SettingsLib/res/values-ta/arrays.xml +++ b/packages/SettingsLib/res/values-ta/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"சாதனத் தேர்வைப் பயன்படுத்து (இயல்பு)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"கட்டாயமில்லா கோடெக்குகளை இயக்கு"</item> - <item msgid="3304843301758635896">"கட்டாயமில்லா கோடெக்குகளை முடக்கு"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"சாதனத் தேர்வைப் பயன்படுத்து (இயல்பு)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"கட்டாயமில்லா கோடெக்குகளை இயக்கு"</item> - <item msgid="741805482892725657">"கட்டாயமில்லா கோடெக்குகளை முடக்கு"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"சாதனத் தேர்வைப் பயன்படுத்து (இயல்பு)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ta/strings.xml b/packages/SettingsLib/res/values-ta/strings.xml index e707596ad62d..a46e4c7b48a2 100644 --- a/packages/SettingsLib/res/values-ta/strings.xml +++ b/packages/SettingsLib/res/values-ta/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"சார்ஜ் ஏற்றப்படுகிறது"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"சார்ஜாகிறது"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"சார்ஜ் செய்யப்படவில்லை"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"செருகப்பட்டது, ஆனால் இப்போது சார்ஜ் செய்ய முடியவில்லை"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"முழுமை"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"நிர்வாகி கட்டுப்படுத்துகிறார்"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"நிர்வாகி இயக்கியுள்ளார்"</string> diff --git a/packages/SettingsLib/res/values-te/arrays.xml b/packages/SettingsLib/res/values-te/arrays.xml index cc771390d7b2..7061ff1f8c93 100644 --- a/packages/SettingsLib/res/values-te/arrays.xml +++ b/packages/SettingsLib/res/values-te/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"సిస్టమ్ ఎంపికను ఉపయోగించండి (డిఫాల్ట్)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"ఐచ్ఛిక కోడెక్లను ప్రారంభించు"</item> - <item msgid="3304843301758635896">"ఐచ్ఛిక కోడెక్లను నిలిపివేయి"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"సిస్టమ్ ఎంపికను ఉపయోగించండి (డిఫాల్ట్)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"ఐచ్ఛిక కోడెక్లను ప్రారంభించు"</item> - <item msgid="741805482892725657">"ఐచ్ఛిక కోడెక్లను నిలిపివేయి"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"సిస్టమ్ ఎంపికను ఉపయోగించండి (డిఫాల్ట్)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-te/strings.xml b/packages/SettingsLib/res/values-te/strings.xml index 20e8931ed73e..f8b1469b40f4 100644 --- a/packages/SettingsLib/res/values-te/strings.xml +++ b/packages/SettingsLib/res/values-te/strings.xml @@ -96,7 +96,7 @@ <string name="bluetooth_pairing_decline" msgid="4185420413578948140">"రద్దు చేయి"</string> <string name="bluetooth_pairing_will_share_phonebook" msgid="4982239145676394429">"జత చేయడం వలన కనెక్ట్ చేయబడినప్పుడు మీ పరిచయాలకు మరియు కాల్ చరిత్రకు ప్రాప్యతను మంజూరు చేస్తుంది."</string> <string name="bluetooth_pairing_error_message" msgid="3748157733635947087">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>తో జత చేయడం సాధ్యపడలేదు."</string> - <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"పిన్ లేదా పాస్కీ చెల్లని కారణంగా <xliff:g id="DEVICE_NAME">%1$s</xliff:g>తో జత చేయడం సాధ్యపడలేదు."</string> + <string name="bluetooth_pairing_pin_error_message" msgid="8337234855188925274">"పిన్ లేదా పాస్కీ చెల్లని కారణంగా <xliff:g id="DEVICE_NAME">%1$s</xliff:g>తో జత చేయడం సాధ్యపడలేదు."</string> <string name="bluetooth_pairing_device_down_error_message" msgid="7870998403045801381">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>తో కమ్యూనికేట్ చేయడం సాధ్యపడదు."</string> <string name="bluetooth_pairing_rejected_error_message" msgid="1648157108520832454">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> జత చేయడాన్ని తిరస్కరించింది."</string> <string name="accessibility_wifi_off" msgid="1166761729660614716">"Wifi ఆఫ్లో ఉంది."</string> @@ -169,7 +169,7 @@ <string name="development_settings_not_available" msgid="4308569041701535607">"ఈ వినియోగదారు కోసం డెవలపర్ ఎంపికలు అందుబాటులో లేవు"</string> <string name="vpn_settings_not_available" msgid="956841430176985598">"VPN సెట్టింగ్లు ఈ వినియోగదారుకి అందుబాటులో లేవు"</string> <string name="tethering_settings_not_available" msgid="6765770438438291012">"టీథరింగ్ సెట్టింగ్లు ఈ వినియోగదారుకి అందుబాటులో లేవు"</string> - <string name="apn_settings_not_available" msgid="7873729032165324000">"ప్రాప్యత స్థానం పేరు సెట్టింగ్లు ఈ వినియోగదారుకి అందుబాటులో లేవు"</string> + <string name="apn_settings_not_available" msgid="7873729032165324000">"యాక్సెస్ స్థానం పేరు సెట్టింగ్లు ఈ వినియోగదారుకి అందుబాటులో లేవు"</string> <string name="enable_adb" msgid="7982306934419797485">"USB డీబగ్గింగ్"</string> <string name="enable_adb_summary" msgid="4881186971746056635">"USB కనెక్ట్ చేయబడినప్పుడు డీబగ్ మోడ్"</string> <string name="clear_adb_keys" msgid="4038889221503122743">"USB డీబగ్ ప్రామాణీకరణలను ఉపసంహరించు"</string> @@ -184,8 +184,8 @@ <string name="confirm_enable_oem_unlock_title" msgid="4802157344812385674">"OEM అన్లాకింగ్ను అనుమతించాలా?"</string> <string name="confirm_enable_oem_unlock_text" msgid="5517144575601647022">"హెచ్చరిక: ఈ సెట్టింగ్ ఆన్ చేయబడినప్పుడు పరికరం రక్షణ లక్షణాలు ఈ పరికరంలో పని చేయవు."</string> <string name="mock_location_app" msgid="7966220972812881854">"అనుకృత స్థాన అనువర్తనాన్ని ఎంచుకోండి"</string> - <string name="mock_location_app_not_set" msgid="809543285495344223">"అనుకృత స్థాన అనువర్తనం ఏదీ సెట్ చేయబడలేదు"</string> - <string name="mock_location_app_set" msgid="8966420655295102685">"అనుకృత స్థాన అనువర్తనం: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> + <string name="mock_location_app_not_set" msgid="809543285495344223">"అనుకృత స్థాన యాప్ ఏదీ సెట్ చేయబడలేదు"</string> + <string name="mock_location_app_set" msgid="8966420655295102685">"అనుకృత స్థాన యాప్: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="debug_networking_category" msgid="7044075693643009662">"నెట్వర్కింగ్"</string> <string name="wifi_display_certification" msgid="8611569543791307533">"వైర్లెస్ ప్రదర్శన ప్రమాణీకరణ"</string> <string name="wifi_verbose_logging" msgid="4203729756047242344">"Wi‑Fi విశదీకృత లాగింగ్ను ప్రారంభించండి"</string> @@ -240,12 +240,12 @@ <string name="hdcp_checking_dialog_title" msgid="5141305530923283">"HDCP తనిఖీ ప్రవర్తనను సెట్ చేయండి"</string> <string name="debug_debugging_category" msgid="6781250159513471316">"డీబగ్గింగ్"</string> <string name="debug_app" msgid="8349591734751384446">"డీబగ్ అనువర్తనాన్ని ఎంచుకోండి"</string> - <string name="debug_app_not_set" msgid="718752499586403499">"డీబగ్ అనువర్తనం సెట్ చేయబడలేదు"</string> - <string name="debug_app_set" msgid="2063077997870280017">"డీబగ్గింగ్ అనువర్తనం: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> + <string name="debug_app_not_set" msgid="718752499586403499">"డీబగ్ యాప్ సెట్ చేయబడలేదు"</string> + <string name="debug_app_set" msgid="2063077997870280017">"డీబగ్గింగ్ యాప్: <xliff:g id="APP_NAME">%1$s</xliff:g>"</string> <string name="select_application" msgid="5156029161289091703">"అనువర్తనాన్ని ఎంచుకోండి"</string> <string name="no_application" msgid="2813387563129153880">"ఏదీ వద్దు"</string> <string name="wait_for_debugger" msgid="1202370874528893091">"డీబగ్గర్ కోసం వేచి ఉండండి"</string> - <string name="wait_for_debugger_summary" msgid="1766918303462746804">"డీబగ్ చేయబడిన అనువర్తనం అమలు కావడానికి ముందు జోడించాల్సిన డీబగ్గర్ కోసం వేచి ఉంటుంది"</string> + <string name="wait_for_debugger_summary" msgid="1766918303462746804">"డీబగ్ చేయబడిన యాప్ అమలు కావడానికి ముందు జోడించాల్సిన డీబగ్గర్ కోసం వేచి ఉంటుంది"</string> <string name="telephony_monitor_switch" msgid="1764958220062121194">"టెలిఫోనీ మానిటర్"</string> <string name="telephony_monitor_switch_summary" msgid="7695552966547975635">"టెలిఫోనీ/మోడెమ్ కార్యాచరణలో సమస్యను గుర్తించినప్పుడు TelephonyMonitor లాగ్లను సేకరిస్తుంది మరియు బగ్ని ఫైల్ చేయమని వినియోగదారును ప్రోత్సహిస్తుంది"</string> <string name="debug_input_category" msgid="1811069939601180246">"ఇన్పుట్"</string> @@ -292,9 +292,9 @@ <string name="immediately_destroy_activities_summary" msgid="3592221124808773368">"ప్రతి కార్యాచరణను వినియోగదారు నిష్క్రమించిన వెంటనే తొలగించండి"</string> <string name="app_process_limit_title" msgid="4280600650253107163">"నేపథ్య ప్రాసెస్ పరిమితి"</string> <string name="show_all_anrs" msgid="28462979638729082">"అన్ని ANRలను చూపు"</string> - <string name="show_all_anrs_summary" msgid="641908614413544127">"నేపథ్య అనువర్తనాల కోసం అనువర్తనం ప్రతిస్పందించడం లేదు డైలాగ్ను చూపు"</string> + <string name="show_all_anrs_summary" msgid="641908614413544127">"నేపథ్య యాప్ల కోసం యాప్ ప్రతిస్పందించడం లేదు డైలాగ్ను చూపు"</string> <string name="show_notification_channel_warnings" msgid="1399948193466922683">"ఛానెల్ హెచ్చరికల నోటిఫికేషన్ను చూపు"</string> - <string name="show_notification_channel_warnings_summary" msgid="5536803251863694895">"చెల్లుబాటు అయ్యే ఛానెల్ లేకుండా అనువర్తనం నోటిఫికేషన్ను పోస్ట్ చేస్తున్నప్పుడు స్క్రీన్పై హెచ్చరికను చూపిస్తుంది"</string> + <string name="show_notification_channel_warnings_summary" msgid="5536803251863694895">"చెల్లుబాటు అయ్యే ఛానెల్ లేకుండా యాప్ నోటిఫికేషన్ను పోస్ట్ చేస్తున్నప్పుడు స్క్రీన్పై హెచ్చరికను చూపిస్తుంది"</string> <string name="force_allow_on_external" msgid="3215759785081916381">"అనువర్తనాలను బాహ్య నిల్వలో నిర్బంధంగా అనుమతించు"</string> <string name="force_allow_on_external_summary" msgid="3640752408258034689">"ఏ అనువర్తనాన్ని అయినా మానిఫెస్ట్ విలువలతో సంబంధం లేకుండా బాహ్య నిల్వలో వ్రాయడానికి అనుమతిస్తుంది"</string> <string name="force_resizable_activities" msgid="8615764378147824985">"కార్యాచరణలను పరిమాణం మార్చగలిగేలా నిర్బంధించు"</string> @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"ఛార్జ్ అవుతోంది"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"ఛార్జ్ అవుతోంది"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ఛార్జ్ కావడం లేదు"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"ప్లగ్ ఇన్ చేయబడింది, ప్రస్తుతం ఛార్జ్ చేయడం సాధ్యం కాదు"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"నిండింది"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"నిర్వాహకుని ద్వారా నియంత్రించబడింది"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"నిర్వాహకులు ప్రారంభించారు"</string> @@ -389,5 +388,5 @@ <string name="use_system_language_to_select_input_method_subtypes" msgid="5747329075020379587">"సిస్టమ్ భాషలను ఉపయోగించు"</string> <string name="failed_to_open_app_settings_toast" msgid="1251067459298072462">"<xliff:g id="SPELL_APPLICATION_NAME">%1$s</xliff:g> యొక్క సెట్టింగ్లను తెరవడం విఫలమైంది"</string> <string name="ime_security_warning" msgid="4135828934735934248">"ఈ ఇన్పుట్ పద్ధతి మీరు టైప్ చేసే మొత్తం వచనాన్ని అలాగే పాస్వర్డ్లు మరియు క్రెడిట్ కార్డు నంబర్ల వంటి వ్యక్తిగత డేటాను సేకరించగలదు. ఇది <xliff:g id="IME_APPLICATION_NAME">%1$s</xliff:g> అనువర్తనంలో అందించబడుతుంది. ఈ ఇన్పుట్ పద్ధతిని ఉపయోగించాలా?"</string> - <string name="direct_boot_unaware_dialog_message" msgid="7870273558547549125">"గమనిక: రీబూట్ చేసాక, మీరు మీ ఫోన్ను అన్లాక్ చేసే వరకు ఈ అనువర్తనం ప్రారంభం కాదు"</string> + <string name="direct_boot_unaware_dialog_message" msgid="7870273558547549125">"గమనిక: రీబూట్ చేసాక, మీరు మీ ఫోన్ను అన్లాక్ చేసే వరకు ఈ యాప్ ప్రారంభం కాదు"</string> </resources> diff --git a/packages/SettingsLib/res/values-th/arrays.xml b/packages/SettingsLib/res/values-th/arrays.xml index d46fc7d2c616..4d42934c4fc1 100644 --- a/packages/SettingsLib/res/values-th/arrays.xml +++ b/packages/SettingsLib/res/values-th/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"ใช้การเลือกระบบ (ค่าเริ่มต้น)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"เปิดใช้ตัวแปลงรหัสที่ไม่บังคับ"</item> - <item msgid="3304843301758635896">"ปิดใช้ตัวแปลงรหัสที่ไม่บังคับ"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"ใช้การเลือกระบบ (ค่าเริ่มต้น)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"เปิดใช้ตัวแปลงรหัสที่ไม่บังคับ"</item> - <item msgid="741805482892725657">"ปิดใช้ตัวแปลงรหัสที่ไม่บังคับ"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"ใช้การเลือกระบบ (ค่าเริ่มต้น)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-th/strings.xml b/packages/SettingsLib/res/values-th/strings.xml index ef215848fd44..83bbdeb987f5 100644 --- a/packages/SettingsLib/res/values-th/strings.xml +++ b/packages/SettingsLib/res/values-th/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"กำลังชาร์จ"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"กำลังชาร์จ"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"ไม่ได้ชาร์จ"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"เสียบอยู่ ไม่สามารถชาร์จได้ในขณะนี้"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"เต็ม"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"ผู้ดูแลระบบเป็นผู้ควบคุม"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"เปิดใช้โดยผู้ดูแลระบบ"</string> diff --git a/packages/SettingsLib/res/values-tl/arrays.xml b/packages/SettingsLib/res/values-tl/arrays.xml index 2a82ab6647c3..e6c47daa13e5 100644 --- a/packages/SettingsLib/res/values-tl/arrays.xml +++ b/packages/SettingsLib/res/values-tl/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Gamitin ang Pagpili ng System (Default)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"I-enable ang Mga Opsyonal na Codec"</item> - <item msgid="3304843301758635896">"I-disable ang Mga Opsyonal na Codec"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Gamitin ang Pagpili ng System (Default)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"I-enable ang Mga Opsyonal na Codec"</item> - <item msgid="741805482892725657">"I-disable ang Mga Opsyonal na Codec"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Gamitin ang Pagpili ng System (Default)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-tl/strings.xml b/packages/SettingsLib/res/values-tl/strings.xml index 51630dac9f9f..28c66368b10c 100644 --- a/packages/SettingsLib/res/values-tl/strings.xml +++ b/packages/SettingsLib/res/values-tl/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Nagcha-charge"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"nagcha-charge"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Hindi nagcha-charge"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Nakasaksak, hindi makapag-charge sa ngayon"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Puno"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Pinapamahalaan ng admin"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Na-enable ng admin"</string> @@ -365,7 +364,7 @@ <string name="disabled" msgid="9206776641295849915">"Naka-disable"</string> <string name="external_source_trusted" msgid="2707996266575928037">"Pinapayagan"</string> <string name="external_source_untrusted" msgid="2677442511837596726">"Hindi pinapayagan"</string> - <string name="install_other_apps" msgid="6986686991775883017">"Mag-install ng mga hindi alam na app"</string> + <string name="install_other_apps" msgid="6986686991775883017">"Mag-install ng di-kilalang app"</string> <string name="home" msgid="3256884684164448244">"Home ng Mga Setting"</string> <string-array name="battery_labels"> <item msgid="8494684293649631252">"0%"</item> diff --git a/packages/SettingsLib/res/values-tr/arrays.xml b/packages/SettingsLib/res/values-tr/arrays.xml index bb43ec7537d8..a76f0f107cf9 100644 --- a/packages/SettingsLib/res/values-tr/arrays.xml +++ b/packages/SettingsLib/res/values-tr/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Sistem Seçimini Kullan (Varsayılan)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"İsteğe Bağlı Codec\'leri Etkinleştir"</item> - <item msgid="3304843301758635896">"İsteğe Bağlı Codec\'leri Devre Dışı Bırak"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Sistem Seçimini Kullan (Varsayılan)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"İsteğe Bağlı Codec\'leri Etkinleştir"</item> - <item msgid="741805482892725657">"İsteğe Bağlı Codec\'leri Devre Dışı Bırak"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Sistem Seçimini Kullan (Varsayılan)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-tr/strings.xml b/packages/SettingsLib/res/values-tr/strings.xml index f2f94a22b02c..2c785e92a5d5 100644 --- a/packages/SettingsLib/res/values-tr/strings.xml +++ b/packages/SettingsLib/res/values-tr/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Şarj oluyor"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"şarj oluyor"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Şarj olmuyor"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Prize takıldı, şu anda şarj olamıyor"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Dolu"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Yönetici tarafından denetleniyor"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Yönetici tarafından etkinleştirildi"</string> diff --git a/packages/SettingsLib/res/values-uk/arrays.xml b/packages/SettingsLib/res/values-uk/arrays.xml index a8705e729356..aac23570cd6b 100644 --- a/packages/SettingsLib/res/values-uk/arrays.xml +++ b/packages/SettingsLib/res/values-uk/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Використовувати вибір системи (за умовчанням)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Увімкнути додаткові кодеки"</item> - <item msgid="3304843301758635896">"Вимкнути додаткові кодеки"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Використовувати вибір системи (за умовчанням)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Увімкнути додаткові кодеки"</item> - <item msgid="741805482892725657">"Вимкнути додаткові кодеки"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Використовувати вибір системи (за умовчанням)"</item> <item msgid="8895532488906185219">"44,1 кГц"</item> diff --git a/packages/SettingsLib/res/values-uk/strings.xml b/packages/SettingsLib/res/values-uk/strings.xml index 7f329ce2ab0d..f16e89286a78 100644 --- a/packages/SettingsLib/res/values-uk/strings.xml +++ b/packages/SettingsLib/res/values-uk/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Заряджається"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"заряджається"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Не заряджається"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Підключено. Не вдається зарядити"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Акумулятор заряджено"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Керується адміністратором"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Увімкнено адміністратором"</string> diff --git a/packages/SettingsLib/res/values-ur/arrays.xml b/packages/SettingsLib/res/values-ur/arrays.xml index 6da98dcf67d5..631d87e0da30 100644 --- a/packages/SettingsLib/res/values-ur/arrays.xml +++ b/packages/SettingsLib/res/values-ur/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"سسٹم انتخاب کا استعمال کریں (ڈیفالٹ)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"اختیاری کوڈیکز کو فعال کریں"</item> - <item msgid="3304843301758635896">"اختیاری کوڈیکز کو غیر فعال کریں"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"سسٹم انتخاب کا استعمال کریں (ڈیفالٹ)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"اختیاری کوڈیکز کو فعال کریں"</item> - <item msgid="741805482892725657">"اختیاری کوڈیکز کو غیر فعال کریں"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"سسٹم انتخاب کا استعمال کریں (ڈیفالٹ)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-ur/strings.xml b/packages/SettingsLib/res/values-ur/strings.xml index 9d37602c99fa..4b807375e592 100644 --- a/packages/SettingsLib/res/values-ur/strings.xml +++ b/packages/SettingsLib/res/values-ur/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"چارج ہو رہا ہے"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"چارج ہو رہا ہے"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"چارج نہیں ہو رہا ہے"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"پلگ ان ہے، ابھی چارج نہیں کر سکتے"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"مکمل"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"کنٹرول کردہ بذریعہ منتظم"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"منتظم کی طرف سے فعال کردہ"</string> diff --git a/packages/SettingsLib/res/values-uz/arrays.xml b/packages/SettingsLib/res/values-uz/arrays.xml index 1d4e1e986954..08b4112b9a24 100644 --- a/packages/SettingsLib/res/values-uz/arrays.xml +++ b/packages/SettingsLib/res/values-uz/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Tizim tanlovi (birlamchi)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Boshqa kodeklarni yoqish"</item> - <item msgid="3304843301758635896">"Boshqa kodeklarni o‘chirib qo‘yish"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Tizim tanlovi (birlamchi)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Boshqa kodeklarni yoqish"</item> - <item msgid="741805482892725657">"Boshqa kodeklarni o‘chirib qo‘yish"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Tizim tanlovi (birlamchi)"</item> <item msgid="8895532488906185219">"44.1 kGs"</item> diff --git a/packages/SettingsLib/res/values-uz/strings.xml b/packages/SettingsLib/res/values-uz/strings.xml index 872d1215348a..da520b8b3ff9 100644 --- a/packages/SettingsLib/res/values-uz/strings.xml +++ b/packages/SettingsLib/res/values-uz/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Quvvat olmoqda"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"quvvat olmoqda"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Quvvat olmayapti"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Ulangan, lekin quvvat olmayapti"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"To‘la"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Administrator tomonidan boshqariladi"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Administrator tomonidan yoqilgan"</string> diff --git a/packages/SettingsLib/res/values-vi/arrays.xml b/packages/SettingsLib/res/values-vi/arrays.xml index 134dc8be7a79..966fcea80fa5 100644 --- a/packages/SettingsLib/res/values-vi/arrays.xml +++ b/packages/SettingsLib/res/values-vi/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Sử dụng lựa chọn hệ thống (Mặc định)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"Bật codec tùy chọn"</item> - <item msgid="3304843301758635896">"Tắt codec tùy chọn"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Sử dụng lựa chọn hệ thống (Mặc định)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"Bật codec tùy chọn"</item> - <item msgid="741805482892725657">"Tắt codec tùy chọn"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Sử dụng lựa chọn hệ thống (Mặc định)"</item> <item msgid="8895532488906185219">"44,1 kHz"</item> diff --git a/packages/SettingsLib/res/values-vi/strings.xml b/packages/SettingsLib/res/values-vi/strings.xml index 1c9f917ed17f..d8256bbf7fb0 100644 --- a/packages/SettingsLib/res/values-vi/strings.xml +++ b/packages/SettingsLib/res/values-vi/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Đang sạc"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"đang sạc"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Hiện không sạc"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Đã cắm nhưng không thể sạc ngay"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Đầy"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Do quản trị viên kiểm soát"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Kích hoạt bởi quản trị viên"</string> diff --git a/packages/SettingsLib/res/values-zh-rCN/arrays.xml b/packages/SettingsLib/res/values-zh-rCN/arrays.xml index fadc7a9a76b6..f53b8ff70818 100644 --- a/packages/SettingsLib/res/values-zh-rCN/arrays.xml +++ b/packages/SettingsLib/res/values-zh-rCN/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"使用系统选择(默认)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"启用可选编解码器"</item> - <item msgid="3304843301758635896">"停用可选编解码器"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"使用系统选择(默认)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"启用可选编解码器"</item> - <item msgid="741805482892725657">"停用可选编解码器"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"使用系统选择(默认)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-zh-rCN/strings.xml b/packages/SettingsLib/res/values-zh-rCN/strings.xml index c1643474d59a..f71c19f84f77 100644 --- a/packages/SettingsLib/res/values-zh-rCN/strings.xml +++ b/packages/SettingsLib/res/values-zh-rCN/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"正在充电"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"正在充电"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"未在充电"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"已插入电源,但是现在无法充电"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"电量充足"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"由管理员控制"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"已被管理员启用"</string> diff --git a/packages/SettingsLib/res/values-zh-rHK/arrays.xml b/packages/SettingsLib/res/values-zh-rHK/arrays.xml index 7f4c427edc1e..1047c5e81f9b 100644 --- a/packages/SettingsLib/res/values-zh-rHK/arrays.xml +++ b/packages/SettingsLib/res/values-zh-rHK/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"使用系統選擇 (預設)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"啟用選用的編解碼器"</item> - <item msgid="3304843301758635896">"停用選用的編解碼器"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"使用系統選擇 (預設)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"啟用選用的編解碼器"</item> - <item msgid="741805482892725657">"停用選用的編解碼器"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"使用系統選擇 (預設)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-zh-rHK/strings.xml b/packages/SettingsLib/res/values-zh-rHK/strings.xml index 4fadad1693ae..5d8925b4cbc1 100644 --- a/packages/SettingsLib/res/values-zh-rHK/strings.xml +++ b/packages/SettingsLib/res/values-zh-rHK/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"充電中"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"正在充電"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"非充電中"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"已插入電源插座,但目前無法充電"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"電量已滿"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"已由管理員停用"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"已由管理員啟用"</string> diff --git a/packages/SettingsLib/res/values-zh-rTW/arrays.xml b/packages/SettingsLib/res/values-zh-rTW/arrays.xml index 0f3bf239117a..915fbd82a237 100644 --- a/packages/SettingsLib/res/values-zh-rTW/arrays.xml +++ b/packages/SettingsLib/res/values-zh-rTW/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"avrcp15"</item> <item msgid="7142710449249088270">"avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"使用系統選擇 (預設)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"LDAC"</item> - <item msgid="723675059572222462">"啟用選用的轉碼器"</item> - <item msgid="3304843301758635896">"停用選用的轉碼器"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"使用系統選擇 (預設)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"LDAC"</item> - <item msgid="2209680154067241740">"啟用選用的轉碼器"</item> - <item msgid="741805482892725657">"停用選用的轉碼器"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"使用系統選擇 (預設)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-zh-rTW/strings.xml b/packages/SettingsLib/res/values-zh-rTW/strings.xml index ed21c9a2a99a..aed22fdd705e 100644 --- a/packages/SettingsLib/res/values-zh-rTW/strings.xml +++ b/packages/SettingsLib/res/values-zh-rTW/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"充電中"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"充電中"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"非充電中"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"已接上電源,但現在無法充電"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"電力充足"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"已由管理員停用"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"已由管理員啟用"</string> diff --git a/packages/SettingsLib/res/values-zu/arrays.xml b/packages/SettingsLib/res/values-zu/arrays.xml index d7449f1de0e7..98a1bf972dba 100644 --- a/packages/SettingsLib/res/values-zu/arrays.xml +++ b/packages/SettingsLib/res/values-zu/arrays.xml @@ -68,26 +68,10 @@ <item msgid="1913619118958233129">"I-avrcp15"</item> <item msgid="7142710449249088270">"I-avrcp16"</item> </string-array> - <string-array name="bluetooth_a2dp_codec_titles"> - <item msgid="7065842274271279580">"Sebenzisa ukukhetha kwesistimu (Okuzenzakalelayo)"</item> - <item msgid="7539690996561263909">"SBC"</item> - <item msgid="686685526567131661">"I-AAC"</item> - <item msgid="8910200421843557332">"aptX"</item> - <item msgid="8434403964359457768">"aptX HD"</item> - <item msgid="6751080638867012696">"I-LDAC"</item> - <item msgid="723675059572222462">"Nika amandla amakhodekhi akhethekayo"</item> - <item msgid="3304843301758635896">"Khubaza amakhodekhi akhethekayo"</item> - </string-array> - <string-array name="bluetooth_a2dp_codec_summaries"> - <item msgid="5062108632402595000">"Sebenzisa ukukhetha kwesistimu (Okuzenzakalelayo)"</item> - <item msgid="6898329690939802290">"SBC"</item> - <item msgid="6839647709301342559">"I-AAC"</item> - <item msgid="2279916056363477395">"aptX"</item> - <item msgid="6641171061200063516">"aptX HD"</item> - <item msgid="7950781694447359344">"I-LDAC"</item> - <item msgid="2209680154067241740">"Nika amandla amakhodekhi akhethekayo"</item> - <item msgid="741805482892725657">"Khubaza amakhodekhi akhethekayo"</item> - </string-array> + <!-- no translation found for bluetooth_a2dp_codec_titles:3 (965655874372831982) --> + <!-- no translation found for bluetooth_a2dp_codec_titles:4 (1736964107585972103) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:3 (3558743545747527853) --> + <!-- no translation found for bluetooth_a2dp_codec_summaries:4 (9167103241281353659) --> <string-array name="bluetooth_a2dp_codec_sample_rate_titles"> <item msgid="3093023430402746802">"Sebenzisa ukukhetha kwesistimu (Okuzenzakalelayo)"</item> <item msgid="8895532488906185219">"44.1 kHz"</item> diff --git a/packages/SettingsLib/res/values-zu/strings.xml b/packages/SettingsLib/res/values-zu/strings.xml index b5982978be04..41c29fce1699 100644 --- a/packages/SettingsLib/res/values-zu/strings.xml +++ b/packages/SettingsLib/res/values-zu/strings.xml @@ -356,8 +356,7 @@ <string name="battery_info_status_charging" msgid="1705179948350365604">"Iyashaja"</string> <string name="battery_info_status_charging_lower" msgid="8689770213898117994">"iyashaja"</string> <string name="battery_info_status_discharging" msgid="310932812698268588">"Ayishaji"</string> - <!-- no translation found for battery_info_status_not_charging (8523453668342598579) --> - <skip /> + <string name="battery_info_status_not_charging" msgid="8523453668342598579">"Kuxhunyiwe, ayikwazi ukushaja khona manje"</string> <string name="battery_info_status_full" msgid="2824614753861462808">"Kugcwele"</string> <string name="disabled_by_admin_summary_text" msgid="6750513964908334617">"Kulawulwa umqondisi"</string> <string name="enabled_by_admin" msgid="5302986023578399263">"Kunikwe amandla umlawuli"</string> diff --git a/packages/SettingsLib/res/values/arrays.xml b/packages/SettingsLib/res/values/arrays.xml index db3274ab478c..1f1b67e6abaf 100644 --- a/packages/SettingsLib/res/values/arrays.xml +++ b/packages/SettingsLib/res/values/arrays.xml @@ -121,8 +121,8 @@ <item>Use System Selection (Default)</item> <item>SBC</item> <item>AAC</item> - <item>aptX</item> - <item>aptX HD</item> + <item><xliff:g id="aptx">Qualcomm(R) aptX(TM) audio</xliff:g></item> + <item><xliff:g id="aptx_hd">Qualcomm(R) aptX(TM) HD audio</xliff:g></item> <item>LDAC</item> <item>Enable Optional Codecs</item> <item>Disable Optional Codecs</item> @@ -145,8 +145,8 @@ <item>Use System Selection (Default)</item> <item>SBC</item> <item>AAC</item> - <item>aptX</item> - <item>aptX HD</item> + <item><xliff:g id="aptx">Qualcomm(R) aptX(TM) audio</xliff:g></item> + <item><xliff:g id="aptx_hd">Qualcomm(R) aptX(TM) HD audio</xliff:g></item> <item>LDAC</item> <item>Enable Optional Codecs</item> <item>Disable Optional Codecs</item> diff --git a/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/phone/NavBarButtonProvider.java b/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/phone/NavBarButtonProvider.java index 5243228121c6..1285ed87718e 100644 --- a/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/phone/NavBarButtonProvider.java +++ b/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/phone/NavBarButtonProvider.java @@ -27,7 +27,7 @@ public interface NavBarButtonProvider extends Plugin { public static final String ACTION = "com.android.systemui.action.PLUGIN_NAV_BUTTON"; - public static final int VERSION = 2; + public static final int VERSION = 3; /** * Returns a view in the nav bar. If the id is set "back", "home", "recent_apps", "menu", @@ -46,8 +46,6 @@ public interface NavBarButtonProvider extends Plugin { void setVertical(boolean vertical); - void setCarMode(boolean carMode); - void setDarkIntensity(float intensity); } } diff --git a/packages/SystemUI/res/values-af/strings.xml b/packages/SystemUI/res/values-af/strings.xml index a99fb6cdcfce..cdd732b01419 100644 --- a/packages/SystemUI/res/values-af/strings.xml +++ b/packages/SystemUI/res/values-af/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Die rekenaar se RSA-sleutel-vingerafdruk is:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Laat altyd toe van hierdie rekenaar af"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-ontfouting word nie toegelaat nie"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Die gebruiker wat tans by hierdie toestel aangemeld is, kan nie USB-ontfouting aanskakel nie. Skakel na die primêre gebruiker toe oor om hierdie kenmerk te gebruik."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoem om skerm te vul"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Strek om skerm te vul"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Stoor tans skermkiekie..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Kom meer te wete"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Jy is gekoppel aan <xliff:g id="VPN_APP">%1$s</xliff:g>, wat jou netwerkaktiwiteit, insluitend e-posse, programme en webwerwe, kan monitor."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Maak VPN-instellings oop"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Maak vertroude eiebewyse oop"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Jou administrateur het netwerkloglêers aangeskakel wat verkeer op jou toestel monitor.\n\nKontak jou administrateur vir meer inligting."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minuut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Verminder werkverrigting en agtergronddata"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Knoppie <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimeer"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Maak toe"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Sleep af om toe te maak"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Prent op prent-kieslys"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in beeld-in-beeld"</string> <string name="pip_notification_message" msgid="5619512781514343311">"As jy nie wil hê dat <xliff:g id="NAME">%s</xliff:g> hierdie kenmerk moet gebruik nie, tik om instellings oop te maak en skakel dit af."</string> <string name="pip_play" msgid="1417176722760265888">"Speel"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Kieslys"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g>-program"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Opletberigte"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Battery"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Skermkiekies"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Algemene boodskappe"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Berging"</string> diff --git a/packages/SystemUI/res/values-am/strings.xml b/packages/SystemUI/res/values-am/strings.xml index a7b04c4cf749..0bda81cb4159 100644 --- a/packages/SystemUI/res/values-am/strings.xml +++ b/packages/SystemUI/res/values-am/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"የኮምፒውተሩ RSA ቁልፍ ጣት አሻራ ይሄ ነው፦\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"ሁልጊዜ ከዚህ ኮምፒውተር ፍቀድ"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"የዩኤስቢ እርማት አይፈቀድም"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"አሁን ወደዚህ መሣሪያ የገባው ተጠቃሚ የዩኤስቢ እርማትን ማብራት አይችልም። ይህን ባህሪ ለመጠቀም ወደ ዋና ተጠቃሚ ይቀይሩ።"</string> <string name="compat_mode_on" msgid="6623839244840638213">"ማያ እንዲሞላ አጉላ"</string> <string name="compat_mode_off" msgid="4434467572461327898">"ማያ ለመሙለት ሳብ"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"ቅጽበታዊ ገጽ እይታ በማስቀመጥ ላይ..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"የበለጠ ለመረዳት"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"እርስዎ ኢሜይሎችን፣ መተግበሪያዎችን እና ድር ጣቢያዎችንም ጨምሮ የግል የአውታረ መረብ እንቅስቃሴዎን መከታተል ከሚችለው <xliff:g id="VPN_APP">%1$s</xliff:g> ጋር ተገናኝተዋል።"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"የቪፒኤን ቅንብሮችን ይክፈቱ"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"የታመኑ ምስክርነቶችን ክፈት"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"የእርስዎ አስተዳዳሪ የአውታረ መረብ ምዝግብ ማስታወሻ መያዝን አብርተዋል፣ ይህም በመሣሪያዎ ላይ ያለውን ትራፊክ ይከታተላል።\n\nተጨማሪ መረጃ ለማግኘት አስተዳዳሪዎን ያነጋግሩ።"</string> @@ -587,8 +585,10 @@ <item quantity="other"> %d ደቂቃዎች</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"አፈጻጸምን እና የጀርባ ውሂብን ይቀንሳል"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"አዝራር <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"መነሻ"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"አሳንስ"</string> <string name="pip_phone_close" msgid="8416647892889710330">"ዝጋ"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ለማሰናበት ወደ ታች ይጎትቱ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"በስዕል ምናሌ ውስጥ ያለ ስዕል"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> በስዕል-ላይ-ስዕል ውስጥ ነው"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> ይህን ባህሪ እንዲጠቀም ካልፈለጉ ቅንብሮችን ለመክፈት መታ ያድርጉና ያጥፉት።"</string> <string name="pip_play" msgid="1417176722760265888">"አጫውት"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"ምናሌ"</string> <string name="tuner_app" msgid="3507057938640108777">"የ<xliff:g id="APP">%1$s</xliff:g> መተግበሪያ"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"ማንቂያዎች"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"ባትሪ"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"ቅጽበታዊ ገጽ እይታዎች"</string> <string name="notification_channel_general" msgid="4525309436693914482">"አጠቃላይ መልዕክቶች"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"ማከማቻ"</string> diff --git a/packages/SystemUI/res/values-ar/strings.xml b/packages/SystemUI/res/values-ar/strings.xml index 3632fe02d9d8..04a7daaf49f2 100644 --- a/packages/SystemUI/res/values-ar/strings.xml +++ b/packages/SystemUI/res/values-ar/strings.xml @@ -68,8 +68,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"الملف المرجعي الرئيسي لـ RSA في هذا الكمبيوتر هو:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"السماح دائمًا من هذا الكمبيوتر"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"لا يُسمح بتصحيح أخطاء USB"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"لا يمكن للمستخدم الذي يسجّل دخوله حاليًا إلى هذا الجهاز تشغيل تصحيح أخطاء USB. لاستخدام هذه الميزة، يمكنك التبديل إلى المستخدم الأساسي."</string> <string name="compat_mode_on" msgid="6623839244840638213">"تكبير/تصغير لملء الشاشة"</string> <string name="compat_mode_off" msgid="4434467572461327898">"توسيع بملء الشاشة"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"جارٍ حفظ لقطة الشاشة..."</string> @@ -465,8 +464,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"مزيد من المعلومات"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"لقد اتصلت بتطبيق <xliff:g id="VPN_APP">%1$s</xliff:g>، الذي يمكن أن يراقب نشاط الشبكة، بما في ذلك رسائل البريد الإلكتروني والتطبيقات والمواقع الإلكترونية."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"فتح إعدادات الشبكة الافتراضية الخاصة (VPN)"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"فتح بيانات الاعتماد الموثوق بها"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"شغَّل المشرف ميزة تسجيل بيانات الشبكة، والتي يتم من خلالها مراقبة حركة البيانات على جهازك.\n\nللحصول على المزيد من المعلومات، اتصل بالمشرف."</string> @@ -611,8 +609,10 @@ <item quantity="one">دقيقة واحدة</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"لخفض مستوى الأداء وبيانات الخلفية"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"الزر <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -752,7 +752,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"تصغير"</string> <string name="pip_phone_close" msgid="8416647892889710330">"إغلاق"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"اسحب لأسفل للإلغاء"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"قائمة صورة داخل صورة"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> يظهر في صورة داخل صورة"</string> <string name="pip_notification_message" msgid="5619512781514343311">"إذا كنت لا تريد أن يستخدم <xliff:g id="NAME">%s</xliff:g> هذه الميزة، فانقر لفتح الإعدادات، ثم أوقِف تشغيل هذه الميزة."</string> <string name="pip_play" msgid="1417176722760265888">"تشغيل"</string> @@ -780,8 +781,7 @@ <string name="tuner_menu" msgid="191640047241552081">"القائمة"</string> <string name="tuner_app" msgid="3507057938640108777">"تطبيق <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"التنبيهات"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"البطارية"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"لقطات الشاشة"</string> <string name="notification_channel_general" msgid="4525309436693914482">"رسائل عامة"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"سعة التخزين"</string> diff --git a/packages/SystemUI/res/values-az/strings.xml b/packages/SystemUI/res/values-az/strings.xml index a20df383d54e..d5935e6f31d2 100644 --- a/packages/SystemUI/res/values-az/strings.xml +++ b/packages/SystemUI/res/values-az/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Kompüterin RSA barmaq izi: \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Bu kompüterdən həmişə icazə verilsin"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB debaq prosesinə icazə verilmir"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Hazırda bu cihaza daxil olmuş istifadəçi USB sazlama prosesini aktiv edə bilməz. Bu funksiyadan istifadə etmək üçün əsas istifadəçi hesaba daxil olmalıdır."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Ekranı doldurmaq üçün yaxınlaşdır"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Ekranı doldurmaq üçün uzat"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Skrinşot yadda saxlanılır..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Ətraflı məlumat"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"<xliff:g id="VPN_APP">%1$s</xliff:g> tətbiqinə qoşulmusunuz və o, e-məktublar, tətbiq və veb saytlar daxil olmaqla şəbəkə fəaliyyətinizə nəzarət edə bilər."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" ("</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN ayarlarını açın"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Etibarlı kredensialları açın"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Admin, cihazdakı trafikə nəzarət edən şəbəkə loqlarını aktiv etdi.\n\nƏtraflı məlumat üçün administrator ilə əlaqə saxlayın."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d dəqiqə</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Performansı azaldır və arxa fon datasını məhdudlaşdırır"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Düymə <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Əsas səhifə"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Kiçildin"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Bağlayın"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Rədd etmək üçün aşağı çəkin"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Şəkil-içində-şəkil menyusu"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> şəkil içində şəkildədir"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> tətbiqinin bu funksiyadan istifadə etməyini istəmirsinizsə, ayarları açmaq və deaktiv etmək üçün klikləyin."</string> <string name="pip_play" msgid="1417176722760265888">"Oxudun"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menyu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> tətbiqi"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Siqnallar"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batareya"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Skrinşotlar"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Ümumi Mesajlar"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Yaddaş"</string> diff --git a/packages/SystemUI/res/values-b+sr+Latn/strings.xml b/packages/SystemUI/res/values-b+sr+Latn/strings.xml index 57a3af109852..7a793a60c85d 100644 --- a/packages/SystemUI/res/values-b+sr+Latn/strings.xml +++ b/packages/SystemUI/res/values-b+sr+Latn/strings.xml @@ -65,8 +65,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Digitalni otisak RSA ključa ovog računara je:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Uvek dozvoli sa ovog računara"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Otklanjanje grešaka na USB-u nije dozvoljeno"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Korisnik koji je trenutno prijavljen na ovaj uređaj ne može da uključi otklanjanje grešaka na USB-u. Da biste koristili ovu funkciju, prebacite na primarnog korisnika."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zumiraj na celom ekranu"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Razvuci na ceo ekran"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Čuvanje snimka ekrana..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Saznajte više"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Povezani ste sa aplikacijom <xliff:g id="VPN_APP">%1$s</xliff:g>, koja može da nadgleda aktivnosti na mreži, uključujući imejlove, aplikacije i veb-sajtove."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Otvori podešavanja VPN-a"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Otvorite pouzdane akreditive"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administrator je uključio evidentiranje mreže, koje prati saobraćaj na uređaju.\n\nKontaktirajte administratora za više informacija."</string> @@ -593,8 +591,10 @@ <item quantity="other">%d minuta</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Smanjuje performanse i pozadinske podatke"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Dugme <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Taster Početna"</string> @@ -734,7 +734,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Umanji"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zatvori"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Prevucite nadole da biste odbili"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Meni Slika u slici"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> je slika u slici"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ako ne želite da <xliff:g id="NAME">%s</xliff:g> koristi ovu funkciju, dodirnite da biste otvorili podešavanja i isključili je."</string> <string name="pip_play" msgid="1417176722760265888">"Pusti"</string> @@ -762,8 +763,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Meni"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplikacija <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Obaveštenja"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Baterija"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Snimci ekrana"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Opšte poruke"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Memorijski prostor"</string> diff --git a/packages/SystemUI/res/values-be/strings.xml b/packages/SystemUI/res/values-be/strings.xml index 707ffb5cd22e..b6e006234447 100644 --- a/packages/SystemUI/res/values-be/strings.xml +++ b/packages/SystemUI/res/values-be/strings.xml @@ -601,8 +601,10 @@ <item quantity="other">%d хвіліны</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Памяншае прадукцыйнасць і фонавую перадачу даных"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Кнопка <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -742,7 +744,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Згарнуць"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Закрыць"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Перацягніце ўніз, каб адхіліць"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Меню \"Відарыс у відарысе\""</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> з’яўляецца відарысам у відарысе"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Калі вы не хочаце, каб праграма <xliff:g id="NAME">%s</xliff:g> выкарыстоўвала гэту функцыю, дакраніцеся, каб адкрыць налады і адключыць яе."</string> <string name="pip_play" msgid="1417176722760265888">"Прайграць"</string> diff --git a/packages/SystemUI/res/values-bg/strings.xml b/packages/SystemUI/res/values-bg/strings.xml index 9c72f8209798..f36d797e18dc 100644 --- a/packages/SystemUI/res/values-bg/strings.xml +++ b/packages/SystemUI/res/values-bg/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Отпечатъкът на RSA ключа на компютъра е:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Винаги да се разрешава от този компютър"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Отстраняването на грешки през USB не е разрешено"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Потребителят, който понастоящем е влязъл в това устройство, не може да включи функцията за отстраняване на грешки през USB. За да я използвате, превключете към основния потребител."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Мащаб – запълва екрана"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Разпъване – запълва екрана"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Екранната снимка се запазва..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Научете повече"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Установена е връзка с приложението <xliff:g id="VPN_APP">%1$s</xliff:g>, което може да наблюдава активността ви в мрежата, вкл. имейли, приложения и уебсайтове."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Отваряне на настройките за VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Отваряне на надеждните идентификационни данни"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Администраторът ви е включил функцията за регистриране на мрежовата активност, която следи трафика на устройството ви.\n\nЗа повече информация се свържете с администратора си."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d минута</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Намалява ефективността и данните на заден план"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Бутон „<xliff:g id="NAME">%1$s</xliff:g>“"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Начало"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Намаляване"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Затваряне"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Преместете надолу с плъзгане, за да отхвърлите"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Меню за режима „Картина в картината“"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> е в режима „Картина в картината“"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ако не искате <xliff:g id="NAME">%s</xliff:g> да използва тази функция, докоснете, за да отворите настройките, и я изключете."</string> <string name="pip_play" msgid="1417176722760265888">"Пускане"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Меню"</string> <string name="tuner_app" msgid="3507057938640108777">"Приложение <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Сигнали"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Батерия"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Екранни снимки"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Общи съобщения"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Хранилище"</string> diff --git a/packages/SystemUI/res/values-bn/strings.xml b/packages/SystemUI/res/values-bn/strings.xml index f8b245ffb4af..f06f48b95373 100644 --- a/packages/SystemUI/res/values-bn/strings.xml +++ b/packages/SystemUI/res/values-bn/strings.xml @@ -587,8 +587,10 @@ <item quantity="other">%d মিনিট</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"কার্য-সম্পাদনা ও পশ্চাদপট ডেটাকে কমিয়ে দেয়"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> বোতাম"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"হোম"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ছোটো করুন"</string> <string name="pip_phone_close" msgid="8416647892889710330">"বন্ধ করুন"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"খারিজ করতে নিচের দিকে টেনে আনুন"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"পিকচার ইন পিকচার মেনু"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"ছবির-মধ্যে-ছবি তে <xliff:g id="NAME">%s</xliff:g> আছেন"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> কে এই বৈশিষ্ট্যটি ব্যবহার করতে দিতে না চাইলে ট্যাপ করে সেটিংসে গিয়ে সেটি বন্ধ করে দিন।"</string> <string name="pip_play" msgid="1417176722760265888">"চালান"</string> diff --git a/packages/SystemUI/res/values-bs/strings.xml b/packages/SystemUI/res/values-bs/strings.xml index e6a754525120..31ae3f6a1b49 100644 --- a/packages/SystemUI/res/values-bs/strings.xml +++ b/packages/SystemUI/res/values-bs/strings.xml @@ -65,8 +65,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"RSA otisak prsta za otključavanje računara je: \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Uvijek dozvoli sa ovog računara"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Otklanjanje grešaka putem uređaja spojenog na USB nije dozvoljeno"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Korisnik koji je trenutno prijavljen na ovaj uređaj ne može uključiti opciju za otklanjanje grešaka koristeći USB. Da koristite tu funkciju, prebacite se na primarnog korisnika."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Uvećaj prikaz na ekran"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Razvuci prikaz na ekran"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Spašavanje snimka ekrana..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Saznajte više"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Povezani ste s aplikacijom <xliff:g id="VPN_APP">%1$s</xliff:g>, koja može pratiti vašu aktivnost na mreži, uključujući e-poruke i web lokacije."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Otvorite postavke VPN mreže"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Otvorite pouzdane akreditive"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Vaš administrator je uključio zapisivanje na mreži, čime se prati saobraćaj na vašem uređaju.\n\nZa više informacija, obratite se administratoru."</string> @@ -595,8 +593,10 @@ <item quantity="other">%d minuta</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Ograničava rad i prijenos podataka u pozadini"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Dugme <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Tipka za početak"</string> @@ -736,7 +736,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Umanji"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zatvori"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Povucite prema dolje da odbacite"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Meni za način rada Slika u slici"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> je u načinu priakza Slika u slici"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ako ne želite da <xliff:g id="NAME">%s</xliff:g> koristi ovu funkciju, dodirnite da otvorite postavke i isključite je."</string> <string name="pip_play" msgid="1417176722760265888">"Reproduciraj"</string> @@ -764,8 +765,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Meni"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplikacija <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Upozorenja"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Baterija"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Snimci ekrana"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Opće poruke"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Pohrana"</string> diff --git a/packages/SystemUI/res/values-ca/strings.xml b/packages/SystemUI/res/values-ca/strings.xml index 2778c3918d2a..21b02dd6b49c 100644 --- a/packages/SystemUI/res/values-ca/strings.xml +++ b/packages/SystemUI/res/values-ca/strings.xml @@ -64,8 +64,7 @@ <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">"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> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"L\'usuari que té iniciada la sessió al dispositiu en aquest moment no pot activar la depuració per USB. Per utilitzar aquesta funció, cal canviar a l\'usuari principal."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom per omplir pantalla"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Estira per omplir pant."</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"S\'està desant captura de pantalla..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Més informació"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Estàs connectat a <xliff:g id="VPN_APP">%1$s</xliff:g>, que pot supervisar la teva activitat a la xarxa, com els correus electrònics, les aplicacions i els llocs web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Obre la configuració de la VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Obre les credencials de confiança"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"L\'administrador ha activat el registre de xarxa, que supervisa el trànsit del teu dispositiu.\n\nPer obtenir més informació, contacta amb l\'administrador."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Redueix el rendiment i les dades en segon pla"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botó <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Inici"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimitza"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Tanca"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arrossega cap avall per ignorar-ho"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menú per a Pantalla en pantalla"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> està en pantalla en pantalla"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Si no vols que <xliff:g id="NAME">%s</xliff:g> utilitzi aquesta funció, toca per obrir la configuració i desactiva-la."</string> <string name="pip_play" msgid="1417176722760265888">"Reprodueix"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menú"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplicació <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alertes"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Bateria"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Captures de pantalla"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Missatges generals"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Emmagatzematge"</string> diff --git a/packages/SystemUI/res/values-ca/strings_tv.xml b/packages/SystemUI/res/values-ca/strings_tv.xml index 6e9fae5e7481..a6c17f8e5f50 100644 --- a/packages/SystemUI/res/values-ca/strings_tv.xml +++ b/packages/SystemUI/res/values-ca/strings_tv.xml @@ -19,7 +19,7 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="notification_channel_tv_pip" msgid="134047986446577723">"Imatge en imatge"</string> + <string name="notification_channel_tv_pip" msgid="134047986446577723">"Pantalla en pantalla"</string> <string name="pip_notification_unknown_title" msgid="6289156118095849438">"(Programa sense títol)"</string> <string name="pip_close" msgid="3480680679023423574">"Tanca PIP"</string> <string name="pip_fullscreen" msgid="8604643018538487816">"Pantalla completa"</string> diff --git a/packages/SystemUI/res/values-cs/strings.xml b/packages/SystemUI/res/values-cs/strings.xml index f1092aa1be25..ea77a5e9ebac 100644 --- a/packages/SystemUI/res/values-cs/strings.xml +++ b/packages/SystemUI/res/values-cs/strings.xml @@ -601,8 +601,8 @@ <item quantity="one">%d minuta</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Spořič baterie při nabíjení není k dispozici"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Spořič baterie"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Omezuje výkon a data na pozadí"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Tlačítko <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -742,7 +742,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimalizovat"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zavřít"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Nápovědu zavřete přetažením dolů"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Nabídka režimu obraz v obraze"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Nabídka"</string> <string name="pip_notification_title" msgid="3204024940158161322">"Aplikace <xliff:g id="NAME">%s</xliff:g> je v režimu obraz v obraze"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Pokud nechcete, aby aplikace <xliff:g id="NAME">%s</xliff:g> tuto funkci používala, klepnutím otevřete nastavení a funkci vypněte."</string> <string name="pip_play" msgid="1417176722760265888">"Přehrát"</string> diff --git a/packages/SystemUI/res/values-da/strings.xml b/packages/SystemUI/res/values-da/strings.xml index c2a0fa2147ab..7542f1f6c574 100644 --- a/packages/SystemUI/res/values-da/strings.xml +++ b/packages/SystemUI/res/values-da/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Fingeraftrykket for computerens RSA-nøgle er:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Tillad altid fra denne computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-fejlretning er ikke tilladt"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Den bruger, der i øjeblikket er logget ind på denne enhed, kan ikke aktivere USB-fejlretning. Skift til den primære bruger for at bruge denne funktion."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom til fuld skærm"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Stræk til fuld skærm"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Gemmer screenshot..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Få flere oplysninger"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Du har forbindelse til <xliff:g id="VPN_APP">%1$s</xliff:g>, som kan overvåge din netværksaktivitet, bl.a. e-mails, apps og websites."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Åbn VPN-indstillinger"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Åbn pålidelige loginoplysninger"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Din administrator har aktiveret netværksregistrering, som overvåger trafik på din enhed.\n\nKontakt din administrator for at få flere oplysninger."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d minutter</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reducerer ydeevne og baggrundsdata"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g>-knap"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimer"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Luk"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Træk nedad for at afvise"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu for integreret billede"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> vises som integreret billede"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Hvis du ikke ønsker, at <xliff:g id="NAME">%s</xliff:g> skal benytte denne funktion, kan du åbne indstillingerne og deaktivere den."</string> <string name="pip_play" msgid="1417176722760265888">"Afspil"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Appen <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Underretninger"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batteri"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshots"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Generelle meddelelser"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Lagerplads"</string> diff --git a/packages/SystemUI/res/values-de/strings.xml b/packages/SystemUI/res/values-de/strings.xml index 4ae58ca5598f..c6d2619dc0a6 100644 --- a/packages/SystemUI/res/values-de/strings.xml +++ b/packages/SystemUI/res/values-de/strings.xml @@ -591,8 +591,10 @@ <item quantity="one">%d Minute</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduzierung der Leistung und Hintergrunddaten"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Taste <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Pos1"</string> @@ -732,7 +734,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimieren"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Schließen"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Zum Schließen nach unten ziehen"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menü \"Bild im Bild\""</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ist in Bild im Bild"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Wenn du nicht möchtest, dass <xliff:g id="NAME">%s</xliff:g> diese Funktion verwendet, tippe, um die Einstellungen zu öffnen und die Funktion zu deaktivieren."</string> <string name="pip_play" msgid="1417176722760265888">"Wiedergeben"</string> diff --git a/packages/SystemUI/res/values-el/strings.xml b/packages/SystemUI/res/values-el/strings.xml index a7e1a833c3f4..edc6b2fe0615 100644 --- a/packages/SystemUI/res/values-el/strings.xml +++ b/packages/SystemUI/res/values-el/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d λεπτό</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Μειώνει την απόδοση και τα δεδομένα παρασκηνίου"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Κουμπί <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Ελαχιστοποίηση"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Κλείσιμο"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Σύρετε προς τα κάτω για παράβλεψη"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Μενού λειτουργίας Picture in picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"Η λειτουργία picture-in-picture είναι ενεργή σε <xliff:g id="NAME">%s</xliff:g>."</string> <string name="pip_notification_message" msgid="5619512781514343311">"Εάν δεν θέλετε να χρησιμοποιείται αυτή η λειτουργία από την εφαρμογή <xliff:g id="NAME">%s</xliff:g>, πατήστε για να ανοίξετε τις ρυθμίσεις και απενεργοποιήστε την."</string> <string name="pip_play" msgid="1417176722760265888">"Αναπαραγωγή"</string> diff --git a/packages/SystemUI/res/values-en-rAU/strings.xml b/packages/SystemUI/res/values-en-rAU/strings.xml index 6d0eebef2a4c..6a84a779fed5 100644 --- a/packages/SystemUI/res/values-en-rAU/strings.xml +++ b/packages/SystemUI/res/values-en-rAU/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"The computer\'s RSA key fingerprint is:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Always allow from this computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB debugging not allowed"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"The user currently signed in to this device can\'t turn on USB debugging. To use this feature, switch to the primary user."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom to fill screen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Stretch to fill screen"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Saving screenshot…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Find out more"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"You\'re connected to <xliff:g id="VPN_APP">%1$s</xliff:g>, which can monitor your network activity, including emails, apps and websites."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Open VPN settings"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Open trusted credentials"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Your admin has turned on network logging, which monitors traffic on your device.\n\nFor more information, contact your admin."</string> @@ -587,8 +585,8 @@ <item quantity="one">%d minute</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Battery Saver not available during charging"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Battery Saver"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduces performance and background data"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Button <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +726,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimise"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Close"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Drag down to dismiss"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Picture in picture menu"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Menu"</string> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"If you don\'t want <xliff:g id="NAME">%s</xliff:g> to use this feature, tap to open settings and turn it off."</string> <string name="pip_play" msgid="1417176722760265888">"Play"</string> @@ -756,8 +754,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> app"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alerts"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Battery"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshots"</string> <string name="notification_channel_general" msgid="4525309436693914482">"General Messages"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Storage"</string> diff --git a/packages/SystemUI/res/values-en-rCA-land/strings.xml b/packages/SystemUI/res/values-en-rCA-land/strings.xml new file mode 100644 index 000000000000..ba773b8f8b13 --- /dev/null +++ b/packages/SystemUI/res/values-en-rCA-land/strings.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/** + * Copyright (c) 2010, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="toast_rotation_locked" msgid="7609673011431556092">"Screen is now locked in landscape orientation."</string> +</resources> diff --git a/packages/SystemUI/res/values-en-rCA/strings.xml b/packages/SystemUI/res/values-en-rCA/strings.xml index eb01ff688ae3..bd4c8578d00d 100644 --- a/packages/SystemUI/res/values-en-rCA/strings.xml +++ b/packages/SystemUI/res/values-en-rCA/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"The computer\'s RSA key fingerprint is:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Always allow from this computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB debugging not allowed"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"The user currently signed in to this device can\'t turn on USB debugging. To use this feature, switch to the primary user."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom to fill screen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Stretch to fill screen"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Saving screenshot…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Find out more"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"You\'re connected to <xliff:g id="VPN_APP">%1$s</xliff:g>, which can monitor your network activity, including emails, apps and websites."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Open VPN settings"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Open trusted credentials"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Your admin has turned on network logging, which monitors traffic on your device.\n\nFor more information, contact your admin."</string> @@ -587,8 +585,8 @@ <item quantity="one">%d minute</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Battery Saver not available during charging"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Battery Saver"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduces performance and background data"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Button <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +726,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimise"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Close"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Drag down to dismiss"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Picture in picture menu"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Menu"</string> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"If you don\'t want <xliff:g id="NAME">%s</xliff:g> to use this feature, tap to open settings and turn it off."</string> <string name="pip_play" msgid="1417176722760265888">"Play"</string> @@ -756,8 +754,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> app"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alerts"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Battery"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshots"</string> <string name="notification_channel_general" msgid="4525309436693914482">"General Messages"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Storage"</string> diff --git a/packages/SystemUI/res/values-en-rCA/strings_car.xml b/packages/SystemUI/res/values-en-rCA/strings_car.xml new file mode 100644 index 000000000000..27b916e9a2e6 --- /dev/null +++ b/packages/SystemUI/res/values-en-rCA/strings_car.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/** + * Copyright (c) 2016, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="unknown_user_label" msgid="4323896111737677955">"Unknown"</string> + <string name="start_driving" msgid="864023351402918991">"Start Driving"</string> +</resources> diff --git a/packages/SystemUI/res/values-en-rCA/strings_tv.xml b/packages/SystemUI/res/values-en-rCA/strings_tv.xml new file mode 100644 index 000000000000..31cbd8377fd5 --- /dev/null +++ b/packages/SystemUI/res/values-en-rCA/strings_tv.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/** + * Copyright (c) 2016, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="notification_channel_tv_pip" msgid="134047986446577723">"Picture-in-picture"</string> + <string name="pip_notification_unknown_title" msgid="6289156118095849438">"(No title program)"</string> + <string name="pip_close" msgid="3480680679023423574">"Close PIP"</string> + <string name="pip_fullscreen" msgid="8604643018538487816">"Full screen"</string> +</resources> diff --git a/packages/SystemUI/res/values-en-rGB/strings.xml b/packages/SystemUI/res/values-en-rGB/strings.xml index 6d0eebef2a4c..6a84a779fed5 100644 --- a/packages/SystemUI/res/values-en-rGB/strings.xml +++ b/packages/SystemUI/res/values-en-rGB/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"The computer\'s RSA key fingerprint is:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Always allow from this computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB debugging not allowed"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"The user currently signed in to this device can\'t turn on USB debugging. To use this feature, switch to the primary user."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom to fill screen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Stretch to fill screen"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Saving screenshot…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Find out more"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"You\'re connected to <xliff:g id="VPN_APP">%1$s</xliff:g>, which can monitor your network activity, including emails, apps and websites."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Open VPN settings"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Open trusted credentials"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Your admin has turned on network logging, which monitors traffic on your device.\n\nFor more information, contact your admin."</string> @@ -587,8 +585,8 @@ <item quantity="one">%d minute</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Battery Saver not available during charging"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Battery Saver"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduces performance and background data"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Button <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +726,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimise"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Close"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Drag down to dismiss"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Picture in picture menu"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Menu"</string> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"If you don\'t want <xliff:g id="NAME">%s</xliff:g> to use this feature, tap to open settings and turn it off."</string> <string name="pip_play" msgid="1417176722760265888">"Play"</string> @@ -756,8 +754,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> app"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alerts"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Battery"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshots"</string> <string name="notification_channel_general" msgid="4525309436693914482">"General Messages"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Storage"</string> diff --git a/packages/SystemUI/res/values-en-rIN/strings.xml b/packages/SystemUI/res/values-en-rIN/strings.xml index 6d0eebef2a4c..6a84a779fed5 100644 --- a/packages/SystemUI/res/values-en-rIN/strings.xml +++ b/packages/SystemUI/res/values-en-rIN/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"The computer\'s RSA key fingerprint is:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Always allow from this computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB debugging not allowed"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"The user currently signed in to this device can\'t turn on USB debugging. To use this feature, switch to the primary user."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom to fill screen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Stretch to fill screen"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Saving screenshot…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Find out more"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"You\'re connected to <xliff:g id="VPN_APP">%1$s</xliff:g>, which can monitor your network activity, including emails, apps and websites."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Open VPN settings"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Open trusted credentials"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Your admin has turned on network logging, which monitors traffic on your device.\n\nFor more information, contact your admin."</string> @@ -587,8 +585,8 @@ <item quantity="one">%d minute</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Battery Saver not available during charging"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Battery Saver"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduces performance and background data"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Button <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +726,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimise"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Close"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Drag down to dismiss"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Picture in picture menu"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Menu"</string> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"If you don\'t want <xliff:g id="NAME">%s</xliff:g> to use this feature, tap to open settings and turn it off."</string> <string name="pip_play" msgid="1417176722760265888">"Play"</string> @@ -756,8 +754,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> app"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alerts"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Battery"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshots"</string> <string name="notification_channel_general" msgid="4525309436693914482">"General Messages"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Storage"</string> diff --git a/packages/SystemUI/res/values-en-rXC/strings.xml b/packages/SystemUI/res/values-en-rXC/strings.xml index 27980eedfbfd..434c67b7da18 100644 --- a/packages/SystemUI/res/values-en-rXC/strings.xml +++ b/packages/SystemUI/res/values-en-rXC/strings.xml @@ -585,8 +585,8 @@ <item quantity="one">%d minute</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Battery saver not available during charging"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Battery saver"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduces performance and background data"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Button <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -726,7 +726,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimize"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Close"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Drag down to dismiss"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Picture in picture menu"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Menu"</string> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"If you don\'t want <xliff:g id="NAME">%s</xliff:g> to use this feature, tap to open settings and turn it off."</string> <string name="pip_play" msgid="1417176722760265888">"Play"</string> diff --git a/packages/SystemUI/res/values-es-rUS/strings.xml b/packages/SystemUI/res/values-es-rUS/strings.xml index b7e0f72fef0f..814708084882 100644 --- a/packages/SystemUI/res/values-es-rUS/strings.xml +++ b/packages/SystemUI/res/values-es-rUS/strings.xml @@ -589,8 +589,10 @@ <item quantity="one">%d minuto</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduce el rendimiento y el uso de datos en segundo plano"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botón <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Página principal"</string> @@ -730,7 +732,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizar"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Cerrar"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arrastra hacia abajo para descartar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menú de Imagen en imagen"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> está en modo de imagen en imagen"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Si no quieres que <xliff:g id="NAME">%s</xliff:g> use esta función, presiona para abrir la configuración y desactivarla."</string> <string name="pip_play" msgid="1417176722760265888">"Reproducir"</string> diff --git a/packages/SystemUI/res/values-es/strings.xml b/packages/SystemUI/res/values-es/strings.xml index 0a24d92cc050..5e73ef604f2b 100644 --- a/packages/SystemUI/res/values-es/strings.xml +++ b/packages/SystemUI/res/values-es/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"La huella digital de tu clave RSA es:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Permitir siempre desde este ordenador"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Depuración USB no permitida"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"El usuario con el que se ha iniciado sesión en este dispositivo no puede activar la depuración USB. Para utilizar esta función, inicia sesión con la cuenta de usuario principal."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom para ajustar"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Expandir para ajustar"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Guardando captura..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Más información"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Te has conectado a <xliff:g id="VPN_APP">%1$s</xliff:g>, que puede controlar tu actividad de red, como los correos electrónicos, las aplicaciones y los sitios web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Abrir ajustes de VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Abrir credenciales de confianza"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Tu administrador ha activado el registro de la red para supervisar el tráfico en tu dispositivo.\n\nPonte en contacto con él para obtener más información."</string> @@ -589,8 +587,10 @@ <item quantity="one">%d minuto</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduce el rendimiento y los datos en segundo plano"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botón <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Inicio"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizar"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Cerrar"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arrastra hacia abajo para ignorar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menú del modo Imagen en imagen"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> está en imagen en imagen"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Si no quieres que <xliff:g id="NAME">%s</xliff:g> utilice esta función, toca la notificación para abrir los ajustes y desactivarla."</string> <string name="pip_play" msgid="1417176722760265888">"Reproducir"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menú"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplicación <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alertas"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batería"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Capturas de pantalla"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mensajes generales"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Almacenamiento"</string> diff --git a/packages/SystemUI/res/values-et/strings.xml b/packages/SystemUI/res/values-et/strings.xml index 0ef25323cb07..975dfa21a209 100644 --- a/packages/SystemUI/res/values-et/strings.xml +++ b/packages/SystemUI/res/values-et/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Arvuti RSA-võtme sõrmejälg:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Luba alati sellest arvutist"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-silumine pole lubatud"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Sellesse seadmesse praegu sisse logitud kasutaja ei saa USB-silumist sisse lülitada. Selle funktsiooni kasutamiseks vahetage peamisele kasutajale."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Suumi ekraani täitmiseks"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Venita ekraani täitmiseks"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Kuvatõmmise salvestamine ..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Lisateave"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Olete ühendatud rakendusega <xliff:g id="VPN_APP">%1$s</xliff:g>, mis saab jälgida teie võrgutegevusi, sh meile, rakendusi ja veebisaite."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN-i seadete avamine"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Ava usaldusväärsed mandaadid"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Teie administraator on sisse lülitanud võrgu logimise funktsiooni, mis jälgib teie seadmes liiklust.\n\nLisateabe saamiseks võtke ühendust administraatoriga."</string> @@ -589,8 +587,10 @@ <item quantity="one">%d minut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Vähendab jõudlust ja taustaandmeid"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Nupp <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Avaekraan"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimeeri"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Sule"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Loobumiseks lohistage alla"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menüü Pilt pildis"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> on režiimis Pilt pildis"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Kui te ei soovi, et rakendus <xliff:g id="NAME">%s</xliff:g> seda funktsiooni kasutaks, puudutage seadete avamiseks ja lülitage see välja."</string> <string name="pip_play" msgid="1417176722760265888">"Esita"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menüü"</string> <string name="tuner_app" msgid="3507057938640108777">"Rakendus <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Teatised"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Aku"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Ekraanipildid"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Üldised sõnumid"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Salvestusruum"</string> diff --git a/packages/SystemUI/res/values-eu/strings.xml b/packages/SystemUI/res/values-eu/strings.xml index ebbdf87c568e..8e9bcacc981d 100644 --- a/packages/SystemUI/res/values-eu/strings.xml +++ b/packages/SystemUI/res/values-eu/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Ordenagailuaren RSA gakoaren hatz-marka hau da:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Onartu beti ordenagailu honetatik"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Ez da onartzen USB arazketa"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Gailu honetan saioa hasita duen erabiltzaileak ezin du aktibatu USB arazketa. Eginbide hori erabiltzeko, aldatu erabiltzaile nagusira."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Handiagotu pantaila betetzeko"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Luzatu pantaila betetzeko"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Pantaila-argazkia gordetzen…"</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Informazio gehiago"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"<xliff:g id="VPN_APP">%1$s</xliff:g> aplikaziora konektatuta zaude eta hark sareko jarduerak gainbegira ditzake, mezu elektronikoak, aplikazioak eta webguneak barne."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Ireki VPN ezarpenak"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Ireki kredentzial fidagarriak"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administratzaileak sare-erregistroak aktibatu ditu; horrela, zure gailuko trafikoa gainbegira dezake.\n\nInformazio gehiago lortzeko, jarri administratzailearekin harremanetan."</string> @@ -589,8 +587,10 @@ <item quantity="one">%d minutu</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Errendimendua eta atzeko planoko datuen erabilera murrizten ditu"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> botoia"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Hasiera"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizatu"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Itxi"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Baztertzeko, arrastatu behera"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Pantaila txiki gainjarriaren menua"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"Pantaila txiki gainjarrian dago <xliff:g id="NAME">%s</xliff:g>"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ez baduzu nahi <xliff:g id="NAME">%s</xliff:g> zerbitzuak eginbide hori erabiltzea, sakatu hau ezarpenak ireki eta aukera desaktibatzeko."</string> <string name="pip_play" msgid="1417176722760265888">"Erreproduzitu"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menua"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> aplikazioa"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Abisuak"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Bateria"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Pantaila-argazkiak"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mezu orokorrak"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Memoria"</string> diff --git a/packages/SystemUI/res/values-fa/strings.xml b/packages/SystemUI/res/values-fa/strings.xml index 58a5946ba70e..de2c77029f9a 100644 --- a/packages/SystemUI/res/values-fa/strings.xml +++ b/packages/SystemUI/res/values-fa/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"اثر انگشت کلید RSA رایانه: \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"همیشه از این رایانه انجام شود"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"اشکالزدایی USB مجاز نیست"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"کاربری که درحال حاضر در این دستگاه وارد سیستم شده است نمیتواند اشکالزدایی USB را روشن کند. برای استفاده از این قابلیت، به کاربر اصلی تغییر وضعیت دهید."</string> <string name="compat_mode_on" msgid="6623839244840638213">"بزرگنمایی برای پر کردن صفحه"</string> <string name="compat_mode_off" msgid="4434467572461327898">"گسترده کردن برای پر کردن صفحه"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"در حال ذخیره عکس صفحهنمایش..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"بیشتر بدانید"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"به <xliff:g id="VPN_APP">%1$s</xliff:g> وصل شدهاید، که میتواند فعالیت شبکه شما را (ازجمله رایانامهها، برنامهها و وبسایتها) کنترل کند."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"باز کردن تنظیمات VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"باز کردن اعتبارنامه مورداعتماد"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"سرپرست سیستم شما گزارشگیری شبکه را (که بر ترافیک دستگاهتان نظارت میکند) روشن کرده است.\n\nبرای اطلاعات بیشتر، با سرپرست خود تماس بگیرید."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d دقیقه</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"عملکرد و اطلاعات پسزمینه را کاهش میدهد"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"دکمه <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"ابتدا"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"کوچک کردن"</string> <string name="pip_phone_close" msgid="8416647892889710330">"بستن"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"برای نپذیرفتن، به پایین بکشید"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"منوی تصویر در تصویر"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> درحالت تصویر در تصویر است"</string> <string name="pip_notification_message" msgid="5619512781514343311">"اگر نمیخواهید <xliff:g id="NAME">%s</xliff:g> از این قابلیت استفاده کند، با ضربه زدن، تنظیمات را باز کنید و آن را خاموش کنید."</string> <string name="pip_play" msgid="1417176722760265888">"پخش"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"منو"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> برنامه"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"هشدارها"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"باتری"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"عکسهای صفحهنمایش"</string> <string name="notification_channel_general" msgid="4525309436693914482">"پیامهای عمومی"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"فضای ذخیرهسازی"</string> diff --git a/packages/SystemUI/res/values-fi/strings.xml b/packages/SystemUI/res/values-fi/strings.xml index 3469a23cc518..6b39ef87e781 100644 --- a/packages/SystemUI/res/values-fi/strings.xml +++ b/packages/SystemUI/res/values-fi/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Tietokoneen RSA-avaintunnistetiedosto on:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Salli aina tällä tietokoneella"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-vianetsintää ei sallita"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Laitteelle tällä hetkellä kirjautunut käyttäjä ei voi ottaa USB-vianetsintää käyttöön. Vaihda käyttäjäksi ensisijainen käyttäjä, jotta voit käyttää tätä ominaisuutta."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoomaa koko näyttöön"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Venytä koko näyttöön"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Tallennetaan kuvakaappausta..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Lisätietoja"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Olet yhteydessä sovellukseen <xliff:g id="VPN_APP">%1$s</xliff:g>, joka voi valvoa verkkotoimintaasi, esimerkiksi sähköposteja, sovelluksia ja verkkosivustoja."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Avaa VPN-asetukset"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Avaa luotetut todennustiedot"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Järjestelmänvalvoja on ottanut käyttöön verkkolokitietojen tallentamisen. Sen avulla seurataan laitteellasi tapahtuvaa liikennettä.\n\nPyydä lisätietoja järjestelmänvalvojalta."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minuutti</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Rajoittaa suorituskykyä ja taustatiedonsiirtoa."</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Painike <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Pienennä"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Sulje"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Hylkää vetämällä alas."</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Kuva kuvassa ‑valikko"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> on kuva kuvassa ‑tilassa"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Jos et halua, että <xliff:g id="NAME">%s</xliff:g> voi käyttää tätä ominaisuutta, avaa asetukset napauttamalla ja poista se käytöstä."</string> <string name="pip_play" msgid="1417176722760265888">"Toista"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Valikko"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> sovellus"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Ilmoitukset"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Akku"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Kuvakaappaukset"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Yleiset viestit"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Tallennustila"</string> diff --git a/packages/SystemUI/res/values-fr-rCA/strings.xml b/packages/SystemUI/res/values-fr-rCA/strings.xml index a4f5712af523..cc705f9f7e5b 100644 --- a/packages/SystemUI/res/values-fr-rCA/strings.xml +++ b/packages/SystemUI/res/values-fr-rCA/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Empreinte numérique de la clé RSA de l\'ordinateur : \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Toujours autoriser sur cet ordinateur"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Débogage USB non autorisé"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"L\'utilisateur actuellement connecté sur cet appareil ne peut pas activer le débogage USB. Pour utiliser cette fonctionnalité, l\'utilisateur principal doit se connecter."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoomer pour remplir l\'écran"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Étirer pour remplir l\'écran"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Enregistrement capture écran…"</string> @@ -270,8 +269,8 @@ <string name="start_dreams" msgid="5640361424498338327">"Écran de veille"</string> <string name="ethernet_label" msgid="7967563676324087464">"Ethernet"</string> <string name="quick_settings_dnd_label" msgid="8735855737575028208">"Ne pas déranger"</string> - <string name="quick_settings_dnd_priority_label" msgid="483232950670692036">"Priorités seulement"</string> - <string name="quick_settings_dnd_alarms_label" msgid="2559229444312445858">"Alarmes uniquement"</string> + <string name="quick_settings_dnd_priority_label" msgid="483232950670692036">"Prioritaires seulement"</string> + <string name="quick_settings_dnd_alarms_label" msgid="2559229444312445858">"Alarmes seulement"</string> <string name="quick_settings_dnd_none_label" msgid="5025477807123029478">"Aucune interruption"</string> <string name="quick_settings_bluetooth_label" msgid="6304190285170721401">"Bluetooth"</string> <string name="quick_settings_bluetooth_multiple_devices_label" msgid="3912245565613684735">"Bluetooth (<xliff:g id="NUMBER">%d</xliff:g> appareils)"</string> @@ -373,7 +372,7 @@ <string name="interruption_level_none_with_warning" msgid="5114872171614161084">"Aucune interruption : le son des lecteurs d\'écran sera également désactivé."</string> <string name="interruption_level_none" msgid="6000083681244492992">"Aucune interruption"</string> <string name="interruption_level_priority" msgid="6426766465363855505">"Priorités seulement"</string> - <string name="interruption_level_alarms" msgid="5226306993448328896">"Alarmes uniquement"</string> + <string name="interruption_level_alarms" msgid="5226306993448328896">"Alarmes seulement"</string> <string name="interruption_level_none_twoline" msgid="3957581548190765889">"Aucune\ninterruption"</string> <string name="interruption_level_priority_twoline" msgid="1564715335217164124">"Priorités\nuniquement"</string> <string name="interruption_level_alarms_twoline" msgid="3266909566410106146">"Alarmes\nuniquement"</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"En savoir plus"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Vous êtes connecté à <xliff:g id="VPN_APP">%1$s</xliff:g>, qui peut contrôler votre activité réseau, y compris les courriels, les applications et les sites Web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Ouvrir les paramètres RPV"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Ouvrir les authentifiants de confiance"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Votre administrateur a activé la journalisation réseau, qui surveille le trafic sur votre appareil.\n\nPour en savoir plus, communiquez avec lui."</string> @@ -589,8 +587,10 @@ <item quantity="other">%d minutes</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Réduit les performances et les données en arrière-plan"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Bouton <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Accueil"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Réduire"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Fermer"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Faire glisser vers le bas pour ignorer"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu d\'incrustation d\'image"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> est en mode d\'incrustation d\'image"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Si vous ne voulez pas que <xliff:g id="NAME">%s</xliff:g> utilise cette fonctionnalité, touchez l\'écran pour ouvrir les paramètres, puis désactivez-la."</string> <string name="pip_play" msgid="1417176722760265888">"Lire"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Application <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alertes"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Pile"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Saisies d\'écran"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Messages généraux"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Stockage"</string> diff --git a/packages/SystemUI/res/values-fr/strings.xml b/packages/SystemUI/res/values-fr/strings.xml index cb8f6bcc5379..d580de17a96e 100644 --- a/packages/SystemUI/res/values-fr/strings.xml +++ b/packages/SystemUI/res/values-fr/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Empreinte numérique de la clé RSA de l\'ordinateur : \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Toujours autoriser sur cet ordinateur"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Débogage USB non autorisé"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"L\'utilisateur actuellement connecté sur cet appareil ne peut pas activer le débogage USB. Pour utiliser cette fonctionnalité, l\'utilisateur principal doit se connecter."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoomer pour remplir l\'écran"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Étirer pour remplir l\'écran"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Enregistrement capture écran…"</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"En savoir plus"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Vous êtes connecté à <xliff:g id="VPN_APP">%1$s</xliff:g>, qui peut contrôler votre activité sur le réseau, y compris les e-mails, les applications et les sites Web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Ouvrir les paramètres VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Ouvrir les certificats de confiance"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Votre administrateur a activé la journalisation réseau, qui surveille le trafic sur votre appareil.\n\nPour en savoir plus, contactez-le."</string> @@ -589,8 +587,10 @@ <item quantity="other">%d minutes</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Limite les performances et les données en arrière-plan."</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Bouton <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Accueil"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Réduire"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Fermer"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Faire glisser vers le bas pour ignorer"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu Picture-in-picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> est en mode Picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Si vous ne voulez pas que l\'application <xliff:g id="NAME">%s</xliff:g> utilise cette fonctionnalité, appuyez ici pour ouvrir les paramètres et la désactiver."</string> <string name="pip_play" msgid="1417176722760265888">"Lecture"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Application <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alertes"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batterie"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Captures d\'écran"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Nouveaux messages"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Espace de stockage"</string> diff --git a/packages/SystemUI/res/values-gl/strings.xml b/packages/SystemUI/res/values-gl/strings.xml index 01167e043c06..8549de7706c3 100644 --- a/packages/SystemUI/res/values-gl/strings.xml +++ b/packages/SystemUI/res/values-gl/strings.xml @@ -589,8 +589,10 @@ <item quantity="one">%d minuto</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduce o rendemento e os datos en segundo plano"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botón <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Inicio"</string> @@ -730,7 +732,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizar"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Pechar"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arrastra cara abaixo para ignorar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menú de pantalla superposta"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> está na pantalla superposta"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Se non queres que <xliff:g id="NAME">%s</xliff:g> utilice esta función, toca a configuración para abrir as opcións e desactivar a función."</string> <string name="pip_play" msgid="1417176722760265888">"Reproducir"</string> diff --git a/packages/SystemUI/res/values-gu/strings.xml b/packages/SystemUI/res/values-gu/strings.xml index 70b108cfb1d4..a8346b6486fd 100644 --- a/packages/SystemUI/res/values-gu/strings.xml +++ b/packages/SystemUI/res/values-gu/strings.xml @@ -587,8 +587,10 @@ <item quantity="other">%d મિનિટ</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"પ્રદર્શન અને બૅકગ્રાઉન્ડ ડેટા ઘટાડે છે"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"બટન <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"નાનું કરો"</string> <string name="pip_phone_close" msgid="8416647892889710330">"બંધ કરો"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"છોડી દેવા માટે નીચે ખેંચો"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"ચિત્રમાં ચિત્ર મેનૂ"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ચિત્રમાં-ચિત્રની અંદર છે"</string> <string name="pip_notification_message" msgid="5619512781514343311">"જો તમે નથી ઈચ્છતા કે <xliff:g id="NAME">%s</xliff:g> આ સુવિધાનો ઉપયોગ કરે, તો સેટિંગ્સ ખોલવા માટે ટૅપ કરો અને તે સુવિધાને બંધ કરો."</string> <string name="pip_play" msgid="1417176722760265888">"ચલાવો"</string> diff --git a/packages/SystemUI/res/values-hi-land/strings.xml b/packages/SystemUI/res/values-hi-land/strings.xml index de6a6c994fb2..ed0070d4ba19 100644 --- a/packages/SystemUI/res/values-hi-land/strings.xml +++ b/packages/SystemUI/res/values-hi-land/strings.xml @@ -19,5 +19,5 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="toast_rotation_locked" msgid="7609673011431556092">"स्क्रीन को अभी भूदृश्य अभिविन्यास में लॉक किया गया है."</string> + <string name="toast_rotation_locked" msgid="7609673011431556092">"स्क्रीन अभी लैंडस्केप दिशा में लॉक है."</string> </resources> diff --git a/packages/SystemUI/res/values-hi/strings.xml b/packages/SystemUI/res/values-hi/strings.xml index c6be6e0c31ec..01f182d5dceb 100644 --- a/packages/SystemUI/res/values-hi/strings.xml +++ b/packages/SystemUI/res/values-hi/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"कंप्यूटर का RSA कुंजी फ़िंगरप्रिंट है:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"इस कंप्यूटर से हमेशा अनुमति दें"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB डीबगिंग की अनुमति नहीं है"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"इस डिवाइस में वर्तमान में प्रवेश किया हुआ उपयोगकर्ता USB डीबगिंग चालू नहीं कर सकता. इस सुविधा का उपयोग करने के लिए, प्राथमिक उपयोगकर्ता पर स्विच करें."</string> <string name="compat_mode_on" msgid="6623839244840638213">"स्क्रीन भरने के लिए ज़ूम करें"</string> <string name="compat_mode_off" msgid="4434467572461327898">"स्क्रीन भरने के लिए खींचें"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"स्क्रीनशॉट सहेजा जा रहा है..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"अधिक जानें"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"आप <xliff:g id="VPN_APP">%1$s</xliff:g> से कनेक्ट हैं, जो ईमेल, ऐप्लिकेशन और वेबसाइट सहित आपकी नेटवर्क गतिविधि को मॉनिटर कर सकता है."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN सेटिंग खोलें"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"विश्वसनीय क्रेडेंशियल खोलें"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"आपके व्यवस्थापक ने नेटवर्क लॉग करना चालू कर दिया है, जो आपके डिवाइस पर ट्रैफ़िक की निगरानी करता है.\n\nअधिक जानकारी के लिए अपने व्यवस्थापक से संपर्क करें."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d मिनट</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"निष्पादन और पृष्ठभूमि डेटा को कम करता है"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"बटन <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"छोटा करें"</string> <string name="pip_phone_close" msgid="8416647892889710330">"बंद करें"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"खारिज करने के लिए नीचे खींचें और छोड़ें"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"चित्र में चित्र मेनू"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> पिक्चर में पिक्चर के अंदर है"</string> <string name="pip_notification_message" msgid="5619512781514343311">"अगर आप नहीं चाहते कि <xliff:g id="NAME">%s</xliff:g> इस सुविधा का उपयोग करे, तो सेटिंग खोलने के लिए टैप करें और उसे बंद करें ."</string> <string name="pip_play" msgid="1417176722760265888">"चलाएं"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"मेनू"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> ऐप"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"सूचनाएं"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"बैटरी"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"स्क्रीनशॉट"</string> <string name="notification_channel_general" msgid="4525309436693914482">"सामान्य संदेश"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"जगह"</string> diff --git a/packages/SystemUI/res/values-hi/strings_tv.xml b/packages/SystemUI/res/values-hi/strings_tv.xml index 5e65e4668950..357f7a6d197d 100644 --- a/packages/SystemUI/res/values-hi/strings_tv.xml +++ b/packages/SystemUI/res/values-hi/strings_tv.xml @@ -19,7 +19,7 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="notification_channel_tv_pip" msgid="134047986446577723">"स्क्रीन में स्क्रीन"</string> + <string name="notification_channel_tv_pip" msgid="134047986446577723">"पिक्चर में पिक्चर"</string> <string name="pip_notification_unknown_title" msgid="6289156118095849438">"(कोई शीर्षक कार्यक्रम नहीं)"</string> <string name="pip_close" msgid="3480680679023423574">"PIP बंद करें"</string> <string name="pip_fullscreen" msgid="8604643018538487816">"पूर्ण स्क्रीन"</string> diff --git a/packages/SystemUI/res/values-hr/strings.xml b/packages/SystemUI/res/values-hr/strings.xml index be8268fdce56..8cecc46b4adb 100644 --- a/packages/SystemUI/res/values-hr/strings.xml +++ b/packages/SystemUI/res/values-hr/strings.xml @@ -65,8 +65,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Otisak prsta RSA ključa računala je: \n <xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Uvijek dopusti s ovog računala"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Otklanjanje pogrešaka putem USB-a nije dopušteno"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Korisnik koji je trenutačno prijavljen na ovaj uređaj ne može uključiti otklanjanje pogrešaka putem USB-a. Da biste upotrebljavali tu značajku, prijeđite na primarnog korisnika."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zumiraj i ispuni zaslon"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Rastegni i ispuni zaslon"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Spremanje snimke zaslona..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Saznajte više"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Povezani ste s aplikacijom <xliff:g id="VPN_APP">%1$s</xliff:g> koja može nadzirati vašu aktivnost na mreži, uključujući e-poštu, aplikacije i web-lokacije."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Otvorite postavke VPN-a"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Otvorite pouzdane vjerodajnice"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administrator je uključio mrežni zapisnik koji prati promet na vašem uređaju.\n\nViše informacija možete saznati od administratora."</string> @@ -593,8 +591,10 @@ <item quantity="other">%d minuta</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Smanjuje količinu rada i pozadinske podatke"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Tipka <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Početak"</string> @@ -734,7 +734,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimiziraj"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zatvori"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Povucite prema dolje da biste odbacili"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Izbornik slike u slici"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> jest na slici u slici"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ako ne želite da aplikacija <xliff:g id="NAME">%s</xliff:g> upotrebljava tu značajku, dodirnite da biste otvorili postavke i isključili je."</string> <string name="pip_play" msgid="1417176722760265888">"Reproduciraj"</string> @@ -762,8 +763,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Izbornik"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplikacija <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Upozorenja"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Baterija"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Snimke zaslona"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Općenite poruke"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Pohrana"</string> diff --git a/packages/SystemUI/res/values-hu/strings.xml b/packages/SystemUI/res/values-hu/strings.xml index 98022718d616..9ed6f63804ab 100644 --- a/packages/SystemUI/res/values-hu/strings.xml +++ b/packages/SystemUI/res/values-hu/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"A számítógép RSA kulcs ujjlenyomata:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Mindig engedélyezze erről a számítógépről"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Az USB hibakeresése nem engedélyezett"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Az eszközre jelenleg bejelentkezett felhasználó nem engedélyezheti az USB-hibakeresést. A funkció használatához váltson az elsődleges felhasználóra."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Nagyítás a kitöltéshez"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Nyújtás kitöltéshez"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Képernyőkép mentése..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"További információ"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Ön kapcsolódik ehhez: <xliff:g id="VPN_APP">%1$s</xliff:g>, amely figyelheti hálózati tevékenységét, köztük a levelezést, az alkalmazás- és webhelyhasználatot."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN-beállítások megnyitása"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Megbízható hitelesítési adatok megnyitása"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"A rendszergazda bekapcsolta az eszköz forgalmát figyelő hálózati naplózást.\n\nHa további információra van szüksége, forduljon a rendszergazdához."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d perc</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Csökkenti a teljesítményt és a háttéradatok használatát"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> gomb"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Kezdőképernyő"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Kis méret"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Bezárás"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Elvetéshez húzza lefelé"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Kép a képben menü"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"A(z) <xliff:g id="NAME">%s</xliff:g> kép a képben funkciót használ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ha nem szeretné, hogy a(z) <xliff:g id="NAME">%s</xliff:g> használja ezt a funkciót, koppintson a beállítások megnyitásához, és kapcsolja ki."</string> <string name="pip_play" msgid="1417176722760265888">"Lejátszás"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menü"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> alkalmazás"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Értesítések"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Akkumulátor"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Képernyőképek"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Általános üzenetek"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Tárhely"</string> diff --git a/packages/SystemUI/res/values-hy/strings.xml b/packages/SystemUI/res/values-hy/strings.xml index 01a1e1b33a0c..5ceb4ae463aa 100644 --- a/packages/SystemUI/res/values-hy/strings.xml +++ b/packages/SystemUI/res/values-hy/strings.xml @@ -587,8 +587,10 @@ <item quantity="other">%d րոպե</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Նվազեցնում է ծանրաբեռնվածությունը և ֆոնային տվյալները"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> կոճակ"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Գլխավոր էջ"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Ծալել"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Փակել"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Քաշեք վար՝ փակելու համար"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"«Նկար նկարի մեջ» ռեժիմի ընտրացանկ"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g>-ը «Նկար նկարի մեջ» ռեժիմում է"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Եթե չեք ցանկանում, որ <xliff:g id="NAME">%s</xliff:g>-ն օգտագործի այս գործառույթը, հպեք՝ կարգավորումները բացելու և այն անջատելու համար։"</string> <string name="pip_play" msgid="1417176722760265888">"Նվագարկել"</string> diff --git a/packages/SystemUI/res/values-in/strings.xml b/packages/SystemUI/res/values-in/strings.xml index eb392bd84be8..9948ab31501f 100644 --- a/packages/SystemUI/res/values-in/strings.xml +++ b/packages/SystemUI/res/values-in/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Sidik jari kunci RSA komputer adalah:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Selalu izinkan dari komputer ini"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Debug USB tidak diizinkan"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Pengguna yang sedang login ke perangkat ini tidak dapat mengaktifkan proses debug USB. Beralihlah ke pengguna utama untuk menggunakan fitur ini."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Perbesar utk mengisi layar"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Rentangkn utk mngisi layar"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Menyimpan screenshot..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Pelajari lebih lanjut"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Anda tersambung ke <xliff:g id="VPN_APP">%1$s</xliff:g>, yang dapat memantau aktivitas jaringan, termasuk email, aplikasi, dan situs web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Buka setelan VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Buka kredensial terpercaya"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Admin telah mengaktifkan pencatatan log jaringan, yang memantau traffic di perangkat.\n\nUntuk informasi selengkapnya, hubungi admin."</string> @@ -587,8 +585,8 @@ <item quantity="one">%d menit</item> </plurals> <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> + <string name="battery_detail_charging_summary" msgid="4055327085770378335">"Penghemat baterai tidak tersedia selama mengisi daya"</string> + <string name="battery_detail_switch_title" msgid="8763441006881907058">"Penghemat baterai"</string> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Mengurangi performa dan data latar belakang"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Tombol <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +726,7 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimalkan"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Tutup"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Seret ke bawah untuk menutup"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu picture in picture"</string> + <string name="pip_menu_title" msgid="4707292089961887657">"Menu"</string> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> adalah picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Jika Anda tidak ingin <xliff:g id="NAME">%s</xliff:g> menggunakan fitur ini, tap untuk membuka setelan dan menonaktifkannya."</string> <string name="pip_play" msgid="1417176722760265888">"Putar"</string> @@ -756,8 +754,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplikasi <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Notifikasi"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Baterai"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshot"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Pesan Umum"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Penyimpanan"</string> diff --git a/packages/SystemUI/res/values-is/strings.xml b/packages/SystemUI/res/values-is/strings.xml index b38614d80deb..8c033359bc56 100644 --- a/packages/SystemUI/res/values-is/strings.xml +++ b/packages/SystemUI/res/values-is/strings.xml @@ -587,8 +587,10 @@ <item quantity="other">%d mínútur</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Dregur úr afköstum og bakgrunnsgögnum"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Hnappur <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minnka"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Loka"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Draga niður til að hunsa"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Valmynd fyrir mynd í mynd"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> er með mynd í mynd"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ef þú vilt ekki að <xliff:g id="NAME">%s</xliff:g> noti þennan eiginleika skaltu ýta til að opna stillingarnar og slökkva á því."</string> <string name="pip_play" msgid="1417176722760265888">"Spila"</string> diff --git a/packages/SystemUI/res/values-it/strings.xml b/packages/SystemUI/res/values-it/strings.xml index 7d4617ced6bf..c410f88ccdcd 100644 --- a/packages/SystemUI/res/values-it/strings.xml +++ b/packages/SystemUI/res/values-it/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Fingerprint della chiave RSA del computer: \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Consenti sempre da questo computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Debug USB non consentito"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"L\'utente che ha eseguito l\'accesso a questo dispositivo non può attivare il debug USB. Per utilizzare questa funzione, passa all\'utente principale."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom per riempire schermo"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Estendi per riemp. schermo"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Salvataggio screenshot..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Ulteriori informazioni"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Sei connesso a <xliff:g id="VPN_APP">%1$s</xliff:g>, che consente di monitorare le attività di rete, inclusi siti web, email e app."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Apri impostazioni VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Apri credenziali attendibili"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"L\'amministratore ha attivato i log di rete, che consentono di monitorare il traffico sul dispositivo.\n\nPer ulteriori informazioni, contatta l\'amministratore."</string> @@ -589,8 +587,10 @@ <item quantity="one">%d minuto</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Riduce le prestazioni e i dati in background"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Pulsante <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home page"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Riduci a icona"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Chiudi"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Trascina verso il basso per ignorare"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu Picture in picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> è in Picture in picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Se non desideri che l\'app <xliff:g id="NAME">%s</xliff:g> utilizzi questa funzione, tocca per aprire le impostazioni e disattivarla."</string> <string name="pip_play" msgid="1417176722760265888">"Riproduci"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"App <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Avvisi"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batteria"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshot"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Messaggi generali"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Spazio di archiviazione"</string> diff --git a/packages/SystemUI/res/values-iw/strings.xml b/packages/SystemUI/res/values-iw/strings.xml index 246e4d1826ea..cf6b2d76d8a4 100644 --- a/packages/SystemUI/res/values-iw/strings.xml +++ b/packages/SystemUI/res/values-iw/strings.xml @@ -66,8 +66,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"טביעת האצבע של מפתח ה-RSA של המחשב היא:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"אפשר תמיד ממחשב זה"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"לא ניתן לבצע ניפוי באגים ב-USB"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"למשתמש המחובר לחשבון במכשיר הזה אין אפשרות להפעיל ניפוי באגים ב-USB. כדי להשתמש בתכונה הזו יש לעבור אל המשתמש הראשי."</string> <string name="compat_mode_on" msgid="6623839244840638213">"הגדל תצוגה כדי למלא את המסך"</string> <string name="compat_mode_off" msgid="4434467572461327898">"מתח כדי למלא את המסך"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"שומר צילום מסך..."</string> @@ -461,8 +460,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"למידע נוסף"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"אתה מחובר לאפליקציה <xliff:g id="VPN_APP">%1$s</xliff:g>, שיכולה לעקוב אחר הפעילות שלך ברשת, כולל הודעות אימייל, אפליקציות ואתרים."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"להגדרות ה-VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"פתח את פרטי הכניסה המהימנים"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"מנהל המערכת הפעיל את תכונת רישום התנועה ברשת, שמנטרת את תנועת הנתונים במכשיר.\n\nלמידע נוסף, צור קשר עם מנהל המערכת."</string> @@ -599,8 +597,10 @@ <item quantity="one">דקה</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"מפחית את רמת הביצועים ואת נתוני הרקע"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"לחצן <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"דף הבית"</string> @@ -740,7 +740,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"מזער"</string> <string name="pip_phone_close" msgid="8416647892889710330">"סגור"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"גרור למטה כדי לסגור"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"תפריט \'תמונה בתוך תמונה\'"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> במצב תמונה בתוך תמונה"</string> <string name="pip_notification_message" msgid="5619512781514343311">"אם אינך רוצה שהתכונה הזו תשמש את <xliff:g id="NAME">%s</xliff:g>, יש להקיש כדי לפתוח את ההגדרות ולכבות את התכונה."</string> <string name="pip_play" msgid="1417176722760265888">"הפעל"</string> @@ -768,8 +769,7 @@ <string name="tuner_menu" msgid="191640047241552081">"תפריט"</string> <string name="tuner_app" msgid="3507057938640108777">"האפליקציה <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"התראות"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"סוללה"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"צילומי מסך"</string> <string name="notification_channel_general" msgid="4525309436693914482">"הודעות כלליות"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"אחסון"</string> diff --git a/packages/SystemUI/res/values-ja/strings.xml b/packages/SystemUI/res/values-ja/strings.xml index 38e872ca4331..1884d4f5cd13 100644 --- a/packages/SystemUI/res/values-ja/strings.xml +++ b/packages/SystemUI/res/values-ja/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"このパソコンのRSAキーのフィンガープリント:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"このパソコンからのUSBデバッグを常に許可する"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USBデバッグは許可されていません"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"この端末に現在ログインしているユーザーでは、USB デバッグを ON にすることはできません。この機能を使用するには、メインユーザーに切り替えてください。"</string> <string name="compat_mode_on" msgid="6623839244840638213">"画面サイズに合わせて拡大"</string> <string name="compat_mode_off" msgid="4434467572461327898">"画面サイズに合わせて拡大"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"スクリーンショットを保存中..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"詳細"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"「<xliff:g id="VPN_APP">%1$s</xliff:g>」に接続しています。このアプリはあなたのネットワーク アクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN 設定を開く"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"信頼できる認証情報を開く"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"管理者がネットワーク ログを有効にしているため、この端末のトラフィックは監視されています。\n\n詳しくは管理者にお問い合わせください。"</string> @@ -589,8 +587,10 @@ <item quantity="one">%d分</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"パフォーマンスとバックグラウンド データを制限します"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> ボタン"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"最小化"</string> <string name="pip_phone_close" msgid="8416647892889710330">"閉じる"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"下にドラッグして閉じる"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"ピクチャー イン ピクチャー メニュー"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g>はピクチャー イン ピクチャーで表示中です"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g>でこの機能を使用しない場合は、タップして設定を開いて OFF にしてください。"</string> <string name="pip_play" msgid="1417176722760265888">"再生"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"メニュー"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> アプリ"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"通知"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"電池"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"スクリーンショット"</string> <string name="notification_channel_general" msgid="4525309436693914482">"一般メッセージ"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"ストレージ"</string> diff --git a/packages/SystemUI/res/values-ka/strings.xml b/packages/SystemUI/res/values-ka/strings.xml index 02b15352d793..885fe58d222b 100644 --- a/packages/SystemUI/res/values-ka/strings.xml +++ b/packages/SystemUI/res/values-ka/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d წუთი</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"ამცირებს წარმადობას და ფონურ მონაცემებს"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ღილაკი „<xliff:g id="NAME">%1$s</xliff:g>“"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ჩაკეცვა"</string> <string name="pip_phone_close" msgid="8416647892889710330">"დახურვა"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"დასახურად ჩავლებით ჩამოიტანეთ ქვემოთ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"მენიუ „ეკრანი ეკრანში“"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> იყენებს რეჟიმს „ეკრანი ეკრანში“"</string> <string name="pip_notification_message" msgid="5619512781514343311">"თუ არ გსურთ, რომ <xliff:g id="NAME">%s</xliff:g> ამ ფუნქციას იყენებდეს, აქ შეხებით შეგიძლიათ გახსნათ პარამეტრები და გამორთოთ ის."</string> <string name="pip_play" msgid="1417176722760265888">"დაკვრა"</string> diff --git a/packages/SystemUI/res/values-kk/strings.xml b/packages/SystemUI/res/values-kk/strings.xml index caa4eb9e9440..e7bced87a4a4 100644 --- a/packages/SystemUI/res/values-kk/strings.xml +++ b/packages/SystemUI/res/values-kk/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Бұл компьютердің RSA перне саусақ таңбасы:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Осы компьютерден әрқашан рұқсат беру"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB жөндеу рұқсат етілмеген"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Бұл құрылғыға жаңа кірген пайдаланушы USB түзетуін іске қосылмайды. Бұл мүмкіндікті пайдалану үшін негізгі пайдаланушыға ауысыңыз."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Экранды толтыру үшін ұлғайту"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Экранды толтыру үшін созу"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Скриншотты сақтауда…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Толығырақ"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Желідегі әрекеттерді, соның ішінде электрондық хабарларды, қолданбаларды және вебсайттарды бақылайтын <xliff:g id="VPN_APP">%1$s</xliff:g> қолданбасына қосылдыңыз."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN параметрлерін ашу"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Сенімді тіркелу деректерін ашу"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Әкімші құрылғыдағы трафикті қадағалау үшін желі журналын жүргізуді қосып қойған.\n\nТолығырақ ақпарат алу үшін әкімшімен хабарласыңыз."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d минут</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Өнімділікті және фондық деректерді азайтады"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> түймесі"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Кішірейту"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Жабу"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Жабу үшін төмен қарай сүйреңіз"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"\"Сурет ішіндегі сурет\" мәзірі"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> \"сурет ішіндегі сурет\" режимінде"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> деген пайдаланушының бұл мүмкіндікті пайдалануын қаламасаңыз, параметрлерді түртіп ашыңыз да, оларды өшіріңіз."</string> <string name="pip_play" msgid="1417176722760265888">"Ойнату"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Mәзір"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> қолданбасы"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Дабылдар"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Батарея"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Скриншоттар"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Жалпы хабарлар"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Жад"</string> diff --git a/packages/SystemUI/res/values-km/strings.xml b/packages/SystemUI/res/values-km/strings.xml index 5c74dbfc928a..60c7d17ba3d0 100644 --- a/packages/SystemUI/res/values-km/strings.xml +++ b/packages/SystemUI/res/values-km/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"ស្នាមម្រាមដៃ RSA របស់កុំព្យូទ័រគឺ៖ \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"អនុញ្ញាតជានិច្ចសម្រាប់កុំព្យូទ័រនេះ"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"មិនអនុញ្ញាតការកែកំហុសតាមរយៈយូអេសប៊ីទេ"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"អ្នកប្រើដែលបច្ចុប្បន្នបានចូលគណនីនៅលើឧបករណ៍នេះមិនអាចបើកការកែកំហុស USB បានទេ។ ដើម្បីប្រើមុខងារនេះ សូមប្តូរទៅអ្នកប្រើចម្បង។"</string> <string name="compat_mode_on" msgid="6623839244840638213">"ពង្រីកដើម្បីឲ្យពេញអេក្រង់"</string> <string name="compat_mode_off" msgid="4434467572461327898">"ទាញដើម្បីឲ្យពេញអេក្រង់"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"កំពុងរក្សាទុករូបថតអេក្រង់…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"ស្វែងយល់បន្ថែម"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"អ្នកបានភ្ជាប់ទៅ <xliff:g id="VPN_APP">%1$s</xliff:g> ដែលអាចតាមដានសកម្មភាពក្នុងបណ្តាញរបស់អ្នក រួមទាំងអ៊ីមែល កម្មវិធី និងគេហទំព័រផងដែរ។"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"បើកការកំណត់ VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"បើកព័ត៌មានសម្គាល់ខ្លួនដែលទុកចិត្ត"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"អ្នកគ្រប់គ្រងរបស់អ្នកបានបើកការធ្វើកំណត់ហេតុបណ្តាញ ដែលនឹងតាមដានចរាចរណ៍នៅលើឧបករណ៍របស់អ្នក។\n\nសម្រាប់ព័ត៌មានបន្ថែម សូមទាក់ទងអ្នកគ្រប់គ្រងរបស់អ្នក។"</string> @@ -587,8 +585,10 @@ <item quantity="one">%d នាទី</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"កាត់បន្ថយប្រតិបត្តិការ និងទិន្នន័យផ្ទៃខាងក្រោយ"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ប៊ូតុង <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"បង្រួម"</string> <string name="pip_phone_close" msgid="8416647892889710330">"បិទ"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"អូសចុះក្រោមដើម្បីបដិសេធ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"ម៉ឺនុយរូបក្នុងរូប"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ស្ថិតក្នុងមុខងាររូបក្នុងរូប"</string> <string name="pip_notification_message" msgid="5619512781514343311">"ប្រសិនបើអ្នកមិនចង់ឲ្យ <xliff:g id="NAME">%s</xliff:g> ប្រើមុខងារនេះ សូមចុចបើកការកំណត់ រួចបិទវា។"</string> <string name="pip_play" msgid="1417176722760265888">"លេង"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"ម៉ឺនុយ"</string> <string name="tuner_app" msgid="3507057938640108777">"កម្មវិធី <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"ការជូនដំណឹង"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"ថ្ម"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"រូបថតអេក្រង់"</string> <string name="notification_channel_general" msgid="4525309436693914482">"សារទូទៅ"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"ទំហំផ្ទុក"</string> diff --git a/packages/SystemUI/res/values-kn/strings.xml b/packages/SystemUI/res/values-kn/strings.xml index 8422ac879a84..b5189bee3b05 100644 --- a/packages/SystemUI/res/values-kn/strings.xml +++ b/packages/SystemUI/res/values-kn/strings.xml @@ -499,7 +499,7 @@ <string name="stream_bluetooth_sco" msgid="2055645746402746292">"ಬ್ಲೂಟೂತ್"</string> <string name="stream_dtmf" msgid="2447177903892477915">"ಡ್ಯುಯಲ್ ಬಹು ಟೋನ್ ಆವರ್ತನೆ"</string> <string name="stream_accessibility" msgid="301136219144385106">"ಪ್ರವೇಶಿಸುವಿಕೆ"</string> - <string name="volume_stream_content_description_unmute" msgid="4436631538779230857">"%1$s. ಅನ್ಮ್ಯೂಟ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ."</string> + <string name="volume_stream_content_description_unmute" msgid="4436631538779230857">"%1$s. ಅನ್ಮ್ಯೂಟ್ ಮಾಡುವುದಕ್ಕಾಗಿ ಟ್ಯಾಪ್ ಮಾಡಿ."</string> <string name="volume_stream_content_description_vibrate" msgid="1187944970457807498">"%1$s. ಕಂಪನಕ್ಕೆ ಹೊಂದಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ. ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಗಳನ್ನು ಮ್ಯೂಟ್ ಮಾಡಬಹುದು."</string> <string name="volume_stream_content_description_mute" msgid="3625049841390467354">"%1$s. ಮ್ಯೂಟ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ. ಪ್ರವೇಶಿಸುವಿಕೆ ಸೇವೆಗಳನ್ನು ಮ್ಯೂಟ್ ಮಾಡಬಹುದು."</string> <string name="volume_stream_content_description_vibrate_a11y" msgid="6427727603978431301">"%1$s. ವೈಬ್ರೇಟ್ ಮಾಡಲು ಹೊಂದಿಸುವುದಕ್ಕಾಗಿ ಟ್ಯಾಪ್ ಮಾಡಿ."</string> @@ -587,8 +587,10 @@ <item quantity="other">%d ನಿಮಿಷಗಳು</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"ಕಾರ್ಯಕ್ಷಮತೆ ಮತ್ತು ಹಿನ್ನೆಲೆ ಡೇಟಾವನ್ನು ಕಡಿಮೆ ಮಾಡುತ್ತದೆ"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> ಬಟನ್"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ಕುಗ್ಗಿಸಿ"</string> <string name="pip_phone_close" msgid="8416647892889710330">"ಮುಚ್ಚಿ"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ವಜಾಗೊಳಿಸಲು ಕೆಳಕ್ಕೆ ಡ್ರ್ಯಾಗ್ ಮಾಡಿ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"ಚಿತ್ರದಲ್ಲಿ ಚಿತ್ರ ಮೆನು"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ಚಿತ್ರದಲ್ಲಿನ ಚಿತ್ರದಲ್ಲಿದೆ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> ಈ ವೈಶಿಷ್ಟ್ಯ ಬಳಸುವುದನ್ನು ನೀವು ಬಯಸದಿದ್ದರೆ, ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ತೆರೆಯಲು ಮತ್ತು ಅದನ್ನು ಆಫ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ."</string> <string name="pip_play" msgid="1417176722760265888">"ಪ್ಲೇ"</string> diff --git a/packages/SystemUI/res/values-ko/strings.xml b/packages/SystemUI/res/values-ko/strings.xml index 1815eca842a1..ff7ef21447df 100644 --- a/packages/SystemUI/res/values-ko/strings.xml +++ b/packages/SystemUI/res/values-ko/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"컴퓨터 RSA 키 지문:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"이 컴퓨터에서 항상 허용"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB 디버깅이 허용되지 않음"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"현재 이 기기에 로그인한 사용자는 USB 디버깅을 사용 설정할 수 없습니다. 이 기능을 사용하려면 기본 사용자로 전환하세요."</string> <string name="compat_mode_on" msgid="6623839244840638213">"전체화면 모드로 확대"</string> <string name="compat_mode_off" msgid="4434467572461327898">"전체화면 모드로 확대"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"캡쳐화면 저장 중..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"자세히 알아보기"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"<xliff:g id="VPN_APP">%1$s</xliff:g>에 연결되었습니다. 이 앱은 이메일, 앱, 웹사이트와 같은 내 네트워크 활동을 모니터링할 수 있습니다."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"공개 VPN 설정"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"신뢰할 수 있는 사용자 인증 정보 열기"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"관리자가 기기에서 발생하는 트래픽을 모니터링하는 네트워크 로깅을 사용 설정했습니다.\n\n자세한 정보는 관리자에게 문의하세요."</string> @@ -589,8 +587,10 @@ <item quantity="one">%d분</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"성능 및 백그라운드 데이터를 줄입니다."</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> 버튼"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"최소화"</string> <string name="pip_phone_close" msgid="8416647892889710330">"닫기"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"아래로 드래그하여 닫기"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"PIP 메뉴"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g>에서 PIP 사용 중"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g>에서 이 기능이 사용되는 것을 원하지 않는 경우 탭하여 설정을 열고 기능을 사용 중지하세요."</string> <string name="pip_play" msgid="1417176722760265888">"재생"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"메뉴"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> 앱"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"알림"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"배터리"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"스크린샷"</string> <string name="notification_channel_general" msgid="4525309436693914482">"일반 메시지"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"저장공간"</string> diff --git a/packages/SystemUI/res/values-ky/strings.xml b/packages/SystemUI/res/values-ky/strings.xml index 40d8585afb63..864e42f2d001 100644 --- a/packages/SystemUI/res/values-ky/strings.xml +++ b/packages/SystemUI/res/values-ky/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Компүтердин RSA ачкычынын контролдук суммасы:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Бул компүтерден дайыма уруксат берилсин"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB мүчүлүштүктөрүн оңдоого уруксат жок"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Учурда бул түзмөккө каттоо эсеби менен кирген колдонуучу USB мүчүлүштүктөрүн оңдоо функциясын күйгүзө албай жатат. Бул функцияны колдонуу үчүн негизги колдонуучунун каттоо эсебине которулуңуз."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Экрнд тлтр ү. чен өлч өзг"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Экранды толтуруу ү-н чоюу"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Скриншот сакталууда…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Кеңири маалымат"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Электрондук почта, колдонмолор жана вебсайттар сыяктуу тармактагы аракеттериңизди тескей турган <xliff:g id="VPN_APP">%1$s</xliff:g> колдонмосуна туташып турасыз."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN жөндөөлөрүн ачуу"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Ишенимдүү эсептик дайындар баракчасын ачыңыз"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Администраторуңуз тармактын таржымалын алууну иштетти, андыктан түзмөгүңүздөгү трафик көзөмөлгө алынды.\n\nКеңири маалымат алуу үчүн администраторуңузга кайрылыңыз."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d мүнөт</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Иштин майнаптуулугун начарлатып, фондук дайындарды чектейт"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> баскычы"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Башкы бет"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Кичирейтүү"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Жабуу"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Четке кагуу үчүн төмөн сүйрөңүз"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Сүрөт ичиндеги сүрөт менюсу"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> – сүрөт ичиндеги сүрөт"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Эгер <xliff:g id="NAME">%s</xliff:g> колдонмосу бул функцияны пайдаланбасын десеңиз, жөндөөлөрдү ачып туруп, аны өчүрүп коюңуз."</string> <string name="pip_play" msgid="1417176722760265888">"Ойнотуу"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Меню"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> колдонмосу"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Эскертүүлөр"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Батарея"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Скриншоттор"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Жалпы билдирүүлөр"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Сактагыч"</string> diff --git a/packages/SystemUI/res/values-lo/strings.xml b/packages/SystemUI/res/values-lo/strings.xml index a22d6e613960..d130187ebfb5 100644 --- a/packages/SystemUI/res/values-lo/strings.xml +++ b/packages/SystemUI/res/values-lo/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d ນາທີ</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"ຫຼຸດປະສິທິພາບການໃຊ້ງານ ແລະ ຂໍ້ມູນພື້ນຫຼັງ"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ປຸ່ມ <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ຫຍໍ້"</string> <string name="pip_phone_close" msgid="8416647892889710330">"ປິດ"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ລາກລົງເພື່ອປິດໄວ້"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"ເມນູຊ້ອນຮູບພາບ"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ແມ່ນເປັນການສະແດງຜົນຫຼາຍຢ່າງພ້ອມກັນ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"ຫາກທ່ານບໍ່ຕ້ອງການ <xliff:g id="NAME">%s</xliff:g> ໃຫ້ໃຊ້ຄຸນສົມບັດນີ້, ໃຫ້ແຕະເພື່ອເປີດການຕັ້ງຄ່າ ແລ້ວປິດມັນໄວ້."</string> <string name="pip_play" msgid="1417176722760265888">"ຫຼິ້ນ"</string> diff --git a/packages/SystemUI/res/values-lt/strings.xml b/packages/SystemUI/res/values-lt/strings.xml index 014c9bf34352..d88ec75aef2d 100644 --- a/packages/SystemUI/res/values-lt/strings.xml +++ b/packages/SystemUI/res/values-lt/strings.xml @@ -66,8 +66,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Šio kompiuterio RSA rakto kontrolinis kodas yra:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Visada leisti iš šio kompiuterio"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB derinimas neleidžiamas"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Šiuo metu prie įrenginio prisijungęs naudotojas negali įjungti USB derinimo. Kad galėtumėte naudoti šią funkciją, perjunkite į pagrindinį naudotoją."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Keisti mast., kad atit. ekr."</string> <string name="compat_mode_off" msgid="4434467572461327898">"Ištempti, kad atit. ekr."</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Išsaugoma ekrano kopija..."</string> @@ -461,8 +460,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Sužinoti daugiau"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Esate prisijungę prie programos „<xliff:g id="VPN_APP">%1$s</xliff:g>“, kuri gali stebėti tinklo veiklą, įskaitant el. laiškus, programas ir svetaines."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Atidaryti VPN nustatymus"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Atidaryti patikimų prisijungimo duomenų puslapį"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administratorius įjungė tinklo duomenų įrašymą į žurnalą. Įjungus šią funkciją stebimas srautas jūsų įrenginyje.\n\nJei reikia daugiau informacijos, susisiekite su administratoriumi."</string> @@ -599,8 +597,10 @@ <item quantity="other">%d minučių</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Sumažinamas našumas ir foninių duomenų naudojimas"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Mygtukas <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Pagrindinis"</string> @@ -740,7 +740,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Sumažinti"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Uždaryti"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Nuvilkite žemyn, kad atsisakytumėte"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Vaizdo vaizde meniu"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> rodom. vaizdo vaizde"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Jei nenorite, kad „<xliff:g id="NAME">%s</xliff:g>“ naudotų šią funkciją, palietę atidarykite nustatymus ir išjunkite ją."</string> <string name="pip_play" msgid="1417176722760265888">"Leisti"</string> @@ -768,8 +769,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Meniu"</string> <string name="tuner_app" msgid="3507057938640108777">"Programa „<xliff:g id="APP">%1$s</xliff:g>“"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Įspėjimai"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Akumuliatorius"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Ekrano kopijos"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Bendrieji pranešimai"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Saugykla"</string> diff --git a/packages/SystemUI/res/values-lv/strings.xml b/packages/SystemUI/res/values-lv/strings.xml index 33a63cfef529..8e4fd8e805f2 100644 --- a/packages/SystemUI/res/values-lv/strings.xml +++ b/packages/SystemUI/res/values-lv/strings.xml @@ -65,8 +65,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Datora RSA atslēgas ciparfails: \n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Vienmēr atļaut no šī datora"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB atkļūdošana nav atļauta"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Lietotājs, kurš pašlaik ir pierakstījies šajā ierīcē, nevar iespējot USB atkļūdošanu. Lai izmantotu šo funkciju, pārslēdzieties uz galveno lietotāju."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Tālumm., lai aizp. ekr."</string> <string name="compat_mode_off" msgid="4434467572461327898">"Stiepiet, lai aizp. ekr."</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Saglabā ekrānuzņēmumu…"</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Uzzināt vairāk"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Ir izveidots savienojums ar lietotni <xliff:g id="VPN_APP">%1$s</xliff:g>, kas var pārraudzīt jūsu darbības tīklā, tostarp e-pasta ziņojumus, lietotnes un vietnes."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Atvērt VPN iestatījumus"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Atvērt uzticamo akreditācijas datu sadaļu"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administrators ir ieslēdzis tīkla reģistrēšanu, kuru izmanto, lai pārraudzītu datplūsmu jūsu ierīcē.\n\nLai iegūtu plašāku informāciju, sazinieties ar administratoru."</string> @@ -593,8 +591,10 @@ <item quantity="other">%d minūtes</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Samazina veiktspēju un fona datus."</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Poga <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Sākumvietas taustiņš"</string> @@ -734,7 +734,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizēt"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Aizvērt"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Velciet lejup, lai noraidītu"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Izvēlne attēlam attēlā"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ir attēlā attēlā"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ja nevēlaties lietotnē <xliff:g id="NAME">%s</xliff:g> izmantot šo funkciju, pieskarieties, lai atvērtu iestatījumus un izslēgtu funkciju."</string> <string name="pip_play" msgid="1417176722760265888">"Atskaņot"</string> @@ -762,8 +763,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Izvēlne"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> lietotne"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Brīdinājumi"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Akumulators"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Ekrānuzņēmumi"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Vispārīgi ziņojumi"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Krātuve"</string> diff --git a/packages/SystemUI/res/values-mk/strings.xml b/packages/SystemUI/res/values-mk/strings.xml index b7c53bafec5b..e87b80290d99 100644 --- a/packages/SystemUI/res/values-mk/strings.xml +++ b/packages/SystemUI/res/values-mk/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Клучниот отпечаток на RSA на компјутерот е:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Секогаш дозволувај од овој компјутер"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Отстранувањето грешки на USB не е дозволено"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Корисникот што моментално е најавен на уредов не може да вклучи отстранување грешки на USB. За да ја користите функцијава, префрлете се на примарниот корисник."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Зумирај да се исполни екранот"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Растегни да се исполни екранот"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Сликата на екранот се зачувува..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Дознајте повеќе"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Поврзани сте на <xliff:g id="VPN_APP">%1$s</xliff:g>, којашто може да ја следи вашата активност на мрежата, вклучувајќи ги е-пораките, апликациите и веб-сајтовите."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Отворете „Поставки за VPN“"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Отворете ги доверливите акредитиви"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Вашиот администратор вклучил евиденција на мрежата, што подразбира следење на сообраќајот на вашиот уред.\n\nЗа повеќе информации, контактирајте со администраторот."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d минути</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Ја намалува изведбата и податоците во заднина"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Копче <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home-копче"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Минимизирај"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Затвори"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Повлечете надолу за да отфрлите"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Мени слика во слика"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> е во слика во слика"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ако не сакате <xliff:g id="NAME">%s</xliff:g> да ја користи функцијава, допрете за да ги отворите поставките и да ја исклучите."</string> <string name="pip_play" msgid="1417176722760265888">"Пушти"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Мени"</string> <string name="tuner_app" msgid="3507057938640108777">"Апликација <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Предупредувања"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Батерија"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Слики од екранот"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Општи пораки"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Капацитет"</string> diff --git a/packages/SystemUI/res/values-ml/strings.xml b/packages/SystemUI/res/values-ml/strings.xml index 9128c7cc5536..ceef96d9ade5 100644 --- a/packages/SystemUI/res/values-ml/strings.xml +++ b/packages/SystemUI/res/values-ml/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d മിനിറ്റ്</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"പ്രവർത്തനവും പശ്ചാത്തല ഡാറ്റയും കുറയ്ക്കുന്നു"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ബട്ടൺ <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"ഹോം"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ചെറുതാക്കുക"</string> <string name="pip_phone_close" msgid="8416647892889710330">"അടയ്ക്കുക"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"തള്ളിക്കളയാൻ താഴേക്ക് വലിച്ചിടുക"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"\'ചിത്രത്തിനുള്ളിൽ ചിത്രം\' മെനു"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ചിത്രത്തിനുള്ളിലെ ചിത്രത്തിലാണ്"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> ഈ ഫീച്ചർ ഉപയോഗിക്കുന്നതിൽ നിങ്ങൾക്ക് താൽപ്പര്യമില്ലെങ്കിൽ, ടാപ്പുചെയ്ത് ക്രമീകരണം തുറന്ന് അത് ഓഫാക്കുക."</string> <string name="pip_play" msgid="1417176722760265888">"പ്ലേ ചെയ്യുക"</string> diff --git a/packages/SystemUI/res/values-mn/strings.xml b/packages/SystemUI/res/values-mn/strings.xml index 3c88c4dcb952..0ad2ece5cd12 100644 --- a/packages/SystemUI/res/values-mn/strings.xml +++ b/packages/SystemUI/res/values-mn/strings.xml @@ -62,8 +62,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Компьютерийн RSA түлхүүрийн хурууны хээ :\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Энэ компьютерээс орохыг байнга зөвшөөрөх"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB алдаа засалт хийх боломжгүй"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Энэ төхөөрөмжид нэвтэрсэн хэрэглэгч USB дебаг хийх онцлогийг асаах боломжгүй байна. Энэ онцлогийг ашиглахын тулд үндсэн хэрэглэгч рүү сэлгэнэ үү."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Дэлгэц дүүргэх бол өсгөнө үү"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Дэлгэц дүүргэх бол татна уу"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Дэлгэцийн агшинг хадгалж байна…"</string> @@ -455,8 +454,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Дэлгэрэнгүй үзэх"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Таны имэйл, апп, вэб хуудас зэрэг сүлжээний үйл ажиллагааг хянах боломжтой <xliff:g id="VPN_APP">%1$s</xliff:g>-д холбогдсон байна."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN тохиргоог нээх"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Итгэмжлэгдсэн мандат үнэмлэхийг нээх"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Таны админ төхөөрөмжийн ачааллыг хянадаг сүлжээний логийг асаасан байна.\n\nДэлгэрэнгүй мэдээлэл авах бол админтайгаа холбогдоно уу."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d минут</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Гүйцэтгэл болон дэвсгэрийн датаг багасгадаг"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> товчлуур"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Нүүр хуудас"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Багасгах"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Хаах"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Хаахын тулд доош чирэх"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Дэлгэцэн доторх дэлгэцийн цэс"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> дэлгэцэн доторх дэлгэцэд байна"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Та <xliff:g id="NAME">%s</xliff:g>-д энэ онцлогийг ашиглуулахыг хүсэхгүй байвал тохиргоог нээгээд, үүнийг унтраана уу."</string> <string name="pip_play" msgid="1417176722760265888">"Тоглуулах"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Цэс"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> апп"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Сануулга"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Батерей"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Дэлгэцийн зураг дарах"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Энгийн зурвас"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Хадгалах сан"</string> diff --git a/packages/SystemUI/res/values-mr/strings.xml b/packages/SystemUI/res/values-mr/strings.xml index b3a9152bf8f6..2c5eb5280241 100644 --- a/packages/SystemUI/res/values-mr/strings.xml +++ b/packages/SystemUI/res/values-mr/strings.xml @@ -587,8 +587,10 @@ <item quantity="other"> %d मिनिटे</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"कामगिरी आणि पार्श्वभूमीवरील डेटा कमी करते"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"बटण <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"लहान करा"</string> <string name="pip_phone_close" msgid="8416647892889710330">"बंद करा"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"डिसमिस करण्यासाठी खाली ड्रॅग करा"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"चित्र मेनूमधील चित्र"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> चित्रामध्ये चित्र मध्ये आहे"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g>ने हे वैशिष्ट्य वापरू नये असे तुम्हाला वाटत असल्यास, सेटिंग्ज उघडण्यासाठी टॅप करा आणि ते बंद करा."</string> <string name="pip_play" msgid="1417176722760265888">"प्ले करा"</string> diff --git a/packages/SystemUI/res/values-ms/strings.xml b/packages/SystemUI/res/values-ms/strings.xml index 594b25d68295..7318e9e2c56b 100644 --- a/packages/SystemUI/res/values-ms/strings.xml +++ b/packages/SystemUI/res/values-ms/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Cap jari kekunci RSA komputer ialah:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Sentiasa benarkan komputer ini"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Penyahpepijatan USB tidak dibenarkan"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Pengguna yang log masuk ke peranti ini pada masa ini tidak boleh menghidupkan penyahpepijatan USB. Untuk menggunakan ciri ini, tukar kepada pengguna utama."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zum untuk memenuhi skrin"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Regang utk memenuhi skrin"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Menyimpan tangkapan skrin..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Ketahui lebih lanjut"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Anda disambungkan ke <xliff:g id="VPN_APP">%1$s</xliff:g>, yang boleh memantau aktiviti rangkaian anda, termasuk e-mel, apl dan tapak web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Buka tetapan VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Buka bukti kelayakan yang dipercayai"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Pentadbir anda telah menghidupkan pengelogan rangkaian yang memantau trafik pada peranti anda.\n\nUntuk mendapatkan maklumat lanjut, hubungi pentadbir anda."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minit</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Mengurangkan prestasi dan data latar belakang"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Butang <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Skrin Utama"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimumkan"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Tutup"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Seret ke bawah untuk mengetepikan"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu gambar dalam gambar"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> terdapat dalam gambar dalam gambar"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Jika anda tidak mahu <xliff:g id="NAME">%s</xliff:g> menggunakan ciri ini, ketik untuk membuka tetapan dan matikan ciri."</string> <string name="pip_play" msgid="1417176722760265888">"Main"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Apl <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Makluman"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Bateri"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Tangkapan skrin"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mesej Am"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Storan"</string> diff --git a/packages/SystemUI/res/values-my/strings.xml b/packages/SystemUI/res/values-my/strings.xml index 0897832d451d..a4eae8631d35 100644 --- a/packages/SystemUI/res/values-my/strings.xml +++ b/packages/SystemUI/res/values-my/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"ဒီကွန်ပျူတာရဲ့ RSA key fingerprint ကတော့:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g> ဖြစ်ပါသည်"</string> <string name="usb_debugging_always" msgid="303335496705863070">"ဒီကွန်ပျူတာမှ အမြဲခွင့်ပြုရန်"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB အမှားပြင်ဆင်ခြင်း ခွင့်မပြုပါ"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"ဤစက်ပစ္စည်းသို့ လက်ရှိဝင်ရောက်ထားသည့် အသုံးပြုသူသည် USB အမှားပြင်ဆင်ခြင်းကို ဖွင့်၍မရပါ။ ဤဝန်ဆောင်မှုကို အသုံးပြုရန် အဓိကအသုံးပြုသူအဖြစ်သို့ ပြောင်းပါ။"</string> <string name="compat_mode_on" msgid="6623839244840638213">"ဇူးမ်အပြည့်ဆွဲခြင်း"</string> <string name="compat_mode_off" msgid="4434467572461327898">"ဖန်သားပြင်အပြည့်ဆန့်ခြင်း"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"ဖန်သားပြင်ဓါတ်ပုံသိမ်းစဉ်.."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"ပိုမိုလေ့လာရန်"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"အီးမေးလ်၊ အက်ပ်နှင့် ဝဘ်ဆိုက်များအပါအဝင် သင့်ကွန်ရက်လုပ်ဆောင်ချက်ကို စောင့်ကြည့်နိုင်သည့် <xliff:g id="VPN_APP">%1$s</xliff:g> သို့ သင်သည် ချိတ်ဆက်ထားပါသည်။"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN ဆက်တင်များကို ဖွင့်ရန်"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"ယုံကြည်စိတ်ချရသော အထောက်အထားများကို ဖွင့်ရန်"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"သင့်စီမံခန့်ခွဲသူသည် စက်ပစ္စည်းပေါ်ရှိ ဒေတာအသွားအလာကို စောင့်ကြည့်နိုင်သည့် ကွန်ရက်အတွက် မှတ်တမ်းတင်ခြင်းကို ဖွင့်ထားပါသည်။\n\nနောက်ထပ် အချက်အလက်များအတွက် သင့်စီမံခန့်ခွဲသူကို ဆက်သွယ်ပါ။"</string> @@ -587,8 +585,10 @@ <item quantity="one">%d မိနစ်</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"လုပ်ဆောင်မှု နှင့် နောက်ခံ ဒေတာကို လျော့နည်းစေပါသည်"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ခလုတ် <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"ပင်မ"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ချုံ့ရန်"</string> <string name="pip_phone_close" msgid="8416647892889710330">"ပိတ်ရန်"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ပယ်ရန်အတွက် အောက်သို့ ပွတ်ဆွဲပါ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"တစ်ခုပေါ်တစ်ခု ထပ်၍ ဖွင့်ခြင်းမီနူး"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> သည် တစ်ခုပေါ် တစ်ခုထပ်၍ ဖွင့်ထားသည်"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> အား ဤဝန်ဆောင်မှုကို အသုံးမပြုစေလိုလျှင် ဆက်တင်ကိုဖွင့်ရန် တို့ပြီး ၎င်းဝန်ဆောင်မှုကို ပိတ်လိုက်ပါ။"</string> <string name="pip_play" msgid="1417176722760265888">"ဖွင့်ရန်"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"မီနူး"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> အက်ပ်"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"သတိပေးချက်များ"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"ဘက်ထရီ"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"မျက်နှာပြင်ဓာတ်ပုံများ"</string> <string name="notification_channel_general" msgid="4525309436693914482">"အထွေထွေ မက်ဆေ့ဂျ်များ"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"သိုလှောင်မှုများ"</string> diff --git a/packages/SystemUI/res/values-nb/strings.xml b/packages/SystemUI/res/values-nb/strings.xml index bb9b77cde2d4..63bf4e0b5013 100644 --- a/packages/SystemUI/res/values-nb/strings.xml +++ b/packages/SystemUI/res/values-nb/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Datamaskinens nøkkelfingeravtrykk for RSA er:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Tillat alltid fra denne datamaskinen"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-feilsøking er ikke tillatt"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Brukeren som for øyeblikket er logget på denne enheten, kan ikke slå på USB-feilsøking. For å bruke denne funksjonen, bytt til hovedbrukeren."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom for å fylle skjermen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Strekk for å fylle skjerm"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Lagrer skjermdumpen …"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Finn ut mer"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Enheten er koblet til <xliff:g id="VPN_APP">%1$s</xliff:g>, som kan overvåke nettverksaktiviteten din, inkludert e-post, apper og nettsteder."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Åpne VPN-innstillingene"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Åpne pålitelig legitimasjon"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administratoren din har slått på loggføring av nettverk, som overvåker trafikken på enheten din.\n\nKontakt administratoren for mer informasjon."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minutt</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduserer ytelsen og begrenser bakgrunnsdataene"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g>-knappen"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Startskjerm"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimer"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Lukk"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Dra ned for å avvise"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Bilde-i-bilde-meny"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> er i bilde-i-bilde"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Hvis du ikke vil at <xliff:g id="NAME">%s</xliff:g> skal bruke denne funksjonen, kan du trykke for å åpne innstillingene og slå den av."</string> <string name="pip_play" msgid="1417176722760265888">"Spill av"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Meny"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g>-appen"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Varsler"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batteri"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Skjermdumper"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Generelle meldinger"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Lagring"</string> diff --git a/packages/SystemUI/res/values-ne/strings.xml b/packages/SystemUI/res/values-ne/strings.xml index 9abd8569c408..dda06f3bbc9c 100644 --- a/packages/SystemUI/res/values-ne/strings.xml +++ b/packages/SystemUI/res/values-ne/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d मिनेट</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"कार्यसम्पादन र पृष्ठभूमि डेटा घटाउँछ"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> बटन"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"सानो बनाउनुहोस्"</string> <string name="pip_phone_close" msgid="8416647892889710330">"बन्द गर्नुहोस्"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"खारेज गर्न तल तान्नुहोस्"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"तस्बिर मेनुमा तस्बिर"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> Picture-in-picture मा छ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"तपाईं <xliff:g id="NAME">%s</xliff:g> ले सुविधा प्रयोग नगरोस् भन्ने चाहनुहुन्छ भने ट्याप गरेर सेटिङहरू खोल्नुहोस् र यसलाई निष्क्रिय पार्नुहोस्।"</string> <string name="pip_play" msgid="1417176722760265888">"प्ले गर्नुहोस्"</string> diff --git a/packages/SystemUI/res/values-nl/strings.xml b/packages/SystemUI/res/values-nl/strings.xml index 81b74e1dbe8c..9bbe57023ca7 100644 --- a/packages/SystemUI/res/values-nl/strings.xml +++ b/packages/SystemUI/res/values-nl/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"De vingerafdruk voor de RSA-sleutel van de computer is:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Altijd toestaan vanaf deze computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-foutopsporing niet toegestaan"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"De gebruiker die momenteel is ingelogd op dit apparaat, kan USB-foutopsporing niet inschakelen. Als je deze functie wilt gebruiken, schakel je naar de primaire gebruiker."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom om scherm te vullen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Rek uit v. schermvulling"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Screenshot opslaan..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Meer informatie"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Je bent verbonden met <xliff:g id="VPN_APP">%1$s</xliff:g>, waarmee je netwerkactiviteit (waaronder e-mails, apps en websites) kan worden gecontroleerd."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN-instellingen openen"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Vertrouwde gegevens openen"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Je beheerder heeft netwerkregistratie ingeschakeld, waarmee verkeer op je apparaat wordt bijgehouden.\n\nNeem contact op met je beheerder voor meer informatie."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minuut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Vermindert de prestaties en achtergrondgegevens"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Knop <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimaliseren"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Sluiten"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Sleep omlaag om te sluiten"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Scherm-in-scherm-menu"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> is in scherm-in-scherm"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Als je niet wilt dat <xliff:g id="NAME">%s</xliff:g> deze functie gebruikt, tik je om de instellingen te openen en schakel je de functie uit."</string> <string name="pip_play" msgid="1417176722760265888">"Afspelen"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Apps <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Meldingen"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batterij"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Screenshots"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Algemene berichten"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Opslag"</string> diff --git a/packages/SystemUI/res/values-pa/strings.xml b/packages/SystemUI/res/values-pa/strings.xml index 5c3a8e18e541..eeccd35e7367 100644 --- a/packages/SystemUI/res/values-pa/strings.xml +++ b/packages/SystemUI/res/values-pa/strings.xml @@ -587,8 +587,10 @@ <item quantity="other"> %d ਮਿੰਟ</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"ਕਾਰਗੁਜ਼ਾਰੀ ਅਤੇ ਬੈਕਗ੍ਰਾਊਂਡ ਡੈਟੇ ਨੂੰ ਘਟਾਉਂਦਾ ਹੈ"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ਬਟਨ <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ਛੋਟਾ ਕਰੋ"</string> <string name="pip_phone_close" msgid="8416647892889710330">"ਬੰਦ ਕਰੋ"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ਖਾਰਜ ਕਰਨ ਲਈ ਹੇਠਾਂ ਘਸੀਟੋ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"ਤਸਵੀਰ-ਵਿੱਚ-ਤਸਵੀਰ ਮੀਨੂ"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ਤਸਵੀਰ-ਵਿੱਚ-ਤਸਵੀਰ \'ਚ ਹੈ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"ਜੇ ਤੁਸੀਂ ਨਹੀਂ ਚਾਹੁੰਦੇ ਕਿ <xliff:g id="NAME">%s</xliff:g> ਐਪ ਇਸ ਵਿਸ਼ੇਸ਼ਤਾ ਦੀ ਵਰਤੋਂ ਕਰੇ, ਤਾਂ ਸੈਟਿੰਗਾਂ ਖੋਲ੍ਹਣ ਲਈ ਟੈਪ ਕਰੋ ਅਤੇ ਇਸਨੂੰ ਬੰਦ ਕਰੋ।"</string> <string name="pip_play" msgid="1417176722760265888">"ਚਲਾਓ"</string> diff --git a/packages/SystemUI/res/values-pl/strings.xml b/packages/SystemUI/res/values-pl/strings.xml index 3905ec857125..ef0c7d4a53c4 100644 --- a/packages/SystemUI/res/values-pl/strings.xml +++ b/packages/SystemUI/res/values-pl/strings.xml @@ -599,8 +599,10 @@ <item quantity="one">]%d minuta</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Zmniejsza wydajność i ogranicza dane w tle"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Przycisk <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -740,7 +742,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimalizuj"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zamknij"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Przeciągnij w dół, by zamknąć"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu funkcji Obraz w obrazie"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"Aplikacja <xliff:g id="NAME">%s</xliff:g> działa w trybie obraz w obrazie"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Jeśli nie chcesz, by aplikacja <xliff:g id="NAME">%s</xliff:g> korzystała z tej funkcji, otwórz ustawienia i ją wyłącz."</string> <string name="pip_play" msgid="1417176722760265888">"Odtwórz"</string> diff --git a/packages/SystemUI/res/values-pt-rBR/strings.xml b/packages/SystemUI/res/values-pt-rBR/strings.xml index 9a281ea463a2..88f470d7f01a 100644 --- a/packages/SystemUI/res/values-pt-rBR/strings.xml +++ b/packages/SystemUI/res/values-pt-rBR/strings.xml @@ -589,8 +589,10 @@ <item quantity="other">%d minutos</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduz o desempenho e os dados em segundo plano"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botão <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -730,7 +732,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizar"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Fechar"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arraste para baixo para dispensar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu Picture-in-picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> está em picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Se você não deseja que o app <xliff:g id="NAME">%s</xliff:g> use este recurso, toque para abrir as configurações e desativá-lo."</string> <string name="pip_play" msgid="1417176722760265888">"Reproduzir"</string> diff --git a/packages/SystemUI/res/values-pt-rPT/strings.xml b/packages/SystemUI/res/values-pt-rPT/strings.xml index 83f5630b4941..dcd7285f768a 100644 --- a/packages/SystemUI/res/values-pt-rPT/strings.xml +++ b/packages/SystemUI/res/values-pt-rPT/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"A impressão digital da chave RSA do computador é:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Permitir sempre a partir deste computador"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Depuração USB não permitida"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"O utilizador com sessão iniciada atualmente neste dispositivo não pode ativar a depuração USB. Para utilizar esta funcionalidade, mude para o utilizador principal."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom para preencher o ecrã"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Esticar p. caber em ec. int."</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"A guardar captura de ecrã..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Saiba mais"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Está ligado à rede <xliff:g id="VPN_APP">%1$s</xliff:g>, que pode monitorizar a sua atividade de rede, incluindo emails, aplicações e Sites."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Abrir as definições de VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Abrir credenciais fidedignas"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"O seu administrador ativou os registos de rede, que monitorizam o tráfego no seu dispositivo.\n\nPara obter mais informações, contacte o administrador."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d minutos</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduz o desempenho e os dados de segundo plano"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botão <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Início"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizar"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Fechar"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arrastar para baixo para ignorar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu de ecrã no ecrã"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"A aplicação <xliff:g id="NAME">%s</xliff:g> está no modo de ecrã no ecrã"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Se não pretende que a aplicação <xliff:g id="NAME">%s</xliff:g> utilize esta funcionalidade, toque para abrir as definições e desative-a."</string> <string name="pip_play" msgid="1417176722760265888">"Reproduzir"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplicação <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alertas"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Bateria"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Capturas de ecrã"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mensagens gerais"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Armazenamento"</string> diff --git a/packages/SystemUI/res/values-pt/strings.xml b/packages/SystemUI/res/values-pt/strings.xml index 9a281ea463a2..88f470d7f01a 100644 --- a/packages/SystemUI/res/values-pt/strings.xml +++ b/packages/SystemUI/res/values-pt/strings.xml @@ -589,8 +589,10 @@ <item quantity="other">%d minutos</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduz o desempenho e os dados em segundo plano"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Botão <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -730,7 +732,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizar"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Fechar"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Arraste para baixo para dispensar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu Picture-in-picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> está em picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Se você não deseja que o app <xliff:g id="NAME">%s</xliff:g> use este recurso, toque para abrir as configurações e desativá-lo."</string> <string name="pip_play" msgid="1417176722760265888">"Reproduzir"</string> diff --git a/packages/SystemUI/res/values-ro/strings.xml b/packages/SystemUI/res/values-ro/strings.xml index ec1cc4b79b28..382a7a1bec80 100644 --- a/packages/SystemUI/res/values-ro/strings.xml +++ b/packages/SystemUI/res/values-ro/strings.xml @@ -65,8 +65,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Amprenta digitală din cheia RSA a computerului este:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Permiteți întotdeauna de pe acest computer"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Remedierea erorilor prin USB nu este permisă"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Utilizatorul conectat momentan pe acest dispozitiv nu poate activa remedierea erorilor prin USB. Pentru a folosi această funcție, comutați la utilizatorul principal."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zoom pt. a umple ecranul"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Înt. pt. a umple ecranul"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Se salv. captura de ecran..."</string> @@ -461,8 +460,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Aflați mai multe"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"V-ați conectat la aplicația <xliff:g id="VPN_APP">%1$s</xliff:g>, care vă poate monitoriza activitatea în rețea, inclusiv e-mailurile, aplicațiile și site-urile accesate."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Deschideți Setări VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Deschideți datele de conectare de încredere"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administratorul dvs. a activat înregistrarea în jurnal pentru rețea, funcție ce monitorizează traficul de pe dispozitivul dvs.\n\nPentru mai multe informații, contactați administratorul."</string> @@ -595,8 +593,10 @@ <item quantity="one">%d minut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Reduce performanța și datele de fundal"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Butonul <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"La început"</string> @@ -736,7 +736,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizați"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Închideți"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Trageți în jos pentru a închide"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Meniul picture-in-picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> este în modul picture-in-picture"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Dacă nu doriți ca <xliff:g id="NAME">%s</xliff:g> să utilizeze această funcție, atingeți pentru a deschide setările și dezactivați-o."</string> <string name="pip_play" msgid="1417176722760265888">"Redați"</string> @@ -764,8 +765,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Meniu"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplicația <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Alerte"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Baterie"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Capturi de ecran"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mesaje generale"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Stocare"</string> diff --git a/packages/SystemUI/res/values-ru/strings.xml b/packages/SystemUI/res/values-ru/strings.xml index 9bb93d6eb9ff..4153e66da835 100644 --- a/packages/SystemUI/res/values-ru/strings.xml +++ b/packages/SystemUI/res/values-ru/strings.xml @@ -601,8 +601,10 @@ <item quantity="other">%d минуты</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Ограничивает производительность и фоновую передачу данных"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Кнопка <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Главный экран"</string> @@ -742,7 +744,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Свернуть"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Закрыть"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Чтобы закрыть, потяните вниз"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Меню \"Картинка в картинке\""</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> находится в режиме \"Картинка в картинке\""</string> <string name="pip_notification_message" msgid="5619512781514343311">"Чтобы отключить эту функцию для приложения \"<xliff:g id="NAME">%s</xliff:g>\", перейдите в настройки."</string> <string name="pip_play" msgid="1417176722760265888">"Воспроизвести"</string> diff --git a/packages/SystemUI/res/values-si/strings.xml b/packages/SystemUI/res/values-si/strings.xml index 108a8e08dcbe..5454ca2799bb 100644 --- a/packages/SystemUI/res/values-si/strings.xml +++ b/packages/SystemUI/res/values-si/strings.xml @@ -587,8 +587,10 @@ <item quantity="other">මිනිත්තු %d</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"ක්රියාකාරිත්වය සහ පසුබිම් දත්ත අඩු කරන්න"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> බොත්තම"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home යතුර"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"කුඩා කරන්න"</string> <string name="pip_phone_close" msgid="8416647892889710330">"වසන්න"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ඉවත ලෑමට පහළට ඇදගෙන යන්න"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"පින්තූරය තුළ පින්තූරය මෙනුව"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> පින්තූරය-තුළ-පින්තූරය තුළ වේ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"ඔබට <xliff:g id="NAME">%s</xliff:g> මෙම විශේෂාංගය භාවිත කිරීමට අවශ්ය නැති නම්, සැකසීම් විවෘත කිරීමට තට්ටු කර එය ක්රියාවිරහිත කරන්න."</string> <string name="pip_play" msgid="1417176722760265888">"ධාවනය කරන්න"</string> diff --git a/packages/SystemUI/res/values-sk/strings.xml b/packages/SystemUI/res/values-sk/strings.xml index 724f3ef40ccb..d5c87c5399c8 100644 --- a/packages/SystemUI/res/values-sk/strings.xml +++ b/packages/SystemUI/res/values-sk/strings.xml @@ -601,8 +601,10 @@ <item quantity="one">%d minúta</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Obmedzí výkonnosť a údaje na pozadí"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Tlačidlo <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Domov"</string> @@ -742,7 +744,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimalizovať"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zavrieť"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Zrušíte presunutím nadol"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Ponuka režimu obraz v obraze"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> je v režime obraz v obraze"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ak nechcete, aby aplikácia <xliff:g id="NAME">%s</xliff:g> používala túto funkciu, klepnutím otvorte nastavenia a vypnite ju."</string> <string name="pip_play" msgid="1417176722760265888">"Prehrať"</string> diff --git a/packages/SystemUI/res/values-sl/strings.xml b/packages/SystemUI/res/values-sl/strings.xml index 17c2997aa4a6..f8b403df6631 100644 --- a/packages/SystemUI/res/values-sl/strings.xml +++ b/packages/SystemUI/res/values-sl/strings.xml @@ -601,8 +601,10 @@ <item quantity="other">%d minut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Omeji zmogljivost delovanja in prenos podatkov v ozadju"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Gumb <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Začetek"</string> @@ -742,7 +744,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimiraj"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Zapri"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Povlecite navzdol, da opustite"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Meni za sliko v sliki"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> je v načinu slika v sliki"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Če ne želite, da aplikacija <xliff:g id="NAME">%s</xliff:g> uporablja to funkcijo, se dotaknite, da odprete nastavitve, in funkcijo izklopite."</string> <string name="pip_play" msgid="1417176722760265888">"Predvajaj"</string> diff --git a/packages/SystemUI/res/values-sq/strings.xml b/packages/SystemUI/res/values-sq/strings.xml index 3f0bb964e0ed..799f24a1e078 100644 --- a/packages/SystemUI/res/values-sq/strings.xml +++ b/packages/SystemUI/res/values-sq/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Shenja e gishtit të tastit \"RSA\" së kompjuterit është:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Lejo gjithmonë nga ky kompjuter"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Korrigjimi i USB-së nuk lejohet"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Përdoruesi i identifikuar aktualisht në këtë pajisje nuk mund ta aktivizojë korrigjimin e USB-së. Për ta përdorur këtë funksion, kalo te përdoruesi parësor."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zmadho për të mbushur ekranin"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Shtrije për të mbushur ekranin"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Po ruan pamjen e ekranit..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Mëso më shumë"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Je i lidhur me aplikacionin <xliff:g id="VPN_APP">%1$s</xliff:g>, i cili mund të monitorojë aktivitetin tënd në rrjet, duke përfshirë mail-et, aplikacionet dhe sajtet e uebit."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Hap cilësimet e VPN-së"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Hap kredencialet e besuara"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administratori yt ka aktivizuar regjistrimin e rrjetit, i cili monitoron trafikun në pajisjen tënde.\n\nPër më shumë informacione, kontakto me administratorin."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minutë</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Pakëson veprimtarinë dhe të dhënat në sfond"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Butoni <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Kreu"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimizo"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Mbyll"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Zvarrit poshtë për të larguar"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menyja e \"Figurës brenda figurës\""</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> është në figurë brenda figurës"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Nëse nuk dëshiron që <xliff:g id="NAME">%s</xliff:g> ta përdorë këtë funksion, trokit për të hapur cilësimet dhe për ta çaktivizuar."</string> <string name="pip_play" msgid="1417176722760265888">"Luaj"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menyja"</string> <string name="tuner_app" msgid="3507057938640108777">"Aplikacioni <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Sinjalizimet"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Bateria"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Pamjet e ekranit"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mesazhe të përgjithshme"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Hapësira ruajtëse"</string> diff --git a/packages/SystemUI/res/values-sr/strings.xml b/packages/SystemUI/res/values-sr/strings.xml index 16caf06b0e77..9a7245d57da0 100644 --- a/packages/SystemUI/res/values-sr/strings.xml +++ b/packages/SystemUI/res/values-sr/strings.xml @@ -65,8 +65,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Дигитални отисак RSA кључа овог рачунара је:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Увек дозволи са овог рачунара"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Отклањање грешака на USB-у није дозвољено"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Корисник који је тренутно пријављен на овај уређај не може да укључи отклањање грешака на USB-у. Да бисте користили ову функцију, пребаците на примарног корисника."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Зумирај на целом екрану"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Развуци на цео екран"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Чување снимка екрана..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Сазнајте више"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Повезани сте са апликацијом <xliff:g id="VPN_APP">%1$s</xliff:g>, која може да надгледа активности на мрежи, укључујући имејлове, апликације и веб-сајтове."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Отвори подешавања VPN-а"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Отворите поуздане акредитиве"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Администратор је укључио евидентирање мреже, које прати саобраћај на уређају.\n\nКонтактирајте администратора за више информација."</string> @@ -593,8 +591,10 @@ <item quantity="other">%d минута</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Смањује перформансе и позадинске податке"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Дугме <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Тастер Почетна"</string> @@ -734,7 +734,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Умањи"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Затвори"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Превуците надоле да бисте одбили"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Мени Слика у слици"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> је слика у слици"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ако не желите да <xliff:g id="NAME">%s</xliff:g> користи ову функцију, додирните да бисте отворили подешавања и искључили је."</string> <string name="pip_play" msgid="1417176722760265888">"Пусти"</string> @@ -762,8 +763,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Мени"</string> <string name="tuner_app" msgid="3507057938640108777">"Апликација <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Обавештења"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Батерија"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Снимци екрана"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Опште поруке"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Меморијски простор"</string> diff --git a/packages/SystemUI/res/values-sv/strings.xml b/packages/SystemUI/res/values-sv/strings.xml index eaf713b90487..2daef09ddb7e 100644 --- a/packages/SystemUI/res/values-sv/strings.xml +++ b/packages/SystemUI/res/values-sv/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Fingeravtrycket för datorns RSA-nyckel är:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Tillåt alltid på den här datorn"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB-felsökning är inte tillåtet"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Användaren som är inloggad på enheten för närvarande kan inte aktivera USB-felsökning. Byt till den primära användaren om du vill använda den här funktionen."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Zooma för att fylla skärm"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Dra för att fylla skärmen"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Skärmdumpen sparas ..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Läs mer"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Du är ansluten till <xliff:g id="VPN_APP">%1$s</xliff:g> som kan övervaka din aktivitet på nätverket, inklusive e-postmeddelanden, appar och webbplatser."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Öppna VPN-inställningarna"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Öppna betrodda användaruppgifter"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Administratören har aktiverat nätverksloggning som övervakar trafik på enheten.\n\nKontakta administratören om du vill veta mer."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d minut</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Minskar prestanda och bakgrundsdata"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Knappen <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Start"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Minimera"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Stäng"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Tryck och dra nedåt för att ignorera"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Bild-i-bild-meny"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> visas i bild-i-bild"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Om du inte vill att den här funktionen används i <xliff:g id="NAME">%s</xliff:g> öppnar du inställningarna genom att trycka. Sedan inaktiverar du funktionen."</string> <string name="pip_play" msgid="1417176722760265888">"Spela upp"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Meny"</string> <string name="tuner_app" msgid="3507057938640108777">"Appen <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Varningar"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Batteri"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Skärmdumpar"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Allmänna meddelanden"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Lagring"</string> diff --git a/packages/SystemUI/res/values-sw/strings.xml b/packages/SystemUI/res/values-sw/strings.xml index a500f4d461f1..569b57a75331 100644 --- a/packages/SystemUI/res/values-sw/strings.xml +++ b/packages/SystemUI/res/values-sw/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Alama ya kidole ya kitufe cha RSA ya kompyuta ni:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Ruhusu kutoka kwenye kompyuta hii kila wakati"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Utatuzi wa USB hauruhusiwi"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Mtumiaji aliyeingia katika akaunti kwa kutumia kifaa hiki kwa sasa hawezi kuwasha utatuzi wa USB. Ili utumie kipengele hiki, tumia akaunti ya mtumiaji wa msingi."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Kuza ili kujaza skrini"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Tanua ili kujaza skrini"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Inahifadhi picha ya skrini..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Pata maelezo zaidi"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Umeunganishwa kwenye <xliff:g id="VPN_APP">%1$s</xliff:g>, ambayo inaweza kufuatilia shughuli za mtandao wako, ikiwa ni pamoja na barua pepe, programu na tovuti."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Fungua mipangilio ya VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Fungua vitambulisho vinavyoaminika"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Msimamizi wako amewasha kumbukumbu ya kuingia mtandaoni ambayo hufuatilia shughuli kwenye kifaa chako.\n\nKwa maelezo zaidi, wasiliana na msimamizi wako."</string> @@ -587,8 +585,10 @@ <item quantity="one">Dakika %d</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Hupunguza data ya chini chini na utendaji"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Kitufe cha <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Mwanzo"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Punguza"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Funga"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Buruta ili uondoe"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menyu ya picha ndani ya picha"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> iko katika hali ya picha ndani ya picha nyingine"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Ikiwa hutaki <xliff:g id="NAME">%s</xliff:g> itumie kipengele hiki, gonga ili ufungue mipangilio na uizime."</string> <string name="pip_play" msgid="1417176722760265888">"Cheza"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menyu"</string> <string name="tuner_app" msgid="3507057938640108777">"Programu ya <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Arifa"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Betri"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Picha za skrini"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Ujumbe wa Jumla"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Hifadhi"</string> diff --git a/packages/SystemUI/res/values-ta/strings.xml b/packages/SystemUI/res/values-ta/strings.xml index 72c6bb031fbd..e1e9ae2038cf 100644 --- a/packages/SystemUI/res/values-ta/strings.xml +++ b/packages/SystemUI/res/values-ta/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"பின்வருவது கணினியின் RSA விசை கைரேகையாகும்:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"இந்தக் கணினியிலிருந்து எப்போதும் அனுமதி"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"USB பிழைத்திருத்தம் அனுமதிக்கப்படவில்லை"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"தற்போது இந்தச் சாதனத்தில் உள்நுழைந்துள்ள பயனரால் USB பிழைத்திருத்தத்தை இயக்க முடியாது. இந்த அம்சத்தை இயக்க, முதன்மைப் பயனருக்கு மாறவும்."</string> <string name="compat_mode_on" msgid="6623839244840638213">"திரையை நிரப்ப அளவை மாற்று"</string> <string name="compat_mode_off" msgid="4434467572461327898">"திரையை நிரப்ப இழு"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"ஸ்க்ரீன் ஷாட்டைச் சேமிக்கிறது…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"மேலும் அறிக"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"<xliff:g id="VPN_APP">%1$s</xliff:g> உடன் இணைக்கப்பட்டுள்ளீர்கள். இந்தப் பயன்பாட்டால் மின்னஞ்சல்கள், பயன்பாடுகள், இணையதளங்கள் உட்பட உங்கள் நெட்வொர்க் செயல்பாட்டைக் கண்காணிக்க முடியும்."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"VPN அமைப்புகளைத் திற"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"நம்பகமான அனுமதிச் சான்றுகளைத் திற"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"உங்கள் நிர்வாகி நெட்வொர்க் பதிவெடுத்தலை இயக்கியுள்ளார், இது சாதனத்தில் ட்ராஃபிக்கைக் கண்காணிக்கும்.\n\nமேலும் தகவலுக்கு, உங்கள் நிர்வாகியைத் தொடர்புகொள்ளவும்."</string> @@ -587,8 +585,10 @@ <item quantity="one">%d நிமிடம்</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"செயல்திறனையும் பின்புலத்தில் தரவு செயலாக்கப்படுவதையும் குறைக்கும்"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> பொத்தான்"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"ஹோம்"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"சிறிதாக்கு"</string> <string name="pip_phone_close" msgid="8416647892889710330">"மூடு"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"நிராகரிக்க, கீழே இழுக்கவும்"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"பிக்ச்சர்-இன்-பிக்ச்சர் மெனு"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> தற்போது பிக்ச்சர்-இன்-பிக்ச்சரில் உள்ளது"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> இந்த அம்சத்தைப் பயன்படுத்த வேண்டாம் என நினைத்தால், அமைப்புகளைத் திறந்து அதை முடக்க, தட்டவும்."</string> <string name="pip_play" msgid="1417176722760265888">"இயக்கு"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"மெனு"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> பயன்பாடு"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"விழிப்பூட்டல்கள்"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"பேட்டரி"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"ஸ்கிரீன் ஷாட்டுகள்"</string> <string name="notification_channel_general" msgid="4525309436693914482">"பொதுச் செய்திகள்"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"சேமிப்பிடம்"</string> diff --git a/packages/SystemUI/res/values-te/strings.xml b/packages/SystemUI/res/values-te/strings.xml index 7250e277fffd..da48df5e8d57 100644 --- a/packages/SystemUI/res/values-te/strings.xml +++ b/packages/SystemUI/res/values-te/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d నిమిషం</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"పనితీరుని మరియు నేపథ్య డేటాను తగ్గిస్తుంది"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"బటన్ <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"కనిష్టీకరించు"</string> <string name="pip_phone_close" msgid="8416647892889710330">"మూసివేయి"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"తీసివేయడానికి కిందికి లాగండి"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"చిత్రంలో చిత్రం మెను"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> చిత్రంలో చిత్రం రూపంలో ఉంది"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> ఈ లక్షణాన్ని ఉపయోగించకూడదు అని మీరు అనుకుంటే, సెట్టింగ్లను తెరవడానికి నొక్కి, దీన్ని ఆఫ్ చేయండి."</string> <string name="pip_play" msgid="1417176722760265888">"ప్లే చేయి"</string> diff --git a/packages/SystemUI/res/values-th/strings.xml b/packages/SystemUI/res/values-th/strings.xml index 9e1783ad63d1..d8ba45a7473b 100644 --- a/packages/SystemUI/res/values-th/strings.xml +++ b/packages/SystemUI/res/values-th/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"ลายนิ้วมือหลัก RSA ของคอมพิวเตอร์คือ:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"อนุญาตจากคอมพิวเตอร์เครื่องนี้เสมอ"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"ไม่อนุญาตให้แก้ไขข้อบกพร่องผ่าน USB"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"ผู้ใช้ที่ลงชื่อเข้าใช้อุปกรณ์อยู่ในขณะนี้ไม่สามารถเปิดการแก้ไขข้อบกพร่องผ่าน USB ได้ หากต้องการใช้ฟีเจอร์นี้ ให้เปลี่ยนไปเป็นผู้ใช้หลัก"</string> <string name="compat_mode_on" msgid="6623839244840638213">"ขยายจนเต็มหน้าจอ"</string> <string name="compat_mode_off" msgid="4434467572461327898">"ยืดจนเต็มหน้าจอ"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"กำลังบันทึกภาพหน้าจอ..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"เรียนรู้เพิ่มเติม"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"คุณเชื่อมต่อกับ <xliff:g id="VPN_APP">%1$s</xliff:g> ซึ่งสามารถตรวจสอบกิจกรรมในเครือข่ายของคุณ รวมถึงอีเมล แอป และเว็บไซต์ได้"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"เปิดการตั้งค่า VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"เปิดข้อมูลรับรองที่เชื่อถือได้"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"ผู้ดูแลระบบได้เปิดการทำบันทึกเครือข่าย ซึ่งจะติดตามดูการรับส่งข้อมูลบนอุปกรณ์ของคุณ\n\nโปรดติดต่อผู้ดูแลระบบสำหรับข้อมูลเพิ่มเติม"</string> @@ -587,8 +585,10 @@ <item quantity="one">%d นาที</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"ลดประสิทธิภาพการทำงานและข้อมูลแบ็กกราวด์"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"ปุ่ม <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"ย่อเล็กสุด"</string> <string name="pip_phone_close" msgid="8416647892889710330">"ปิด"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"ลากลงเพื่อปิด"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"เมนูการแสดงภาพซ้อนภาพ"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> ใช้การแสดงภาพซ้อนภาพ"</string> <string name="pip_notification_message" msgid="5619512781514343311">"หากคุณไม่ต้องการให้ <xliff:g id="NAME">%s</xliff:g> ใช้ฟีเจอร์นี้ ให้แตะเพื่อเปิดการตั้งค่าแล้วปิดฟีเจอร์"</string> <string name="pip_play" msgid="1417176722760265888">"เล่น"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"เมนู"</string> <string name="tuner_app" msgid="3507057938640108777">"แอป <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"การแจ้งเตือน"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"แบตเตอรี"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"ภาพหน้าจอ"</string> <string name="notification_channel_general" msgid="4525309436693914482">"ข้อความทั่วไป"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"พื้นที่เก็บข้อมูล"</string> diff --git a/packages/SystemUI/res/values-th/strings_tv.xml b/packages/SystemUI/res/values-th/strings_tv.xml index 3a5eba10b046..5c492913d1b5 100644 --- a/packages/SystemUI/res/values-th/strings_tv.xml +++ b/packages/SystemUI/res/values-th/strings_tv.xml @@ -19,7 +19,7 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="notification_channel_tv_pip" msgid="134047986446577723">"การแสดงผลหลายแหล่งพร้อมกัน"</string> + <string name="notification_channel_tv_pip" msgid="134047986446577723">"การแสดงภาพซ้อนภาพ"</string> <string name="pip_notification_unknown_title" msgid="6289156118095849438">"(ไม่มีชื่อรายการ)"</string> <string name="pip_close" msgid="3480680679023423574">"ปิด PIP"</string> <string name="pip_fullscreen" msgid="8604643018538487816">"เต็มหน้าจอ"</string> diff --git a/packages/SystemUI/res/values-tl/strings.xml b/packages/SystemUI/res/values-tl/strings.xml index ee1105c34f41..a46d572eaa25 100644 --- a/packages/SystemUI/res/values-tl/strings.xml +++ b/packages/SystemUI/res/values-tl/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Ang RSA key fingerprint ng computer ay:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Palaging payagan mula sa computer na ito"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Hindi pinapayagan ang pagde-debug sa pamamagitan ng USB"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Hindi mao-on ng user na kasalukuyang naka-sign in sa device na ito ang pag-debug ng USB. Upang magamit ang feature na ito, lumipat sa pangunahing user."</string> <string name="compat_mode_on" msgid="6623839244840638213">"I-zoom upang punan screen"</string> <string name="compat_mode_off" msgid="4434467572461327898">"I-stretch upang mapuno screen"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Sine-save ang screenshot…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Matuto pa"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Kumonekta ka sa <xliff:g id="VPN_APP">%1$s</xliff:g>, na maaaring sumubaybay sa iyong aktibidad sa network, kasama ang mga email, app at website."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Buksan ang mga setting ng VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Buksan ang mga pinagkakatiwalaang kredensyal"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Na-on ng iyong admin ang pag-log sa network, na sumusubaybay sa trapiko ng device mo.\n\nPara sa higit pang impormasyon, makipag-ugnayan sa iyong admin."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d na minuto</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Binabawasan ang performance at data sa background"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Button na <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"I-minimize"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Isara"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"I-drag pababa upang i-dismiss"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu ng picture in picture"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"Nasa picture-in-picture ang <xliff:g id="NAME">%s</xliff:g>"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Kung ayaw mong magamit ni <xliff:g id="NAME">%s</xliff:g> ang feature na ito, i-tap upang buksan ang mga setting at i-off ito."</string> <string name="pip_play" msgid="1417176722760265888">"I-play"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> app"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Mga Alerto"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Baterya"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Mga Screenshot"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Mga Pangkalahatang Mensahe"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Storage"</string> diff --git a/packages/SystemUI/res/values-tr/strings.xml b/packages/SystemUI/res/values-tr/strings.xml index 376aca5d4b2c..2e898250cc98 100644 --- a/packages/SystemUI/res/values-tr/strings.xml +++ b/packages/SystemUI/res/values-tr/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d dakika</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Performansı ve arka plan verilerini azaltır"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> düğmesi"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Simge durumuna getir"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Kapat"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Kapatmak için aşağıya sürükleyin"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Pencere içinde pencere menüsü"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g>, pencere içinde pencere özelliğini kullanıyor"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> uygulamasının bu özelliği kullanmasını istemiyorsanız dokunarak ayarları açın ve söz konusu özelliği kapatın."</string> <string name="pip_play" msgid="1417176722760265888">"Oynat"</string> diff --git a/packages/SystemUI/res/values-uk/strings.xml b/packages/SystemUI/res/values-uk/strings.xml index 826d3ca6df6f..1c8abb4eeefa 100644 --- a/packages/SystemUI/res/values-uk/strings.xml +++ b/packages/SystemUI/res/values-uk/strings.xml @@ -66,8 +66,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Цифровий відбиток ключа RSA комп’ютера:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Завжди дозволяти з цього комп’ютера"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Ви не можете вмикати налагодження USB"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Користувач поточного облікового запису не може вмикати налагодження USB. Щоб увімкнути цю функцію, увійдіть в обліковий запис основного користувача."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Масштабув. на весь екран"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Розтягнути на весь екран"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Збереження знімка екрана..."</string> @@ -463,8 +462,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Докладніше"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Під’єднано додаток <xliff:g id="VPN_APP">%1$s</xliff:g>, який може відстежувати вашу активність у мережі, як-от доступ до електронної пошти, додатків і веб-сайтів."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Відкрити налаштування мережі VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Відкрити надійні облікові дані"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Ваш адміністратор увімкнув реєстрацію в мережі, під час якої на вашому пристрої відстежується трафік.\n\nЩоб дізнатися більше, зв’яжіться з адміністратором."</string> @@ -601,8 +599,10 @@ <item quantity="other">%d хвилини</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Знижується продуктивність і обмежується обмін даними у фоновому режимі"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Кнопка <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -742,7 +742,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Згорнути"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Закрити"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Перетягніть униз, щоб закрити"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Меню \"Картинка в картинці\""</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"У додатку <xliff:g id="NAME">%s</xliff:g> є функція \"Картинка в картинці\""</string> <string name="pip_notification_message" msgid="5619512781514343311">"Щоб додаток <xliff:g id="NAME">%s</xliff:g> не використовував цю функцію, вимкніть її в налаштуваннях."</string> <string name="pip_play" msgid="1417176722760265888">"Відтворити"</string> @@ -770,8 +771,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Меню"</string> <string name="tuner_app" msgid="3507057938640108777">"Додаток <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Сповіщення"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Акумулятор"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Знімки екрана"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Загальні повідомлення"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Пам’ять"</string> diff --git a/packages/SystemUI/res/values-ur/strings.xml b/packages/SystemUI/res/values-ur/strings.xml index c2305504b8b9..b13d00d829e0 100644 --- a/packages/SystemUI/res/values-ur/strings.xml +++ b/packages/SystemUI/res/values-ur/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d منٹ</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"کارکردگی اور پس منظر کا ڈیٹا کم کر دیتا ہے"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"بٹن <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"چھوٹی کریں"</string> <string name="pip_phone_close" msgid="8416647892889710330">"بند کریں"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"برخاست کرنے کیلئے نیچے گھسیٹیں"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"تصویر کے مینو میں تصویر"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> تصویر میں تصویر میں ہے"</string> <string name="pip_notification_message" msgid="5619512781514343311">"اگر آپ نہیں چاہتے ہیں کہ <xliff:g id="NAME">%s</xliff:g> اس خصوصیت کا استعمال کرے تو ترتیبات کھولنے کے لیے تھپتھپا کر اسے آف کرے۔"</string> <string name="pip_play" msgid="1417176722760265888">"چلائیں"</string> diff --git a/packages/SystemUI/res/values-uz/strings.xml b/packages/SystemUI/res/values-uz/strings.xml index e9ff6d1505ff..b7242a649290 100644 --- a/packages/SystemUI/res/values-uz/strings.xml +++ b/packages/SystemUI/res/values-uz/strings.xml @@ -589,8 +589,10 @@ <item quantity="one">%d daqiqa</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Unumdorlik pasayadi va fonda internetdan foydalanish cheklanadi"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> tugmasi"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Bosh ekran"</string> @@ -730,7 +732,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Yig‘ish"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Yopish"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Yopish uchun pastga torting"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Tasvir ustida tasvir menyusi"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> tasvir ustida tasvir rejimida"</string> <string name="pip_notification_message" msgid="5619512781514343311">"<xliff:g id="NAME">%s</xliff:g> ilovasi uchun bu funksiyani sozlamalar orqali faolsizlantirish mumkin."</string> <string name="pip_play" msgid="1417176722760265888">"Ijro"</string> diff --git a/packages/SystemUI/res/values-vi/strings.xml b/packages/SystemUI/res/values-vi/strings.xml index bc0505885086..14f2bb00ddc9 100644 --- a/packages/SystemUI/res/values-vi/strings.xml +++ b/packages/SystemUI/res/values-vi/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Tệp tham chiếu khóa RSA của máy tính là:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Luôn cho phép từ máy tính này"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Tính năng gỡ lỗi USB không được phép"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Người dùng hiện đã đăng nhập vào thiết bị này không thể bật tính năng gỡ lỗi USB. Để sử dụng tính năng này, hãy chuyển sang người dùng chính."</string> <string name="compat_mode_on" msgid="6623839244840638213">"T.phóng để lấp đầy m.hình"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Giãn ra để lấp đầy m.hình"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Đang lưu ảnh chụp màn hình..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Tìm hiểu thêm"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Bạn đang kết nối với <xliff:g id="VPN_APP">%1$s</xliff:g>. Ứng dụng này có thể giám sát hoạt động mạng của bạn, bao gồm email, ứng dụng và trang web."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Mở cài đặt VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Mở thông tin xác thực tin cậy"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Quản trị viên đã bật tính năng ghi nhật ký mạng. Tính năng này giám sát lưu lượng truy cập trên thiết bị của bạn.\n\nĐể biết thêm thông tin, hãy liên hệ với quản trị viên của bạn."</string> @@ -589,8 +587,10 @@ <item quantity="one">%d phút</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Giảm hiệu suất và dữ liệu nền"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Nút <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Thu nhỏ"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Đóng"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Kéo xuống để loại bỏ"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Menu ảnh trong ảnh"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g> đang ở chế độ ảnh trong ảnh"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Nếu bạn không muốn <xliff:g id="NAME">%s</xliff:g> sử dụng tính năng này, hãy nhấn để mở cài đặt và tắt tính năng này."</string> <string name="pip_play" msgid="1417176722760265888">"Phát"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Menu"</string> <string name="tuner_app" msgid="3507057938640108777">"Ứng dụng <xliff:g id="APP">%1$s</xliff:g>"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Cảnh báo"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Pin"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Ảnh chụp màn hình"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Thông báo chung"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Bộ nhớ"</string> diff --git a/packages/SystemUI/res/values-zh-rCN/strings.xml b/packages/SystemUI/res/values-zh-rCN/strings.xml index e2bf586dad77..6c82e67bfe6c 100644 --- a/packages/SystemUI/res/values-zh-rCN/strings.xml +++ b/packages/SystemUI/res/values-zh-rCN/strings.xml @@ -587,8 +587,10 @@ <item quantity="one">%d 分钟</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"降低性能并限制后台流量"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g>按钮"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -728,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"最小化"</string> <string name="pip_phone_close" msgid="8416647892889710330">"关闭"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"向下拖动即可关闭"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"画中画菜单"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"<xliff:g id="NAME">%s</xliff:g>目前位于“画中画”中"</string> <string name="pip_notification_message" msgid="5619512781514343311">"如果您不想让“<xliff:g id="NAME">%s</xliff:g>”使用此功能,请点按以打开设置,然后关闭此功能。"</string> <string name="pip_play" msgid="1417176722760265888">"播放"</string> diff --git a/packages/SystemUI/res/values-zh-rHK/strings.xml b/packages/SystemUI/res/values-zh-rHK/strings.xml index 4483c49eaac7..f05b94f4f275 100644 --- a/packages/SystemUI/res/values-zh-rHK/strings.xml +++ b/packages/SystemUI/res/values-zh-rHK/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"這部電腦的 RSA 密鑰指紋如下:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"一律允許透過這部電腦進行"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"不允許 USB 偵錯"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"目前登入這個裝置的使用者無法啟用 USB 偵錯功能。如要使用這項功能,請切換到主要使用者。"</string> <string name="compat_mode_on" msgid="6623839244840638213">"放大為全螢幕"</string> <string name="compat_mode_off" msgid="4434467572461327898">"放大為全螢幕"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"正在儲存螢幕擷取畫面..."</string> @@ -459,8 +458,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"瞭解詳情"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"您已連接至「<xliff:g id="VPN_APP">%1$s</xliff:g>」,此應用程式可以監控您的網絡活動,包括電郵、應用程式及網站。"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"開啟 VPN 設定"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"開啟信任的憑證"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"您的管理員已開啟網絡記錄功能,以監控您裝置上的流量。\n\n如需瞭解詳情,請聯絡您的管理員。"</string> @@ -589,8 +587,10 @@ <item quantity="one">%d 分鐘</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"降低效能並限制背景數據傳輸"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> 鍵"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home"</string> @@ -730,7 +730,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"最小化"</string> <string name="pip_phone_close" msgid="8416647892889710330">"關閉"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"向下拖曳即可關閉"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"畫中畫選單"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"「<xliff:g id="NAME">%s</xliff:g>」目前在畫中畫模式"</string> <string name="pip_notification_message" msgid="5619512781514343311">"如果您不想「<xliff:g id="NAME">%s</xliff:g>」使用此功能,請輕按以開啟設定,然後停用此功能。"</string> <string name="pip_play" msgid="1417176722760265888">"播放"</string> @@ -758,8 +759,7 @@ <string name="tuner_menu" msgid="191640047241552081">"選單"</string> <string name="tuner_app" msgid="3507057938640108777">"「<xliff:g id="APP">%1$s</xliff:g>」應用程式"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"通知"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"電池"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"螢幕擷取畫面"</string> <string name="notification_channel_general" msgid="4525309436693914482">"一般訊息"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"儲存空間"</string> diff --git a/packages/SystemUI/res/values-zh-rTW/strings.xml b/packages/SystemUI/res/values-zh-rTW/strings.xml index 16a4369a5f00..8c1104537f9a 100644 --- a/packages/SystemUI/res/values-zh-rTW/strings.xml +++ b/packages/SystemUI/res/values-zh-rTW/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"這台電腦的 RSA 金鑰指紋如下:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"一律允許透過這台電腦進行"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"無權使用 USB 偵錯功能"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"目前登入這個裝置的使用者無法啟用 USB 偵錯功能。如要使用這項功能,請切換到主要使用者。"</string> <string name="compat_mode_on" msgid="6623839244840638213">"放大為全螢幕"</string> <string name="compat_mode_off" msgid="4434467572461327898">"放大為全螢幕"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"正在儲存螢幕擷取畫面…"</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"瞭解詳情"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"由於你已連結至「<xliff:g id="VPN_APP">%1$s</xliff:g>」,你的網路活動 (包括收發電子郵件、使用應用程式及瀏覽網站) 可能會受到這個應用程式監控。"</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"開啟 VPN 設定"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"開啟信任的憑證"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"你的管理員已啟用網路紀錄功能,可監控你裝置的流量。\n\n如需詳細資訊,請與你的管理員聯絡。"</string> @@ -587,8 +585,10 @@ <item quantity="one">%d 分鐘</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"降低效能並限制背景資料傳輸"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"<xliff:g id="NAME">%1$s</xliff:g> 按鈕"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Home 鍵"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"最小化"</string> <string name="pip_phone_close" msgid="8416647892889710330">"關閉"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"向下拖曳即可關閉"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"子母畫面選單"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"「<xliff:g id="NAME">%s</xliff:g>」目前在子母畫面中"</string> <string name="pip_notification_message" msgid="5619512781514343311">"如果你不想讓「<xliff:g id="NAME">%s</xliff:g>」使用這項功能,請輕觸開啟設定頁面,然後停用此功能。"</string> <string name="pip_play" msgid="1417176722760265888">"播放"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"選單"</string> <string name="tuner_app" msgid="3507057938640108777">"「<xliff:g id="APP">%1$s</xliff:g>」應用程式"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"快訊"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"電池"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"螢幕擷取畫面"</string> <string name="notification_channel_general" msgid="4525309436693914482">"一般訊息"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"儲存空間"</string> diff --git a/packages/SystemUI/res/values-zu/strings.xml b/packages/SystemUI/res/values-zu/strings.xml index 7cd1bd56bf91..23fb48d76ca0 100644 --- a/packages/SystemUI/res/values-zu/strings.xml +++ b/packages/SystemUI/res/values-zu/strings.xml @@ -64,8 +64,7 @@ <string name="usb_debugging_message" msgid="2220143855912376496">"Izigxivizo zeminwe zokhiye we-RSA wekhompyutha ngu:\n<xliff:g id="FINGERPRINT">%1$s</xliff:g>"</string> <string name="usb_debugging_always" msgid="303335496705863070">"Hlala uvumela njalo kusuka kule khompyutha"</string> <string name="usb_debugging_secondary_user_title" msgid="6353808721761220421">"Ukususa iphutha kwe-USB akuvunyelwe"</string> - <!-- no translation found for usb_debugging_secondary_user_message (6067122453571699801) --> - <skip /> + <string name="usb_debugging_secondary_user_message" msgid="6067122453571699801">"Umsebenzisi manje ongene ngemvume kule divayisi entsha akakwazi ukuvula ukulungisa amaphutha ku-USB. Ukuze usebenzise lesi sici, shintshela kumsebenzisi oyinhloko."</string> <string name="compat_mode_on" msgid="6623839244840638213">"Sondeza ukugcwalisa isikrini"</string> <string name="compat_mode_off" msgid="4434467572461327898">"Nweba ukugcwalisa isikrini"</string> <string name="screenshot_saving_ticker" msgid="7403652894056693515">"Ilondoloz umfanekiso weskrini..."</string> @@ -457,8 +456,7 @@ <string name="monitoring_description_do_learn_more" msgid="1849514470437907421">"Funda kabanzi"</string> <string name="monitoring_description_do_body_vpn" msgid="8255218762488901796">"Uxhumeke ku-<xliff:g id="VPN_APP">%1$s</xliff:g>, engaqapha umsebenzi wenethiwekhi yakho, ofaka ama-imeyili, izinhlelo zokusebenza, namawebhusayithi."</string> <string name="monitoring_description_vpn_settings_separator" msgid="1933186756733474388">" "</string> - <!-- no translation found for monitoring_description_vpn_settings (6434859242636063861) --> - <skip /> + <string name="monitoring_description_vpn_settings" msgid="6434859242636063861">"Vula izilungiselelo ze-VPN"</string> <string name="monitoring_description_ca_cert_settings_separator" msgid="4987350385906393626">" "</string> <string name="monitoring_description_ca_cert_settings" msgid="5489969458872997092">"Vula ukuqinisekisa okuthenjiwe"</string> <string name="monitoring_description_network_logging" msgid="7223505523384076027">"Umlawuli wakho uvule ukungena kwenethiwekhi, okuhlola ithrafikhi kudivayisi yakho.\n\nNgolwazi olubanzi xhumana nomlawuli wakho."</string> @@ -587,8 +585,10 @@ <item quantity="other">%d amaminithi</item> </plurals> <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> + <!-- no translation found for battery_detail_charging_summary (4055327085770378335) --> + <skip /> + <!-- no translation found for battery_detail_switch_title (8763441006881907058) --> + <skip /> <string name="battery_detail_switch_summary" msgid="9049111149407626804">"Sehlisa ukusebenza nedatha yasemuva"</string> <string name="keyboard_key_button_template" msgid="6230056639734377300">"Inkinobho <xliff:g id="NAME">%1$s</xliff:g>"</string> <string name="keyboard_key_home" msgid="2243500072071305073">"Ekhaya"</string> @@ -728,7 +728,8 @@ <string name="pip_phone_minimize" msgid="1079119422589131792">"Nciphisa"</string> <string name="pip_phone_close" msgid="8416647892889710330">"Vala"</string> <string name="pip_phone_dismiss_hint" msgid="6351678169095923899">"Hudulela phansi ukuze ucashise"</string> - <string name="pip_menu_title" msgid="3328510504196964712">"Isithombe ngemenyu yesithombe ngesithombe"</string> + <!-- no translation found for pip_menu_title (4707292089961887657) --> + <skip /> <string name="pip_notification_title" msgid="3204024940158161322">"U-<xliff:g id="NAME">%s</xliff:g> ungaphakathi kwesithombe esiphakathi kwesithombe"</string> <string name="pip_notification_message" msgid="5619512781514343311">"Uma ungafuni i-<xliff:g id="NAME">%s</xliff:g> ukuthi isebenzise lesi sici, thepha ukuze uvule izilungiselelo uphinde uyivale."</string> <string name="pip_play" msgid="1417176722760265888">"Dlala"</string> @@ -756,8 +757,7 @@ <string name="tuner_menu" msgid="191640047241552081">"Imenyu"</string> <string name="tuner_app" msgid="3507057938640108777">"<xliff:g id="APP">%1$s</xliff:g> uhlelo lokusebenza"</string> <string name="notification_channel_alerts" msgid="4496839309318519037">"Izexwayiso"</string> - <!-- no translation found for notification_channel_battery (5786118169182888462) --> - <skip /> + <string name="notification_channel_battery" msgid="5786118169182888462">"Ibhethri"</string> <string name="notification_channel_screenshot" msgid="6314080179230000938">"Izithombe-skrini"</string> <string name="notification_channel_general" msgid="4525309436693914482">"Imilayezo ejwayelekile"</string> <string name="notification_channel_storage" msgid="3077205683020695313">"Isitoreji"</string> diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java b/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java index 669594b86e54..bb6213b8921f 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java @@ -1157,10 +1157,16 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener { } } + private boolean shouldListenForFingerprintAssistant() { + return mAssistantVisible && mKeyguardOccluded + && !mUserFingerprintAuthenticated.get(getCurrentUser(), false) + && !mUserHasTrust.get(getCurrentUser(), false); + } + private boolean shouldListenForFingerprint() { return (mKeyguardIsVisible || !mDeviceInteractive || (mBouncer && !mKeyguardGoingAway) || mGoingToSleep || - (mAssistantVisible && mKeyguardOccluded)) + shouldListenForFingerprintAssistant()) && !mSwitchingUser && !isFingerprintDisabled(getCurrentUser()) && !mKeyguardGoingAway; } diff --git a/packages/SystemUI/src/com/android/systemui/DockedStackExistsListener.java b/packages/SystemUI/src/com/android/systemui/DockedStackExistsListener.java index 9fe730affbd9..81e4db3b2561 100644 --- a/packages/SystemUI/src/com/android/systemui/DockedStackExistsListener.java +++ b/packages/SystemUI/src/com/android/systemui/DockedStackExistsListener.java @@ -33,6 +33,7 @@ public class DockedStackExistsListener { private static final String TAG = "DockedStackExistsListener"; private static ArrayList<WeakReference<Consumer<Boolean>>> sCallbacks = new ArrayList<>(); + private static boolean mLastExists; static { try { @@ -73,6 +74,7 @@ public class DockedStackExistsListener { private static void onDockedStackExistsChanged(boolean exists) { + mLastExists = exists; synchronized (sCallbacks) { sCallbacks.removeIf(wf -> { Consumer<Boolean> l = wf.get(); @@ -83,6 +85,7 @@ public class DockedStackExistsListener { } public static void register(Consumer<Boolean> callback) { + callback.accept(mLastExists); synchronized (sCallbacks) { sCallbacks.add(new WeakReference<>(callback)); } diff --git a/packages/SystemUI/src/com/android/systemui/pip/phone/PipTouchHandler.java b/packages/SystemUI/src/com/android/systemui/pip/phone/PipTouchHandler.java index 9b4832097528..56a3c87b6b74 100644 --- a/packages/SystemUI/src/com/android/systemui/pip/phone/PipTouchHandler.java +++ b/packages/SystemUI/src/com/android/systemui/pip/phone/PipTouchHandler.java @@ -31,7 +31,6 @@ import android.content.res.Resources; import android.graphics.Point; import android.graphics.PointF; import android.graphics.Rect; -import android.graphics.RectF; import android.os.Handler; import android.os.RemoteException; import android.util.Log; @@ -47,10 +46,8 @@ import android.view.accessibility.AccessibilityWindowInfo; import com.android.internal.logging.MetricsLogger; import com.android.internal.logging.nano.MetricsProto.MetricsEvent; import com.android.internal.policy.PipSnapAlgorithm; -import com.android.systemui.Dependency; import com.android.systemui.R; import com.android.systemui.statusbar.FlingAnimationUtils; -import com.android.systemui.tuner.TunerService; import java.io.PrintWriter; @@ -90,6 +87,8 @@ public class PipTouchHandler { // The current movement bounds private Rect mMovementBounds = new Rect(); + // The reference inset bounds, used to determine the dismiss fraction + private Rect mInsetBounds = new Rect(); // The reference bounds used to calculate the normal/expanded target bounds private Rect mNormalBounds = new Rect(); private Rect mNormalMovementBounds = new Rect(); @@ -311,6 +310,7 @@ public class PipTouchHandler { mNormalMovementBounds = normalMovementBounds; mExpandedMovementBounds = expandedMovementBounds; mDisplayRotation = displayRotation; + mInsetBounds.set(insetBounds); updateMovementBounds(mMenuState); // If we have a deferred resize, apply it now @@ -418,9 +418,12 @@ public class PipTouchHandler { * Updates the appearance of the menu and scrim on top of the PiP while dismissing. */ private void updateDismissFraction() { - if (mMenuController != null) { + // Skip updating the dismiss fraction when the IME is showing. This is to work around an + // issue where starting the menu activity for the dismiss overlay will steal the window + // focus, which closes the IME. + if (mMenuController != null && !mIsImeShowing) { Rect bounds = mMotionHelper.getBounds(); - final float target = mMovementBounds.bottom + bounds.height(); + final float target = mInsetBounds.bottom; float fraction = 0f; if (bounds.bottom > target) { final float distance = bounds.bottom - target; diff --git a/packages/SystemUI/src/com/android/systemui/recents/RecentsImpl.java b/packages/SystemUI/src/com/android/systemui/recents/RecentsImpl.java index 86e93fdd63ad..1b8614313809 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/RecentsImpl.java +++ b/packages/SystemUI/src/com/android/systemui/recents/RecentsImpl.java @@ -24,6 +24,7 @@ import static android.view.View.MeasureSpec; import android.app.ActivityManager; import android.app.ActivityManager.TaskSnapshot; import android.app.ActivityOptions; +import android.app.ActivityOptions.OnAnimationFinishedListener; import android.app.ActivityOptions.OnAnimationStartedListener; import android.content.ActivityNotFoundException; import android.content.Context; @@ -663,7 +664,7 @@ public class RecentsImpl implements ActivityOptions.OnAnimationFinishedListener mWaitingForTransitionStart = waitingForTransitionStart; if (!waitingForTransitionStart && mToggleFollowingTransitionStart) { - toggleRecents(DividerView.INVALID_RECENTS_GROW_TARGET); + mHandler.post(() -> toggleRecents(DividerView.INVALID_RECENTS_GROW_TARGET)); } mToggleFollowingTransitionStart = false; } @@ -866,6 +867,7 @@ public class RecentsImpl implements ActivityOptions.OnAnimationFinishedListener private Pair<ActivityOptions, AppTransitionAnimationSpecsFuture> getThumbnailTransitionActivityOptions(ActivityManager.RunningTaskInfo runningTask, Rect windowOverrideRect) { + final boolean isLowRamDevice = Recents.getConfiguration().isLowRamDevice; if (runningTask != null && runningTask.stackId == FREEFORM_WORKSPACE_STACK_ID) { ArrayList<AppTransitionAnimationSpec> specs = new ArrayList<>(); ArrayList<Task> tasks; @@ -896,8 +898,11 @@ public class RecentsImpl implements ActivityOptions.OnAnimationFinishedListener AppTransitionAnimationSpec[] specsArray = new AppTransitionAnimationSpec[specs.size()]; specs.toArray(specsArray); + // For low end ram devices, wait for transition flag is reset when Recents entrance + // animation is complete instead of when the transition animation starts return new Pair<>(ActivityOptions.makeThumbnailAspectScaleDownAnimation(mDummyStackView, - specsArray, mHandler, mResetToggleFlagListener, this), null); + specsArray, mHandler, isLowRamDevice ? null : mResetToggleFlagListener, this), + null); } else { // Update the destination rect Task toTask = new Task(); @@ -916,9 +921,11 @@ public class RecentsImpl implements ActivityOptions.OnAnimationFinishedListener toTask.key.id, thumbnail, rect)); }); + // For low end ram devices, wait for transition flag is reset when Recents entrance + // animation is complete instead of when the transition animation starts return new Pair<>(ActivityOptions.makeMultiThumbFutureAspectScaleAnimation(mContext, - mHandler, future.getFuture(), mResetToggleFlagListener, false /* scaleUp */), - future); + mHandler, future.getFuture(), isLowRamDevice ? null : mResetToggleFlagListener, + false /* scaleUp */), future); } } diff --git a/packages/SystemUI/src/com/android/systemui/recents/views/RecentsTransitionHelper.java b/packages/SystemUI/src/com/android/systemui/recents/views/RecentsTransitionHelper.java index 127822aec6df..b2675d7ac858 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/views/RecentsTransitionHelper.java +++ b/packages/SystemUI/src/com/android/systemui/recents/views/RecentsTransitionHelper.java @@ -140,8 +140,10 @@ public class RecentsTransitionHelper { mHandler.postDelayed(mStartScreenPinningRunnable, 350); } - // Reset the state where we are waiting for the transition to start - EventBus.getDefault().send(new SetWaitingForTransitionStartEvent(false)); + if (!Recents.getConfiguration().isLowRamDevice) { + // Reset the state where we are waiting for the transition to start + EventBus.getDefault().send(new SetWaitingForTransitionStartEvent(false)); + } } }; } else { @@ -163,8 +165,10 @@ public class RecentsTransitionHelper { EventBus.getDefault().send(new ExitRecentsWindowFirstAnimationFrameEvent()); stackView.cancelAllTaskViewAnimations(); - // Reset the state where we are waiting for the transition to start - EventBus.getDefault().send(new SetWaitingForTransitionStartEvent(false)); + if (!Recents.getConfiguration().isLowRamDevice) { + // Reset the state where we are waiting for the transition to start + EventBus.getDefault().send(new SetWaitingForTransitionStartEvent(false)); + } } }; } diff --git a/packages/SystemUI/src/com/android/systemui/recents/views/TaskStackAnimationHelper.java b/packages/SystemUI/src/com/android/systemui/recents/views/TaskStackAnimationHelper.java index 6e57044467bb..81bf6affc94a 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/views/TaskStackAnimationHelper.java +++ b/packages/SystemUI/src/com/android/systemui/recents/views/TaskStackAnimationHelper.java @@ -34,6 +34,8 @@ import com.android.systemui.recents.Recents; import com.android.systemui.recents.RecentsActivityLaunchState; import com.android.systemui.recents.RecentsConfiguration; import com.android.systemui.recents.RecentsDebugFlags; +import com.android.systemui.recents.events.EventBus; +import com.android.systemui.recents.events.component.SetWaitingForTransitionStartEvent; import com.android.systemui.recents.misc.ReferenceCountedTrigger; import com.android.systemui.recents.model.Task; import com.android.systemui.recents.model.TaskStack; @@ -241,6 +243,7 @@ public class TaskStackAnimationHelper { return; } + final boolean isLowRamDevice = Recents.getConfiguration().isLowRamDevice; int taskViewEnterFromAppDuration = res.getInteger( R.integer.recents_task_enter_from_app_duration); int taskViewEnterFromAffiliatedAppDuration = res.getInteger( @@ -248,6 +251,13 @@ public class TaskStackAnimationHelper { int dockGestureAnimDuration = appRes.getInteger( R.integer.long_press_dock_anim_duration); + // Since low ram devices have an animation when entering app -> recents, do not allow + // toggle until the animation is complete + if (launchState.launchedFromApp && !launchState.launchedViaDockGesture && isLowRamDevice) { + postAnimationTrigger.addLastDecrementRunnable(() -> EventBus.getDefault() + .send(new SetWaitingForTransitionStartEvent(false))); + } + // Create enter animations for each of the views from front to back List<TaskView> taskViews = mStackView.getTaskViews(); int taskViewCount = taskViews.size(); @@ -296,7 +306,7 @@ public class TaskStackAnimationHelper { AnimationProps taskAnimation = new AnimationProps() .setInterpolator(AnimationProps.ALPHA, ENTER_FROM_HOME_ALPHA_INTERPOLATOR) .setListener(postAnimationTrigger.decrementOnAnimationEnd()); - if (Recents.getConfiguration().isLowRamDevice) { + if (isLowRamDevice) { taskAnimation.setInterpolator(AnimationProps.BOUNDS, Interpolators.FAST_OUT_SLOW_IN) .setDuration(AnimationProps.BOUNDS, 150) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ButtonDispatcher.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ButtonDispatcher.java index 2bc26654fd87..a83e6591c48b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ButtonDispatcher.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ButtonDispatcher.java @@ -174,16 +174,6 @@ public class ButtonDispatcher { mCurrentView = currentView.findViewById(mId); } - public void setCarMode(boolean carMode) { - final int N = mViews.size(); - for (int i = 0; i < N; i++) { - final View view = mViews.get(i); - if (view instanceof ButtonInterface) { - ((ButtonInterface) view).setCarMode(carMode); - } - } - } - public void setVertical(boolean vertical) { mVertical = vertical; final int N = mViews.size(); diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/FingerprintUnlockController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/FingerprintUnlockController.java index cb96dea08ae0..316d229e4f1a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/FingerprintUnlockController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/FingerprintUnlockController.java @@ -32,6 +32,8 @@ import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.keyguard.ScreenLifecycle; import com.android.systemui.keyguard.WakefulnessLifecycle; +import java.io.PrintWriter; + /** * Controller which coordinates all the fingerprint unlocking actions with the UI. */ @@ -264,6 +266,7 @@ public class FingerprintUnlockController extends KeyguardUpdateMonitorCallback { @Override public void onStartedGoingToSleep(int why) { + resetMode(); mPendingAuthenticatedUserId = -1; } @@ -346,6 +349,10 @@ public class FingerprintUnlockController extends KeyguardUpdateMonitorCallback { } public void finishKeyguardFadingAway() { + resetMode(); + } + + private void resetMode() { mMode = MODE_NONE; mStatusBarWindowManager.setForceDozeBrightness(false); if (mStatusBar.getNavigationBarView() != null) { @@ -375,4 +382,10 @@ public class FingerprintUnlockController extends KeyguardUpdateMonitorCallback { public boolean hasScreenTurnedOnSinceAuthenticating() { return mHasScreenTurnedOnSinceAuthenticating; } + + public void dump(PrintWriter pw) { + pw.println(" FingerprintUnlockController:"); + pw.print(" mMode="); pw.println(mMode); + pw.print(" mWakeLock="); pw.println(mWakeLock); + } } diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarView.java index 57c88275113c..9a7039a515a1 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarView.java @@ -683,8 +683,6 @@ public class NavigationBarView extends FrameLayout implements PluginListener<Nav if (isCarMode != mInCarMode) { mInCarMode = isCarMode; - getHomeButton().setCarMode(isCarMode); - if (ALTERNATE_CAR_MODE_UI) { mUseCarModeUi = isCarMode; uiCarModeChanged = true; diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java index 1d6448094132..702afa3a38b1 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java @@ -48,6 +48,7 @@ import com.android.systemui.statusbar.ScrimView; import com.android.systemui.statusbar.policy.OnHeadsUpChangedListener; import com.android.systemui.statusbar.stack.ViewState; +import java.io.PrintWriter; import java.util.function.Consumer; /** @@ -768,4 +769,22 @@ public class ScrimController implements ViewTreeObserver.OnPreDrawListener, scheduleUpdate(); } } + + public void dump(PrintWriter pw) { + pw.println(" ScrimController:"); + + pw.print(" frontScrim:"); pw.print(" viewAlpha="); pw.print(mScrimInFront.getViewAlpha()); + pw.print(" alpha="); pw.print(mCurrentInFrontAlpha); + pw.print(" dozeAlpha="); pw.print(mDozeInFrontAlpha); + pw.print(" tint=0x"); pw.println(Integer.toHexString(mScrimInFront.getTint())); + + pw.print(" backScrim:"); pw.print(" viewAlpha="); pw.print(mScrimBehind.getViewAlpha()); + pw.print(" alpha="); pw.print(mCurrentBehindAlpha); + pw.print(" dozeAlpha="); pw.print(mDozeBehindAlpha); + pw.print(" tint=0x"); pw.println(Integer.toHexString(mScrimBehind.getTint())); + + pw.print(" mBouncerShowing="); pw.println(mBouncerShowing); + pw.print(" mTracking="); pw.println(mTracking); + pw.print(" mForceHideScrims="); pw.println(mForceHideScrims); + } } diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java index 65bfb4983c0e..4fb5754ab1be 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java @@ -3535,6 +3535,14 @@ public class StatusBar extends SystemUI implements DemoMode, DozeLog.dump(pw); + if (mFingerprintUnlockController != null) { + mFingerprintUnlockController.dump(pw); + } + + if (mScrimController != null) { + mScrimController.dump(pw); + } + if (DUMPTRUCK) { synchronized (mNotificationData) { mNotificationData.dump(pw, " "); @@ -5153,6 +5161,14 @@ public class StatusBar extends SystemUI implements DemoMode, recomputeDisableFlags(true /* animate */); } + public void cancelCurrentTouch() { + if (mNotificationPanel.isTracking()) { + mStatusBarWindow.cancelCurrentTouch(); + if (mState == StatusBarState.SHADE) { + animateCollapsePanels(); + } + } + } WakefulnessLifecycle.Observer mWakefulnessObserver = new WakefulnessLifecycle.Observer() { @Override diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/policy/KeyButtonView.java b/packages/SystemUI/src/com/android/systemui/statusbar/policy/KeyButtonView.java index 65bfabd19fbb..05017718d42b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/policy/KeyButtonView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/policy/KeyButtonView.java @@ -304,11 +304,6 @@ public class KeyButtonView extends ImageView implements ButtonInterface { public void setVertical(boolean vertical) { //no op } - - @Override - public void setCarMode(boolean carMode) { - // no op - } } diff --git a/packages/SystemUI/src/com/android/systemui/volume/ZenRadioLayout.java b/packages/SystemUI/src/com/android/systemui/volume/ZenRadioLayout.java index 5dbcd8a73aac..360907b0d22b 100644 --- a/packages/SystemUI/src/com/android/systemui/volume/ZenRadioLayout.java +++ b/packages/SystemUI/src/com/android/systemui/volume/ZenRadioLayout.java @@ -46,9 +46,16 @@ public class ZenRadioLayout extends LinearLayout { throw new IllegalStateException("Expected matching children"); } boolean hasChanges = false; + View lastView = null; for (int i = 0; i < size; i++) { View radio = radioGroup.getChildAt(i); View content = radioContent.getChildAt(i); + if (lastView != null) { + radio.setAccessibilityTraversalAfter(lastView.getId()); + } + View contentClick = findFirstClickable(content); + if (contentClick != null) contentClick.setAccessibilityTraversalAfter(radio.getId()); + lastView = findLastClickable(content); if (radio.getLayoutParams().height != content.getMeasuredHeight()) { hasChanges = true; radio.getLayoutParams().height = content.getMeasuredHeight(); @@ -59,4 +66,28 @@ public class ZenRadioLayout extends LinearLayout { super.onMeasure(widthMeasureSpec, heightMeasureSpec); } } + + private View findFirstClickable(View content) { + if (content.isClickable()) return content; + if (content instanceof ViewGroup) { + ViewGroup group = (ViewGroup) content; + for (int i = 0; i < group.getChildCount(); i++) { + View v = findFirstClickable(group.getChildAt(i)); + if (v != null) return v; + } + } + return null; + } + + private View findLastClickable(View content) { + if (content.isClickable()) return content; + if (content instanceof ViewGroup) { + ViewGroup group = (ViewGroup) content; + for (int i = group.getChildCount() - 1; i >= 0; i--) { + View v = findLastClickable(group.getChildAt(i)); + if (v != null) return v; + } + } + return null; + } } diff --git a/packages/SystemUI/tests/src/com/android/systemui/colorextraction/SysuiColorExtractorTests.java b/packages/SystemUI/tests/src/com/android/systemui/colorextraction/SysuiColorExtractorTests.java index d0f0bfd88883..6417eb706f7c 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/colorextraction/SysuiColorExtractorTests.java +++ b/packages/SystemUI/tests/src/com/android/systemui/colorextraction/SysuiColorExtractorTests.java @@ -17,6 +17,7 @@ package com.android.systemui.colorextraction; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotEquals; import android.app.WallpaperColors; import android.app.WallpaperManager; @@ -25,7 +26,6 @@ import android.support.test.filters.SmallTest; import android.support.test.runner.AndroidJUnit4; import com.android.internal.colorextraction.ColorExtractor; -import com.android.internal.colorextraction.types.Tonal; import com.android.systemui.SysuiTestCase; import org.junit.Test; @@ -48,18 +48,21 @@ public class SysuiColorExtractorTests extends SysuiTestCase { @Test public void getColors_usesGreyIfWallpaperNotVisible() { - SysuiColorExtractor extractor = new SysuiColorExtractor(getContext(), - new Tonal(getContext()), false); + ColorExtractor.GradientColors colors = new ColorExtractor.GradientColors(); + colors.setMainColor(Color.RED); + colors.setSecondaryColor(Color.RED); + + SysuiColorExtractor extractor = getTestableExtractor(colors); simulateEvent(extractor); extractor.setWallpaperVisible(false); ColorExtractor.GradientColors fallbackColors = extractor.getFallbackColors(); - for (int which : sWhich) { - for (int type : sTypes) { - assertEquals("Not using fallback!", extractor.getColors(which, type), - fallbackColors); - } + for (int type : sTypes) { + assertEquals("Not using fallback!", + extractor.getColors(WallpaperManager.FLAG_SYSTEM, type), fallbackColors); + assertNotEquals("Wallpaper visibility event should not affect lock wallpaper.", + extractor.getColors(WallpaperManager.FLAG_LOCK, type), fallbackColors); } } @@ -69,13 +72,7 @@ public class SysuiColorExtractorTests extends SysuiTestCase { colors.setMainColor(Color.RED); colors.setSecondaryColor(Color.RED); - SysuiColorExtractor extractor = new SysuiColorExtractor(getContext(), - (inWallpaperColors, outGradientColorsNormal, outGradientColorsDark, - outGradientColorsExtraDark) -> { - outGradientColorsNormal.set(colors); - outGradientColorsDark.set(colors); - outGradientColorsExtraDark.set(colors); - }, false); + SysuiColorExtractor extractor = getTestableExtractor(colors); simulateEvent(extractor); extractor.setWallpaperVisible(true); @@ -87,6 +84,16 @@ public class SysuiColorExtractorTests extends SysuiTestCase { } } + private SysuiColorExtractor getTestableExtractor(ColorExtractor.GradientColors colors) { + return new SysuiColorExtractor(getContext(), + (inWallpaperColors, outGradientColorsNormal, outGradientColorsDark, + outGradientColorsExtraDark) -> { + outGradientColorsNormal.set(colors); + outGradientColorsDark.set(colors); + outGradientColorsExtraDark.set(colors); + }, false); + } + private void simulateEvent(SysuiColorExtractor extractor) { // Let's fake a color event extractor.onColorsChanged(new WallpaperColors(Color.valueOf(Color.GREEN), null, null, 0), diff --git a/packages/VpnDialogs/res/values-en-rCA/strings.xml b/packages/VpnDialogs/res/values-en-rCA/strings.xml new file mode 100644 index 000000000000..2c93c781b1ca --- /dev/null +++ b/packages/VpnDialogs/res/values-en-rCA/strings.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="prompt" msgid="3183836924226407828">"Connection request"</string> + <string name="warning" msgid="809658604548412033">"<xliff:g id="APP">%s</xliff:g> wants to set up a VPN connection that allows it to monitor network traffic. Only accept if you trust the source. <br /> <br /> <img src=vpn_icon /> appears at the top of your screen when VPN is active."</string> + <string name="legacy_title" msgid="192936250066580964">"VPN is connected"</string> + <string name="configure" msgid="4905518375574791375">"Configure"</string> + <string name="disconnect" msgid="971412338304200056">"Disconnect"</string> + <string name="session" msgid="6470628549473641030">"Session:"</string> + <string name="duration" msgid="3584782459928719435">"Duration:"</string> + <string name="data_transmitted" msgid="7988167672982199061">"Sent:"</string> + <string name="data_received" msgid="4062776929376067820">"Received:"</string> + <string name="data_value_format" msgid="2192466557826897580">"<xliff:g id="NUMBER_0">%1$s</xliff:g> bytes / <xliff:g id="NUMBER_1">%2$s</xliff:g> packets"</string> +</resources> diff --git a/services/autofill/java/com/android/server/autofill/AutofillManagerService.java b/services/autofill/java/com/android/server/autofill/AutofillManagerService.java index 71f699c8da54..e85407961f36 100644 --- a/services/autofill/java/com/android/server/autofill/AutofillManagerService.java +++ b/services/autofill/java/com/android/server/autofill/AutofillManagerService.java @@ -655,6 +655,19 @@ public final class AutofillManagerService extends SystemService { } @Override + public void dismissUi() { + final UserHandle user = getCallingUserHandle(); + + synchronized (mLock) { + final AutofillManagerServiceImpl service = peekServiceForUserLocked( + user.getIdentifier()); + if (service != null) { + service.dismissUi(); + } + } + } + + @Override public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return; diff --git a/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java b/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java index 751c0547afd6..841b1a52f403 100644 --- a/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java +++ b/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java @@ -41,7 +41,6 @@ import android.os.IBinder; import android.os.Looper; import android.os.RemoteCallbackList; import android.os.RemoteException; -import android.os.UserHandle; import android.os.UserManager; import android.provider.Settings; import android.service.autofill.AutofillService; @@ -635,6 +634,12 @@ final class AutofillManagerServiceImpl { } } + void dismissUi() { + if (sVerbose) Slog.v(TAG, "dismissUi()"); + + mUi.hideAll(null); + } + private void sendStateToClients(boolean resetClient) { final RemoteCallbackList<IAutoFillManagerClient> clients; final int userClientCount; diff --git a/services/autofill/java/com/android/server/autofill/RemoteFillService.java b/services/autofill/java/com/android/server/autofill/RemoteFillService.java index 5e25dfa49d70..2a2797c160d8 100644 --- a/services/autofill/java/com/android/server/autofill/RemoteFillService.java +++ b/services/autofill/java/com/android/server/autofill/RemoteFillService.java @@ -290,7 +290,7 @@ final class RemoteFillService implements DeathRecipient { } private void dispatchOnFillRequestFailure(PendingRequest pendingRequest, - CharSequence message) { + @Nullable CharSequence message) { mHandler.getHandler().post(() -> { if (handleResponseCallbackCommon(pendingRequest)) { mCallbacks.onFillRequestFailure(message, mComponentName.getPackageName()); @@ -298,6 +298,16 @@ final class RemoteFillService implements DeathRecipient { }); } + private void dispatchOnFillTimeout(@NonNull ICancellationSignal cancellationSignal) { + mHandler.getHandler().post(() -> { + try { + cancellationSignal.cancel(); + } catch (RemoteException e) { + Slog.w(LOG_TAG, "Error calling cancellation signal: " + e); + } + }); + } + private void dispatchOnSaveRequestSuccess(PendingRequest pendingRequest) { mHandler.getHandler().post(() -> { if (handleResponseCallbackCommon(pendingRequest)) { @@ -307,7 +317,7 @@ final class RemoteFillService implements DeathRecipient { } private void dispatchOnSaveRequestFailure(PendingRequest pendingRequest, - CharSequence message) { + @Nullable CharSequence message) { mHandler.getHandler().post(() -> { if (handleResponseCallbackCommon(pendingRequest)) { mCallbacks.onSaveRequestFailure(message, mComponentName.getPackageName()); @@ -432,7 +442,7 @@ final class RemoteFillService implements DeathRecipient { if (remoteService != null) { Slog.w(LOG_TAG, getClass().getSimpleName() + " timed out after " + TIMEOUT_REMOTE_REQUEST_MILLIS + " ms"); - fail(remoteService); + onTimeout(remoteService); } }; mServiceHandler.postAtTime(mTimeoutTrigger, @@ -485,7 +495,7 @@ final class RemoteFillService implements DeathRecipient { * Called by the self-destructure timeout when the AutofilllService didn't reply to the * request on time. */ - abstract void fail(RemoteFillService remoteService); + abstract void onTimeout(RemoteFillService remoteService); /** * @return whether this request leads to a final state where no @@ -549,7 +559,10 @@ final class RemoteFillService implements DeathRecipient { } @Override - void fail(RemoteFillService remoteService) { + void onTimeout(RemoteFillService remoteService) { + // NOTE: Must make these 2 calls asynchronously, because the cancellation signal is + // handled by the service, which could block. + remoteService.dispatchOnFillTimeout(mCancellation); remoteService.dispatchOnFillRequestFailure(PendingFillRequest.this, null); } @@ -617,7 +630,7 @@ final class RemoteFillService implements DeathRecipient { } @Override - void fail(RemoteFillService remoteService) { + void onTimeout(RemoteFillService remoteService) { remoteService.dispatchOnSaveRequestFailure(PendingSaveRequest.this, null); } @@ -630,7 +643,7 @@ final class RemoteFillService implements DeathRecipient { } catch (RemoteException e) { Slog.e(LOG_TAG, "Error calling on save request", e); - remoteService.dispatchOnFillRequestFailure(PendingSaveRequest.this, null); + remoteService.dispatchOnSaveRequestFailure(PendingSaveRequest.this, null); } } } diff --git a/services/core/java/com/android/server/audio/AudioService.java b/services/core/java/com/android/server/audio/AudioService.java index 7a0c70652869..8de13bb53b70 100644 --- a/services/core/java/com/android/server/audio/AudioService.java +++ b/services/core/java/com/android/server/audio/AudioService.java @@ -5470,6 +5470,10 @@ public class AudioService extends IAudioService.Stub configureHdmiPlugIntent(intent, state); } + if (intent.getAction() == null) { + return; + } + intent.putExtra(CONNECT_INTENT_KEY_STATE, state); intent.putExtra(CONNECT_INTENT_KEY_ADDRESS, address); intent.putExtra(CONNECT_INTENT_KEY_PORT_NAME, deviceName); @@ -5543,9 +5547,7 @@ public class AudioService extends IAudioService.Stub } } } - if (device != AudioSystem.DEVICE_IN_WIRED_HEADSET) { - sendDeviceConnectionIntent(device, state, address, deviceName); - } + sendDeviceConnectionIntent(device, state, address, deviceName); updateAudioRoutes(device, state); } } diff --git a/services/core/java/com/android/server/notification/ManagedServices.java b/services/core/java/com/android/server/notification/ManagedServices.java index 80878131ae44..beaddb4c72dd 100644 --- a/services/core/java/com/android/server/notification/ManagedServices.java +++ b/services/core/java/com/android/server/notification/ManagedServices.java @@ -212,12 +212,25 @@ abstract public class ManagedServices { } } - protected void onSettingRestored(String element, String value, int userId) { + protected void onSettingRestored(String element, String value, int backupSdkInt, int userId) { if (!mUseXml) { Slog.d(TAG, "Restored managed service setting: " + element); if (mConfig.secureSettingName.equals(element) || (mConfig.secondarySettingName != null && mConfig.secondarySettingName.equals(element))) { + if (backupSdkInt < Build.VERSION_CODES.O) { + // automatic system grants were added in O, so append the approved apps + // rather than wiping out the setting + String currentSetting = + getApproved(userId, mConfig.secureSettingName.equals(element)); + if (!TextUtils.isEmpty(currentSetting)) { + if (!TextUtils.isEmpty(value)) { + value = value + ENABLED_SERVICES_SEPARATOR + currentSetting; + } else { + value = currentSetting; + } + } + } Settings.Secure.putStringForUser( mContext.getContentResolver(), element, value, userId); loadAllowedComponentsFromSettings(); @@ -370,6 +383,13 @@ abstract public class ManagedServices { } } + protected String getApproved(int userId, boolean primary) { + final ArrayMap<Boolean, ArraySet<String>> allowedByType = + mApproved.getOrDefault(userId, new ArrayMap<>()); + ArraySet<String> approved = allowedByType.getOrDefault(primary, new ArraySet<>()); + return String.join(ENABLED_SERVICES_SEPARATOR, approved); + } + protected List<ComponentName> getAllowedComponents(int userId) { final List<ComponentName> allowedComponents = new ArrayList<>(); final ArrayMap<Boolean, ArraySet<String>> allowedByType = diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 6aa83b38da71..28acd9af6f5f 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -817,8 +817,10 @@ public class NotificationManagerService extends SystemService { String newValue = intent.getStringExtra(Intent.EXTRA_SETTING_NEW_VALUE); int restoredFromSdkInt = intent.getIntExtra( Intent.EXTRA_SETTING_RESTORED_FROM_SDK_INT, 0); - mListeners.onSettingRestored(element, newValue, getSendingUserId()); - mConditionProviders.onSettingRestored(element, newValue, getSendingUserId()); + mListeners.onSettingRestored( + element, newValue, restoredFromSdkInt, getSendingUserId()); + mConditionProviders.onSettingRestored( + element, newValue, restoredFromSdkInt, getSendingUserId()); } catch (Exception e) { Slog.wtf(TAG, "Cannot restore managed services from settings", e); } diff --git a/services/core/java/com/android/server/pm/PackageManagerService.java b/services/core/java/com/android/server/pm/PackageManagerService.java index bac7fc850592..22254ef3a9a8 100644 --- a/services/core/java/com/android/server/pm/PackageManagerService.java +++ b/services/core/java/com/android/server/pm/PackageManagerService.java @@ -456,6 +456,8 @@ public class PackageManagerService extends IPackageManager.Stub private static final String STATIC_SHARED_LIB_DELIMITER = "_"; /** Extension of the compressed packages */ private final static String COMPRESSED_EXTENSION = ".gz"; + /** Suffix of stub packages on the system partition */ + private final static String STUB_SUFFIX = "-Stub"; private static final int[] EMPTY_INT_ARRAY = new int[0]; @@ -3191,12 +3193,46 @@ public class PackageManagerService extends IPackageManager.Stub } private File[] getCompressedFiles(String codePath) { - return new File(codePath).listFiles(new FilenameFilter() { + final File stubCodePath = new File(codePath); + final String stubName = stubCodePath.getName(); + + // The layout of a compressed package on a given partition is as follows : + // + // Compressed artifacts: + // + // /partition/ModuleName/foo.gz + // /partation/ModuleName/bar.gz + // + // Stub artifact: + // + // /partition/ModuleName-Stub/ModuleName-Stub.apk + // + // In other words, stub is on the same partition as the compressed artifacts + // and in a directory that's suffixed with "-Stub". + int idx = stubName.lastIndexOf(STUB_SUFFIX); + if (idx < 0 || (stubName.length() != (idx + STUB_SUFFIX.length()))) { + return null; + } + + final File stubParentDir = stubCodePath.getParentFile(); + if (stubParentDir == null) { + Slog.e(TAG, "Unable to determine stub parent dir for codePath: " + codePath); + return null; + } + + final File compressedPath = new File(stubParentDir, stubName.substring(0, idx)); + final File[] files = compressedPath.listFiles(new FilenameFilter() { @Override public boolean accept(File dir, String name) { return name.toLowerCase().endsWith(COMPRESSED_EXTENSION); } }); + + if (DEBUG_COMPRESSION && files != null && files.length > 0) { + Slog.i(TAG, "getCompressedFiles[" + codePath + "]: " + Arrays.toString(files)); + } + + return files; } private boolean compressedFileExists(String codePath) { @@ -3213,7 +3249,7 @@ public class PackageManagerService extends IPackageManager.Stub final File[] compressedFiles = getCompressedFiles(pkg.codePath); if (compressedFiles == null || compressedFiles.length == 0) { if (DEBUG_COMPRESSION) { - Slog.i(TAG, "No files to decompress"); + Slog.i(TAG, "No files to decompress: " + pkg.baseCodePath); } return null; } @@ -11079,7 +11115,7 @@ public class PackageManagerService extends IPackageManager.Stub r.info.encryptionAware = r.info.directBootAware = true; } } - if (compressedFileExists(pkg.baseCodePath)) { + if (compressedFileExists(pkg.codePath)) { pkg.isStub = true; } } else { diff --git a/services/core/java/com/android/server/wallpaper/WallpaperManagerService.java b/services/core/java/com/android/server/wallpaper/WallpaperManagerService.java index 2fad7b1a4a72..f6f5341ff0a9 100644 --- a/services/core/java/com/android/server/wallpaper/WallpaperManagerService.java +++ b/services/core/java/com/android/server/wallpaper/WallpaperManagerService.java @@ -1606,8 +1606,12 @@ public class WallpaperManagerService extends IWallpaperManager.Stub { @Override public ParcelFileDescriptor getWallpaper(String callingPkg, IWallpaperManagerCallback cb, final int which, Bundle outParams, int wallpaperUserId) { - enforceCallingOrSelfPermissionAndAppOp(android.Manifest.permission.READ_EXTERNAL_STORAGE, - callingPkg, Binder.getCallingUid(), "read wallpaper"); + final int hasPrivilege = mContext.checkCallingOrSelfPermission( + android.Manifest.permission.READ_WALLPAPER_INTERNAL); + if (hasPrivilege != PackageManager.PERMISSION_GRANTED) { + enforceCallingOrSelfPermissionAndAppOp(android.Manifest.permission.READ_EXTERNAL_STORAGE, + callingPkg, Binder.getCallingUid(), "read wallpaper"); + } wallpaperUserId = ActivityManager.handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), wallpaperUserId, false, true, "getWallpaper", null); diff --git a/services/core/java/com/android/server/wm/AppWindowAnimator.java b/services/core/java/com/android/server/wm/AppWindowAnimator.java index ddbbde1eb421..2b3901b1febb 100644 --- a/services/core/java/com/android/server/wm/AppWindowAnimator.java +++ b/services/core/java/com/android/server/wm/AppWindowAnimator.java @@ -148,7 +148,7 @@ public class AppWindowAnimator { } // Start out animation gone if window is gone, or visible if window is visible. transformation.clear(); - transformation.setAlpha(mAppToken.hasContentToDisplay() ? 1 : 0); + transformation.setAlpha(mAppToken.isVisible() ? 1 : 0); hasTransformation = true; mStackClip = stackClip; @@ -172,7 +172,7 @@ public class AppWindowAnimator { animation = sDummyAnimation; hasTransformation = true; transformation.clear(); - transformation.setAlpha(mAppToken.hasContentToDisplay() ? 1 : 0); + transformation.setAlpha(mAppToken.isVisible() ? 1 : 0); } void setNullAnimation() { diff --git a/services/core/java/com/android/server/wm/SurfaceControlWithBackground.java b/services/core/java/com/android/server/wm/SurfaceControlWithBackground.java index 3603f2ffeed2..b0eaf1488f21 100644 --- a/services/core/java/com/android/server/wm/SurfaceControlWithBackground.java +++ b/services/core/java/com/android/server/wm/SurfaceControlWithBackground.java @@ -26,9 +26,8 @@ import android.view.Surface.OutOfResourcesException; import android.view.SurfaceControl; import android.view.SurfaceSession; -import static android.view.WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW; -import static android.view.WindowManager.LayoutParams.LAST_APPLICATION_WINDOW; import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING; +import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION; import static android.view.WindowManagerPolicy.NAV_BAR_BOTTOM; import static android.view.WindowManagerPolicy.NAV_BAR_LEFT; import static android.view.WindowManagerPolicy.NAV_BAR_RIGHT; @@ -73,9 +72,8 @@ class SurfaceControlWithBackground extends SurfaceControl { super(s, name, w, h, format, flags, windowType, ownerUid); // We should only show background behind app windows that are letterboxed in a task. - if (!windowSurfaceController.mAnimator.mWin.isLetterboxedAppWindow() - || windowType < FIRST_APPLICATION_WINDOW - || windowType > LAST_APPLICATION_WINDOW) { + if ((windowType != TYPE_BASE_APPLICATION && windowType != TYPE_APPLICATION_STARTING) + || !windowSurfaceController.mAnimator.mWin.isLetterboxedAppWindow()) { return; } mWindowSurfaceController = windowSurfaceController; diff --git a/services/core/java/com/android/server/wm/WindowState.java b/services/core/java/com/android/server/wm/WindowState.java index 12abe39b082b..2b258c9d0fcc 100644 --- a/services/core/java/com/android/server/wm/WindowState.java +++ b/services/core/java/com/android/server/wm/WindowState.java @@ -1479,7 +1479,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP // TODO: Another visibility method that was added late in the release to minimize risk. @Override public boolean canAffectSystemUiFlags() { - final boolean shown = mWinAnimator.getShown(); + final boolean shown = mWinAnimator.getShown() && mWinAnimator.mShownAlpha > 0f; // We only consider the app to be exiting when the animation has started. After the app // transition is executed the windows are marked exiting before the new windows have been diff --git a/services/tests/notification/src/com/android/server/notification/ManagedServicesTest.java b/services/tests/notification/src/com/android/server/notification/ManagedServicesTest.java index bd65f571d20b..8242149d61be 100644 --- a/services/tests/notification/src/com/android/server/notification/ManagedServicesTest.java +++ b/services/tests/notification/src/com/android/server/notification/ManagedServicesTest.java @@ -38,6 +38,7 @@ import android.content.pm.PackageManager; import android.content.pm.ResolveInfo; import android.content.pm.ServiceInfo; import android.content.pm.UserInfo; +import android.os.Build; import android.os.IBinder; import android.os.IInterface; import android.os.UserHandle; @@ -146,15 +147,82 @@ public class ManagedServicesTest extends NotificationTestCase { service.onSettingRestored( service.getConfig().secureSettingName, mExpectedPrimary.get(approvalLevel).get(userId), - userId); + Build.VERSION_CODES.O, userId); } verifyExpectedApprovedEntries(service, true); for (int userId : mExpectedSecondary.get(approvalLevel).keySet()) { service.onSettingRestored(service.getConfig().secondarySettingName, - mExpectedSecondary.get(approvalLevel).get(userId), userId); + mExpectedSecondary.get(approvalLevel).get(userId), Build.VERSION_CODES.O, + userId); + } + verifyExpectedApprovedEntries(service); + } + } + + @Test + public void testBackupAndRestore_migration_preO() throws Exception { + ArrayMap backupPrimaryPackages = new ArrayMap<>(); + backupPrimaryPackages.put(0, "backup.0:backup:0a"); + backupPrimaryPackages.put(10, "10.backup"); + backupPrimaryPackages.put(11, "eleven"); + backupPrimaryPackages.put(12, ""); + ArrayMap backupPrimaryComponentNames = new ArrayMap<>(); + backupPrimaryComponentNames.put(0, "backup.first/whatever:a/b"); + backupPrimaryComponentNames.put(10, "again/M1"); + backupPrimaryComponentNames.put(11, "orange/youglad:itisnot/banana"); + backupPrimaryComponentNames.put(12, ""); + ArrayMap<Integer, ArrayMap<Integer, String>> backupPrimary = new ArrayMap<>(); + backupPrimary.put(APPROVAL_BY_PACKAGE, backupPrimaryPackages); + backupPrimary.put(APPROVAL_BY_COMPONENT, backupPrimaryComponentNames); + + ArrayMap backupSecondaryComponentNames = new ArrayMap<>(); + backupSecondaryComponentNames.put(0, "secondary.1/component.Name"); + backupSecondaryComponentNames.put(10, + "this.is.another.package.backup/with.Component:component.backup/2"); + ArrayMap backupSecondaryPackages = new ArrayMap<>(); + backupSecondaryPackages.put(0, ""); + backupSecondaryPackages.put(10, + "this.is.another.package.backup:package.backup"); + ArrayMap<Integer, ArrayMap<Integer, String>> backupSecondary = new ArrayMap<>(); + backupSecondary.put(APPROVAL_BY_PACKAGE, backupSecondaryPackages); + backupSecondary.put(APPROVAL_BY_COMPONENT, backupSecondaryComponentNames); + + for (int approvalLevel : new int[] {APPROVAL_BY_COMPONENT, APPROVAL_BY_PACKAGE}) { + ManagedServices service = new TestManagedServices(getContext(), mLock, mUserProfiles, + mIpm, approvalLevel); + + // not an expected flow but a way to get data into the settings + for (int userId : mExpectedPrimary.get(approvalLevel).keySet()) { + service.onSettingRestored( + service.getConfig().secureSettingName, + mExpectedPrimary.get(approvalLevel).get(userId), + Build.VERSION_CODES.O, userId); + } + + for (int userId : mExpectedSecondary.get(approvalLevel).keySet()) { + service.onSettingRestored(service.getConfig().secondarySettingName, + mExpectedSecondary.get(approvalLevel).get(userId), Build.VERSION_CODES.O, + userId); + } + + // actual test + for (int userId : backupPrimary.get(approvalLevel).keySet()) { + service.onSettingRestored( + service.getConfig().secureSettingName, + backupPrimary.get(approvalLevel).get(userId), + Build.VERSION_CODES.N_MR1, userId); + } + verifyExpectedApprovedEntries(service, true); + + for (int userId : backupSecondary.get(approvalLevel).keySet()) { + service.onSettingRestored(service.getConfig().secondarySettingName, + backupSecondary.get(approvalLevel).get(userId), + Build.VERSION_CODES.N_MR1, userId); } verifyExpectedApprovedEntries(service); + verifyExpectedApprovedEntries(service, backupPrimary.get(approvalLevel)); + verifyExpectedApprovedEntries(service, backupSecondary.get(approvalLevel)); } } @@ -619,25 +687,22 @@ public class ManagedServicesTest extends NotificationTestCase { ArrayMap<Integer, String> verifyMap = primary ? mExpectedPrimary.get(service.mApprovalLevel) : mExpectedSecondary.get(service.mApprovalLevel); + verifyExpectedApprovedEntries(service, verifyMap); + } + + private void verifyExpectedApprovedEntries(ManagedServices service, + ArrayMap<Integer, String> verifyMap) { for (int userId : verifyMap.keySet()) { for (String verifyValue : verifyMap.get(userId).split(":")) { if (!TextUtils.isEmpty(verifyValue)) { assertTrue("service type " + service.mApprovalLevel + ":" - + verifyValue + " is not allowed for user " + userId, + + verifyValue + " is not allowed for user " + userId, service.isPackageOrComponentAllowed(verifyValue, userId)); } } } } - private boolean isPackage(String packageOrComponent) { - final ComponentName component = ComponentName.unflattenFromString(packageOrComponent); - if (component != null) { - return false; - } - return true; - } - private void writeExpectedValuesToSettings(int approvalLevel) { for (int userId : mExpectedPrimary.get(approvalLevel).keySet()) { Settings.Secure.putStringForUser(getContext().getContentResolver(), SETTING, diff --git a/services/tests/servicestests/src/com/android/server/wallpaper/WallpaperServiceTests.java b/services/tests/servicestests/src/com/android/server/wallpaper/WallpaperServiceTests.java index 0d29e8963728..9c010a07135d 100644 --- a/services/tests/servicestests/src/com/android/server/wallpaper/WallpaperServiceTests.java +++ b/services/tests/servicestests/src/com/android/server/wallpaper/WallpaperServiceTests.java @@ -17,10 +17,14 @@ package com.android.server.wallpaper; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; import android.app.WallpaperColors; +import android.os.Handler; +import android.os.Message; import android.os.SystemClock; import android.service.wallpaper.WallpaperService; +import android.support.test.annotation.UiThreadTest; import android.support.test.filters.SmallTest; import android.support.test.runner.AndroidJUnit4; @@ -28,18 +32,31 @@ import org.junit.Test; import org.junit.runner.RunWith; import java.util.concurrent.CountDownLatch; +import java.util.function.Supplier; @SmallTest @RunWith(AndroidJUnit4.class) public class WallpaperServiceTests { + @UiThreadTest @Test public void testNotifyColorsChanged_rateLimit() throws Exception { + long[] clockOffset = {0}; + boolean[] postDelayed = {false}; + Supplier<Long> clockFunction = () -> SystemClock.elapsedRealtime() + clockOffset[0]; + Handler handler = new Handler() { + @Override + public boolean sendMessageAtTime(Message msg, long uptimeMillis) { + postDelayed[0] = true; + return super.sendMessageAtTime(msg, uptimeMillis); + } + }; + CountDownLatch eventCountdown = new CountDownLatch(2); WallpaperService service = new WallpaperService() { @Override public Engine onCreateEngine() { - return new WallpaperService.Engine() { + return new WallpaperService.Engine(clockFunction, handler) { @Override public WallpaperColors onComputeColors() { eventCountdown.countDown(); @@ -59,8 +76,11 @@ public class WallpaperServiceTests { engine.notifyColorsChanged(); assertEquals("OnComputeColors should have been throttled.", 1, eventCountdown.getCount()); - // Called after being deferred. - engine.setClockFunction(() -> SystemClock.elapsedRealtime() + 1500); + // Should have been posted to the handler. + assertTrue("Event should have been delayed", postDelayed[0]); + + // Called again after being deferred. + clockOffset[0] = 1500; engine.notifyColorsChanged(); assertEquals("OnComputeColors should have been deferred.", 0, eventCountdown.getCount()); diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index 23db6ace2f73..3a34d8ffe7e1 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -1363,6 +1363,16 @@ public class CarrierConfigManager { "network_notification_delay_int"; /** + * Time delay (in ms) after which we show the notification for emergency calls, + * while the device is registered over WFC. Default value is -1, which indicates + * that this notification is not pertinent for a particular carrier. We've added a delay + * to prevent false positives. + * @hide + */ + public static final String KEY_EMERGENCY_NOTIFICATION_DELAY_INT = + "emergency_notification_delay_int"; + + /** * When {@code true}, the carrier allows the user of the * {@link TelephonyManager#sendUssdRequest(String, TelephonyManager.UssdResponseCallback, * Handler)} API to perform USSD requests. {@code True} by default. @@ -1788,6 +1798,7 @@ public class CarrierConfigManager { sDefaults.putBoolean(KEY_PERSIST_LPP_MODE_BOOL, false); sDefaults.putStringArray(KEY_CARRIER_WIFI_STRING_ARRAY, null); sDefaults.putInt(KEY_PREF_NETWORK_NOTIFICATION_DELAY_INT, -1); + sDefaults.putInt(KEY_EMERGENCY_NOTIFICATION_DELAY_INT, -1); sDefaults.putBoolean(KEY_ALLOW_USSD_REQUESTS_VIA_TELEPHONY_MANAGER_BOOL, true); sDefaults.putBoolean(KEY_SUPPORT_3GPP_CALL_FORWARDING_WHILE_ROAMING_BOOL, true); sDefaults.putBoolean(KEY_NOTIFY_INTERNATIONAL_CALL_ON_WFC_BOOL, false); |