diff --git a/cmds/am/src/com/android/commands/am/Am.java b/cmds/am/src/com/android/commands/am/Am.java
index d6c00589e7c2a..c460b048a3b7b 100644
--- a/cmds/am/src/com/android/commands/am/Am.java
+++ b/cmds/am/src/com/android/commands/am/Am.java
@@ -48,7 +48,9 @@ import android.content.pm.InstrumentationInfo;
import android.content.pm.ParceledListSlice;
import android.content.pm.ResolveInfo;
import android.content.pm.UserInfo;
+import android.content.res.AssetManager;
import android.content.res.Configuration;
+import android.content.res.Resources;
import android.graphics.Rect;
import android.os.Binder;
import android.os.Build;
@@ -64,6 +66,7 @@ import android.os.UserHandle;
import android.text.TextUtils;
import android.util.AndroidException;
import android.util.ArrayMap;
+import android.util.DisplayMetrics;
import android.view.IWindowManager;
import com.android.internal.os.BaseCommand;
@@ -361,6 +364,8 @@ public class Am extends BaseCommand {
"am send-trim-memory: send a memory trim event to a .\n" +
"\n" +
"am get-current-user: returns id of the current foreground user.\n" +
+ "\n" +
+ "am supports-multiwindow: returns true if the device supports multiwindow.\n" +
"\n"
);
Intent.printIntentArgsHelp(pw, "");
@@ -458,6 +463,8 @@ public class Am extends BaseCommand {
runSendTrimMemory();
} else if (op.equals("get-current-user")) {
runGetCurrentUser();
+ } else if (op.equals("supports-multiwindow")) {
+ runSupportsMultiwindow();
} else {
showError("Error: unknown command '" + op + "'");
}
@@ -2534,6 +2541,21 @@ public class Am extends BaseCommand {
System.out.println(currentUser.id);
}
+ private void runSupportsMultiwindow() throws Exception {
+ // system resources does not contain all the device configuration, construct it manually.
+ Configuration config = mAm.getConfiguration();
+ if (config == null) {
+ throw new AndroidException("Activity manager has no configuration");
+ }
+
+ final DisplayMetrics metrics = new DisplayMetrics();
+ metrics.setToDefaults();
+
+ Resources res = new Resources(AssetManager.getSystem(), metrics, config);
+
+ System.out.println(res.getBoolean(com.android.internal.R.bool.config_supportsMultiWindow));
+ }
+
/**
* Open the given file for sending into the system process. This verifies
* with SELinux that the system will have access to the file.
diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp
index c9211939ec6c1..5fe8ba06f5369 100644
--- a/cmds/bootanimation/BootAnimation.cpp
+++ b/cmds/bootanimation/BootAnimation.cpp
@@ -74,6 +74,7 @@ static const char LAST_TIME_CHANGED_FILE_NAME[] = "last_time_change";
static const char LAST_TIME_CHANGED_FILE_PATH[] = "/data/system/time/last_time_change";
static const char ACCURATE_TIME_FLAG_FILE_NAME[] = "time_is_accurate";
static const char ACCURATE_TIME_FLAG_FILE_PATH[] = "/data/system/time/time_is_accurate";
+static const char TIME_FORMAT_12_HOUR_FLAG_FILE_PATH[] = "/data/system/time/time_format_12_hour";
// Java timestamp format. Don't show the clock if the date is before 2000-01-01 00:00:00.
static const long long ACCURATE_TIME_EPOCH = 946684800000;
static constexpr char FONT_BEGIN_CHAR = ' ';
@@ -99,7 +100,7 @@ static const std::vector PLAY_SOUND_BOOTREASON_BLACKLIST {
// ---------------------------------------------------------------------------
BootAnimation::BootAnimation() : Thread(false), mClockEnabled(true), mTimeIsAccurate(false),
- mTimeCheckThread(NULL) {
+ mTimeFormat12Hour(false), mTimeCheckThread(NULL) {
mSession = new SurfaceComposerClient();
// If the system has already booted, the animation is not being used for a boot.
@@ -590,9 +591,10 @@ void BootAnimation::drawText(const char* str, const Font& font, bool bold, int*
glBindTexture(GL_TEXTURE_2D, 0);
}
-// We render 24 hour time.
+// We render 12 or 24 hour time.
void BootAnimation::drawClock(const Font& font, const int xPos, const int yPos) {
- static constexpr char TIME_FORMAT[] = "%H:%M";
+ static constexpr char TIME_FORMAT_12[] = "%l:%M";
+ static constexpr char TIME_FORMAT_24[] = "%H:%M";
static constexpr int TIME_LENGTH = 6;
time_t rawtime;
@@ -600,7 +602,8 @@ void BootAnimation::drawClock(const Font& font, const int xPos, const int yPos)
struct tm* timeInfo = localtime(&rawtime);
char timeBuff[TIME_LENGTH];
- size_t length = strftime(timeBuff, TIME_LENGTH, TIME_FORMAT, timeInfo);
+ const char* timeFormat = mTimeFormat12Hour ? TIME_FORMAT_12 : TIME_FORMAT_24;
+ size_t length = strftime(timeBuff, TIME_LENGTH, timeFormat, timeInfo);
if (length != TIME_LENGTH - 1) {
ALOGE("Couldn't format time; abandoning boot animation clock");
@@ -1062,6 +1065,11 @@ bool BootAnimation::updateIsTimeAccurate() {
}
struct stat statResult;
+
+ if(stat(TIME_FORMAT_12_HOUR_FLAG_FILE_PATH, &statResult) == 0) {
+ mTimeFormat12Hour = true;
+ }
+
if(stat(ACCURATE_TIME_FLAG_FILE_PATH, &statResult) == 0) {
mTimeIsAccurate = true;
return true;
diff --git a/cmds/bootanimation/BootAnimation.h b/cmds/bootanimation/BootAnimation.h
index 42759f1acf0dc..7a2e4c28f7676 100644
--- a/cmds/bootanimation/BootAnimation.h
+++ b/cmds/bootanimation/BootAnimation.h
@@ -152,6 +152,7 @@ private:
sp mFlingerSurface;
bool mClockEnabled;
bool mTimeIsAccurate;
+ bool mTimeFormat12Hour;
bool mSystemBoot;
String8 mZipFileName;
SortedVector mLoadedFiles;
diff --git a/cmds/pm/src/com/android/commands/pm/Pm.java b/cmds/pm/src/com/android/commands/pm/Pm.java
index 5f83d191a7315..1b4eda804312a 100644
--- a/cmds/pm/src/com/android/commands/pm/Pm.java
+++ b/cmds/pm/src/com/android/commands/pm/Pm.java
@@ -367,18 +367,24 @@ public final class Pm {
private int runInstall() throws RemoteException {
final InstallParams params = makeInstallParams();
final String inPath = nextArg();
+ boolean installExternal =
+ (params.sessionParams.installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
if (params.sessionParams.sizeBytes < 0 && inPath != null) {
File file = new File(inPath);
if (file.isFile()) {
- try {
- ApkLite baseApk = PackageParser.parseApkLite(file, 0);
- PackageLite pkgLite = new PackageLite(null, baseApk, null, null, null);
- params.sessionParams.setSize(
- PackageHelper.calculateInstalledSize(pkgLite, false,
- params.sessionParams.abiOverride));
- } catch (PackageParserException | IOException e) {
- System.err.println("Error: Failed to parse APK file : " + e);
- return 1;
+ if (installExternal) {
+ try {
+ ApkLite baseApk = PackageParser.parseApkLite(file, 0);
+ PackageLite pkgLite = new PackageLite(null, baseApk, null, null, null);
+ params.sessionParams.setSize(
+ PackageHelper.calculateInstalledSize(pkgLite, false,
+ params.sessionParams.abiOverride));
+ } catch (PackageParserException | IOException e) {
+ System.err.println("Error: Failed to parse APK file : " + e);
+ return 1;
+ }
+ } else {
+ params.sessionParams.setSize(file.length());
}
}
}
diff --git a/core/java/android/accessibilityservice/AccessibilityService.java b/core/java/android/accessibilityservice/AccessibilityService.java
index 163e7d2661b91..b311c218de30f 100644
--- a/core/java/android/accessibilityservice/AccessibilityService.java
+++ b/core/java/android/accessibilityservice/AccessibilityService.java
@@ -334,7 +334,8 @@ public abstract class AccessibilityService extends Service {
public static final int GLOBAL_ACTION_HOME = 2;
/**
- * Action to toggle showing the overview of recent apps
+ * Action to toggle showing the overview of recent apps. Will fail on platforms that don't
+ * show recent apps.
*/
public static final int GLOBAL_ACTION_RECENTS = 3;
diff --git a/core/java/android/app/KeyguardManager.java b/core/java/android/app/KeyguardManager.java
index 391065787683d..b794f9cdbc79f 100644
--- a/core/java/android/app/KeyguardManager.java
+++ b/core/java/android/app/KeyguardManager.java
@@ -21,6 +21,7 @@ import android.annotation.RequiresPermission;
import android.app.trust.ITrustManager;
import android.content.Context;
import android.content.Intent;
+import android.content.pm.PackageManager;
import android.content.pm.UserInfo;
import android.os.Binder;
import android.os.RemoteException;
@@ -44,6 +45,7 @@ public class KeyguardManager {
private IWindowManager mWM;
private ITrustManager mTrustManager;
private IUserManager mUserManager;
+ private Context mContext;
/**
* Intent used to prompt user for device credentials.
@@ -86,8 +88,12 @@ public class KeyguardManager {
Intent intent = new Intent(ACTION_CONFIRM_DEVICE_CREDENTIAL);
intent.putExtra(EXTRA_TITLE, title);
intent.putExtra(EXTRA_DESCRIPTION, description);
- // For security reasons, only allow this to come from system settings.
- intent.setPackage("com.android.settings");
+ if (mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_WATCH)) {
+ intent.setPackage("com.google.android.apps.wearable.settings");
+ } else {
+ // For security reasons, only allow this to come from system settings.
+ intent.setPackage("com.android.settings");
+ }
return intent;
}
@@ -108,8 +114,12 @@ public class KeyguardManager {
intent.putExtra(EXTRA_TITLE, title);
intent.putExtra(EXTRA_DESCRIPTION, description);
intent.putExtra(Intent.EXTRA_USER_ID, userId);
- // For security reasons, only allow this to come from system settings.
- intent.setPackage("com.android.settings");
+ if (mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_WATCH)) {
+ intent.setPackage("com.google.android.apps.wearable.settings");
+ } else {
+ // For security reasons, only allow this to come from system settings.
+ intent.setPackage("com.android.settings");
+ }
return intent;
}
@@ -191,7 +201,8 @@ public class KeyguardManager {
}
- KeyguardManager() {
+ KeyguardManager(Context context) {
+ mContext = context;
mWM = WindowManagerGlobal.getWindowManagerService();
mTrustManager = ITrustManager.Stub.asInterface(
ServiceManager.getService(Context.TRUST_SERVICE));
diff --git a/core/java/android/app/SystemServiceRegistry.java b/core/java/android/app/SystemServiceRegistry.java
index 4c5fb134898c2..93f88cce03636 100644
--- a/core/java/android/app/SystemServiceRegistry.java
+++ b/core/java/android/app/SystemServiceRegistry.java
@@ -320,10 +320,10 @@ final class SystemServiceRegistry {
}});
registerService(Context.KEYGUARD_SERVICE, KeyguardManager.class,
- new StaticServiceFetcher() {
+ new CachedServiceFetcher() {
@Override
- public KeyguardManager createService() {
- return new KeyguardManager();
+ public KeyguardManager createService(ContextImpl ctx) {
+ return new KeyguardManager(ctx);
}});
registerService(Context.LAYOUT_INFLATER_SERVICE, LayoutInflater.class,
diff --git a/core/java/android/content/pm/ShortcutManager.java b/core/java/android/content/pm/ShortcutManager.java
index a93870ece823a..f7c4d592b3a92 100644
--- a/core/java/android/content/pm/ShortcutManager.java
+++ b/core/java/android/content/pm/ShortcutManager.java
@@ -193,7 +193,11 @@ import java.util.List;
* The following list includes descriptions for the different attributes within a static shortcut:
*
* - {@code android:shortcutId}
- * - Mandatory shortcut ID
+ * - Mandatory shortcut ID.
+ *
+ * This must be a string literal.
+ * A resource string, such as @string/foo, cannot be used.
+ *
*
* - {@code android:enabled}
* - Default is {@code true}. Can be set to {@code false} in order
@@ -206,15 +210,24 @@ import java.util.List;
*
*
- {@code android:shortcutShortLabel}
* - Mandatory shortcut short label.
- * See {@link ShortcutInfo.Builder#setShortLabel(CharSequence)}.
+ * See {@link ShortcutInfo.Builder#setShortLabel(CharSequence)}.
+ *
+ * This must be a resource string, such as @string/shortcut_label.
+ *
*
*
- {@code android:shortcutLongLabel}
* - Shortcut long label.
- * See {@link ShortcutInfo.Builder#setLongLabel(CharSequence)}.
+ * See {@link ShortcutInfo.Builder#setLongLabel(CharSequence)}.
+ *
+ * This must be a resource string, such as @string/shortcut_long_label.
+ *
*
*
- {@code android:shortcutDisabledMessage}
* - When {@code android:enabled} is set to
- * {@code false}, this attribute is used to display a custom disabled message.
+ * {@code false}, this attribute is used to display a custom disabled message.
+ *
+ * This must be a resource string, such as @string/shortcut_disabled_message.
+ *
*
*
- {@code intent}
* - Intent to launch when the user selects the shortcut.
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java
index 81d0cf29ba9ed..bd46651dde114 100755
--- a/core/java/android/provider/Settings.java
+++ b/core/java/android/provider/Settings.java
@@ -5163,6 +5163,16 @@ public final class Settings {
public static final String ACCESSIBILITY_SOFT_KEYBOARD_MODE =
"accessibility_soft_keyboard_mode";
+ /**
+ * Should we disable all animations when accessibility is turned on. On low-power devices
+ * like Android Wear, the performance makes the device unusable. Turning off animations
+ * is a partial fix.
+ *
+ * @hide
+ */
+ public static final String ACCESSIBILITY_DISABLE_ANIMATIONS =
+ "accessibility_disable_animations";
+
/**
* Default soft keyboard behavior.
*
@@ -6441,6 +6451,7 @@ public final class Settings {
ACCESSIBILITY_CAPTIONING_TYPEFACE,
ACCESSIBILITY_CAPTIONING_FONT_SCALE,
ACCESSIBILITY_CAPTIONING_WINDOW_COLOR,
+ ACCESSIBILITY_DISABLE_ANIMATIONS,
TTS_USE_DEFAULTS,
TTS_DEFAULT_RATE,
TTS_DEFAULT_PITCH,
diff --git a/core/java/android/view/RoundScrollbarRenderer.java b/core/java/android/view/RoundScrollbarRenderer.java
index b77be8c00e697..694232f9dfd5c 100644
--- a/core/java/android/view/RoundScrollbarRenderer.java
+++ b/core/java/android/view/RoundScrollbarRenderer.java
@@ -31,8 +31,8 @@ class RoundScrollbarRenderer {
private static final int MAX_SCROLLBAR_ANGLE_SWIPE = 16;
private static final int MIN_SCROLLBAR_ANGLE_SWIPE = 6;
private static final float WIDTH_PERCENTAGE = 0.02f;
- private static final int DEFAULT_THUMB_COLOR = 0xFF757575;
- private static final int DEFAULT_TRACK_COLOR = 0x21FFFFFF;
+ private static final int DEFAULT_THUMB_COLOR = 0x4CFFFFFF;
+ private static final int DEFAULT_TRACK_COLOR = 0x26FFFFFF;
private final Paint mThumbPaint = new Paint();
private final Paint mTrackPaint = new Paint();
diff --git a/core/java/android/view/inputmethod/InputConnection.java b/core/java/android/view/inputmethod/InputConnection.java
index 8023201bc2840..71c1d624976b8 100644
--- a/core/java/android/view/inputmethod/InputConnection.java
+++ b/core/java/android/view/inputmethod/InputConnection.java
@@ -860,32 +860,35 @@ public interface InputConnection {
android.content.Intent.FLAG_GRANT_READ_URI_PERMISSION; // 0x00000001
/**
- * Called by the input method to commit a content such as PNG image to the editor.
+ * Called by the input method to commit content such as a PNG image to the editor.
*
- *
In order to avoid variety of compatibility issues, this focuses on a simple use case,
- * where we expect editors and IMEs work cooperatively as follows:
+ * In order to avoid a variety of compatibility issues, this focuses on a simple use case,
+ * where editors and IMEs are expected to work cooperatively as follows:
*
- * - Editor must keep {@link EditorInfo#contentMimeTypes} to be {@code null} if it does
+ *
- Editor must keep {@link EditorInfo#contentMimeTypes} equal to {@code null} if it does
* not support this method at all.
* - Editor can ignore this request when the MIME type specified in
- * {@code inputContentInfo} does not match to any of {@link EditorInfo#contentMimeTypes}.
+ * {@code inputContentInfo} does not match any of {@link EditorInfo#contentMimeTypes}.
*
- * - Editor can ignore the cursor position when inserting the provided context.
+ * - Editor can ignore the cursor position when inserting the provided content.
* - Editor can return {@code true} asynchronously, even before it starts loading the
* content.
- * - Editor should provide a way to delete the content inserted by this method, or revert
- * the effect caused by this method.
+ * - Editor should provide a way to delete the content inserted by this method or to
+ * revert the effect caused by this method.
* - IME should not call this method when there is any composing text, in case calling
- * this method causes focus change.
+ * this method causes a focus change.
* - IME should grant a permission for the editor to read the content. See
* {@link EditorInfo#packageName} about how to obtain the package name of the editor.
*
*
* @param inputContentInfo Content to be inserted.
- * @param flags {@code 0} or {@link #INPUT_CONTENT_GRANT_READ_URI_PERMISSION}.
+ * @param flags {@link #INPUT_CONTENT_GRANT_READ_URI_PERMISSION} if the content provider
+ * allows {@link android.R.styleable#AndroidManifestProvider_grantUriPermissions
+ * grantUriPermissions} or {@code 0} if the application does not need to call
+ * {@link InputContentInfo#requestPermission()}.
* @param opts optional bundle data. This can be {@code null}.
- * @return {@code true} if this request is accepted by the application, no matter if the request
- * is already handled or still being handled in background.
+ * @return {@code true} if this request is accepted by the application, whether the request
+ * is already handled or still being handled in background, {@code false} otherwise.
*/
public boolean commitContent(@NonNull InputContentInfo inputContentInfo, int flags,
@Nullable Bundle opts);
diff --git a/core/java/android/widget/ArrayAdapter.java b/core/java/android/widget/ArrayAdapter.java
index 9d228cf667b16..bbc50dafa5764 100644
--- a/core/java/android/widget/ArrayAdapter.java
+++ b/core/java/android/widget/ArrayAdapter.java
@@ -312,10 +312,10 @@ public class ArrayAdapter extends BaseAdapter implements Filterable, ThemedSp
}
/**
- * Control whether methods that change the list ({@link #add},
- * {@link #insert}, {@link #remove}, {@link #clear}) automatically call
- * {@link #notifyDataSetChanged}. If set to false, caller must
- * manually call notifyDataSetChanged() to have the changes
+ * Control whether methods that change the list ({@link #add}, {@link #addAll(Collection)},
+ * {@link #addAll(Object[])}, {@link #insert}, {@link #remove}, {@link #clear},
+ * {@link #sort(Comparator)}) automatically call {@link #notifyDataSetChanged}. If set to
+ * false, caller must manually call notifyDataSetChanged() to have the changes
* reflected in the attached view.
*
* The default is true, and calling notifyDataSetChanged()
diff --git a/core/java/com/android/internal/policy/EmergencyAffordanceManager.java b/core/java/com/android/internal/policy/EmergencyAffordanceManager.java
index bed7c1ba4ed3e..eb75bd4974342 100644
--- a/core/java/com/android/internal/policy/EmergencyAffordanceManager.java
+++ b/core/java/com/android/internal/policy/EmergencyAffordanceManager.java
@@ -20,6 +20,7 @@ import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
+import android.os.UserHandle;
import android.provider.Settings;
/**
@@ -72,7 +73,7 @@ public class EmergencyAffordanceManager {
Intent intent = new Intent(Intent.ACTION_CALL_EMERGENCY);
intent.setData(getPhoneUri(context));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- context.startActivity(intent);
+ context.startActivityAsUser(intent, UserHandle.CURRENT);
}
/**
diff --git a/core/jni/com_android_internal_os_Zygote.cpp b/core/jni/com_android_internal_os_Zygote.cpp
index d0815490159b8..894e1047e1aeb 100644
--- a/core/jni/com_android_internal_os_Zygote.cpp
+++ b/core/jni/com_android_internal_os_Zygote.cpp
@@ -456,6 +456,20 @@ static pid_t ForkAndSpecializeCommon(JNIEnv* env, uid_t uid, gid_t gid, jintArra
SetForkLoad(true);
#endif
+ sigset_t sigchld;
+ sigemptyset(&sigchld);
+ sigaddset(&sigchld, SIGCHLD);
+
+ // Temporarily block SIGCHLD during forks. The SIGCHLD handler might
+ // log, which would result in the logging FDs we close being reopened.
+ // This would cause failures because the FDs are not whitelisted.
+ //
+ // Note that the zygote process is single threaded at this point.
+ if (sigprocmask(SIG_BLOCK, &sigchld, nullptr) == -1) {
+ ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
+ RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_BLOCK, { SIGCHLD }) failed.");
+ }
+
// Close any logging related FDs before we start evaluating the list of
// file descriptors.
__android_log_close();
@@ -487,6 +501,11 @@ static pid_t ForkAndSpecializeCommon(JNIEnv* env, uid_t uid, gid_t gid, jintArra
RuntimeAbort(env, __LINE__, "Unable to reopen whitelisted descriptors.");
}
+ if (sigprocmask(SIG_UNBLOCK, &sigchld, nullptr) == -1) {
+ ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
+ RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_UNBLOCK, { SIGCHLD }) failed.");
+ }
+
// Keep capabilities across UID change, unless we're staying root.
if (uid != 0) {
EnableKeepCapabilities(env);
@@ -620,6 +639,11 @@ static pid_t ForkAndSpecializeCommon(JNIEnv* env, uid_t uid, gid_t gid, jintArra
SetForkLoad(false);
#endif
+ // We blocked SIGCHLD prior to a fork, we unblock it here.
+ if (sigprocmask(SIG_UNBLOCK, &sigchld, nullptr) == -1) {
+ ALOGE("sigprocmask(SIG_SETMASK, { SIGCHLD }) failed: %s", strerror(errno));
+ RuntimeAbort(env, __LINE__, "Call to sigprocmask(SIG_UNBLOCK, { SIGCHLD }) failed.");
+ }
}
return pid;
}
diff --git a/core/jni/fd_utils-inl.h b/core/jni/fd_utils-inl.h
index af27069119492..e1ed5416e0127 100644
--- a/core/jni/fd_utils-inl.h
+++ b/core/jni/fd_utils-inl.h
@@ -240,6 +240,18 @@ class FileDescriptorInfo {
is_sock(false) {
}
+ static bool StartsWith(const std::string& str, const std::string& prefix) {
+ return str.compare(0, prefix.size(), prefix) == 0;
+ }
+
+ static bool EndsWith(const std::string& str, const std::string& suffix) {
+ if (suffix.size() > str.size()) {
+ return false;
+ }
+
+ return str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0;
+ }
+
// Returns true iff. a given path is whitelisted. A path is whitelisted
// if it belongs to the whitelist (see kPathWhitelist) or if it's a path
// under /system/framework that ends with ".jar" or if it is a system
@@ -251,31 +263,40 @@ class FileDescriptorInfo {
}
}
- static const char* kFrameworksPrefix = "/system/framework/";
- static const char* kJarSuffix = ".jar";
- if (android::base::StartsWith(path, kFrameworksPrefix)
- && android::base::EndsWith(path, kJarSuffix)) {
+ static const std::string kFrameworksPrefix = "/system/framework/";
+ static const std::string kJarSuffix = ".jar";
+ if (StartsWith(path, kFrameworksPrefix) && EndsWith(path, kJarSuffix)) {
return true;
}
// Whitelist files needed for Runtime Resource Overlay, like these:
// /system/vendor/overlay/framework-res.apk
- // /system/vendor/overlay/PG/android-framework-runtime-resource-overlay.apk
+ // /system/vendor/overlay-subdir/pg/framework-res.apk
// /data/resource-cache/system@vendor@overlay@framework-res.apk@idmap
- // /data/resource-cache/system@vendor@overlay@PG@framework-res.apk@idmap
- static const char* kOverlayDir = "/system/vendor/overlay/";
- static const char* kApkSuffix = ".apk";
+ // /data/resource-cache/system@vendor@overlay-subdir@pg@framework-res.apk@idmap
+ // See AssetManager.cpp for more details on overlay-subdir.
+ static const std::string kOverlayDir = "/system/vendor/overlay/";
+ static const std::string kVendorOverlayDir = "/vendor/overlay";
+ static const std::string kOverlaySubdir = "/system/vendor/overlay-subdir/";
+ static const std::string kApkSuffix = ".apk";
- if (android::base::StartsWith(path, kOverlayDir)
- && android::base::EndsWith(path, kApkSuffix)
+ if ((StartsWith(path, kOverlayDir) || StartsWith(path, kOverlaySubdir)
+ || StartsWith(path, kVendorOverlayDir))
+ && EndsWith(path, kApkSuffix)
&& path.find("/../") == std::string::npos) {
return true;
}
- static const char* kOverlayIdmapPrefix = "/data/resource-cache/";
- static const char* kOverlayIdmapSuffix = ".apk@idmap";
- if (android::base::StartsWith(path, kOverlayIdmapPrefix)
- && android::base::EndsWith(path, kOverlayIdmapSuffix)) {
+ static const std::string kOverlayIdmapPrefix = "/data/resource-cache/";
+ static const std::string kOverlayIdmapSuffix = ".apk@idmap";
+ if (StartsWith(path, kOverlayIdmapPrefix) && EndsWith(path, kOverlayIdmapSuffix)
+ && path.find("/../") == std::string::npos) {
+ return true;
+ }
+
+ // All regular files that are placed under this path are whitelisted automatically.
+ static const std::string kZygoteWhitelistPath = "/vendor/zygote_whitelist/";
+ if (StartsWith(path, kZygoteWhitelistPath) && path.find("/../") == std::string::npos) {
return true;
}
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index c823e1c0fecd0..bc8738d1f89f2 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -710,6 +710,7 @@
android:priority="400" />
- -
-
-
- -
-
-
-
+
+
+
\ No newline at end of file
diff --git a/core/res/res/drawable-hdpi/watch_switch_track_mtrl_alpha.png b/core/res/res/drawable-hdpi/watch_switch_track_mtrl.png
similarity index 100%
rename from core/res/res/drawable-hdpi/watch_switch_track_mtrl_alpha.png
rename to core/res/res/drawable-hdpi/watch_switch_track_mtrl.png
diff --git a/core/res/res/drawable-xhdpi/watch_switch_track_mtrl_alpha.png b/core/res/res/drawable-xhdpi/watch_switch_track_mtrl.png
similarity index 100%
rename from core/res/res/drawable-xhdpi/watch_switch_track_mtrl_alpha.png
rename to core/res/res/drawable-xhdpi/watch_switch_track_mtrl.png
diff --git a/core/res/res/drawable-xxhdpi/watch_switch_track_mtrl_alpha.png b/core/res/res/drawable-xxhdpi/watch_switch_track_mtrl.png
similarity index 100%
rename from core/res/res/drawable-xxhdpi/watch_switch_track_mtrl_alpha.png
rename to core/res/res/drawable-xxhdpi/watch_switch_track_mtrl.png
diff --git a/core/res/res/layout-notround-watch/alert_dialog_title_material.xml b/core/res/res/layout-notround-watch/alert_dialog_title_material.xml
index 0ab56f95efbe3..08eecef1da95a 100644
--- a/core/res/res/layout-notround-watch/alert_dialog_title_material.xml
+++ b/core/res/res/layout-notround-watch/alert_dialog_title_material.xml
@@ -18,14 +18,14 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:paddingTop="?attr/dialogPreferredPadding"
+ android:paddingBottom="8dp"
android:orientation="vertical"
- android:gravity="top|center_horizontal"
- android:minHeight="@dimen/alert_dialog_title_height">
+ android:gravity="center_horizontal|top">
diff --git a/core/res/res/layout-round-watch/alert_dialog_title_material.xml b/core/res/res/layout-round-watch/alert_dialog_title_material.xml
index aefe28f7f3594..dac1e324be81d 100644
--- a/core/res/res/layout-round-watch/alert_dialog_title_material.xml
+++ b/core/res/res/layout-round-watch/alert_dialog_title_material.xml
@@ -18,6 +18,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:paddingBottom="8dp"
android:orientation="vertical"
android:gravity="top|center_horizontal">
diff --git a/core/res/res/layout-watch/alert_dialog_material.xml b/core/res/res/layout-watch/alert_dialog_material.xml
index 2fe13de2120af..960b927a0e64f 100644
--- a/core/res/res/layout-watch/alert_dialog_material.xml
+++ b/core/res/res/layout-watch/alert_dialog_material.xml
@@ -50,7 +50,7 @@
diff --git a/core/res/res/layout-watch/preference_list_fragment_material.xml b/core/res/res/layout-watch/preference_list_fragment_material.xml
index ae8f203a7ce61..22e66d5139361 100644
--- a/core/res/res/layout-watch/preference_list_fragment_material.xml
+++ b/core/res/res/layout-watch/preference_list_fragment_material.xml
@@ -44,7 +44,7 @@
android:paddingEnd="@dimen/dialog_padding_material"
android:paddingBottom="8dp"
android:textAppearance="@style/TextAppearance.Material.Title"
- android:gravity="center" />
+ android:gravity="center_horizontal|top" />
diff --git a/core/res/res/layout-watch/preference_widget_switch.xml b/core/res/res/layout-watch/preference_widget_switch.xml
index 5881cf0c4d1ea..a1a845abfe3ab 100644
--- a/core/res/res/layout-watch/preference_widget_switch.xml
+++ b/core/res/res/layout-watch/preference_widget_switch.xml
@@ -24,7 +24,8 @@
android:thumb="@drawable/watch_switch_thumb_material_anim"
android:thumbTint="@color/watch_switch_thumb_color_material"
android:thumbTintMode="multiply"
- android:track="@drawable/watch_switch_track_material"
+ android:track="@drawable/watch_switch_track_mtrl"
+ android:trackTint="@color/watch_switch_track_color_material"
android:focusable="false"
android:clickable="false"
android:background="@null" />
diff --git a/core/res/res/layout-watch/progress_dialog_material.xml b/core/res/res/layout-watch/progress_dialog_material.xml
index 228f72454c0a6..96bda1d0c285b 100644
--- a/core/res/res/layout-watch/progress_dialog_material.xml
+++ b/core/res/res/layout-watch/progress_dialog_material.xml
@@ -32,14 +32,15 @@
+ android:layout_marginEnd="8dp" />
diff --git a/core/res/res/layout/select_dialog_multichoice_material.xml b/core/res/res/layout/select_dialog_multichoice_material.xml
index 36e8e57b29880..731fe16196345 100644
--- a/core/res/res/layout/select_dialog_multichoice_material.xml
+++ b/core/res/res/layout/select_dialog_multichoice_material.xml
@@ -26,5 +26,5 @@
android:paddingStart="@dimen/select_dialog_padding_start_material"
android:paddingEnd="?attr/dialogPreferredPadding"
android:drawableStart="?attr/listChoiceIndicatorMultiple"
- android:drawablePadding="20dp"
+ android:drawablePadding="@dimen/select_dialog_drawable_padding_start_material"
android:ellipsize="marquee" />
diff --git a/core/res/res/layout/select_dialog_singlechoice_material.xml b/core/res/res/layout/select_dialog_singlechoice_material.xml
index 995272ad80efc..77b693058e82d 100644
--- a/core/res/res/layout/select_dialog_singlechoice_material.xml
+++ b/core/res/res/layout/select_dialog_singlechoice_material.xml
@@ -26,5 +26,5 @@
android:paddingStart="@dimen/select_dialog_padding_start_material"
android:paddingEnd="?attr/dialogPreferredPadding"
android:drawableStart="?attr/listChoiceIndicatorSingle"
- android:drawablePadding="20dp"
+ android:drawablePadding="@dimen/select_dialog_drawable_padding_start_material"
android:ellipsize="marquee" />
diff --git a/core/res/res/values-bn-rBD/strings.xml b/core/res/res/values-bn-rBD/strings.xml
index db2df411886fc..63746c4d5fda7 100644
--- a/core/res/res/values-bn-rBD/strings.xml
+++ b/core/res/res/values-bn-rBD/strings.xml
@@ -1333,7 +1333,7 @@
" — "
"সরান"
"প্রস্তাবিত স্তরের চেয়ে বেশি উঁচুতে ভলিউম বাড়াবেন?\n\nউঁচু ভলিউমে বেশি সময় ধরে কিছু শুনলে আপনার শ্রবনশক্তির ক্ষতি হতে পারে।"
- "অ্যাক্সেসযোগ্যতা সক্রিয় করতে দুইটি আঙ্গুলকে চেপে নীচে ধরে রাখুন৷"
+ "অ্যাক্সেসযোগ্যতা সক্রিয় করতে দুইটি আঙ্গুলকে চেপে নিচে ধরে রাখুন৷"
"অ্যাক্সেসযোগ্যতা সক্ষম করা হয়েছে৷"
"অ্যাক্সেসযোগ্যতা বাতিল করা হয়েছে৷"
"বর্তমান ব্যবহারকারী %1$s৷"
diff --git a/core/res/res/values-ca/strings.xml b/core/res/res/values-ca/strings.xml
index 0f971b24a9dd8..4c03d184e54b6 100644
--- a/core/res/res/values-ca/strings.xml
+++ b/core/res/res/values-ca/strings.xml
@@ -67,8 +67,8 @@
"IMEI"
"MEID"
- "ID de l\'emissor (trucada entrant)"
- "ID de l\'emissor (trucada de sortida)"
+ "Identificador de trucada (trucada entrant)"
+ "Identificador de trucada (trucada de sortida)"
"Identificador de la línia connectada"
"Restricció de l\'identificador de la línia connectada"
"Desviació de trucades"
@@ -82,13 +82,12 @@
"Rebuig de trucades molestes no desitjades"
"Lliurament de número que truca"
"No molesteu"
- "El valor predeterminat de l\'identificador de l\'emissor és restringit. Següent trucada: restringit"
- "El valor predeterminat de l\'identificador de l\'emissor és restringit. Següent trucada: no restringit"
- "El valor predeterminat de l\'identificador de l\'emissor és no restringit. Següent trucada: restringit"
- "El valor predeterminat de l\'identificador de l\'emissor és no restringit. Següent trucada: no restringit"
+ "El valor predeterminat de l\'identificador de trucada és restringit. Trucada següent: restringit"
+ "El valor predeterminat de l\'identificador de trucada és restringit. Trucada següent: no restringit"
+ "El valor predeterminat de l\'identificador de trucada és no restringit. Trucada següent: restringit"
+ "El valor predeterminat de l\'identificador de trucada és no restringit. Trucada següent: no restringit"
"No s\'ha proveït el servei."
- "No pots canviar la configuració de l\'identificador de l\'emissor."
- "Accés restringit canviat"
+ "No pots canviar la configuració de l\'identificador de trucada."
"El servei de dades està bloquejat."
"El servei d\'emergència està bloquejat."
"El servei de veu està bloquejat."
@@ -125,11 +124,15 @@
"S\'està cercant el servei"
"Trucades per Wi-Fi"
+ - "Per fer trucades i enviar missatges per Wi-Fi, primer has de demanar a l\'operador de telefonia mòbil que configuri aquest servei. Després, torna a activar les trucades per Wi-Fi des de Configuració."
+ - "Registra\'t amb el teu operador de telefonia mòbil"
+
+
+ - "%s"
+ - "Trucada de Wi-Fi de: %s"
- "%s"
- "%s"
"Desactivades"
"Preferència per la Wi-Fi"
"Preferència per les dades mòbils"
@@ -165,7 +168,10 @@
"L\'emmagatzematge del rellotge està ple. Suprimeix uns quants fitxers per alliberar espai."
"L\'emmagatzematge del televisor està ple. Suprimeix uns quants fitxers per alliberar espai."
"L\'emmagatzematge del telèfon és ple. Suprimeix uns quants fitxers per alliberar espai."
- "És possible que la xarxa estigui supervisada"
+
+ - Autoritats de certificació instal·lades
+ - Autoritat de certificació instal·lada
+
"Per un tercer desconegut"
"Administrador del perfil professional"
"Per %s"
@@ -208,13 +214,14 @@
"Opcions del telèfon"
"Bloqueig de pantalla"
"Apaga"
+ "Emergències"
"Informe d\'error"
"Crea informe d\'errors"
"Es recopilarà informació sobre l\'estat actual del dispositiu i se t\'enviarà per correu electrònic. Passaran uns quants minuts des de l\'inici de l\'informe d\'errors fins al seu enviament, per la qual cosa et recomanem que tinguis paciència."
"Informe interactiu"
- "Utilitza aquesta opció en la majoria de circumstàncies. Et permet fer un seguiment del progrés de l\'informe i introduir més dades sobre el problema. És possible que ometi seccions poc utilitzades que requereixen molt de temps."
+ "Utilitza aquesta opció en la majoria de circumstàncies. Et permet fer un seguiment del progrés de l\'informe, introduir més dades sobre el problema i fer captures de pantalla. És possible que ometi seccions poc utilitzades que requereixen molt de temps."
"Informe complet"
- "Utilitza aquesta opció perquè la interferència en el sistema sigui mínima si el dispositiu no respon o va massa lent, o bé si necessites totes les seccions de l\'informe. No fa cap captura de pantalla ni et permet introduir més detalls."
+ "Utilitza aquesta opció perquè la interferència en el sistema sigui mínima si el dispositiu no respon o va massa lent, o bé si necessites totes les seccions de l\'informe. No et permet introduir més dades ni fer més captures de pantalla."
- Es farà una captura de pantalla de l\'informe d\'errors d\'aquí a %d segons.
- Es farà una captura de pantalla de l\'informe d\'errors d\'aquí a %d segon.
@@ -230,13 +237,12 @@
"Assist. per veu"
"Bloqueja ara"
"+999"
- "(%d)"
"Contingut amagat"
"Contingut amagat de conformitat amb la política"
"Mode segur"
"Sistema Android"
- "Personal"
- "Feina"
+ "Canvia al perfil personal"
+ "Canvia al perfil professional"
"Contactes"
"accedir als contactes"
"Ubicació"
@@ -258,7 +264,7 @@
"Recuperar el contingut de la finestra"
"Inspecciona el contingut d\'una finestra amb què estàs interaccionant."
"Activar Exploració tàctil"
- "Els elements que toquis es diran en veu alta i podràs explorar la pantalla mitjançant gestos."
+ "Els elements que toquis es diran en veu alta, i podràs explorar la pantalla amb gestos."
"Activar l\'accessibilitat web millorada"
"És possible que s\'instal·lin scripts perquè el contingut de les aplicacions sigui més accessible."
"Observar el text que escrius"
@@ -399,8 +405,8 @@
"Permet que l\'aplicació creï sòcols de xarxa i que utilitzi protocols de xarxa personalitzats. El navegador i altres aplicacions proporcionen mitjans per enviar dades a Internet, de manera que aquest permís no és obligatori per enviar-n\'hi."
"canviar la connectivitat de xarxa"
"Permet que l\'aplicació pugui canviar l\'estat de connectivitat de la xarxa."
- "Canvia la connectivitat d\'ancoratge a xarxa"
- "Permet que l\'aplicació canviï l\'estat de la connectivitat de la xarxa d\'ancoratge."
+ "Canvia la connectivitat de compartició de xarxa"
+ "Permet que l\'aplicació canviï l\'estat de la connectivitat de la xarxa compartida."
"veure connexions Wi-Fi"
"Permet que l\'aplicació visualitzi informació sobre les xarxes Wi-Fi, com ara si la Wi-Fi està activada i el nom dels dispositius Wi-Fi connectats."
"connectar-se a xarxes Wi-Fi i desconnectar-se"
@@ -424,7 +430,7 @@
"Permet que l\'aplicació consulti la configuració de Bluetooth del televisor i estableixi i accepti connexions amb dispositius vinculats ."
"Permet que una aplicació visualitzi la configuració de Bluetooth del telèfon i que estableixi i accepti connexions amb els dispositius sincronitzats."
"controlar Comunicació de camp proper (NFC)"
- "Permet que l\'aplicació es comuniqui amb les etiquetes, les targetes i els lectors de Near Field Communication (NFC)."
+ "Permet que l\'aplicació es comuniqui amb les etiquetes, les targetes i els lectors de Comunicació de camp proper (NFC)."
"desactivació del bloqueig de pantalla"
"Permet que l\'aplicació desactivi el bloqueig del teclat i qualsevol element de seguretat de contrasenyes associat. Per exemple, el telèfon desactiva el bloqueig del teclat en rebre una trucada telefònica entrant i, a continuació, reactiva el bloqueig del teclat quan finalitza la trucada."
"Gestionar el maquinari d\'empremtes digitals"
@@ -592,7 +598,7 @@
"Altres"
"Torna la trucada"
"Cotxe"
- "Principal de l\'empresa"
+ "Telèfon d\'empresa"
"XDSI"
"Principal"
"Altres faxos"
@@ -600,7 +606,7 @@
"Tèlex"
"TTY TDD"
"Mòbil de la feina"
- "Cercapersones de la feina"
+ "Cercapersones feina"
"Assistent"
"MMS"
"Personalitza"
@@ -640,7 +646,7 @@
"Parella"
"Pare"
"Amic"
- "Gerent"
+ "Gestor"
"Mare"
"Pare/mare"
"Partner"
@@ -657,7 +663,7 @@
"Introdueix el codi PUK i el codi PIN nou"
"Codi PUK"
"Codi PIN nou"
- "Toca per introduir contrasenya"
+ "Toca per escriure la contrasenya"
"Introdueix la contrasenya per desbloquejar"
"Introdueix la contrasenya per desbloquejar"
"Codi PIN incorrecte."
@@ -673,6 +679,7 @@
"Correcte!"
"Torna-ho a provar"
"Torna-ho a provar"
+ "Desbl. per accedir a totes les funcions i dades"
"S\'ha superat el nombre màxim d\'intents de desbloqueig facial"
"No hi ha cap targeta SIM."
"No hi ha cap targeta SIM a la tauleta."
@@ -853,6 +860,71 @@
- %d hores
- 1 hora
+ "ara"
+
+ - %d min
+ - %d min
+
+
+ - %d h
+ - %d h
+
+
+ - %d d
+ - %d d
+
+
+ - %d a
+ - %d a
+
+
+ - d\'aquí a %d min
+ - d\'aquí a %d min
+
+
+ - d\'aquí a %d h
+ - d\'aquí a %d h
+
+
+ - d\'aquí a %d d
+ - d\'aquí a %d d
+
+
+ - d\'aquí a %d a
+ - d\'aquí a %d a
+
+
+ - fa %d minuts
+ - fa %d minut
+
+
+ - fa %d hores
+ - fa %d hora
+
+
+ - fa %d dies
+ - fa %d dia
+
+
+ - fa %d anys
+ - fa %d any
+
+
+ - d\'aquí a %d minuts
+ - d\'aquí a %d minut
+
+
+ - d\'aquí a %d hores
+ - d\'aquí a %d hora
+
+
+ - d\'aquí a %d dies
+ - d\'aquí a %d dia
+
+
+ - d\'aquí a %d anys
+ - d\'aquí a %d any
+
"Problema amb el vídeo"
"Aquest vídeo no és vàlid per a la reproducció en aquest dispositiu."
"No es pot reproduir aquest vídeo."
@@ -884,7 +956,7 @@
"És possible que algunes funcions del sistema no funcionin"
"No hi ha prou espai d\'emmagatzematge per al sistema. Comprova que tinguis 250 MB d\'espai lliure i reinicia."
"%1$s s\'està executant"
- "Toca per obtenir més informació o bé per aturar l\'aplicació."
+ "Toca per obtenir més informació o aturar l\'aplicació."
"D\'acord"
"Cancel·la"
"D\'acord"
@@ -895,14 +967,25 @@
"NO"
"Completa l\'acció mitjançant"
"Completa l\'acció amb %1$s"
+ "Completa l\'acció"
"Obre amb"
"Obre amb %1$s"
+ "Obre"
"Edita amb"
"Edita amb %1$s"
+ "Edita"
"Comparteix amb"
"Comparteix amb %1$s"
+ "Comparteix"
+ "Envia mitjançant"
+ "Envia mitjançant %1$s"
+ "Envia"
"Seleccionar una aplicació Inici"
"Utilitzar %1$s com a Inici"
+ "Captura la imatge"
+ "Captura la imatge amb"
+ "Captura la imatge amb %1$s"
+ "Captura la imatge"
"Utilitza-ho de manera predeterminada per a aquesta acció."
"Fes servir una altra aplicació"
"Esborra els paràmetres predeterminats a Configuració del sistema > Aplicacions > Baixades."
@@ -913,11 +996,10 @@
"%1$s s\'ha aturat"
"L\'aplicació %1$s s\'atura contínuament"
"El procés %1$s s\'atura contínuament"
- "Reinicia l\'aplicació"
- "Restableix i reinicia l\'aplicació"
+ "Torna a obrir l\'aplicació"
"Envia suggeriments"
"Tanca"
- "Silencia"
+ "Silencia fins que es reiniciï el dispositiu"
"Espera"
"Tanca l\'aplicació"
@@ -935,17 +1017,22 @@
"Escala"
"Mostra sempre"
"Torna a activar-ho a Configuració del sistema > Aplicacions > Baixades."
+ "%1$s no admet la mida de pantalla actual i és possible que funcioni de manera inesperada."
+ "Mostra sempre"
"L\'aplicació %1$s(procés %2$s) ha incomplert la seva política autoimposada de mode estricte."
"El procés %1$s ha incomplert la seva política de mode estricte."
"Android s\'està actualitzant..."
"S\'està iniciant Android…"
"S\'està optimitzant l\'emmagatzematge."
+ "S\'està acabant d\'actualitzar Android…"
+ "Pot ser que algunes aplicacions no funcionin correctament fins que no es completi l\'actualització"
+ "S\'està actualitzant %1$s…"
"S\'està optimitzant l\'aplicació %1$d de %2$d."
"S\'està preparant %1$s."
"S\'estan iniciant les aplicacions."
"S\'està finalitzant l\'actualització."
"%1$s s\'està executant"
- "Toca per canviar a l\'aplicació"
+ "Toca per anar a l\'aplicació"
"Vols canviar aplicacions?"
"Ja s\'està executant una altra aplicació que s\'ha d\'aturar abans de poder iniciar-ne una de nova."
"Torna a %1$s"
@@ -953,7 +1040,7 @@
"Inicia %1$s"
"Atura l\'aplicació antiga sense desar."
"%1$s ha superat el límit de memòria"
- "S\'ha recopilat un procés \"heap dump\"; toca per compartir"
+ "S\'ha recopilat un procés \"heap dump\"; toca per compartir-lo"
"Vols compartir el \"heap dump\"?"
"El procés %1$s ha superat el límit de %2$s de memòria del procés. Hi ha un procés \"heap dump\" disponible perquè el comparteixis amb el desenvolupador. Vés amb compte: aquest \"heap dump\" pot contenir les dades personals a les quals l\'aplicació tingui accés."
"Tria una acció per al text"
@@ -989,17 +1076,28 @@
"La Wi-Fi no té accés a Internet"
- "Toca per veure les opcions"
+ "Toca per veure les opcions"
+ "Actualment en ús: %1$s"
+ "El dispositiu utilitza %1$s en cas que %2$s no tingui accés a Internet. És possible que s\'apliquin càrrecs."
+ "Abans es feia servir la xarxa %1$s; ara s\'utilitza %2$s"
+
+ - "dades mòbils"
+ - "Wi-Fi"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "una tipus de xarxa desconegut"
"No s\'ha pogut connectar a la Wi-Fi"
" té una mala connexió a Internet."
"Vols permetre la connexió?"
"L\'aplicació %1$s vol connectar-se a la xarxa Wi-Fi %2$s"
"Una aplicació"
"Wi-Fi Direct"
- "Inicia Wi-Fi Direct. Això desactivarà el client/la zona Wi-Fi."
+ "Inicia Wi-Fi Direct. Això desactivarà el client/el punt d\'accés Wi-Fi."
"No s\'ha pogut iniciar Wi-Fi Direct."
"Wi-Fi Direct està activat"
- "Toca per accedir a la configuració"
+ "Toca per veure la configuració"
"Accepta"
"Rebutja"
"S\'ha enviat la invitació"
@@ -1031,16 +1129,11 @@
"Addició de la targeta SIM"
"Reinicia el dispositiu per accedir a la xarxa mòbil."
"Reinicia"
-
-
-
-
-
-
-
-
-
-
+ "Perquè la nova SIM funcioni, has d\'instal·lar i obrir una aplicació del teu operador de telefonia mòbil."
+ "BAIXA L\'APLICACIÓ"
+ "ARA NO"
+ "S\'ha inserit una SIM nova"
+ "Toca per configurar-la"
"Defineix l\'hora"
"Establiment de data"
"Defineix"
@@ -1050,37 +1143,36 @@
"No cal cap permís"
"pot ser que comporti càrrecs"
"D\'acord"
- "USB per carregar"
+ "El dispositiu s\'està carregant per USB"
+ "L\'USB subministra energia al dispositiu connectat"
"USB per transferir fitxers"
"USB per transferir fotos"
"USB per a MIDI"
"Connectat a un accessori USB"
- "Toca per veure més opcions."
+ "Toca per veure més opcions."
"Depuració USB activada"
- "Toca per desactivar la depuració USB"
- "Vols compartir l\'informe d\'errors amb l\'administrador?"
- "El teu administrador de TI ha sol·licitat un informe d\'errors per tal de resoldre problemes"
- "ACCEPTA"
- "REBUTJA"
- "S\'està creant l\'informe d\'errors…"
- "Toca per cancel·lar"
+ "Toca per desactivar la depuració USB."
+ "S\'està creant l\'informe d\'errors…"
+ "Vols compartir l\'informe d\'errors?"
+ "S\'està compartint l\'informe d\'errors…"
+ "L\'administrador de TI ha sol·licitat un informe d\'errors per resoldre els problemes d\'aquest dispositiu. És possible que es comparteixin aplicacions i dades."
+ "COMPARTEIX"
+ "REBUTJA"
"Canvia el teclat"
- "Tria els teclats"
"El deixa a la pantalla mentre el teclat físic està actiu"
"Mostra el teclat virtual"
- "Selecciona una disposició de teclat"
- "Toca per seleccionar una disposició de teclat."
+ "Configura el teclat físic"
+ "Toca per seleccionar l\'idioma i el disseny"
" ABCDEFGHIJKLMNOPQRSTUVWXYZ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "candidats"
"S\'està preparant %s"
"S\'està comprovant si hi ha errors"
"S\'ha detectat %s"
"Per transferir fotos i fitxers multimèdia"
"S\'ha malmès %s"
- "%s s\'ha malmès. Toca per solucionar-ho."
+ "La unitat %s està malmesa. Toca per solucionar-ho."
"%s no és compatible"
- "El dispositiu no és compatible amb %s. Toca per aplicar-hi un format compatible."
+ "El dispositiu no admet la unitat %s. Toca per configurar-la amb un format compatible."
"S\'ha extret %s de manera inesperada"
"Desactiva %s abans d\'extraure\'l per evitar perdre dades"
"S\'ha extret %s"
@@ -1116,7 +1208,7 @@
"Permet que una aplicació llegeixi les sessions d\'instal·lació i això permet veure detalls sobre les instal·lacions de paquet actives."
"sol·licitar la instal·lació de paquets"
"Permet que una aplicació sol·liciti la instal·lació de paquets."
- "Toca dos cops per controlar el zoom"
+ "Piqueu dos cops per controlar el zoom"
"No s\'ha pogut afegir el widget."
"Vés"
"Cerca"
@@ -1142,24 +1234,26 @@
"Fons de pantalla"
"Canvia el fons de pantalla"
"Oient de notificacions"
+ "Processador de realitat virtual"
"Proveïdor de condicions"
- "Assistent de notificacions"
+ "Servei de classificació de notificacions"
"VPN activada"
"%s ha activat VPN"
- "Toca per gestionar la xarxa."
- "Connectat a %s. Toca per gestionar la xarxa."
+ "Pica per gestionar la xarxa."
+ "Connectat a %s. Pica per gestionar la xarxa."
"T\'estàs connectant a la VPN sempre activada…"
"Estàs connectat a la VPN sempre activada"
+ "La VPN sempre activada està desconnectada"
"Error de la VPN sempre activada"
- "Toca per configurar"
- "Trieu un fitxer"
+ "Toca per configurar"
+ "Tria un fitxer"
"No s\'ha escollit cap fitxer"
- "Reinicia"
+ "Restableix"
"Envia"
"Mode de cotxe activat"
- "Toca per sortir del mode de cotxe."
- "Ancoratge a la xarxa o zona Wi-Fi activat"
- "Toca per configurar."
+ "Toca per sortir del mode de cotxe."
+ "Compartició de xarxa o punt d\'accés Wi-Fi activat"
+ "Toca per configurar."
"Enrere"
"Següent"
"Omet"
@@ -1192,7 +1286,7 @@
"Afegeix un compte"
"Incrementa"
"Redueix"
- "Mantén premut %s."
+ "Toca i mantén premut el número %s."
"Llisca cap amunt per augmentar i cap avall per disminuir."
"Fes augmentar el minut"
"Fes disminuir el minut"
@@ -1228,15 +1322,15 @@
"Més opcions"
"%1$s, %2$s"
"%1$s, %2$s, %3$s"
- "Emmagatzematge intern"
+ "Emmagatzematge intern compartit"
"Targeta SD"
"Targeta SD de: %s"
"Unitat USB"
"Unitat USB de: %s"
"Emmagatzematge USB"
"Edita"
- "Advertiment d\'ús de dades"
- "Toca per veure ús/configuració."
+ "Alerta d\'ús de dades"
+ "Toca per veure l\'ús i la configuració."
"Límit de dades 2G-3G assolit"
"Límit de dades 4G assolit"
"Límit de dades mòbils assolit"
@@ -1248,7 +1342,7 @@
"S\'ha superat el límit de dades Wi-Fi"
"%s per sobre del límit especif."
"Dades en segon pla restringides"
- "Toca per suprimir la restricció."
+ "Toca per suprimir la restricció."
"Certificat de seguretat"
"Aquest certificat és vàlid."
"Emès per a:"
@@ -1464,20 +1558,20 @@
"Selecciona un any"
"%1$s suprimit"
"%1$s de la feina"
- "Per anul·lar la fixació d\'aquesta pantalla, mantén premudes les opcions Enrere i Visió general alhora."
- "Per anul·lar la fixació d\'aquesta pantalla, mantén premuda l\'opció Visió general."
+ "Toca i mantén premuda l\'opció Enrere per deixar de fixar aquesta pantalla."
"S\'ha fixat l\'aplicació. En aquest dispositiu no es permet anul·lar-ne la fixació."
"Pantalla fixada"
"Fixació de la pantalla anul·lada"
"Sol·licita el codi PIN per anul·lar"
"Sol·licita el patró de desbloqueig per anul·lar"
"Demana la contrasenya per anul·lar"
- "No es pot canviar la mida de l\'aplicació. Desplaça-la amb dos dits."
- "L\'aplicació no admet la pantalla dividida."
"L\'administrador ho ha instal·lat"
"L\'administrador l\'ha actualitzat"
"L\'administrador ho ha suprimit"
"Per tal d\'augmentar la durada de la bateria, la funció d\'estalvi de bateria redueix el rendiment del dispositiu i en limita la vibració i la majoria de dades en segon pla. És possible que el correu electrònic, la missatgeria i la resta d\'aplicacions que se sincronitzen amb freqüència no s\'actualitzin llevat que les obris.\n\nL\'estalvi de bateria es desactiva automàticament mentre el dispositiu s\'està carregant."
+ "Per reduir l\'ús de dades, la funció Economitzador de dades evita que determinades aplicacions enviïn o rebin dades en segon pla. L\'aplicació que estiguis fent servir podrà accedir a dades, però potser ho farà menys sovint. Això vol dir, per exemple, que les imatges no es mostraran fins que no les toquis."
+ "Activar Economitzador de dades?"
+ "Activa"
- Durant %1$d minuts (fins a les %2$s)
- Durant 1 minut (fins a les %2$s)
@@ -1531,6 +1625,8 @@
"La sol·licitud SS s\'ha transformat en una sol·licitud USSD."
"La sol·licitud SS s\'ha transformat en una sol·licitud SS nova."
"Perfil professional"
+ "Botó Desplega"
+ "desplega o replega"
"Port perifèric USB d\'Android"
"Android"
"Port perifèric USB"
@@ -1538,34 +1634,48 @@
"Tanca el menú addicional"
"Maximitza"
"Tanca"
+ "%1$s: %2$s"
- Seleccionats: %1$d
- Seleccionats: %1$d
- "Altres"
- "Tu has definit la importància d\'aquestes notificacions."
+ "Has definit la importància d\'aquestes notificacions."
"Aquest missatge és important per les persones implicades."
"Concedeixes permís a %1$s per crear un usuari amb el compte %2$s?"
"Concedeixes permís a %1$s per crear un usuari amb el compte %2$s? (Ja hi ha un usuari amb aquest compte.)"
- "Preferència d\'idioma"
+ "Afegeix un idioma"
"Preferència de regió"
"Nom de l\'idioma"
"Suggerits"
"Tots els idiomes"
+ "Totes les regions"
"Cerca"
"Mode de feina desactivat"
"Permet que el perfil professional funcioni, incloses les aplicacions, la sincronització en segon pla i les funcions relacionades."
"Activa"
- "Aplicació %1$s desactivada"
- "L\'administrador de l\'empresa %1$s ha desactivat el paquet. Contacta-hi per obtenir-ne més informació."
"Tens missatges nous"
"Obre l\'aplicació de SMS per veure\'ls"
- "Hi pot haver funcions no disponibles"
- "Toca per continuar"
- "Perfil d\'usuari bloquejat"
+ "Algunes funcions es limitaran"
+ "Toca per desbloquejar"
+ "Dades d\'usuari bloquejades"
+ "Perfil professional bloquejat"
+ "Toca per desbloquejar el perfil"
"S\'ha connectat a %1$s"
"Toca per veure els fitxers"
"Fixa"
"No fixis"
"Informació de l\'aplicació"
+ "-%1$s"
+ "Vols restablir el dispositiu?"
+ "Toca per restablir el dispositiu"
+ "S\'està iniciant la demostració…"
+ "S\'està restablint el dispositiu…"
+ "Vols restablir el dispositiu?"
+ "Perdràs els canvis, i la demostració tornarà a començar d\'aquí a %1$s segons…"
+ "Cancel·la"
+ "Restableix ara"
+ "Restableix les dades de fàbrica del dispositiu per utilitzar-lo sense restriccions"
+ "Toca per obtenir més informació."
+ "%1$s s\'ha desactivat"
+ "Conferència"
diff --git a/core/res/res/values-de/strings.xml b/core/res/res/values-de/strings.xml
index f04521fc7265c..f5b724dda712e 100644
--- a/core/res/res/values-de/strings.xml
+++ b/core/res/res/values-de/strings.xml
@@ -88,7 +88,6 @@
"Anrufer-ID ist standardmäßig nicht beschränkt. Nächster Anruf: Nicht beschränkt"
"Dienst nicht eingerichtet."
"Du kannst die Einstellung für die Anrufer-ID nicht ändern."
- "Eingeschränkter Zugriff geändert"
"Daten-Dienst ist gesperrt."
"Notruf ist gesperrt."
"Sprachdienst ist gesperrt."
@@ -125,11 +124,15 @@
"Suche nach Dienst"
"Anrufe über WLAN"
+ - "Um über WLAN telefonieren und Nachrichten senden zu können, bitte zuerst deinen Mobilfunkanbieter, diesen Dienst einzurichten. Aktiviere die Option \"Anrufe über WLAN\" dann erneut über die Einstellungen."
+ - "Registriere dich bei deinem Mobilfunkanbieter."
+
+
+ - "%s"
+ - "%s Anrufe über WLAN"
- "%s"
- "%s"
"Aus"
"WLAN bevorzugt"
"Mobilfunk bevorzugt"
@@ -165,7 +168,10 @@
"Der Speicher deiner Uhr ist voll. Lösche Dateien, um Speicherplatz freizugeben."
"Der TV-Speicher ist voll. Lösche Dateien, um Speicherplatz freizugeben."
"Der Handyspeicher ist voll! Lösche Dateien, um Speicherplatz freizugeben."
- "Das Netzwerk wird möglicherweise überwacht."
+
+ - Zertifizierungsstellen installiert
+ - Zertifizierungsstelle installiert
+
"Von einem unbekannten Dritten"
"Vom Administrator deines Arbeitsprofils"
"Von %s"
@@ -208,13 +214,14 @@
"Telefonoptionen"
"Displaysperre"
"Ausschalten"
+ "Notfall"
"Fehlerbericht"
"Fehlerbericht abrufen"
"Bei diesem Fehlerbericht werden Daten zum aktuellen Status deines Geräts erfasst und als E-Mail versandt. Vom Start des Berichts bis zu seinem Versand kann es eine Weile dauern. Bitte habe etwas Geduld."
"Interaktiver Bericht"
- "Diese Option kann in den meisten Fällen verwendet werden. Du kannst darüber den aktuellen Stand der Berichterstellung verfolgen und genauere Angaben zu dem Problem machen. Einige selten genutzte Bereiche, deren Berichterstellung längere Zeit in Anspruch nimmt, werden unter Umständen ausgelassen."
+ "Diese Option kann in den meisten Fällen verwendet werden. Du kannst darüber den aktuellen Stand der Berichterstellung verfolgen, genauere Angaben zu dem Problem machen und Screenshots aufnehmen. Einige selten genutzte Bereiche, deren Berichterstellung längere Zeit in Anspruch nimmt, werden unter Umständen ausgelassen."
"Vollständiger Bericht"
- "Du kannst diese Option für minimale Störungen des Systems nutzen, wenn dein Gerät beispielsweise nicht reagiert oder zu langsam ist oder wenn du alle Bereiche für Berichte benötigst. Es wird kein Screenshot aufgenommen und du kannst keine weiteren Angaben machen."
+ "Du kannst diese Option für minimale Störungen des Systems nutzen, wenn dein Gerät beispielsweise nicht reagiert oder zu langsam ist oder wenn du alle Bereiche für Berichte benötigst. Du kannst keine weiteren Angaben machen oder zusätzliche Screenshots aufnehmen."
- Screenshot für den Fehlerbericht wird in %d Sekunden aufgenommen.
- Screenshot für den Fehlerbericht wird in %d Sekunde aufgenommen.
@@ -230,35 +237,34 @@
"Sprachassistent"
"Jetzt sperren"
"999+"
- "(%d)"
"Inhalte ausgeblendet"
"Inhalte aufgrund der Richtlinien ausgeblendet"
"Abgesicherter Modus"
"Android-System"
- "Privat"
- "Geschäftlich"
+ "Zu \"Privat\" wechseln"
+ "Zu \"Arbeit\" wechseln"
"Kontakte"
- "auf Kontakte zuzugreifen"
+ "auf deine Kontakte zugreifen"
"Standort"
"auf den Standort deines Geräts zuzugreifen"
"Kalender"
- "auf Kalender zuzugreifen"
+ "auf deinen Kalender zugreifen"
"SMS"
- "SMS zu senden und abzurufen"
+ "SMS senden und abrufen"
"Speicher"
- "auf Fotos, Medien und Dateien auf deinem Gerät zuzugreifen"
+ "auf Fotos, Medien und Dateien auf deinem Gerät zugreifen"
"Mikrofon"
- "Audio aufzunehmen"
+ "Audio aufnehmen"
"Kamera"
- "Bilder und Videos aufzunehmen"
+ "Bilder und Videos aufnehmen"
"Telefon"
- "Telefonanrufe zu tätigen und zu verwalten"
+ "Telefonanrufe tätigen und verwalten"
"Körpersensoren"
- "auf Sensordaten zu deinen Vitaldaten zuzugreifen"
+ "auf Sensordaten zu deinen Vitaldaten zugreifen"
"Fensterinhalte abrufen"
"Die Inhalte eines Fensters, mit dem du interagierst, werden abgerufen."
"\"Tippen & Entdecken\" aktivieren"
- "Berührte Elemente werden laut vorgelesen und der Bildschirm kann über Gesten erkundet werden."
+ "Berührte Elemente werden laut vorgelesen und der Bildschirm kann über Gesten erkundet werden."
"Verbesserte Web-Bedienung aktivieren"
"Skripts können installiert werden, um den Zugriff auf App-Inhalte zu erleichtern."
"Text bei der Eingabe beobachten"
@@ -411,7 +417,7 @@
"Ermöglicht der App, Pakete zu empfangen, die mithilfe von Multicast-Adressen an sämtliche Geräte in einem WLAN versendet wurden, nicht nur an dein Telefon. Dies nimmt mehr Leistung in Anspruch als der Nicht-Multicast-Modus."
"Auf Bluetooth-Einstellungen zugreifen"
"Ermöglicht der App, das lokale Bluetooth-Tablet zu konfigurieren, Remote-Geräte zu erkennen und eine Verbindung zu diesen herzustellen"
- "Ermöglicht der App, den lokalen Bluetooth-Fernseher zu konfigurieren, Remote-Geräte zu erkennen und ein Pairing mit diesen durchzuführen"
+ "Ermöglicht der App, den lokalen Bluetooth-Fernseher zu konfigurieren, Remote-Geräte zu erkennen und eine Kopplung mit ihnen durchzuführen"
"Ermöglicht der App, das lokale Bluetooth-Telefon zu konfigurieren, Remote-Geräte zu erkennen und eine Verbindung zu diesen herzustellen"
"WiMAX-Verbindungen herstellen und trennen"
"Ermöglicht der App festzustellen, ob WiMAX aktiviert ist. Zudem kann sie Informationen zu verbundenen WiMAX-Netzwerken abrufen."
@@ -419,9 +425,9 @@
"Ermöglicht der App, eine Verbindung zwischen dem Tablet und WiMAX-Netzwerken herzustellen und solche zu trennen."
"Ermöglicht der App, eine Verbindung zwischen dem Fernseher und WiMAX-Netzwerken herzustellen und diese zu trennen"
"Ermöglicht der App, eine Verbindung zwischen dem Telefon und WiMAX-Netzwerken herzustellen und solche zu trennen."
- "Pairing mit Bluetooth-Geräten durchführen"
+ "Kopplung mit Bluetooth-Geräten durchführen"
"Ermöglicht der App, die Bluetooth-Konfiguration eines Tablets einzusehen und Verbindungen zu gekoppelten Geräten herzustellen und zu akzeptieren."
- "Ermöglicht der App, die Bluetooth-Konfiguration des Fernsehers einzusehen und Verbindungen zu Pairing-Geräten herzustellen und zu akzeptieren"
+ "Ermöglicht der App, die Bluetooth-Konfiguration des Fernsehers abzurufen und Verbindungen zu gekoppelten Geräten herzustellen und zu akzeptieren"
"Ermöglicht der App, die Bluetooth-Konfiguration des Telefons einzusehen und Verbindungen mit gekoppelten Geräten herzustellen und zu akzeptieren."
"Nahfeldkommunikation steuern"
"Ermöglicht der App die Kommunikation mit Tags für die Nahfeldkommunikation, Karten und Readern"
@@ -520,11 +526,11 @@
"Displaysperre ändern"
"Displaysperre ändern"
"Bildschirm sperren"
- "Lege fest, wie und wann der Bildschirm gesperrt wird."
+ "Festlegen, wie und wann der Bildschirm gesperrt wird"
"Alle Daten löschen"
"Auf Werkseinstellungen zurücksetzen und Daten auf dem Tablet ohne Warnung löschen"
"Auf Werkseinstellungen zurücksetzen und Daten auf dem Fernseher ohne Warnung löschen"
- "Setze das Telefon auf die Werkseinstellungen zurück. Dabei werden alle Daten ohne Warnung gelöscht."
+ "Auf Werkseinstellungen zurücksetzen und damit Daten auf dem Telefon ohne Warnung löschen"
"Nutzerdaten löschen"
"Daten dieses Nutzers auf diesem Tablet ohne vorherige Warnung löschen"
"Daten dieses Nutzers auf diesem Fernseher ohne vorherige Warnung löschen"
@@ -538,7 +544,7 @@
"Kameras deaktivieren"
"Nutzung sämtlicher Gerätekameras unterbinden"
"Einige Funktionen der Displaysperre deaktivieren"
- "Verhindert die Verwendung einiger Funktionen der Displaysperre"
+ "Verwendung einiger Funktionen der Displaysperre verhindern"
- "Privat"
- "Mobil"
@@ -634,13 +640,13 @@
"Sonstige"
"Benutzerdefiniert"
"Benutzerdefiniert"
- "Assistent"
+ "Kollege"
"Bruder"
"Kind"
"Lebenspartner"
"Vater"
"Freund"
- "Vorgesetzter"
+ "Chef"
"Mutter"
"Elternteil"
"Partner"
@@ -657,7 +663,7 @@
"PUK und neuen PIN-Code eingeben"
"PUK-Code"
"Neuer PIN-Code"
- "Zur Passworteingabe berühren"
+ "Zur Passworteingabe tippen"
"Passwort zum Entsperren eingeben"
"PIN zum Entsperren eingeben"
"Falscher PIN-Code"
@@ -673,6 +679,7 @@
"Korrekt!"
"Erneut versuchen"
"Erneut versuchen"
+ "Entsperren, um alle Funktionen und Daten zu nutzen"
"Die maximal zulässige Anzahl an Face Unlock-Versuchen wurde überschritten."
"Keine SIM-Karte"
"Keine SIM-Karte im Tablet"
@@ -853,6 +860,71 @@
- %d Stunden
- 1 Stunde
+ "jetzt"
+
+ - %d min
+ - %d min
+
+
+ - %d h
+ - %d h
+
+
+ - %d T.
+ - %d T.
+
+
+ - %d J.
+ - %d J.
+
+
+ - in %d min
+ - in %d min
+
+
+ - in %d h
+ - in %d h
+
+
+ - in %d T.
+ - in %d T.
+
+
+ - in %d J.
+ - in %d J.
+
+
+ - vor %d Minuten
+ - vor %d Minute
+
+
+ - vor %d Stunden
+ - vor %d Stunde
+
+
+ - vor %d Tagen
+ - vor %d Tag
+
+
+ - vor %d Jahren
+ - vor %d Jahr
+
+
+ - in %d Minuten
+ - in %d Minute
+
+
+ - in %d Stunden
+ - in %d Stunde
+
+
+ - in %d Tagen
+ - in %d Tag
+
+
+ - in %d Jahren
+ - in %d Jahr
+
"Videoprobleme"
"Dieses Video ist nicht für Streaming auf diesem Gerät gültig."
"Video kann nicht wiedergegeben werden."
@@ -884,7 +956,7 @@
"Einige Systemfunktionen funktionieren möglicherweise nicht."
"Der Speicherplatz reicht nicht für das System aus. Stelle sicher, dass 250 MB freier Speicherplatz vorhanden sind, und starte das Gerät dann neu."
"%1$s wird ausgeführt"
- "Für weitere Informationen oder zum Anhalten der App tippen"
+ "Für weitere Informationen oder zum Beenden der App tippen."
"OK"
"Abbrechen"
"OK"
@@ -895,14 +967,25 @@
"AUS"
"Aktion durchführen mit"
"Aktion mit %1$s abschließen"
+ "Abschließen"
"Öffnen mit"
"Mit %1$s öffnen"
+ "Öffnen"
"Bearbeiten mit"
"Mit %1$s bearbeiten"
+ "Bearbeiten"
"Freigeben über"
"Für %1$s freigeben"
+ "Teilen"
+ "Senden via"
+ "Senden via %1$s"
+ "Senden"
"Start-App auswählen"
"%1$s als Start-App verwenden"
+ "Bild aufnehmen"
+ "Bild aufnehmen mit"
+ "Bild aufnehmen mit %1$s"
+ "Bild aufnehmen"
"Immer für diese Aktion verwenden"
"Andere App verwenden"
"Das Löschen der Standardeinstellungen ist in den Systemeinstellungen unter \"Apps > Heruntergeladen\" möglich."
@@ -913,11 +996,10 @@
"%1$s wurde beendet"
"%1$s wird wiederholt beendet"
"%1$s wird wiederholt beendet"
- "App neu starten"
- "App zurücksetzen und neu starten"
+ "App wieder öffnen"
"Feedback geben"
"Schließen"
- "Ignorieren"
+ "Bis zum Neustart des Geräts ausblenden"
"Warten"
"App schließen"
@@ -935,17 +1017,22 @@
"Skalieren"
"Immer anzeigen"
"Eine erneute Aktivierung ist in den Systemeinstellungen unter \"Apps > Heruntergeladen\" möglich."
+ "%1$s unterstützt nicht die aktuelle Einstellung für die Anzeigegröße, sodass ein unerwartetes Verhalten auftreten kann."
+ "Immer anzeigen"
"Die App %1$s (Prozess %2$s) hat gegen deine selbsterzwungene StrictMode-Richtlinie verstoßen."
"Der Prozess %1$s hat gegen seine selbsterzwungene StrictMode-Richtlinie verstoßen."
"Android wird aktualisiert..."
"Android wird gestartet…"
"Speicher wird optimiert"
+ "Android-Update wird beendet…"
+ "Einige Apps funktionieren unter Umständen nicht richtig, bis das Upgrade abgeschlossen ist"
+ "Für %1$s wird gerade ein Upgrade ausgeführt…"
"App %1$d von %2$d wird optimiert..."
"%1$s wird vorbereitet"
"Apps werden gestartet..."
"Start wird abgeschlossen..."
"%1$s läuft"
- "Zum Wechseln in die App berühren"
+ "Zum Wechseln der App tippen"
"Apps wechseln?"
"Es wird bereits eine andere App ausgeführt, die vor dem Start einer neuen beendet werden muss."
"Zu %1$s zurückkehren"
@@ -953,7 +1040,7 @@
"%1$s starten"
"Alte App beenden, ohne zu speichern"
"Speicherlimit für \"%1$s\" überschritten"
- "Heap-Dump wurde erfasst, zum Teilen tippen"
+ "Heap-Dump wurde erfasst. Zum Teilen tippen"
"Heap-Dump teilen?"
"Für den Prozess \"%1$s\" wurde das Prozessspeicherlimit von %2$s überschritten. Es steht ein Heap-Dump zur Verfügung, den du mit dem Entwickler teilen kannst. Beachte jedoch unbedingt, dass der Heap-Dump personenbezogene Daten von dir enthalten kann, auf die die App zugreifen kann."
"Aktion für Text auswählen"
@@ -989,7 +1076,18 @@
"WLAN hat keinen Internetzugriff"
- "Für Optionen tippen"
+ "Für Optionen tippen"
+ "Zu %1$s gewechselt"
+ "Auf dem Gerät wird \"%1$s\" verwendet, wenn über \"%2$s\" kein Internet verfügbar ist. Eventuell fallen Gebühren an."
+ "Von \"%1$s\" zu \"%2$s\" gewechselt"
+
+ - "mobile Datennutzung"
+ - "WLAN"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "ein unbekannter Netzwerktyp"
"Es konnte keine WLAN-Verbindung hergestellt werden."
" hat eine schlechte Internetverbindung."
"Verbindung zulassen?"
@@ -999,7 +1097,7 @@
"Wi-Fi Direct-Betrieb starten. Hierdurch wird der WLAN-Client-/-Hotspot-Betrieb deaktiviert."
"Starten von Wi-Fi Direct nicht möglich"
"Wi-Fi Direct ist aktiviert."
- "Zum Aufrufen der Einstellungen berühren"
+ "Für Einstellungen tippen"
"Akzeptieren"
"Ablehnen"
"Einladung gesendet"
@@ -1045,37 +1143,36 @@
"Keine Berechtigungen erforderlich"
"Hierfür können Gebühren anfallen."
"OK"
- "USB zum Aufladen"
+ "Gerät wird über USB aufgeladen"
+ "Angeschlossenes Gerät wird über USB aufgeladen"
"USB für die Dateiübertragung"
"USB für die Fotoübertragung"
"USB für MIDI"
"Mit USB-Zubehör verbunden"
- "Für weitere Optionen tippen"
- "USB-Debugging"
- "Zum Deaktivieren berühren"
- "Fehlerbericht mit Administrator teilen?"
- "Dein IT-Administrator hat einen Fehlerbericht zur Fehlerbehebung angefordert."
- "AKZEPTIEREN"
- "ABLEHNEN"
- "Fehlerbericht wird aufgerufen…"
- "Zum Abbrechen tippen"
+ "Für weitere Optionen tippen."
+ "USB-Debugging aktiviert"
+ "Zum Deaktivieren von USB-Debugging tippen."
+ "Fehlerbericht wird abgerufen…"
+ "Fehlerbericht teilen?"
+ "Fehlerbericht wird geteilt…"
+ "Dein IT-Administrator hat einen Fehlerbericht zur Fehlerbehebung für dieses Gerät angefordert. Apps und Daten werden unter Umständen geteilt."
+ "TEILEN"
+ "ABLEHNEN"
"Tastatur ändern"
- "Tastatur auswählen"
"Auf dem Display einblenden, wenn die physische Tastatur aktiv ist"
"Virtuelle Tastatur einblenden"
- "Tastaturlayout auswählen"
- "Zum Auswählen eines Tastaturlayouts berühren"
+ "Physische Tastatur konfigurieren"
+ "Zum Auswählen von Sprache und Layout tippen"
" ABCDEFGHIJKLMNOPQRSTUVWXYZ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "Kandidaten"
"%s wird vorbereitet"
"Nach Fehlern wird gesucht"
"Neue %s entdeckt"
"Zum Übertragen von Fotos und Medien"
"%s beschädigt"
- "%s ist beschädigt. Zum Reparieren tippen."
+ "%s ist beschädigt. Zum Reparieren tippen."
"%s nicht unterstützt"
- "%s wird von diesem Gerät nicht unterstützt. Zum Einrichten in einem unterstützten Format tippen."
+ "%s wird von diesem Gerät nicht unterstützt. Zum Einrichten in einem unterstützten Format tippen."
"%s wurde unerwartet entfernt"
"Trenne die %s vor dem Entfernen, um Datenverluste zu vermeiden."
"%s wurde entfernt"
@@ -1111,7 +1208,7 @@
"Ermöglicht der App, Installationssitzungen zu lesen. Dadurch kann sie Details aktiver Paketinstallationen abrufen."
"Installation von Paketen anfordern"
"Ermöglicht der App, die Installation von Paketen anzufordern"
- "Für Zoomeinstellung zweimal berühren"
+ "Für Zoomeinstellung zweimal berühren"
"Widget konnte nicht hinzugefügt werden."
"Los"
"Suchen"
@@ -1129,7 +1226,7 @@
"Ablehnen"
"Berechtigung angefordert"
"Berechtigung angefordert\nfür Konto %s"
- "Du verwendest diese App außerhalb deines Arbeitsprofils."
+ "Du verwendest diese App außerhalb deines Arbeitsprofils"
"Du verwendest diese App in deinem Arbeitsprofil."
"Eingabemethode"
"Synchronisieren"
@@ -1137,24 +1234,26 @@
"Hintergrund"
"Hintergrund ändern"
"Benachrichtigungs-Listener"
+ "VR-Listener"
"Bedingungsprovider"
- "Benachrichtigungsassistent"
+ "Service für Einstufung von Benachrichtigungen"
"VPN aktiviert"
"VPN wurde von %s aktiviert."
- "Zum Verwalten des Netzwerks berühren"
- "Verbunden mit %s. Zum Verwalten des Netzwerks berühren"
+ "Zum Verwalten des Netzwerks tippen"
+ "Verbunden mit %s. Zum Verwalten des Netzwerks tippen"
"Verbindung zu durchgehend aktivem VPN wird hergestellt…"
"Mit durchgehend aktivem VPN verbunden"
+ "Verbindung zu durchgehend aktivem VPN getrennt"
"Durchgehend aktives VPN – Verbindungsfehler"
- "Zum Konfigurieren berühren"
+ "Zum Einrichten tippen"
"Datei auswählen"
"Keine ausgewählt"
"Zurücksetzen"
"Senden"
"Automodus aktiviert"
- "Zum Beenden des Automodus berühren"
+ "Zum Beenden des Automodus tippen."
"Tethering oder Hotspot aktiv"
- "Zum Einrichten berühren"
+ "Zum Einrichten tippen."
"Zurück"
"Weiter"
"Überspringen"
@@ -1187,7 +1286,7 @@
"Konto hinzufügen"
"Verlängern"
"Verringern"
- "%s berühren und gedrückt halten"
+ "%s berühren und halten."
"Zum Verlängern nach oben und zum Verringern nach unten schieben"
"Minuten verlängern"
"Minuten verringern"
@@ -1223,15 +1322,15 @@
"Weitere Optionen"
"%1$s. %2$s"
"%1$s, %2$s. %3$s"
- "Interner Speicher"
+ "Interner gemeinsamer Speicher"
"SD-Karte"
"SD-Karte von %s"
"USB-Speichergerät"
"USB-Speichergerät von %s"
"USB-Speicher"
"Bearbeiten"
- "Warnung zum Datenverbrauch"
- "Für Verbrauch/Einstell. berühren"
+ "Warnung zur Datennutzung"
+ "Für Nutzung und Einstellungen tippen."
"2G-/3G-Datenlimit erreicht"
"4G-Datenlimit erreicht"
"Mobilfunkdatenlimit erreicht"
@@ -1243,7 +1342,7 @@
"WLAN-Datenlimit überschritten"
"%s über dem vorgegebenen Limit"
"Hintergrunddaten beschränkt"
- "Beschränkung durch Berühren entfernen"
+ "Zum Entfernen der Beschränkung tippen."
"Sicherheitszertifikat"
"Dies ist ein gültiges Zertifikat."
"Ausgestellt für:"
@@ -1459,20 +1558,20 @@
"Jahr auswählen"
"%1$s gelöscht"
"%1$s (geschäftlich)"
- "Um die Fixierung dieses Bildschirms aufzuheben, berühre und halte gleichzeitig \"Zurück\" und \"Übersicht\"."
- "Um die Fixierung dieses Bildschirms aufzuheben, berühre und halte \"Übersicht\"."
+ "Um die Fixierung dieses Bildschirms aufzuheben, \"Zurück\" berühren und halten."
"Die App ist fixiert. Das Aufheben der Fixierung ist auf diesem Gerät nicht zulässig."
"Bildschirm fixiert"
"Bildschirm gelöst"
"Vor dem Beenden nach PIN fragen"
"Vor dem Beenden nach Entsperrungsmuster fragen"
"Vor dem Beenden nach Passwort fragen"
- "Die Größe der App kann nicht angepasst werden. Scrolle sie mit zwei Fingern."
- "Das Teilen des Bildschirms wird in dieser App nicht unterstützt."
"Von deinem Administrator installiert"
"Von deinem Administrator aktualisiert"
"Von deinem Administrator gelöscht"
"Der Energiesparmodus schont den Akku, indem er die Leistung des Geräts reduziert und die Vibrationsfunktion sowie die meisten Hintergrunddatenaktivitäten einschränkt. E-Mail, SMS/MMS und andere Apps, die auf deinem Gerät synchronisiert werden, werden möglicherweise erst nach dem Öffnen aktualisiert.\n\nDer Energiesparmodus wird automatisch deaktiviert, wenn dein Gerät aufgeladen wird."
+ "Mit dem Datensparmodus wird die Datennutzung verringert, indem verhindert wird, dass im Hintergrund Daten von Apps gesendet oder empfangen werden. Datenzugriffe sind mit einer aktiven App zwar möglich, erfolgen aber seltener. Als Folge davon könnten Bilder beispielsweise erst dann sichtbar werden, wenn sie angetippt werden."
+ "Datensparmodus aktivieren?"
+ "Aktivieren"
- %1$d Minuten (bis %2$s)
- 1 Minute (bis %2$s)
@@ -1526,6 +1625,8 @@
"SS-Anfrage wird in USSD-Anfrage geändert."
"SS-Anfrage wird in neue SS-Anfrage geändert."
"Arbeitsprofil"
+ "Schaltfläche \"Maximieren\""
+ "Maximierung ein-/auschalten"
"USB-Port für Android-Peripheriegeräte"
"Android"
"USB-Port für Peripheriegeräte"
@@ -1533,34 +1634,48 @@
"Überlauf schließen"
"Maximieren"
"Schließen"
+ "%1$s: %2$s"
- %1$d ausgewählt
- %1$d ausgewählt
- "Sonstige"
- "Du legst die Wichtigkeit dieser Benachrichtigungen fest."
+ "Du hast die Wichtigkeit dieser Benachrichtigungen festgelegt."
"Diese Benachrichtigung ist aufgrund der beteiligten Personen wichtig."
"Möchtest du zulassen, dass %1$s einen neuen Nutzer mit %2$s erstellt?"
"Möchtest du zulassen, dass %1$s einen neuen Nutzer mit %2$s erstellt? Dieses Konto wird jedoch bereits von einem anderen Nutzer verwendet."
- "Spracheinstellung"
+ "Sprache hinzufügen"
"Region auswählen"
"Sprache eingeben"
"Vorschläge"
"Alle Sprachen"
+ "Alle Regionen"
"Suche"
"Arbeitsmodus ist AUS"
"Arbeitsprofil aktivieren, einschließlich Apps, Synchronisierung im Hintergrund und verknüpfter Funktionen."
"Aktivieren"
- "%1$s deaktiviert"
- "Durch den Administrator von %1$s deaktiviert. Setze dich für weitere Informationen mit ihm in Verbindung."
"Du hast neue Nachrichten"
"Zum Ansehen SMS-App öffnen"
- "Einige Funktionen sind evtl. nicht verfügbar"
- "Zum Fortfahren tippen"
- "Nutzerprofil gesperrt"
+ "Einige Funktionen sind evtl. eingeschränkt"
+ "Zum Entsperren tippen"
+ "Nutzerdaten gesperrt"
+ "Arbeitsprofil gesperrt"
+ "Zum Entsperren des Arbeitsprofils tippen"
"Verbunden mit %1$s"
"Zum Ansehen der Dateien tippen"
"Markieren"
"Markierung entfernen"
"App-Informationen"
+ "−%1$s"
+ "Gerät zurücksetzen?"
+ "Zum Zurücksetzen des Geräts tippen"
+ "Demo wird gestartet…"
+ "Gerät wird zurückgesetzt…"
+ "Gerät zurücksetzen?"
+ "Alle Änderungen gehen verloren und Demo wird in %1$s Sekunden neu gestartet…"
+ "Abbrechen"
+ "Jetzt zurücksetzen"
+ "Gerät auf Werkseinstellungen zurücksetzen, um es ohne Einschränkungen zu nutzen"
+ "Für weitere Informationen tippen."
+ "%1$s deaktiviert"
+ "Telefonkonferenz"
diff --git a/core/res/res/values-fr/strings.xml b/core/res/res/values-fr/strings.xml
index 662076dff4c74..9da228e40d01d 100644
--- a/core/res/res/values-fr/strings.xml
+++ b/core/res/res/values-fr/strings.xml
@@ -88,7 +88,6 @@
"Par défaut, les numéros des appelants ne sont pas restreints. Appel suivant : non restreint"
"Ce service n\'est pas pris en charge."
"Impossible de modifier le paramètre relatif au numéro de l\'appelant."
- "L\'accès limité a été modifié."
"Le service de données est bloqué."
"Le service d\'appel d\'urgence est bloqué."
"Le service vocal est bloqué."
@@ -125,11 +124,15 @@
"Recherche des services disponibles"
"Appels Wi-Fi"
+ - "Pour effectuer des appels et envoyer des messages via le Wi-Fi, demandez tout d\'abord à votre opérateur de configurer ce service. Réactivez ensuite les appels Wi-Fi dans les paramètres."
+ - "Inscrivez-vous auprès de votre opérateur."
+
+
+ - "%s"
+ - "Appels Wi-Fi %s"
- "%s"
- "%s"
"Désactivé"
"Wi-Fi de préférence"
"Mobile de préférence"
@@ -165,7 +168,10 @@
"La mémoire de la montre est saturée. Veuillez supprimer des fichiers pour libérer de l\'espace."
"L\'espace de stockage du téléviseur est saturé. Pour libérer de l\'espace, veuillez supprimer des fichiers."
"La mémoire du téléphone est pleine. Veuillez supprimer des fichiers pour libérer de l\'espace."
- "Il est possible que le réseau soit surveillé."
+
+ - Autorité de certification installée
+ - Autorités de certification installées
+
"Par un tiers inconnu"
"Par l\'administrateur de votre profil professionnel"
"Par %s"
@@ -208,13 +214,14 @@
"Options du téléphone"
"Verrouillage de l\'écran"
"Éteindre"
+ "Urgences"
"Rapport de bug"
"Créer un rapport de bug"
"Cela permet de recueillir des informations concernant l\'état actuel de votre appareil. Ces informations sont ensuite envoyées sous forme d\'e-mail. Merci de patienter pendant la préparation du rapport de bug. Cette opération peut prendre quelques instants."
"Rapport interactif"
- "Utilisez cette option dans la plupart des circonstances. Elle vous permet de suivre la progression du rapport et de saisir plus d\'informations sur le problème. Certaines sections moins utilisées et dont le remplissage demande beaucoup de temps peuvent être omises."
+ "Utilisez cette option dans la plupart des circonstances. Elle vous permet de suivre la progression du rapport, de saisir plus d\'informations sur le problème et d\'effectuer des captures d\'écran. Certaines sections moins utilisées et dont le remplissage demande beaucoup de temps peuvent être omises."
"Rapport complet"
- "Utilisez cette option pour qu\'il y ait le moins d\'interférences système possible lorsque votre appareil ne répond pas ou qu\'il est trop lent, ou lorsque vous avez besoin de toutes les sections du rapport de bug. Aucune capture d\'écran ne sera prise, et vous ne pourrez saisir aucune autre information."
+ "Utilisez cette option pour qu\'il y ait le moins d\'interférences système possible lorsque votre appareil ne répond pas ou qu\'il est trop lent, ou lorsque vous avez besoin de toutes les sections du rapport de bug. Aucune capture d\'écran supplémentaire ne peut être prise, et vous ne pouvez saisir aucune autre information."
- Capture d\'écran pour le rapport de bug dans %d seconde
- Capture d\'écran pour le rapport de bug dans %d secondes
@@ -230,13 +237,12 @@
"Assistance vocale"
"Verrouiller"
">999"
- "(%d)"
"Contenus masqués"
"Contenu masqué conformément aux règles"
"Mode sécurisé"
"Système Android"
- "Personnel"
- "Professionnel"
+ "Passer au profil personnel"
+ "Passer au profil professionnel"
"Contacts"
"accéder à vos contacts"
"Position"
@@ -258,7 +264,7 @@
"Récupérer le contenu d\'une fenêtre"
"Inspecter le contenu d\'une fenêtre avec laquelle vous interagissez"
"Activer la fonctionnalité Explorer au toucher"
- "Les éléments sélectionnés sont énoncés à voix haute. Vous pouvez explorer l\'écran à l\'aide de gestes."
+ "Les éléments sélectionnés sont énoncés à voix haute. Vous pouvez explorer l\'écran à l\'aide de gestes."
"Activer l\'accessibilité Web améliorée"
"Vous pouvez installer des scripts pour rendre le contenu des applications plus accessible."
"Observer le texte que vous saisissez"
@@ -496,12 +502,12 @@
"Permet à une application de détecter des observations sur les conditions du réseau. Les applications standards ne devraient pas nécessiter cette autorisation."
"modifier le calibrage du périphérique d\'entrée"
"Permettre à l\'application de modifier les paramètres de calibrage de l\'écran tactile. Ne devrait jamais être nécessaire pour les applications standards."
- "accéder aux certificats de GDN"
- "Permettre à une application de fournir et d\'utiliser des certificats de GDN. Ne devrait jamais être nécessaire pour les applications standards."
+ "accéder aux certificats DRM"
+ "Permet à une application de fournir et d\'utiliser des certificats DRM. Ne devrait jamais être nécessaire pour les applications standards."
"recevoir des informations sur l\'état du transfert Android Beam"
"Autoriser cette application à recevoir des informations sur les transferts Android Beam en cours"
- "supprimer les certificats de GDN"
- "Permet à une application de supprimer les certificats de GDN. Ne devrait jamais être nécessaire pour les applications standards."
+ "supprimer les certificats DRM"
+ "Permet à une application de supprimer les certificats DRM. Ne devrait jamais être nécessaire pour les applications standards."
"s\'associer au service SMS/MMS d\'un opérateur"
"Permettre à l\'application de s\'associer à l\'interface de niveau supérieur du service SMS/MMS d\'un opérateur. Ne devrait jamais être nécessaire pour les applications standards."
"associer aux services de l\'opérateur"
@@ -598,9 +604,9 @@
"Autre télécopie"
"Radio"
"Télex"
- "TTY/TTD (malentendants)"
- "Mobile (professionnel)"
- "Téléavertisseur (professionnel)"
+ "TTY/TTD"
+ "Mobile pro"
+ "Bipeur pro"
"Assistant"
"MMS"
"Personnalisé"
@@ -657,7 +663,7 @@
"Saisissez la clé PUK et le nouveau code PIN."
"Code PUK"
"Nouveau code PIN"
- "Appuyez pour saisir mot passe"
+ "Appuyer pour saisir mot passe"
"Saisissez le mot de passe pour déverrouiller le clavier."
"Saisissez le code PIN pour déverrouiller le clavier."
"Le code PIN est erroné."
@@ -673,8 +679,9 @@
"Combinaison correcte !"
"Veuillez réessayer."
"Veuillez réessayer."
+ "Déverr. pour autres fonctionnalités et données"
"Nombre maximal autorisé de tentatives Face Unlock atteint."
- "Aucune carte SIM"
+ "Pas de carte SIM"
"Aucune carte SIM n\'est insérée dans la tablette."
"Carte SIM introuvable dans le téléviseur."
"Aucune carte SIM n\'est insérée dans le téléphone."
@@ -689,7 +696,7 @@
"Arrêter"
"Retour arrière"
"Avance rapide"
- "Appels d\'urgence uniquement"
+ "Urgences seulement"
"Réseau verrouillé"
"La carte SIM est verrouillée par clé PUK."
"Veuillez consulter le guide utilisateur ou contacter le service client."
@@ -853,6 +860,71 @@
- %d heure
- %d heures
+ "mainten."
+
+ - %d m
+ - %d m
+
+
+ - %d h
+ - %d h
+
+
+ - %d j
+ - %d j
+
+
+ - %d a
+ - %d a
+
+
+ - dans %d m
+ - dans %d m
+
+
+ - dans %d h
+ - dans %d h
+
+
+ - dans %d j
+ - dans %d j
+
+
+ - dans %d a
+ - dans %d a
+
+
+ - il y a %d minute
+ - il y a %d minutes
+
+
+ - il y a %d heure
+ - il y a %d heures
+
+
+ - il y a %d jour
+ - il y a %d jours
+
+
+ - il y a %d an
+ - il y a %d ans
+
+
+ - dans %d minute
+ - dans %d minutes
+
+
+ - dans %d heure
+ - dans %d heures
+
+
+ - dans %d jour
+ - dans %d jours
+
+
+ - dans %d an
+ - dans %d ans
+
"Problème vidéo"
"Impossible de lire cette vidéo en streaming sur cet appareil."
"Impossible de lire la vidéo."
@@ -884,7 +956,7 @@
"Il est possible que certaines fonctionnalités du système ne soient pas opérationnelles."
"Espace de stockage insuffisant pour le système. Assurez-vous de disposer de 250 Mo d\'espace libre, puis redémarrez."
"%1$s en cours d\'exécution"
- "Appuyez ici pour en savoir plus ou arrêter l\'application."
+ "Appuyez ici pour en savoir plus ou pour arrêter l\'application."
"OK"
"Annuler"
"OK"
@@ -895,14 +967,25 @@
"NON"
"Continuer avec"
"Terminer l\'action avec %1$s"
+ "Terminer l\'action"
"Ouvrir avec"
"Ouvrir avec %1$s"
+ "Ouvrir"
"Modifier avec"
"Modifier avec %1$s"
+ "Modifier"
"Partager avec"
"Partager avec %1$s"
+ "Partager"
+ "Envoyer avec"
+ "Envoyer avec %1$s"
+ "Envoyer"
"Sélectionner une application de l\'écran d\'accueil"
"Utiliser %1$s comme écran d\'accueil"
+ "Capturer une image"
+ "Capturer une image avec"
+ "Capturer une image avec %1$s"
+ "Capturer une image"
"Utiliser cette application par défaut pour cette action"
"Utiliser une autre application"
"Pour supprimer les valeurs par défaut, accédez à Paramètres système > Applications > Téléchargements."
@@ -911,13 +994,12 @@
"Aucune application ne peut effectuer cette action."
"%1$s a cessé de fonctionner."
"Le processus %1$s a cessé de fonctionner."
- "%1$s ne cesse de s\'arrêter."
+ "%1$s s\'arrête systématiquement"
"Le processus \"%1$s\" ne cesse de s\'arrêter."
- "Redémarrer l\'application"
- "Réinitialiser et redémarrer l\'application"
+ "Rouvrir l\'application"
"Envoyer des commentaires"
"Fermer"
- "Ignorer"
+ "Ignorer jusqu\'au redémarrage de l\'appareil"
"Attendre"
"Fermer l\'application"
@@ -935,17 +1017,22 @@
"Mise à l\'échelle"
"Toujours afficher"
"Réactivez ce mode en accédant à Paramètres système > Applications > Téléchargements"
+ "%1$s n\'est pas compatible avec le paramètre de taille d\'affichage actuel et peut présenter un comportement inattendu."
+ "Toujours afficher"
"L\'application %1$s (du processus %2$s) a enfreint ses propres règles du mode strict."
"Le processus %1$s a enfreint ses propres règles du mode strict."
"Mise à jour d\'Android…"
"Démarrage d\'Android en cours"
"Optimisation du stockage en cours…"
+ "Finalisation de la mise à jour Android…"
+ "Certaines applications peuvent ne pas fonctionner correctement jusqu\'à ce que la mise à jour soit terminée."
+ "Mise à jour de l\'application %1$s…"
"Optimisation de l\'application %1$d sur %2$d…"
"Préparation de %1$s en cours…"
"Lancement des applications…"
"Finalisation de la mise à jour."
"%1$s en cours d\'exécution"
- "Appuyez ici pour changer d\'application."
+ "Appuyez ici pour changer d\'application."
"Changer d\'application ?"
"Une autre application est déjà en cours d\'exécution. Arrêtez-la avant d\'en lancer une nouvelle."
"Revenir à %1$s"
@@ -953,7 +1040,7 @@
"Démarrer %1$s"
"Arrêtez l\'ancienne application sans enregistrer."
"Le processus \"%1$s\" a dépassé la limite de mémoire"
- "Une empreinte de la mémoire a bien été générée. Appuyez pour partager."
+ "Une empreinte de la mémoire a bien été générée. Appuyez pour partager."
"Partager l\'empreinte de la mémoire ?"
"Le processus \"%1$s\" a dépassé sa limite de mémoire fixée à %2$s. Une empreinte de la mémoire est disponible pour que vous la communiquiez à son développeur. Attention : celle-ci peut contenir des informations personnelles auxquelles l\'application a accès."
"Sélectionner une action pour le texte"
@@ -989,7 +1076,18 @@
"Le réseau Wi-Fi ne dispose d\'aucun accès à Internet."
- "Appuyez ici pour afficher les options."
+ "Appuyez ici pour afficher des options."
+ "Nouveau réseau : %1$s"
+ "L\'appareil utilise %1$s lorsque %2$s n\'a pas de connexion Internet. Des frais supplémentaires peuvent s\'appliquer."
+ "Ancien réseau : %1$s. Nouveau réseau : %2$s"
+
+ - "données mobiles"
+ - "Wi-Fi"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "type de réseau inconnu"
"Impossible de se connecter au Wi-Fi."
" dispose d\'une mauvaise connexion Internet."
"Autoriser la connexion ?"
@@ -999,7 +1097,7 @@
"Lancer le Wi-Fi Direct. Cela désactive le fonctionnement du Wi-Fi client ou via un point d\'accès."
"Impossible d\'activer le Wi-Fi Direct."
"Wi-Fi Direct activé"
- "Appuyez pour accéder aux paramètres."
+ "Appuyez ici pour accéder aux paramètres."
"Accepter"
"Refuser"
"Invitation envoyée"
@@ -1045,37 +1143,36 @@
"Aucune autorisation requise"
"Cela peut engendrer des frais"
"OK"
- "Recharge par USB"
+ "Recharge via USB de cet appareil…"
+ "Alimentation via USB de l\'appareil connecté…"
"USB pour le transfert de fichiers"
"USB pour le transfert de photos"
"USB en mode MIDI"
"Connecté à un accessoire USB"
- "Appuyez pour afficher plus d\'options"
+ "Appuyez ici pour plus d\'options."
"Débogage USB activé"
- "Appuyez pour désact. débogage USB"
- "Partager le rapport de bug avec l\'administrateur ?"
- "Votre administrateur informatique a demandé un rapport de bug pour l\'aider à résoudre le problème."
- "ACCEPTER"
- "REFUSER"
- "Création du rapport de bug…"
- "Appuyer pour annuler"
+ "Appuyez ici pour désactiver le débogage USB."
+ "Création du rapport de bug…"
+ "Partager le rapport de bug ?"
+ "Partage du rapport de bug…"
+ "Votre administrateur informatique a demandé un rapport de bug pour l\'aider à résoudre le problème lié à cet appareil. Il est possible que des applications et des données soient partagées."
+ "PARTAGER"
+ "REFUSER"
"Changer de clavier"
- "Sélectionner des claviers"
"Afficher lorsque le clavier physique est activé"
"Afficher le clavier virtuel"
- "Sélectionnez la disposition du clavier"
- "Appuyez ici pour sélectionner une disposition de clavier."
+ "Configurer le clavier physique"
+ "Appuyer pour sélectionner la langue et la disposition"
" ABCDEFGHIJKLMNOPQRSTUVWXYZ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "candidats"
"Préparation mémoire \"%s\" en cours"
"Recherche d\'erreurs"
"Une nouvelle mémoire de stockage \"%s\" a été détectée."
"Pour transférer photos et fichiers"
"Mémoire de stockage \"%s\" corrompue"
- "La mémoire de stockage \"%s\" est corrompue. Appuyez ici pour la réparer."
+ "La mémoire de stockage \"%s\" est corrompue. Appuyez ici pour la réparer."
"%s non compatible"
- "Cet appareil n\'est pas compatible avec la mémoire de stockage \"%s\". Appuyez ici pour le configurer dans un format accepté."
+ "Cet appareil n\'est pas compatible avec la mémoire de stockage \"%s\". Appuyez ici pour le configurer dans un format accepté."
"Retrait inattendu de mémoire \"%s\""
"Désinstallez la mémoire de stockage \"%s\" avant de la retirer pour éviter toute perte de données."
"Mémoire de stockage \"%s\" retirée"
@@ -1111,7 +1208,7 @@
"Permet à une application d\'accéder aux sessions d\'installation. Cela lui permet de consulter les détails relatifs à l\'installation des packages actifs."
"demander l\'installation de packages"
"Permet à une application de demander l\'installation de packages."
- "Appuyez deux fois pour régler le zoom."
+ "Appuyer deux fois pour régler le zoom"
"Impossible d\'ajouter le widget."
"OK"
"Rechercher"
@@ -1137,24 +1234,26 @@
"Fond d\'écran"
"Changer de fond d\'écran"
"Outil d\'écoute des notifications"
+ "Écouteur de réalité virtuelle"
"Fournisseur de conditions"
- "Assistant de notifications"
+ "Service de classement des notifications"
"VPN activé"
"VPN activé par %s"
- "Appuyez ici pour gérer le réseau."
- "Connecté à %s. Appuyez ici pour gérer le réseau."
+ "Appuyez ici pour gérer le réseau."
+ "Connecté à %s. Appuyez ici pour gérer le réseau."
"VPN permanent en cours de connexion…"
"VPN permanent connecté"
+ "VPN permanent déconnecté"
"Erreur du VPN permanent"
- "Appuyer pour configurer"
+ "Appuyer pour configurer"
"Sélectionner un fichier"
"Aucun fichier sélectionné"
"Réinitialiser"
"Envoyer"
"Mode Voiture activé"
- "Appuyez ici pour quitter le mode Voiture."
+ "Appuyez ici pour quitter le mode Voiture."
"Partage de connexion ou point d\'accès sans fil activé"
- "Appuyez pour configurer."
+ "Appuyez ici pour configurer."
"Retour"
"Suivant"
"Ignorer"
@@ -1187,7 +1286,7 @@
"Ajouter un compte"
"Augmenter"
"Diminuer"
- "%s appuyez de manière prolongée."
+ "%s appuyez de manière prolongée."
"Faites glisser vers le haut pour augmenter et vers le bas pour diminuer."
"Minute suivante"
"Minute précédente"
@@ -1223,15 +1322,15 @@
"Plus d\'options"
"%1$s, %2$s"
"%1$s, %2$s, %3$s"
- "Mémoire de stockage interne"
+ "Espace de stockage interne partagé"
"Carte SD"
"Carte SD %s"
"Clé USB"
"Clé USB %s"
"Mémoire de stockage USB"
"Modifier"
- "Avertissement utilisation données"
- "Appuyez pour conso/paramètres"
+ "Alerte de consommation des données"
+ "Appuyez pour conso/paramètres."
"Limite de données 2G-3G atteinte"
"Limite de données 4G atteinte"
"Limite données mobiles atteinte"
@@ -1243,7 +1342,7 @@
"Quota de données Wi-Fi dépassé"
"%s au-delà de la limite spécifiée."
"Données en arrière-plan limitées"
- "Appuyez pour suppr. restriction."
+ "Appuyez pour suppr. restriction."
"Certificat de sécurité"
"Ce certificat est valide."
"Délivré à :"
@@ -1459,20 +1558,20 @@
"Sélectionner une année"
"\"%1$s\" supprimé"
"%1$s (travail)"
- "Pour annuler l\'épinglage, appuyez de manière prolongée et simultanée sur \"Retour\" et \"Aperçu\"."
- "Pour annuler l\'épinglage, appuyez de manière prolongée sur \"Aperçu\"."
+ "Pour annuler l\'épinglage, appuyez de manière prolongée sur \"Retour\"."
"L\'application est épinglée. L\'annulation de l\'épinglage n\'est pas autorisée sur cet appareil."
"Écran épinglé."
"Épinglage d\'écran annulé."
"Demander le code PIN avant d\'annuler l\'épinglage"
"Demander le schéma de déverrouillage avant d\'annuler l\'épinglage"
"Demander le mot de passe avant d\'annuler l\'épinglage"
- "Il est impossible de redimensionner l\'application. Faites-la défiler avec deux doigts."
- "Application incompatible avec l\'écran partagé."
"Installé par votre administrateur"
"Mis à jour par votre administrateur"
"Supprimé par votre administrateur"
"Pour améliorer l\'autonomie de la batterie, l\'économiseur de batterie réduit les performances et désactive le vibreur, les services de localisation et la plupart des données en arrière-plan. Les messageries électroniques ou autres applications utilisant la synchronisation pourraient ne pas se mettre à jour, sauf si vous les ouvrez.\n\nL\'économiseur de batterie s\'éteint automatiquement lorsque l\'appareil est en charge."
+ "Pour réduire la consommation des données, l\'économiseur de données empêche certaines applications d\'envoyer ou de recevoir des données en arrière-plan. Ainsi, une application que vous utilisez actuellement peut accéder à des données, mais moins souvent. Par exemple, il se peut que les images ne s\'affichent pas tant que vous n\'appuyez pas dessus."
+ "Activer l\'économiseur de données ?"
+ "Activer"
- Pendant %1$d minute (jusqu\'à %2$s)
- Pendant %1$d minutes (jusqu\'à %2$s)
@@ -1526,6 +1625,8 @@
"La requête SS a été remplacée par une requête USSD."
"La requête SS a été remplacée par une autre requête SS."
"Profil professionnel"
+ "Bouton \"Développer\""
+ "activer/désactiver le développement"
"Port du périphérique USB Android"
"Android"
"Port du périphérique USB"
@@ -1533,34 +1634,48 @@
"Fermer la barre d\'outils en superposition"
"Agrandir"
"Fermer"
+ "%1$s : %2$s"
- %1$d élément sélectionné
- %1$d éléments sélectionnés
- "Divers"
- "Vous définissez l\'importance de ces notifications."
+ "Vous définissez l\'importance de ces notifications."
"Ces notifications sont importantes en raison des participants."
"Autoriser %1$s à créer un profil utilisateur avec le compte %2$s ?"
"Autoriser %1$s à créer un profil utilisateur avec le compte %2$s (un utilisateur associé à ce compte existe déjà) ?"
- "Préférences linguistiques"
+ "Ajouter une langue"
"Préférences régionales"
"Saisissez la langue"
"Recommandations"
"Toutes les langues"
+ "Toutes les régions"
"Rechercher"
"Mode professionnel DÉSACTIVÉ"
"Autoriser le fonctionnement du profil professionnel, y compris les applications, la synchronisation en arrière-plan et les fonctionnalités associées."
"Activer"
- "%1$s désactivé"
- "Désactivé par l\'administrateur %1$s. Contactez-le pour en savoir plus."
"Vous avez de nouveaux messages"
"Ouvrir l\'application de SMS pour afficher le message"
- "Certaines fonctions potentiellement non dispos"
- "Appuyer pour continuer"
- "Profil utilisateur verrouillé"
+ "Des fonctionnalités peuvent être limitées"
+ "Appuyer pour déverrouiller"
+ "Infos sur utilis. verrouillées"
+ "Profil professionnel verrouillé"
+ "App. pour déver. profil profes."
"Connecté à %1$s"
"Appuyez ici pour voir les fichiers."
"Épingler"
"Retirer"
"Infos sur l\'appli"
+ "− %1$s"
+ "Réinitialiser l\'appareil ?"
+ "Appuyer pour réinitialiser l\'appareil"
+ "Lancement de la démo…"
+ "Réinitialisation…"
+ "Réinitialiser l\'appareil ?"
+ "Vous perdrez vos modifications, et la démo recommencera dans %1$s secondes…"
+ "Annuler"
+ "Réinitialiser maintenant"
+ "Rétablir la configuration d\'usine pour utiliser cet appareil sans restrictions"
+ "Appuyez ici pour en savoir plus."
+ "Élément \"%1$s\" désactivé"
+ "Conférence téléphonique"
diff --git a/core/res/res/values-hy-rAM/strings.xml b/core/res/res/values-hy-rAM/strings.xml
index dfdabaa97093e..572d716a47610 100644
--- a/core/res/res/values-hy-rAM/strings.xml
+++ b/core/res/res/values-hy-rAM/strings.xml
@@ -21,10 +21,10 @@
"Բ"
- "ԿԲ"
+ "կԲ"
"ՄԲ"
"ԳԲ"
- "Տբ"
+ "ՏԲ"
"Պբ"
"%1$s %2$s"
"%1$d օր"
@@ -88,7 +88,6 @@
"Զանգողի ID-ն լռելյայն չսահմանափակված է: Հաջորդ զանգը` չսահմանափակված"
"Ծառայությունը չի տրամադրվում:"
"Դուք չեք կարող փոխել զանգողի ID-ի կարգավորումները:"
- "Սահմանափակված մուտքը փոխված է"
"Տվյալների ծառայությունն արգելափակված է:"
"Արտակարգ իրավիճակի ծառայությունն արգելափակված է:"
"Ձայնային ծառայությունը արգելափակված է:"
@@ -125,11 +124,15 @@
"Ծառայության որոնում..."
"Զանգեր Wi-Fi-ի միջոցով"
+ - "Wi-Fi-ի միջոցով զանգեր կատարելու և հաղորդագրություններ ուղարկելու համար նախ դիմեք ձեր օպերատորին՝ ծառայությունը կարգավորելու համար: Ապա նորից միացրեք Wi-Fi զանգերը Կարգավորումներում:"
+ - "Գրանցվեք օպերատորի մոտ"
+
+
+ - "%s"
+ - "%s Wi-Fi զանգեր"
- "%s"
- "%s"
"Անջատված է"
"Wi-Fi, նախընտրելի"
"Բջջային, նախընտրելի"
@@ -161,11 +164,14 @@
"Համաժամեցնել"
"Համաժամել"
"Չափից շատ %s հեռացումներ:"
- "Գրասալիկի պահոցը լիքն է: Ջնջեք մի քանի ֆայլ` տարածք ազատելու համար:"
+ "Պլանշետի պահոցը լիքն է: Ջնջեք մի քանի ֆայլ` տարածք ազատելու համար:"
"Ժամացույցի ֆայլերի պահեստը լիքն է: Ջնջեք որոշ ֆայլեր՝ տարածք ազատելու համար:"
"Հեռուստացույցի պահեստը լիքն է: Ջնջեք որոշ ֆայլեր՝ տեղ ազատելու համար:"
"Հեռախոսի պահոցը լիքն է: Ջնջեք մի քանի ֆայլեր` տարածություն ազատելու համար:"
- "Ցանցը կարող է վերահսկվել"
+
+ - Տեղադրված են սերտիֆիկացման կենտրոնի վկայականներ
+ - Տեղադրված են սերտիֆիկացման կենտրոնի վկայականներ
+
"Անհայտ երրորդ կողմի կողմից"
"Ձեր աշխատանքային պրոֆիլի ադմինիստրատորի կողմից"
"%s-ի կողմից"
@@ -176,7 +182,7 @@
"Ձեր սարքը ջնջվելու է"
"Ադմինիստրատորի հավելվածում բացակայում են բաղադրիչներ կամ այն վնասված է և չի կարող օգտագործվել: Ձեր սարքն այժմ ջնջվելու է: Օգնություն համար դիմեք ձեր ադմինիստրատորին:"
"Իմ"
- "Գրասալիկի ընտրանքները"
+ "Պլանշետի ընտրանքները"
"Հեռուստացույցի ընտրանքներ"
"Հեռախոսի ընտրանքներ"
"Անձայն ռեժիմ"
@@ -194,7 +200,7 @@
"Գործարանային տվյալների վերականգնում"
"Վերագործարկվում է…"
"Անջատվում է…"
- "Ձեր գրասալիկը կանջատվի:"
+ "Ձեր պլանշետը կանջատվի:"
"Հեռուստացույցը կանջատվի:"
"Ձեր ժամացույցը կանջատվի:"
"Ձեր հեռախոսը կանջատվի:"
@@ -203,18 +209,19 @@
"Ցանկանու՞մ եք վերաբեռնել անվտանգ ռեժիմի: Սա կկասեցնի ձեր տեղադրած բոլոր կողմնակի ծրագրերը: Դրանք կվերականգնվեն, երբ դուք կրկին վերաբեռնեք:"
"Վերջին"
"Նոր հավելվածեր չկան:"
- "Գրասալիկի ընտրանքները"
+ "Պլանշետի ընտրանքները"
"Հեռուստացույցի ընտրանքներ"
"Հեռախոսի ընտրանքներ"
"Էկրանի փական"
"Անջատել"
+ "Շտապ կանչ"
"Վրիպակի զեկույց"
"Գրել սխալի զեկույց"
"Սա տեղեկություններ կհավաքագրի ձեր սարքի առկա կարգավիճակի մասին և կուղարկի այն էլեկտրոնային նամակով: Որոշակի ժամանակ կպահանջվի վրիպակի մասին զեկուցելու պահից սկսած մինչ ուղարկելը: Խնդրում ենք փոքր-ինչ համբերատար լինել:"
"Ինտերակտիվ զեկույց"
- "Հիմնականում օգտագործեք այս տարբերակը: Այն ձեզ թույլ է տալիս հետագծել զեկույցի ստեղծման գործընթացը և խնդրի մասին լրացուցիչ տեղեկություններ մուտքագրել: Կարող է բաց թողնել որոշ քիչ օգտագործվող բաժինները, որոնց ստեղծումը երկար է տևում:"
+ "Հիմնականում օգտագործեք այս տարբերակը: Այն ձեզ թույլ է տալիս հետևել զեկույցի ստեղծման գործընթացին, խնդրի մասին լրացուցիչ տեղեկություններ մուտքագրել և էկրանի պատկերներ կորզել: Կարող է բաց թողնել քիչ օգտագործվող որոշ բաժինները, որոնց ստեղծումը երկար է տևում:"
"Ամբողջական զեկույց"
- "Օգտագործեք այս տարբերակը համակարգի միջամտությունը նվազեցնելու համար՝ երբ սարքը չի արձագանքում կամ շատ դանդաղ է աշխատում, կամ երբ ձեզ հարկավոր են զեկույցի բոլոր բաժինները: Էկրանի պատկեր չի լուսանկարում և ձեզ թույլ չի տալիս լրացուցիչ տվյալներ մուտքագրել:"
+ "Օգտագործեք այս տարբերակը համակարգի միջամտությունը նվազեցնելու համար՝ երբ սարքը չի արձագանքում կամ շատ դանդաղ է աշխատում, կամ երբ ձեզ հարկավոր են զեկույցի բոլոր բաժինները: Թույլ չի տալիս լրացուցիչ տվյալներ մուտքագրել կամ էկրանի լրացուցիչ պատկերներ ստանալ:"
- Վրիպակի զեկույցի համար էկրանի պատկերի լուսանկարումը կատարվելու է %d վայրկյանից:
- Վրիպակի զեկույցի համար էկրանի պատկերի լուսանկարումը կատարվելու է %d վայրկյանից:
@@ -222,43 +229,42 @@
"Անձայն ռեժիմ"
"Ձայնը անջատված է"
"Ձայնը միացված է"
- "Ինքնաթիռային ռեժիմ"
- "Ինքնաթիռային ռեժիմը միացված է"
- "Ինքնաթիռային ռեժիմը անջատված է"
+ "Ինքնաթիռի ռեժիմ"
+ "Ինքնաթիռի ռեժիմը միացված է"
+ "Ինքնաթիռի ռեժիմը անջատված է"
"Կարգավորումներ"
"Օգնական"
"Ձայնային օգնութ"
"Կողպել հիմա"
"999+"
- "(%d)"
"Բովանդակությունը թաքցված է"
"Բովանդակությունը թաքցվել է ըստ քաղաքականության"
"Անվտանգ ռեժիմ"
"Android համակարգ"
- "Անձնական"
- "Աշխատանքային"
+ "Անցնել անհատական պրոֆիլին"
+ "Անցնել աշխատանքային պրոֆիլին"
"Կոնտակտներ"
- "կոնտակտների հասանելիություն"
+ "օգտագործել ձեր կոնտակտները"
"Տեղադրություն"
"օգտագործել այս սարքի տեղադրությունը"
"Օրացույց"
- "օրացույցի հասանելիություն"
+ "օգտագործել օրացույցը"
"Կարճ հաղորդագրություն"
- "ուղարկել և դիտել SMS հաղորդագրությունները"
+ "ուղարկել և դիտել SMS-ները"
"Պահոց"
- "օգտագործել լուսանկարները, մեդիա ֆայլերը և ձեր սարքում պահվող այլ ֆայլերը"
+ "օգտագործել լուսանկարները, մեդիա ֆայլերը և ձեր սարքում պահվող մյուս ֆայլերը"
"Բարձրախոս"
- "ձայնագրում"
+ "ձայնագրել"
"Ֆոտոխցիկ"
- "լուսանկարում և տեսագրում"
+ "լուսանկարել և տեսագրել"
"Հեռախոս"
- "հեռախոսազանգերի կատարում և կառավարում"
+ "կատարել զանգեր և կառավարել զանգերը"
"Մարմնի սենսորներ"
- "օգտագործել ձեր հիմնական ֆիզիոլոգիական ցուցանիշների վերաբերյալ սենսորի տվյալները"
+ "օգտագործել սենսորների տվյալները ձեր օրգանիզմի վիճակի մասին"
"Առբերել պատուհանի բովանդակությունը"
"Ստուգեք պատուհանի բովանդակությունը, որի հետ փոխգործակցում եք:"
"Միացնել Հպման միջոցով հետազոտումը"
- "Տարրերը, որոնց հպեք, բարձրաձայն կխոսեն, և էկրանը հնարավոր կլինի ուսումնասիրել ժեստերով:"
+ "Ուսումնաիրեք էկրանը այն շոշափելով։ Այս կամ այն տարրին հպելուց հետո դրանք բարձրաձայն կնկարագրվեն։"
"Միացնել ընդլայնված վեբ մատչելիությունը"
"Հնարավոր է սկրիպտներ տեղադրվեն` ծրագրի բովանդակությունն ավելի մատչելի դարձնելու համար:"
"Զննել ձեր մուտքագրած տեքստը"
@@ -290,7 +296,7 @@
"SMS հաղորդագրությունների ուղարկում և ընթերցում"
"Թույլ է տալիս հավելվածին ուղարկել SMS հաղորդագրություններ: Այն կարող է անսպասելի ծախսերի պատճառ դառնալ: Վնասարար հավելվածները կարող են ձեր հաշվից գումար ծախսել` ուղարկելով հաղորդագրություններ` առանց ձեր հաստատման:"
"կարդալ ձեր տեքստային հաղորդագրությունները (SMS կամ MMS)"
- "Թույլ է տալիս հավելվածին կարդալ ձեր գրասալիկում կամ SIM քարտում պահված SMS հաղորդագրությունները: Սա թույլ է տալիս հավելվածին կարդալ բոլոր SMS հաղորդագրությունները` անկախ բովանդակությունից կամ գաղտնիությունից:"
+ "Թույլ է տալիս հավելվածին կարդալ ձեր պլանշետում կամ SIM քարտում պահված SMS հաղորդագրությունները: Սա թույլ է տալիս հավելվածին կարդալ բոլոր SMS հաղորդագրությունները` անկախ բովանդակությունից կամ գաղտնիությունից:"
"Թույլ է տալիս հավելվածին կարդալ հեռուստացույցում կամ SIM քարտի վրա պահված SMS հաղորդագրությունները: Սա թույլ է տալիս հավելվածին կարդալ բոլոր SMS հաղորդագրությունները՝ անկախ բովանդակությունից կամ գաղտնիության աստիճանից:"
"Թույլ է տալիս հավելվածին կարդալ ձեր հեռախոսում կամ SIM քարտում պահված SMS հաղորդագրությունները: Սա թույլ է տալիս հավելվածին կարդալ բոլոր SMS հաղորդագրությունները` անկախ բովանդակությունից կամ գաղտնիությունից:"
"ստանալ տեքստային հաղորդագրություններ (WAP)"
@@ -308,7 +314,7 @@
"անցնել այլ ծրագրերի վրայով"
"Թույլ է տալիս հավելվածին երևալ այլ հավելվածների վերևում կամ օգտվողի ինտերֆեյսի մասերում: Դրանք կարող են խոչընդոտել ձեր ինտերֆեյսի օգտագործմանը ցանկացած հավելվածում կամ փոխել այն, ինչը կարծում եք, որ տեսնում եք այլ հավելվածներում:"
"միշտ աշխատեցնել հավելվածը"
- "Թույլ է տալիս հավելվածին մնայուն դարձնել իր մասերը հիշողության մեջ: Սա կարող է սահմանափակել այլ հավելվածներին հասանելի հիշողությունը` դանդաղեցնելով գրասալիկի աշխատանքը:"
+ "Թույլ է տալիս հավելվածին մնայուն դարձնել իր մասերը հիշողության մեջ: Սա կարող է սահմանափակել այլ հավելվածներին հասանելի հիշողությունը` դանդաղեցնելով պլանշետի աշխատանքը:"
"Թույլ է տալիս հավելվածին պահել իր տարրերը հիշողության մեջ: Սա կարող է սահմանափակել այլ հավելվածների համար հատկացված հիշողությունը և դանդաղեցնել հեռուստացույցի աշխատանքը:"
"Թույլ է տալիս հավելվածին մնայուն դարձնել իր մասերը հիշողության մեջ: Սա կարող է սահմանափակել այլ հավելվածներին հասանելի հիշողությունը` դանդաղեցնելով հեռախոսի աշխատանքը:"
"չափել հավելվածի պահոցի տարածքը"
@@ -316,37 +322,37 @@
"փոփոխել համակարգի կարգավորումները"
"Թույլ է տալիս հավելվածին փոփոխել համակարգի կարգավորումների տվյալները: Վնասարար հավելվածները կարող են վնասել ձեր համակարգի կարգավորումները:"
"աշխատել մեկնարկային ռեժիմով"
- "Թույլ է տալիս հավելվածին ինքնաշխատ մեկնարկել համակարգի բեռնման ավարտից հետո: Սա կարող է երկարացնել գրասալիկի մեկնարկը և թույլ տալ հավելավածին դանդաղեցնել ամբողջ գրասալիկի աշխատանքը` միշտ աշխատելով:"
- "Թույլ է տալիս հավելվածին ինքնամեկնարկել համակարգի սկզբնաբեռնումից հետո: Սա կարող է երկարացնել հեռուստացույցի մեկնարկը և թույլ է տալիս հավելվածին դանդաղեցնել ողջ գրասալիկի աշխատանքը՝ իր մշտական աշխատանքով:"
+ "Թույլ է տալիս հավելվածին ինքնաշխատ մեկնարկել համակարգի բեռնման ավարտից հետո: Սա կարող է երկարացնել պլանշետի մեկնարկը և թույլ տալ հավելավածին դանդաղեցնել ամբողջ պլանշետի աշխատանքը` միշտ աշխատելով:"
+ "Թույլ է տալիս հավելվածին ինքնամեկնարկել համակարգի սկզբնաբեռնումից հետո: Սա կարող է երկարացնել հեռուստացույցի մեկնարկը և թույլ է տալիս հավելվածին դանդաղեցնել ողջ պլանշետի աշխատանքը՝ իր մշտական աշխատանքով:"
"Թույլ է տալիս հավելվածին ինքն իրեն սկսել` համակարգի բեռնումն ավարտվելուն պես: Սա կարող է հեռախոսի մեկնարկը դարձնել ավելի երկար և թույլ տալ, որ հավելվածը դանդաղեցնի ընդհանուր հեռախոսի աշխատանքը` միշտ աշխատելով:"
"ուղարկել կպչուն հաղորդում"
- "Թույլ է տալիս հավելվածին ուղարկել կպչուն հաղորդումներ, որոնք մնում են հաղորդման ավարտից հետո: Չափազանց շատ օգտագործումը կարող է գրասալիկի աշխատանքը դանդաղեցնել կամ դարձնել անկայուն` պատճառ դառնալով չափազանց մեծ հիշողության օգտագործման:"
+ "Թույլ է տալիս հավելվածին ուղարկել կպչուն հաղորդումներ, որոնք մնում են հաղորդման ավարտից հետո: Չափազանց շատ օգտագործումը կարող է պլանշետի աշխատանքը դանդաղեցնել կամ դարձնել անկայուն` պատճառ դառնալով չափազանց մեծ հիշողության օգտագործման:"
"Թույլ է տալիս հավելվածին կատարել անընդմեջ հեռարձակումներ, որոնցից հետո տվյալները հասանելի են մնում: Չափից դուրս օգտագործումը կարող է դանդաղեցնել հեռուստացույցի աշխատանքը կամ դարձնել այն անկայուն՝ ավելացնելով հիշողության ծախսը:"
"Թույլ է տալիս հավելվածին ուղարկել կպչուն հաղորդումներ, որոնք մնում են հաղորդման ավարտից հետո: Չափազանց շատ օգտագործումը կարող է հեռախոսի աշխատանքը դանդաղեցնել կամ դարձնել անկայուն` պատճառ դառնալով չափազանց մեծ հիշողության օգտագործման:"
"կարդալ ձեր կոնտակտները"
- "Թույլ է տալիս հավելվածին կարդալ ձեր գրասալիկում պահված կոնտակտների մասին տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին պահել ձեր կոնտակտային տվյալները, իսկ վնասարար հավելվածները կարող են տարածել կոնտակտային տվյալները` առանց ձեր իմացության:"
+ "Թույլ է տալիս հավելվածին կարդալ ձեր պլանշետում պահված կոնտակտների մասին տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին պահել ձեր կոնտակտային տվյալները, իսկ վնասարար հավելվածները կարող են տարածել կոնտակտային տվյալները` առանց ձեր իմացության:"
"Թույլ է տալիս հավելվածին կարդալ հեռուստացույցում պահված կոնտակտների տվյալները, այդ թվում նաև՝ թե ինչ հաճախականությամբ եք զանգեր կատարել, օգտվել էլփոստից կամ այլ կերպ հաղորդակցվել որոշակի մարդկանց հետ: Այս թույլտվության միջոցով հավելվածները կարող են պահել ձեր կոնտակտների տվյալները, իսկ վնասարար հավելվածները կարող են համօգտագործել դրանք առանց ձեր իմացության:"
"Թույլ է տալիս հավելվածին կարդալ ձեր հեռախոսում պահված կոնտակտների մասին տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին պահել ձեր կոնտակտային տվյալները, իսկ վնասարար հավելվածները կարող են տարածել կոնտակտային տվյալները` առանց ձեր իմացության:"
"փոփոխել ձեր կոնտակտները"
- "Թույլ է տալիս հավելվածին փոփոխել ձեր գրասալիկում պահված կոնտակտների մասին տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին ջնջել կոնտակտային տվյալները:"
+ "Թույլ է տալիս հավելվածին փոփոխել ձեր պլանշետում պահված կոնտակտների մասին տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին ջնջել կոնտակտային տվյալները:"
"Թույլ է տալիս հավելվածին փոփոխել հեռուստացույցի մեջ պահված կոնտակտների տվյալները, այդ թվում նաև՝ թե ինչ հաճախականությամբ եք զանգեր կատարել, օգտվել էլփոստից կամ այլ կերպ հաղորդակցվել որոշակի մարդկանց հետ: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին ջնջել կոնտակտային տվյալները:"
- "Թույլ է տալիս հավելվածին փոփոխել ձեր գրասալիկում պահված կոնտակտների տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին ջնջել կոնտակտային տվյալները:"
+ "Թույլ է տալիս հավելվածին փոփոխել ձեր պլանշետում պահված կոնտակտների տվյալները, այդ թվում` ձեր կատարած զանգերի, գրած նամակների կամ որոշակի անհատների հետ այլ եղանակով շփման հաճախականությունը: Այս թույլտվությունը հնարավորություն է տալիս հավելվածներին ջնջել կոնտակտային տվյալները:"
"կարդալ զանգերի մատյանը"
- "Թույլ է տալիս հավելվածին կարդալ ձեր գրասալիկի զանգերի գրանցամատյանը, այդ թվում` մուտքային և ելքային զանգերի տվյալները: Սա թույլ է տալիս հավելվածին պահել ձեր զանգերի գրանցամատյանի տվյալները, և վնասարար հավելվածները կարող են տարածել դրանք` առանց ձեր իմացության:"
+ "Թույլ է տալիս հավելվածին կարդալ ձեր պլանշետի զանգերի գրանցամատյանը, այդ թվում` մուտքային և ելքային զանգերի տվյալները: Սա թույլ է տալիս հավելվածին պահել ձեր զանգերի գրանցամատյանի տվյալները, և վնասարար հավելվածները կարող են տարածել դրանք` առանց ձեր իմացության:"
"Թույլ է տալիս հավելվածին կարդալ հեռուստացույցի զանգերի մատյանը, այդ թվում նաև մուտքային և ելքային զանգերի տվյալները: Այս թույլտվության միջոցով հավելվածները կարող են պահել ձեր զանգերի մատյանի տվյալները, իսկ վնասարար հավելվածները կարող են համօգտագործել այդ տվյալները առանց ձեր իմացության:"
"Թույլ է տալիս հավելվածին կարդալ ձեր հեռախոսի զանգերի գրանցամատյանը, այդ թվում` մուտքային և ելքային զանգերի տվյալները: Թույլտվությունը հնարավորություն է տալիս հավելվածին պահպանել ձեր զանգերի գրանցամատյանի տվյալները, և վնասարար հավելվածները կարող են տարածել գրանցամատյանի տվյալներն առանց ձեր իմացության:"
"տեսնել զանգերի գրանցամատյանը"
- "Թույլ է տալիս հավելվածին փոփոխել ձեր գրասալիկի զանգերի մատյանը, այդ թվում` մուտքային և ելքային զանգերի մասին տվյալները: Վնասարար հավելվածները կարող են սա օգտագործել` ձեր զանգերի մատյանը ջնջելու կամ փոփոխելու համար:"
+ "Թույլ է տալիս հավելվածին փոփոխել ձեր պլանշետի զանգերի մատյանը, այդ թվում` մուտքային և ելքային զանգերի մասին տվյալները: Վնասարար հավելվածները կարող են սա օգտագործել` ձեր զանգերի մատյանը ջնջելու կամ փոփոխելու համար:"
"Թույլ է տալիս հավելվածին փոփոխել հեռուստացույցի զանգերի մատյանը, այդ թվում` մուտքային և ելքային զանգերի մասին տվյալները: Վնասարար հավելվածները կարող են սա օգտագործել` ձեր զանգերի մատյանը ջնջելու կամ փոփոխելու համար:"
"Թույլ է տալիս հավելվածին փոփոխել ձեր հեռախոսի զանգերի մատյանը, այդ թվում` մուտքային և ելքային զանգերի մասին տվյալները: Վնասարար հավելվածները կարող են սա օգտագործել` ձեր զանգերի մատյանը ջնջելու կամ փոփոխելու համար:"
"օգտագործել մարմնի սենսորները (օրինակ` սրտի կծկումների հաճախականության չափիչ)"
"Հավելվածին թույլ է տալիս մուտք ունենալ սենսորների տվյալներին, որոնք վերահսկում են ձեր ֆիզիկական վիճակը, օրինակ՝ ձեր սրտի զարկերը:"
"կարդալ օրացուցային իրադարձությունները և գաղտնի տեղեկությունները"
- "Թույլ է տալիս հավելվածին կարդալ ձեր գրասալիկում պահված բոլոր օրացուցային իրադարձությունները, այդ թվում` ընկերների կամ գործընկերների: Սա կարող է թույլ տալ հավելվածին տարածել կամ պահել ձեր օրացուցային տվյալները` անկախ գաղտնիությունից կամ զգայունությունից:"
+ "Թույլ է տալիս հավելվածին կարդալ ձեր պլանշետում պահված բոլոր օրացուցային իրադարձությունները, այդ թվում` ընկերների կամ գործընկերների: Սա կարող է թույլ տալ հավելվածին տարածել կամ պահել ձեր օրացուցային տվյալները` անկախ գաղտնիությունից կամ զգայունությունից:"
"Թույլ է տալիս հավելվածին կարդալ հեռուստացույցի օրացույցում պահված բոլոր իրադարձությունները, այդ թվում նաև ընկերների կամ գործընկերների հետ կապված իրադարձությունները: Սա կարող է թույլ տալ հավելվածին համօգտագործել կամ պահել ձեր օրացույցի տվյալները՝ անկախ նրանց գաղտնիության կամ կարևորության աստիճանից:"
"Թույլ է տալիս հավելվածին կարդալ ձեր հեռախոսում պահված բոլոր օրացուցային իրադարձությունները, այդ թվում` ընկերների կամ գործընկերների: Սա կարող է թույլ տալ հավելվածին տարածել կամ պահել ձեր օրացուցային տվյալները` անկախ գաղտնիությունից կամ զգայունությունից:"
"ավելացնել կամ փոփոխել օրացուցային իրադարձությունները և ուղարկել նամակ հյուրերին` առանց սեփականատերերի իմացության"
- "Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոխել իրադարձություններ, որոնք դուք կարող եք փոփոխել ձեր գրասալիկում, այդ թվում ընկերների կամ աշխատակիցների իրադարձությունները: Սա կարող է թույլ տալ հավելվածին ուղարկել հաղորդագրություններ, որոնք երևում են որպես օրացույցի սեփականատերերից ուղարկված, կամ փոփոխել իրադարձություններն առանց սեփականատերերի իմացության:"
+ "Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոխել իրադարձություններ, որոնք դուք կարող եք փոփոխել ձեր պլանշետում, այդ թվում ընկերների կամ աշխատակիցների իրադարձությունները: Սա կարող է թույլ տալ հավելվածին ուղարկել հաղորդագրություններ, որոնք երևում են որպես օրացույցի սեփականատերերից ուղարկված, կամ փոփոխել իրադարձություններն առանց սեփականատերերի իմացության:"
"Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոփոխել իրադարձությունները, որոնք կարող եք փոփոխել ձեր հեռուստացույցի մեջ, այդ թվում` ընկերների կամ աշխատակիցների հետ կապված իրադարձությունները: Սա կարող է թույլատրել հավելվածին ուղարկել հաղորդագրություններ, որոնք հայտնվում են օրացույցի սեփականատերերից կամ փոփոխել իրադարձություններն` առանց սեփականատերերի իմացության:"
"Թույլ է տալիս հավելվածին ավելացնել, հեռացնել, փոխել այն իրադարձությունները, որոնք կարող եք փոփոխել ձեր հեռախոսից, այդ թվում` ընկերների կամ գործընկերների: Սա կարող է թույլ տալ հավելվածին ուղարկել հաղորդագրություններ, որոնք իբրև գալիս են օրացույցի սեփականատիրոջից, կամ փոփոխել իրադարձությունները` առանց սեփականատիրոջ իմացության:"
"օգտագործել տեղադրություն տրամադրող հավելվյալ հրամաններ"
@@ -371,14 +377,14 @@
"Թույլ է տալիս հավելվածին IMS ծառայության միջոցով կատարել զանգեր՝ առանց ձեր միջամտության:"
"կարդալ հեռախոսի կարգավիճակը և ինքնությունը"
"Թույլ է տալիս հավելվածին օգտագործել սարքի հեռախոսային գործիքները: Այս թույլտվությունը հավելվածին հնարավորություն է տալիս որոշել հեռախոսահամարը և սարքի ID-ները, արդյոք զանգը ակտիվ է և միացված զանգի հեռակա հեռախոսահամարը:"
- "զերծ պահել գրասալիկը քնելուց"
+ "զերծ պահել պլանշետը քնելուց"
"թույլ չտալ հեռուստացույցին մտնել քնի ռեժիմ"
"կանխել հեռախոսի քնի ռեժիմին անցնելը"
- "Թույլ է տալիս հավելվածին կանխել գրասալիկի` քնի ռեժիմին անցնելը:"
+ "Թույլ է տալիս հավելվածին կանխել պլանշետի` քնի ռեժիմին անցնելը:"
"Թույլ է տալիս հավելվածին կանխել, որ հեռուստացույցը մտնի քնի ռեժիմ:"
"Թույլ է տալիս հավելվածին կանխել հեռախոսի` քնի ռեժիմին անցնելը:"
"փոխանցել ինֆրակարմիր հաղորդիչով"
- "Հավելվածին թույլ է տալիս օգտագործել գրասալիկի ինֆրակարմիր հաղորդիչը:"
+ "Հավելվածին թույլ է տալիս օգտագործել պլանշետի ինֆրակարմիր հաղորդիչը:"
"Թույլ է տալիս հավելվածին օգտագործել հեռուստացույցի ինֆրակարմիր հաղորդիչը:"
"Հավելվածին թույլ է տալիս օգտագործել հեռախոսի ինֆրակարմիր հաղորդիչը:"
"դնել պաստառ"
@@ -386,11 +392,11 @@
"կարգաբերել ձեր պաստառի չափերը"
"Թույլ է տալիս հավելվածին տեղադրել համակարգի պաստառի չափի հուշումները:"
"կարգավորել ժամային գոտին"
- "Թույլ է տալիս հավելվածին փոխել գրասալիկի ժամային գոտին:"
+ "Թույլ է տալիս հավելվածին փոխել պլանշետի ժամային գոտին:"
"Թույլ է տալիս հավելվածին փոխել հեռուստացույցի ժամային գոտին:"
"Թույլ է տալիս հավելվածին փոխել հեռախոսի ժամային գոտին:"
"գտնել հաշիվներ սարքում"
- "Թույլ է տալիս հավելվածին ստանալ գրասալիկի կողմից ճանաչված հաշիվների ցանկը: Սա կարող է ներառել ցանկացած հաշիվ, որ ստեղծվել է ձեր տեղադրած հավելվածների կողմից:"
+ "Թույլ է տալիս հավելվածին ստանալ պլանշետի կողմից ճանաչված հաշիվների ցանկը: Սա կարող է ներառել ցանկացած հաշիվ, որ ստեղծվել է ձեր տեղադրած հավելվածների կողմից:"
"Թույլ է տալիս հավելվածին ստանալ հեռուստացույցի կողմից ճանաչված հաշիվների ցանկը: Այս ցանկի մեջ կարող են լինել նաև ձեր տեղադրած հավելվածների կողմից ստեղծված հաշիվները:"
"Թույլ է տալիս հավելվածին ստանալ հեռախոսի կողմից ճանաչված հաշիվների ցանկը: Սա կարող է ներառել ցանկացած հաշիվ, որ ստեղծվել է ձեր տեղադրած հավելվածների կողմից:"
"դիտել ցանցային միացումները"
@@ -406,21 +412,21 @@
"միանալ Wi-Fi-ին և անջատվել դրանից"
"Թույլ է տալիս հավելվածին միանալ Wi-Fi մուտքի կետերին և անջատվել այդ կետերից, ինչպես նաև կատարել սարքի կարգավորման փոփոխություններ Wi-Fi ցանցերի համար:"
"թույլատրել Բազմասփյուռ Wi-Fi-ի ընդունումը"
- "Թույլ է տալիս հավելվածին ստանալ Wi-Fi ցանցի բոլոր սարքերին ուղարկված փաթեթները` օգտագործելով ոչ միայն ձեր գրասալիկը, այլ նաև բազմասփյուռ հասցեները: Այն օգտագործում է ավելի շատ լիցք, քան ոչ բազմասփյուռ ռեժիմը:"
+ "Թույլ է տալիս հավելվածին ստանալ Wi-Fi ցանցի բոլոր սարքերին ուղարկված փաթեթները` օգտագործելով ոչ միայն ձեր պլանշետը, այլ նաև բազմասփյուռ հասցեները: Այն օգտագործում է ավելի շատ լիցք, քան ոչ բազմասփյուռ ռեժիմը:"
"Թույլ է տալիս հավելվածին փաթեթներ ուղարկել Wi-Fi ցանցի բոլոր սարքերին, այլ ոչ միայն հեռուստացույցին: Ավելի շատ հոսանք է ծախսում, քան սովորական ռեժիմում:"
"Թույլ է տալիս հավելվածին ստանալ Wi-Fi ցանցի բոլոր սարքերին ուղարկված փաթեթները` օգտագործելով ոչ միայն ձեր հեռախոսը, այլ նաև բազմասփյուռ հասցեները: Այն օգտագործում է ավելի շատ լիցք, քան ոչ բազմասփյուռ ռեժիմը:"
"մուտք գործել Bluetooth-ի կարգավորումներ"
- "Թույլ է տալիս հավելվածին կարգավորել տեղային Bluetooth գրասալիկը և հայտնաբերել ու զուգակցվել հեռակա սարքերի հետ:"
+ "Թույլ է տալիս հավելվածին կարգավորել տեղային Bluetooth պլանշետը և հայտնաբերել ու զուգակցվել հեռակա սարքերի հետ:"
"Թույլ է տալիս հավելվածին կազմաձևել տեղային Bluetooth-ը հեռուստացույցի վրա և հայտնաբերել ու զուգավորվել հեռակա սարքերի հետ:"
"Թույլ է տալիս հավելվածին կարգավորել տեղային Bluetooth հեռախոսը և հայտնաբերել ու զուգակցվել հեռակա սարքերի հետ:"
"միանալ WiMAX-ին և անջատվել դրանից"
"Թույլ է տալիս հավելվածին պարզել, արդյոք WiMAX-ը միացված է և ցանկացած միացված WiMAX ցանցի մասին տեղեկություններ:"
"փոխել WiMAX-ի կարգավիճակը"
- "Թույլ է տալիս հավելվածին գրասալիկը միացնել WiMAX ցանցին և անջատվել այդ ցանցից:"
+ "Թույլ է տալիս հավելվածին պլանշետը միացնել WiMAX ցանցին և անջատվել այդ ցանցից:"
"Թույլ է տալիս հավելվածին կապակցել հեռուստացույցը և ապակապակցել այն WiMAX ցանցերից:"
"Թույլ է տալիս հավելվածին հեռախոսը միացնել WiMAX ցանցին և անջատել այդ ցանցից:"
"զուգակցվել Bluetooth սարքերի հետ"
- "Թույլ է տալիս հավելվածին տեսնել Bluetooth-ի կարգավորումը գրասալիկի վրա և կապվել ու կապեր ընդունել զուգակցված սարքերի հետ:"
+ "Թույլ է տալիս հավելվածին տեսնել Bluetooth-ի կարգավորումը պլանշետի վրա և կապվել ու կապեր ընդունել զուգակցված սարքերի հետ:"
"Թույլ է տալիս հավելվածին տեսնել Bluetooth-ի կազմաձևումը հեռուստացույցի վրա և կապակցվել ու թույլ տալ կապակցումները զուգավորված սարքերի հետ:"
"Թույլ է տալիս հավելվածին տեսնել Bluetooth-ի կարգավորումը հեռախոսի վրա և կապվել ու կապեր ընդունել զուգակցված սարքերի հետ:"
"վերահսկել Մոտ Տարածությամբ Հաղորդակցումը"
@@ -511,10 +517,10 @@
"Սահմանել գաղտնաբառի կանոնները"
"Կառավարել էկրանի ապակողպման գաղտնաբառերի և PIN կոդերի թույլատրելի երկարությունն ու գրանշանները:"
"Վերահսկել էկրանի ապակողպման փորձերը"
- "Վերահսկել սխալ գաղտնաբառերի թիվը, որոնք մուտքագրվել են էկրանն ապակողպելիս, և կողպել գրասալիկը կամ ջնջել գրասալիկի բոլոր տվյալները, եթե մուտքագրվել են չափից շատ սխալ գաղտնաբառեր:"
+ "Վերահսկել սխալ գաղտնաբառերի թիվը, որոնք մուտքագրվել են էկրանն ապակողպելիս, և կողպել պլանշետը կամ ջնջել պլանշետի բոլոր տվյալները, եթե մուտքագրվել են չափից շատ սխալ գաղտնաբառեր:"
"Վերահսկել սխալ գաղտնաբառերի թիվը, որոնք մուտքագրվել են էկրանը ապակողպելիս, և կողպել հեռուստացույցը կամ ջնջել բոլոր տվյալները, եթե չափից ավելի սխալ գաղտնաբառեր են մուտքագրվել:"
"Վերահսկել սխալ գաղտնաբառերի թիվը, որոնք մուտքագրվել են էկրանն ապակողպելիս, և կողպել հեռախոսը կամ ջնջել հեռախոսի բոլոր տվյալները, եթե մուտքագրվել են չափից շատ սխալ գաղտնաբառեր:"
- "Կառավարել էկրանն ապակողպելիս մուտքագրվող սխալ գաղտնաբառերի թիվը և կողպել գրասալիկը կամ ջնջել այս օգտվողի բոլոր տվյալները չափից ավելի սխալ գաղտնաբառեր մուտքագրելու դեպքում:"
+ "Կառավարել էկրանն ապակողպելիս մուտքագրվող սխալ գաղտնաբառերի թիվը և կողպել պլանշետը կամ ջնջել այս օգտվողի բոլոր տվյալները չափից ավելի սխալ գաղտնաբառեր մուտքագրելու դեպքում:"
"Կառավարել էկրանն ապակողպելիս մուտքագրվող սխալ գաղտնաբառերի թիվը և կողպել հեռուստացույցը կամ ջնջել այս օգտվողի բոլոր տվյալները չափից ավելի սխալ գաղտնաբառեր մուտքագրելու դեպքում:"
"Կառավարել էկրանն ապակողպելիս մուտքագրվող սխալ գաղտնաբառերի թիվը և կողպել հեռախոսը կամ ջնջել այս օգտվողի բոլոր տվյալները չափից ավելի սխալ գաղտնաբառեր մուտքագրելու դեպքում:"
"Փոխել էկրանի կողպման գաղտնաբառը"
@@ -522,11 +528,11 @@
"Կողպել էկրանը"
"Վերահսկել` ինչպես և երբ է էկրանը կողպվում:"
"Ջնջել բոլոր տվյալները"
- "Ջնջել գրասալիկի տվյալներն առանց նախազգուշացման` կատարելով գործարանային տվյալների վերակայում:"
+ "Ջնջել պլանշետի տվյալներն առանց նախազգուշացման` կատարելով գործարանային տվյալների վերակայում:"
"Ջնջել հեռուստացույցի տվյալները առանց զգուշացման՝ վերականգնելով գործարանային կարգավորումները:"
"Ջնջել հեռախոսի տվյալներն առանց նախազգուշացման` կատարելով գործարանային տվյալների վերակայում:"
"Ջնջել օգտվողի տվյալները"
- "Ջնջել այս օգտվողի տվյալներն այս գրասալիկում առանց նախազգուշացման:"
+ "Ջնջել այս օգտվողի տվյալներն այս պլանշետում առանց նախազգուշացման:"
"Ջնջել այս օգտվողի տվյալներն այս հեռուստացույցում առանց նախազգուշացման:"
"Ջնջել այս օգտվողի տվյալներն այս հեռախոսում առանց նախազգուշացման:"
"Կարգավորել սարքի համաշխարհային պրոքսին"
@@ -540,35 +546,35 @@
"Անջատել կողպման գործառույթները"
"Կանխել էկրանի կողպման որոշ գործառույթների օգտագործումը:"
- - "Տնային"
+ - "Տուն"
- "Բջջային"
- - "Աշխատանքային"
- - "Աշխատանքային ֆաքս"
- - "Տնային ֆաքս"
+ - "Աշխատանք"
+ - "Աշխ․ ֆաքս"
+ - "Տան ֆաքս"
- "Փեյջեր"
- "Այլ"
- "Հատուկ"
- "Տուն"
- - "Աշխատանքային"
+ - "Աշխատանք"
- "Այլ"
- "Հատուկ"
- - "Տնային"
- - "Աշխատանքային"
+ - "Տան"
+ - "Աշխատանք"
- "Այլ"
- "Հատուկ"
- - "Տնային"
- - "Աշխատանքային"
+ - "Տուն"
+ - "Աշխատանք"
- "Այլ"
- "Հատուկ"
- - "Աշխատանքային"
+ - "Աշխատանք"
- "Այլ"
- "Հատուկ"
@@ -583,11 +589,11 @@
- "Jabber"
"Հատուկ"
- "Տնային"
+ "Տուն"
"Բջջային"
- "Աշխատանքային"
- "Աշխատանքային ֆաքս"
- "Տնային ֆաքս"
+ "Աշխատանք"
+ "Աշխ․ ֆաքս"
+ "Տան ֆաքս"
"Փեյջեր"
"Այլ"
"Ետզանգ"
@@ -599,8 +605,8 @@
"Ռադիո"
"Տելեքս"
"TTY TDD"
- "Աշխատանքային բջջային համար"
- "Աշխատանքային փեյջեր"
+ "Աշխ․ բջջային"
+ "Աշխ․ փեյջեր"
"Օգնական"
"MMS"
"Հատուկ"
@@ -608,17 +614,17 @@
"Տարեդարձ"
"Այլ"
"Հատուկ"
- "Տնային"
- "Աշխատանքային"
+ "Տուն"
+ "Աշխատանք"
"Այլ"
"Բջջային"
"Հատուկ"
- "Տնային"
- "Աշխատանքային"
+ "Տուն"
+ "Աշխատանք"
"Այլ"
"Հատուկ"
"Տուն"
- "Աշխատանքային"
+ "Աշխատանք"
"Այլ"
"Հատուկ"
"AIM"
@@ -630,7 +636,7 @@
"ICQ"
"Jabber"
"NetMeeting"
- "Աշխատանքային"
+ "Աշխատանք"
"Այլ"
"Հատուկ"
"Հատուկ"
@@ -649,15 +655,15 @@
"Քույր"
"Ամուսին"
"Հատուկ"
- "Տնային"
- "Աշխատանքային"
+ "Տուն"
+ "Աշխատանք"
"Այլ"
"Այս կոնտակտը դիտելու համար համապատասխան ծրագիր չկա:"
"Մուտքագրեք PIN կոդը"
"Մուտքագրեք PUK-ը և նոր PIN կոդը"
"PUK կոդ"
"Նոր PIN ծածկագիր"
- "Հպեք` գաղտնաբառը մուտքագրելու համար"
+ "Հպեք և մուտքագրեք գաղտնաբառը"
"Մուտքագրեք գաղտնաբառը ապակողպման համար"
"Մուտքագրեք PIN-ը ապակողպման համար"
"Սխալ PIN ծածկագիր:"
@@ -665,14 +671,15 @@
"Արտակարգ իրավիճակների հեռախոսահամար"
"Ծառայություն չկա"
"Էկրանը կողպված է:"
- "Սեղմեք Ցանկ` ապակողպելու համար, կամ կատարեք արտակարգ իրավիճակների զանգ:"
+ "Ապակողպելու կամ շտապ կանչ անելու համար սեղմեք «Ընտրացանկ»"
"Ապակողպելու համար սեղմեք Ցանկը:"
"Հավաքեք սխեման` ապակողպելու համար"
- "Արտակարգ իրավիճակ"
+ "Շտապ կանչ"
"Վերադառնալ զանգին"
"Ճիշտ է:"
"Կրկին փորձեք"
"Կրկին փորձեք"
+ "Ապակողպեք՝ բոլոր գործառույթներն ու տվյալներն օգտագործելու համար"
"Առավելագույն Դեմքով ապակողպման փորձերը գերազանցված են"
"SIM քարտ չկա"
"Գրասալիկում SIM քարտ չկա:"
@@ -698,10 +705,10 @@
"Դուք %1$d անգամ սխալ եք հավաքել ձեր ապակողպման սխեման: \n\nՓորձեք կրկին %2$d վայրկյանից:"
"Դուք սխալ եք մուտքագրել ձեր գաղտնաբառը %1$d անգամ: \n\n Փորձեք կրկին %2$d վայրկյանից:"
"Դուք %1$d անգամ սխալ եք մուտքագրել ձեր PIN-ը: \n\nՓորձեք կրկին %2$d վայրկյանից:"
- "Դուք %1$d անգամ սխալ եք հավաքել ձեր ապակողպման սխեման: %2$d անգամից ավել անհաջող փորձերից հետո ձեզ կառաջարկվի ապակողպել ձեր գրասալիկը` օգտագործելով ձեր Google-ի մուտքի օգտանունը:\n \n Փորձեք կրկին %3$d վայրկյանից:"
+ "Դուք %1$d անգամ սխալ եք հավաքել ձեր ապակողպման սխեման: %2$d անգամից ավել անհաջող փորձերից հետո ձեզ կառաջարկվի ապակողպել ձեր պլանշետը` օգտագործելով ձեր Google-ի մուտքի օգտանունը:\n \n Փորձեք կրկին %3$d վայրկյանից:"
"Դուք %1$d անգամ սխալ եք գծել ապակողպման նախշը: Եվս %2$d անհաջող փորձից հետո հեռուստացույցը կկարողանաք ապակողպել միայն մուտք գործելով ձեր Google հաշիվ:\n\n Նորից փորձեք %3$d վայրկյանից:"
"Դուք %1$d անգամ սխալ եք հավաքել ձեր ապակողպման սխեման: Եվս %2$d անհաջող փորձից հետո ձեզ կառաջարկվի ապակողպել ձեր հեռախոսը` օգտագործելով Google-ի ձեր մուտքը:\n \n Փորձեք կրկին %3$d վայրկյանից:"
- "Դուք %1$d անգամ գրասալիկն ապակողպելու սխալ փորձ եք արել: Եվս %2$d անհաջող փորձից հետո գրասալիկը կվերակարգավորվի գործարանային լռելյայնի, և օգտվողի բոլոր տվյալները կկորեն:"
+ "Դուք %1$d անգամ գրասալիկն ապակողպելու սխալ փորձ եք արել: Եվս %2$d անհաջող փորձից հետո պլանշետը կվերակարգավորվի գործարանային լռելյայնի, և օգտվողի բոլոր տվյալները կկորեն:"
"Դուք հեռուստացույցն ապակողպելու %1$d սխալ փորձ եք կատարել: Եվս %2$d անհաջող փորձից հետո հեռուստացույցի գործարանային կարգավորումները կվերականգնվեն և օգտվողի բոլոր տվյալները կջնջվեն:"
"Դուք %1$d անգամ հեռախոսը ապակողպելու սխալ փորձ եք արել: Եվս %2$d անհաջող փորձից հետո հեռախոսը կվերակարգավորվի գործարանային սկզբնադիր ռեժիմի, և օգտվողի բոլոր տվյալները կկորեն:"
"Դուք %d անգամ սխալ փորձ եք արել գրասալիկն ապակողպելու համար: Գրասալիկն այժմ կվերակարգավորվի գործարանային լռելյայնի:"
@@ -788,7 +795,7 @@
"կարդալ ձեր վեբ էջանիշերը և պատմությունը"
"Թույլ է տալիս հավելվածին կարդալ դիտարկիչի այցելած բոլոր URL-ների պատմությունը և դիտարկիչի բոլոր էջանիշերը: Նշում. այս թույլտվությունը չի կարող գործածվել կողմնակի դիտարկիչների կամ վեբ զննարկման հնարավորություններով այլ հավելվածների կողմից:"
"գրել վեբ էջանիշերը և պատմությունը"
- "Թույլ է տալիս հավելվածին փոփոխել դիտարկիչի պատմությունը կամ ձեր գրասալիկում պահված էջանիշերը: Այն կարող է թույլ տալ հավելվածին ջնջել կամ փոփոխել դիտարկիչի տվյալները: Նշում. այս թույլտվությունը չի կարող գործածվել կողմնակի դիտարկիչների կամ վեբ զննարկման հնարավորություններով այլ հավելվածների կողմից:"
+ "Թույլ է տալիս հավելվածին փոփոխել դիտարկիչի պատմությունը կամ ձեր պլանշետում պահված էջանիշերը: Այն կարող է թույլ տալ հավելվածին ջնջել կամ փոփոխել դիտարկիչի տվյալները: Նշում. այս թույլտվությունը չի կարող գործածվել կողմնակի դիտարկիչների կամ վեբ զննարկման հնարավորություններով այլ հավելվածների կողմից:"
"Թույլ է տալիս հավելվածին փոփոխել դիտարկիչի պատմությունը կամ հեռուստացույցում պահված էջանիշները: Սա կարող է թույլ տալ հավելվածին ջնջել կամ փոփոխել դիտարկիչի տվյալները: Ուշադրություն. այս թույլտվությունը չի կարող հարկադրվել երրորդ կողմի դիտարկիչների կամ այլ հավելվածների կողմից, որոնք նույնպես կարողանում են վեբ էջեր բացել:"
"Թույլ է տալիս հավելվածին փոփոխել դիտարկիչի պատմությունը կամ ձեր հեռախոսում պահված էջանիշերը: Այն կարող է թույլ տալ հավելվածին ջնջել կամ փոփոխել դիտարկիչի տվյալները: Նշում. այս թույլտվությունը չի կարող գործածվել կողմնակի դիտարկիչների կամ վեբ զննարկման հնարավորություններով այլ հավելվածների կողմից:"
"դնել ազդանշան"
@@ -816,7 +823,7 @@
"Ուղարկել հարցումը"
"Ձայնային որոնում"
"Միացնե՞լ Հպման միջոցով հետազոտումը:"
- "%1$s-ը ցանկանում է միացնել «Հետազոտում հպման միջոցով» ռեժիմը: Երբ միացված է «Հետազոտում հպման միջոցով» ռեժիմը, դուք կարող եք լսել կամ տեսնել նկարագրությունը, թե ինչ է ձեր մատի տակ, կամ կատարել ժեստեր` գրասալիկի հետ փոխգործակցելու համար:"
+ "%1$s-ը ցանկանում է միացնել «Հետազոտում հպման միջոցով» ռեժիմը: Երբ միացված է «Հետազոտում հպման միջոցով» ռեժիմը, դուք կարող եք լսել կամ տեսնել նկարագրությունը, թե ինչ է ձեր մատի տակ, կամ կատարել ժեստեր` պլանշետի հետ փոխգործակցելու համար:"
"%1$s-ը ցանկանում է միացնել «Հետազոտում հպման միջոցով» ռեժիմը: Երբ միացված է «Հետազոտում հպման միջոցով» ռեժիմը, դուք կարող եք լսել կամ տեսնել նկարագրությունը, թե ինչ է ձեր մատի տակ, կամ կատարել ժեստեր` հեռախոսի հետ փոխգործակցելու համար:"
"1 ամիս առաջ"
"Ավելի շուտ քան 1 ամիս"
@@ -853,6 +860,71 @@
- %d ժամ
- %d ժամ
+ "հիմա"
+
+ - %dր
+ - %dր
+
+
+ - %dժ
+ - %dժ
+
+
+ - %dօր
+ - %dօր
+
+
+ - %dտ
+ - %dտ
+
+
+ - %dր-ից
+ - %dր-ից
+
+
+ - %dժ-ից
+ - %dժ-ից
+
+
+ - %d օրից
+ - %d օրից
+
+
+ - %dտ.-ուց
+ - %dտ.-ուց
+
+
+ - %d րոպե առաջ
+ - %d րոպե առաջ
+
+
+ - %d ժամ առաջ
+ - %d ժամ առաջ
+
+
+ - %d օր առաջ
+ - %d օր առաջ
+
+
+ - %d տարի առաջ
+ - %d տարի առաջ
+
+
+ - %d րոպեից
+ - %d րոպեից
+
+
+ - %d ժամից
+ - %d ժամից
+
+
+ - %d օրից
+ - %d օրից
+
+
+ - %d տարուց
+ - %d տարուց
+
"Տեսանյութի խնդիր"
"Այս տեսանյութը հեռարձակման ենթակա չէ այս սարքով:"
"Այս տեսանյութը հնարավոր չէ նվագարկել:"
@@ -884,7 +956,7 @@
"Համակարգի որոշ գործառույթներ հնարավոր է չաշխատեն"
"Համակարգի համար բավարար հիշողություն չկա: Համոզվեք, որ ունեք 250ՄԲ ազատ տարածություն և վերագործարկեք:"
"%1$s-ն աշխատեցվում է"
- "Հպեք` լրացուցիչ տեղեկությունները կամ ծրագիրը դադարեցնելու համար:"
+ "Հպեք` լրացուցիչ տեղեկություններ ստանալու կամ հավելվածն անջատելու համար:"
"Լավ"
"Չեղարկել"
"Լավ"
@@ -895,14 +967,25 @@
"O"
"Ավարտել գործողությունը` օգտագործելով"
"Եզրափակել գործողությունը՝ օգտագործելով %1$s"
+ "Ավարտել գործողությունը"
"Բացել հետևյալ ծրագրով՝"
- "Բացել հետևյալով՝ %1$s"
+ "Բացել ծրագրով՝ %1$s"
+ "Բացել"
"Խմբագրել հետևյալ ծրագրով՝"
"Խմբագրել հետևյալով՝ %1$s"
- "Տարածել"
- "Տարածել ըստ %1$s"
+ "Փոփոխել"
+ "Կիսվել"
+ "Կիսվել %1$s-ի միջոցով"
+ "Տրամադրել"
+ "Ուղարկել այս հավելվածով"
+ "Ուղարկել %1$s հավելվածով"
+ "Ուղարկել"
"Ընտրեք Հիմնական հավելվածը"
"Օգտագործել %1$s-ը՝ որպես Հիմնական"
+ "Լուսանկարել"
+ "Լուսանկարել այս հավելվածի օգնությամբ"
+ "Լուսանկարել %1$s հավելվածի օգնությամբ"
+ "Լուսանկարել"
"Օգտագործել լռելյայն այս գործողության համար:"
"Օգտագործել այլ հավելված"
"Մաքրել լռելյայնը Համակարգի կարգավորումներ > Ծրագրեր >Ներբեռնված էջից:"
@@ -913,11 +996,10 @@
"%1$s գործընթացն ընդհատվել է"
"%1$s հավելվածի աշխատանքը շարունակաբար ընդհատվում է"
"%1$s գործընթացը շարունակաբար ընդհատվում է"
- "Վերագործարկել հավելվածը"
- "Վերակայել և վերագործարկել հավելվածը"
- "Ուղարկել կարծիք"
+ "Կրկին բացել հավելվածը"
+ "Կարծիք հայտնել"
"Փակել"
- "Անջատել ձայնը"
+ "Անջատել ձայնը մինչև սարքի վերագործարկումը"
"Սպասել"
"Փակել հավելվածը"
@@ -935,17 +1017,22 @@
"Աստիճանակարգել"
"Միշտ ցույց տալ"
"Կրկին ակտիվացնել սա Համակարգի կարգավորումներում > Ծրագրեր > Ներբեռնումներ:"
+ "%1$s հավելվածը չի աջակցում Էկրանի չափի ընթացիկ կարգավորումները, ինչի պատճառով կարող են խնդիրներ առաջանալ:"
+ "Միշտ ցուցադրել"
"%1$s ծրագիրը (գործընթաց %2$s) խախտել է իր ինքնահարկադրված Խիստ ռեժիմ քաղաքականությունը:"
"%1$s գործընթացը խախտել է իր ինքնահարկադրված Խիստ ռեժիմ քաղաքականությունը:"
"Android-ը նորացվում է..."
"Android-ը մեկնարկում է…"
"Պահեստի օպտիմալացում:"
+ "Android-ի թարմացումն ավարտվում է…"
+ "Հնարավոր է՝ որոշ հավելվածներ մինչև նորացման ավարտը ճիշտ չաշխատեն"
+ "%1$s հավելվածը նորացվում է…"
"Օպտիմալացվում է հավելված %1$d-ը %2$d-ից:"
"%1$s հավելվածը պատրաստվում է:"
"Հավելվածները մեկնարկում են:"
"Բեռնումն ավարտվում է:"
"%1$s-ն աշխատում է"
- "Հպեք` հավելվածին անցնելու համար"
+ "Հպեք՝ հավելվածին անցնելու համար"
"Փոխարկե՞լ հավելվածները:"
"Մեկ այլ ծրագիր արդեն աշխատում է, որը պետք է դադարեցնել, նախքան դուք կկարողանաք սկսել նորը:"
"Վերադառնալ %1$s"
@@ -953,7 +1040,7 @@
"Սկիզբ %1$s"
"Դադարեցնել նախկին ծրագիրն առանց պահպանման:"
"%1$s գործընթացը գերազանցել է հիշողության սահմանաչափը"
- "Օգտագործվող օբյեկտների վերաբերյալ տվյալները հավաքվել են: Հպեք՝ դրանք տրամադրելու համար:"
+ "Օգտագործվող օբյեկտների վերաբերյալ տվյալները հավաքվել են: Հպեք՝ դրանք տրամադրելու համար"
"Տրամադրե՞լ օգտագործվող օբյեկտների վերաբերյալ տվյալները:"
"%1$s գործընթացը գերազանցել է իր կողմից հիշողության օգտագործման սահմանաչափը՝ %2$s: Հավաքվել են օգտագործվող օբյեկտների վերաբերյալ տվյալներ, որոնք կարող եք ուղարկել մշակողին: Սակայն զգույշ եղեք՝ նշված տվյալները կարող են ներառել հավելվածի կողմից օգտագործվող ձեր անձնական տվյալները:"
"Ընտրեք գործողություն տեքստի համար"
@@ -971,8 +1058,8 @@
"Զանգի ձայնի բարձրություն"
"Մեդիա ձայնի բարձրություն"
"Ծանուցումների ձայնի ուժգնությունը"
- "Լռելյայն զանգերանգ"
- "Լռելյայն զանգերանգ (%1$s)"
+ "Կանխադրված զանգերանգ"
+ "Կանխադրված զանգերանգ (%1$s)"
"Ոչ մեկը"
"Զանգերանգներ"
"Անհայտ զանգերանգ"
@@ -989,7 +1076,18 @@
"Wi-Fi ցանցը համացանցի միացում չունի"
- "Հպեք՝ ընտրանքները դիտելու համար"
+ "Հպեք՝ ընտրանքները տեսնելու համար"
+ "Անցել է %1$s ցանցի"
+ "Եթե %2$s ցանցն ինտերնետ կապ չունի, սարքն անցնում է %1$s ցանցի: Կարող են վճարներ գանձվել:"
+ "%1$s ցանցից անցել է %2$s ցանցի"
+
+ - "բջջային տվյալներ"
+ - "Wi-Fi"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "ցանցի անհայտ տեսակ"
"Չհաջողվեց միանալ Wi-Fi-ին"
" ունի թույլ ինտերնետ կապ:"
"Թույլատրե՞լ կապը:"
@@ -999,7 +1097,7 @@
"Մեկնարկել Wi-Fi ուղին: Այն կանջատի Wi-Fi հաճախորդ/թեժ կետ գործողությունը:"
"Չհաջողվեց մեկնարկել Wi-Fi ուղին:"
"Wi-Fi ուղիղն առցանց է"
- "Հպեք կարգավորումների համար"
+ "Հպեք՝ կարգավորելու համար"
"Ընդունել"
"Մերժել"
"Հրավերն ուղարկված է"
@@ -1031,56 +1129,50 @@
"SIM քարտը ավելացվել է"
"Վերագործարկեք ձեր սարքը` բջջային ցանց մուտք ունենալու համար:"
"Վերագործարկել"
-
-
-
-
-
-
-
-
-
-
+ "Նոր SIM քարտի պատշաճ աշխատանքն ապահովելու համար ձեզ անհրաժեշտ է տեղադրել և գործարկել ձեր օպերատորից ստացած հավելվածը:"
+ "ՏԵՂԱԴՐԵԼ ՀԱՎԵԼՎԱԾԸ"
+ "ՈՉ ՀԻՄԱ"
+ "Տեղադրվել է նոր SIM քարտ"
+ "Հպեք՝ կարգավորելու համար"
"Սահմանել ժամը"
"Սահմանել ամսաթիվը"
"Սահմանել"
- "Կատարված է"
+ "Պատրաստ է"
"Նոր` "
"Տրամադրված է %1$s-ի կողմից:"
"Թույլտվություններ չեն պահանջվում"
"Սա կարող է գումար պահանջել"
"Լավ"
- "Լիցքավորման USB"
+ "Սարքի լիցքավորում USB լարի միջոցով"
+ "Հոսանքի մատակարարում կցված սարքերին USB լարի միջոցով"
"Ֆայլերի փոխանցման USB"
"Լուսանկարների փոխանցման USB"
"MIDI-ի USB"
"Կապակցված է USB լրասարքի"
- "Հպեք՝ լրացուցիչ ընտրանքների համար:"
+ "Հպեք՝ լրացուցիչ ընտրանքների համար:"
"USB վրիպազերծումը միացված է"
- "Հպեք` USB կարգաբերումը կասեցնելու համար:"
- "Ուղարկե՞լ վրիպակի զեկույց ադմինիստրատորին:"
- "Անսարքությունների վերացման նպատակով ձեր ՏՏ ադմինիստրատորին անհրաժեշտ է վրիպակի զեկույց"
- "ԸՆԴՈՒՆԵԼ"
- "ՄԵՐԺԵԼ"
- "Վրիպակի զեկույցի ստեղծում…"
- "Հպեք՝ չեղարկելու համար"
+ "Հպեք՝ USB վրիպազերծումն անջատելու համար:"
+ "Վրիպակի զեկույցի ստեղծում…"
+ "Տրամադրե՞լ վրիպակի զեկույցը:"
+ "Վրիպակի զեկույցի տրամադրում…"
+ "Այս սարքի անսարքությունների վերացման նպատակով ձեր ՏՏ ադմինիստրատորին անհրաժեշտ է վրիպակի զեկույց: Կարող են տրամադրվել տեղեկություններ ձեր հավելվածների մասին և այլ տվյալներ:"
+ "ՏՐԱՄԱԴՐԵԼ"
+ "ՄԵՐԺԵԼ"
"Փոխել ստեղնաշարը"
- "Ընտրել ստեղնաշար"
"Պահել էկրանին մինչդեռ ֆիզիկական ստեղնաշարն ակտիվ է"
"Ցույց տալ վիրտուալ ստեղնաշարը"
- "Ընտրեք ստեղնաշարի դիրքը"
- "Հպեք` ստեղնաշարի դիրքը ընտրելու համար:"
+ "Կազմաձևեք ֆիզիկական ստեղնաշարը"
+ "Հպեք՝ լեզուն և դասավորությունն ընտրելու համար"
" ԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿՀՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՐՑՈՒՓՔԵւՕՖ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "թեկնածուները"
"%s-ի նախապատրաստում"
"Սխալների ստուգում"
"Հայտնաբերվել է նոր %s"
"Լուսանկարներ և մեդիա ֆայլեր տեղափոխելու համար"
"%s-ը վնասված է"
- "%s-ը վնասված է: Հպեք՝ շտկելու համար:"
+ "%s-ը վնասված է: Հպեք՝ շտկելու համար:"
"Չապահովվող %s"
- "Այս սարքը չի աջակցում այս %s-ը: Հպեք՝ աջակցվող ձևաչափով տեղադրելու համար:"
+ "Այս սարքը չի աջակցում այս %s-ը: Հպեք՝ աջակցվող ձևաչափով կարգավորելու համար:"
"%s-ը հեռացվել է առանց անջատելու"
"Տվյալները չկորցնելու համար անջատեք %s-ը՝ մինչ հեռացնելը"
"%s-ը հեռացված է"
@@ -1116,13 +1208,13 @@
"Ծրագրին թույլ է տալիս կարդալ տեղադրման աշխատաշրջանները: Սա թույլ է տալիս տեղեկանալ փաթեթների ակտիվ տեղադրումների մանրամասներին:"
"պահանջել տեղադրման փաթեթներ"
"Թույլ է տալիս հավելվածին պահանջել փաթեթների տեղադրումը:"
- "Հպեք երկու անգամ` դիտափոխման կարգավորման համար"
+ "Հպեք երկու անգամ` խոշորացման վերահսկման համար"
"Չհաջողվեց վիջեթ ավելացնել:"
"Առաջ"
"Որոնել"
"Ուղարկել"
"Հաջորդը"
- "Կատարված է"
+ "Պատրաստ է"
"Նախորդ"
"Կատարել"
"Հավաքել հեռախոսահամարը`\nօգտագործելով %s-ը"
@@ -1142,24 +1234,26 @@
"Պաստառ"
"Փոխել պաստառը"
"Ծանուցման ունկնդիր"
+ "VR ունկնդրիչ"
"Պայմանների մատակարար"
- "Ծանուցումների օգնական"
+ "Ծանուցումների դասակարգման ծառայություն"
"VPN-ը ակտիվացված է"
"VPN-ն ակտիվացված է %s-ի կողմից"
- "Հպեք` ցանցի կառավարման համար:"
- "Միացված է %s-ին: Հպեք` ցանցը կառավարելու համար:"
+ "Սեղմել ցանցի կառավարման համար:"
+ "Կապակացված է %s-ին: Սեղմեք` ցանցը կառավարելու համար:"
"Միշտ-միացված VPN-ը կապվում է..."
"Միշտ-առցանց VPN-ը կապակցված է"
+ "«Միշտ միացված VPN»-ն անջատված է"
"VPN սխալը միշտ միացված"
- "Հպեք կարգավորելու համար"
+ "Հպեք՝ կարգավորելու համար"
"Ընտրել ֆայլը"
"Ոչ մի ֆայլ չի ընտրված"
"Վերակայել"
"Ուղարկել"
"Մեքենայի ռեժիմը միացված է"
- "Հպեք` մեքենայի ռեժիմից դուրս գալու համար:"
+ "Հպեք` մեքենայի ռեժիմից դուրս գալու համար:"
"Մուտքը կամ թեժ կետը ակտիվ է"
- "Հպեք կարգավորելու համար:"
+ "Հպեք՝ կարգավորելու համար:"
"Հետ"
"Հաջորդը"
"Բաց թողնել"
@@ -1169,10 +1263,10 @@
- %d՝ %d-ից
- %d՝ %d-ից
- "Կատարված է"
+ "Պատրաստ է"
"Ջնջում է USB կրիչը..."
"Ջնջում է SD քարտը..."
- "Տարածել"
+ "Կիսվել"
"Գտնել"
"Վեբի որոնում"
"Գտնել հաջորդը"
@@ -1192,7 +1286,7 @@
"Ավելացնել հաշիվ"
"Ավելացնել"
"Նվազեցնել"
- "%s հպեք և պահեք:"
+ "%s հպեք և պահեք:"
"Սահեցրեք վերև` ավելացնելու համար, և ներքև` նվազեցնելու համար:"
"Աճեցնել րոպեն"
"Նվազեցնել րոպեն"
@@ -1211,13 +1305,13 @@
"Alt"
"Չեղարկել"
"Ջնջել"
- "Կատարված է"
+ "Պատրաստ է"
"Ռեժիմի փոփոխում"
"Shift"
"Մուտք"
"Ընտրել ծրագիր"
"Չհաջողվեց գործարկել %s ծրագիրը"
- "Տարածել"
+ "Կիսվել"
"Կիսվել %s-ի հետ"
"Սահող բռնակ: Հպել & պահել:"
"Սահեցրեք` ապակողպելու համար:"
@@ -1228,15 +1322,15 @@
"Ավելի շատ ընտրանքներ"
"%1$s, %2$s"
"%1$s, %2$s, %3$s"
- "Ներքին պահոց"
+ "Համօգտագործվող ներքին հիշողություն"
"SD քարտ"
"SD քարտ %s-ից"
"USB սարքավար"
"USB սարքավար %s-ից"
"USB կրիչ"
"Խմբագրել"
- "Տվյալների օգտագործման նախազգուշացում"
- "Հպեք` օգտագործումը և կարգավորումները տեսնելու համար:"
+ "Տվյալների օգտագործման զգուշացում"
+ "Հպեք և տեսեք օգտագործումը և կարգավորումները:"
"2G-3G տվյալների սահմանաչափը սպառվել է"
"4G տվյալների սահմանաչափը սպառվել է"
"Բջջային տվյալների սահմանաչափը սպառվել է"
@@ -1248,7 +1342,7 @@
"Wi-Fi տվյալների սահմանը գերազանցվել է"
"%s-ը գերազանցում է նշված սահմանաչափը:"
"Հետնաշերտային տվյալները սահմանափակ են"
- "Հպեք` սահմանափակումը հեռացնելու համար:"
+ "Հպեք և հանեք սահմանափակումը:"
"Անվտանգության վկայական"
"Այս վկայականը վավեր է:"
"Թողարկվել է`"
@@ -1265,7 +1359,7 @@
"SHA-1մատնահետք`"
"Տեսնել բոլորը"
"Ընտրել գործունեությունը"
- "Տարածել"
+ "Կիսվել"
"Ուղարկվում է..."
"Գործարկե՞լ զննարկիչը:"
"Ընդունե՞լ զանգը:"
@@ -1326,13 +1420,13 @@
"Դուք %1$d անգամ սխալ եք մուտքագրել ձեր PIN-ը: \n\nՓորձեք կրկին %2$d վայրկյանից:"
"Դուք սխալ եք մուտքագրել ձեր գաղտնաբառը %1$d անգամ: \n\nՓորձեք կրկին %2$d վայրկյանից:"
"Դուք %1$d անգամ սխալ եք հավաքել ձեր ապակողպման սխեման: \n\nՓորձեք կրկին %2$d վայրկյանից:"
- "Դուք %1$d անգամ սխալ փորձ եք արել գրասալիկն ապակողպելու համար: %2$d անգամից ավել անհաջող փորձերից հետո գրասալիկը կվերակարգավորվի գործարանային լռելյայնի, և օգտվողի բոլոր տվյալները կկորեն:"
+ "Դուք %1$d անգամ սխալ փորձ եք արել գրասալիկն ապակողպելու համար: %2$d անգամից ավել անհաջող փորձերից հետո պլանշետը կվերակարգավորվի գործարանային լռելյայնի, և օգտվողի բոլոր տվյալները կկորեն:"
"Դուք հեռուստացույցն ապակողպելու %1$d սխալ փորձ եք կատարել: Եվս %2$d անհաջող փորձից հետո հեռուստացույցի գործարանային կարգավորումները կվերականգնվեն և օգտվողի բոլոր տվյալները կջնջվեն:"
"Դուք %1$d անգամ սխալ փորձ եք արել հեռախոսն ապակողպելու համար: %2$d անգամից ավել անհաջող փորձերից հետո հեռախոսը կվերակարգավորվի գործարանային լռելյայնի, և օգտվողի բոլոր տվյալները կկորեն:"
"Դուք %d անգամ սխալ փորձ եք արել գրասալիկն ապակողպելու համար: Գրասալիկն այժմ կվերակարգավորվի գործարանային լռելյայնի:"
"Դուք հեռուստացույցն ապակողպելու %d սխալ փորձ եք կատարել: Այժմ կվերականգնվեն հեռուստացույցի գործարանային կարգավորումները:"
"Դուք %d անգամ սխալ փորձ եք արել հեռախոսն ապակողպելու համար: Հեռախոսն այժմ կվերակարգավորվի գործարանային լռելյայնի:"
- "Դուք սխալ եք հավաքել ձեր ապակողպման սխեման %1$d անգամ: Եվս %2$d անհաջող փորձից հետո ձեզանից կպահանջվի ապակողպել ձեր գրասալիկը` օգտագործելով էլփոստի հաշիվ:\n\n Փորձեք կրկին %3$d վայրկյանից:"
+ "Դուք սխալ եք հավաքել ձեր ապակողպման սխեման %1$d անգամ: Եվս %2$d անհաջող փորձից հետո ձեզանից կպահանջվի ապակողպել ձեր պլանշետը` օգտագործելով էլփոստի հաշիվ:\n\n Փորձեք կրկին %3$d վայրկյանից:"
"Դուք %1$d անգամ սխալ եք գծել ապակողպման նախշը: Եվս %2$d անհաջող փորձից հետո հեռուստացույցը կկարողանաք ապակողպել միայն էլփոստի հաշվի միջոցով:\n\n Նորից փորձեք %3$d վայրկյանից:"
"Դուք %1$d անգամ սխալ եք հավաքել ձեր ապակողպման նմուշը: %2$d անգամից ավել անհաջող փորձերից հետո ձեզ կառաջարկվի ապակողպել ձեր հեռախոսը` օգտագործելով էլփոստի հաշիվ:\n\n Փորձեք կրկին %3$d վայրկյանից:"
" — "
@@ -1464,20 +1558,20 @@
"Ընտրեք տարին"
"%1$s թիվը ջնջված է"
"Աշխատանքային %1$s"
- "Այս էկրան ապամրացնելու համար միաժամանակ հպեք և պահեք Հետ և Համատեսք կոճակները:"
- "Այս էկրանն ապամրացնելու համար հպեք և պահեք Համատեսքի կոճակը:"
+ "Այս էկրանն ապամրացնելու համար հպեք և պահեք Հետ կոճակը:"
"Հավելվածն ամրացված է: Ապամրացումն այս սարքում չի թույլատրվում:"
"Էկրանն ամրացված է"
"Էկրանն ապամրացված է"
"Ապաամրացնելուց առաջ հարցնել PIN-կոդը"
"Ապաամրացնելուց առաջ հարցնել ապակողպող նախշը"
"Ապաամրացնելուց առաջ հարցնել գաղտնաբառը"
- "Հավելվածի չափը հնարավոր չէ փոխել, ոլորեք այն երկու մատի օգնությամբ:"
- "Հավելվածը չի աջակցում էկրանի տրոհումը:"
"Ադմինիստրատորը տեղադրել է այն"
"Ադմինիստրատորը թարմացրել է այն"
"Ադմինիստրատորը ջնջել է այն"
"Մարտկոցի աշխատանքի ժամկետը երկարացնելու նպատակով, մարտկոցի էներգիայի խնայման գործառույթը սահմանափակում է սարքի աշխատանքը, թրթռոցը, տեղադրության ծառայությունները և հետնաշերտում աշխատող շատ գործընթացներ: Էլփոստը, հաղորդագրությունների փոխանակումը և տվյալների համաժամեցումից կախված այլ հավելվածները կարող են չթարմացվել, եթե դուք դրանք չգործարկեք:\n\nԵրբ ձեր սարքը լիցքավորվում է, մարտկոցի էներգիայի խնայման գործառույթն ինքնաշխատորեն անջատվում է:"
+ "Տվյալների օգտագործումը նվազեցնելու նպատակով «Թրաֆիկի խնայումը» որոշ հավելվածներին թույլ չի տալիս ուղարկել կամ ստանալ տվյալներ ֆոնային ռեժիմում: Արդեն իսկ գործարկված հավելվածը կարող է օգտագործել տվյալները, սակայն ոչ այնքան հաճախ: Օրինակ՝ պատկերները կցուցադրվեն միայն դրանք հպելուց հետո:"
+ "Միացնե՞լ թրաֆիկի խնայումը:"
+ "Միացնել"
- %1$d րոպե (մինչև %2$s)
- %1$d րոպե (մինչև %2$s)
@@ -1531,6 +1625,8 @@
"SS հարցումը փոխվել է USSD հարցման:"
"SS հարցումը փոխվել է նոր SS հարցման:"
"Աշխատանքային պրոֆիլ"
+ "«Ընդարձակել» կոճակ"
+ "Կոծկել/Ընդարձակել"
"Android USB արտաքին միացք"
"Android"
"USB արտաքին միացք"
@@ -1538,34 +1634,48 @@
"Փակել ավելորդ տեղեկությունները"
"Մեծացնել"
"Փակել"
+ "%1$s՝ %2$s"
- Ընտրված է՝ %1$d
- Ընտրված է՝ %1$d
- "Զանազան"
- "Դուք սահմանել եք այս ծանուցումների կարևորությունը:"
+ "Դուք սահմանել եք այս ծանուցումների կարևորությունը:"
"Կարևոր է, քանի որ որոշակի մարդիկ են ներգրավված:"
"Թույլ տա՞լ %1$s հավելվածին %2$s հաշվով նոր Օգտվող ստեղծել:"
"Թույլ տա՞լ %1$s հավելվածին %2$s հաշվով նոր Օգտվող ստեղծել (նման հաշվով Օգտվող արդեն գոյություն ունի):"
- "Նախընտրելի լեզու"
+ "Ավելացնել լեզու"
"Նախընտրելի տարածաշրջան"
"Մուտքագրեք լեզուն"
"Առաջարկներ"
"Բոլոր լեզուները"
+ "Բոլոր տարածաշրջանները"
"Որոնում"
"Աշխատանքային ռեժիմն ԱՆՋԱՏՎԱԾ Է"
- "Թույլատրել աշխատանքային պրոֆիլի (այդ թվում նաև հավելվածների, ֆոնային համաժամացման և առնչվող գործառական հնարավորությունների) աշխատանքը:"
+ "Միացնել աշխատանքային պրոֆիլը՝ հավելվածները, ֆոնային համաժամեցումը և առնչվող գործառույթները"
"Միացնել"
- "%1$s-ը կասեցվել է"
- "Կասեցվել է %1$s ադմինիստրատորի կողմից: Ավելին իմանալու համար կապվեք նրա հետ:"
"Դուք ունեք նոր հաղորդագրություններ"
"Դիտելու համար բացել SMS հավելվածը"
- "Հնարավոր է՝ որոշ գործառույթներ հասանելի չլինեն"
- "Հպեք՝ շարունակելու համար"
- "Օգտվողի պրոֆիլը կողպված է"
+ "Որոշ գործառույթներ կարող են սահմանափակված լինել"
+ "Հպեք՝ ապակողպելու համար"
+ "Օգտվողի տվյալները կողպված են"
+ "Աշխատանքային պրոֆիլը կողպված է"
+ "Հպեք՝ այն ապակողպելու համար"
"Միացված է %1$s-ին"
"Հպեք՝ ֆայլերը տեսնելու համար"
"Ամրացնել"
"Ապամրացնել"
"Հավելվածի տվյալներ"
+ "−%1$s"
+ "Վերակայե՞լ սարքը:"
+ "Հպեք՝ սարքը վերակայելու համար"
+ "Ցուցադրական օգտվողը գործարկվում է…"
+ "Սարաքը վերակայվում է…"
+ "Վերակայե՞լ սարքը:"
+ "Կատարված փոփոխությունները չեն պահվի, իսկ ցուցադրական նյութը կրկին կգործարկվի %1$s վայրկյանից…"
+ "Չեղարկել"
+ "Վերակայել հիմա"
+ "Սարքն առանց սահմանափակումների օգտագործելու համար կատարեք գործարանային վերակայում"
+ "Հպեք՝ ավելին իմանալու համար:"
+ "Անջատած %1$s"
+ "Կոնֆերանս զանգ"
diff --git a/core/res/res/values-ja/strings.xml b/core/res/res/values-ja/strings.xml
index 7dc7653a7cbb5..5ef19331e6a93 100644
--- a/core/res/res/values-ja/strings.xml
+++ b/core/res/res/values-ja/strings.xml
@@ -507,8 +507,8 @@
"携帯通信会社のSMSサービスのトップレベルインターフェースにバインドすることを所有者に許可します。通常のアプリでは不要です。"
"携帯通信会社のサービスへのバインド"
"携帯通信会社のサービスにバインドすることを所有者に許可します。通常のアプリでは不要です。"
- "[通知を非表示]へのアクセス"
- "[通知を非表示]の設定の読み取りと書き込みをアプリに許可します。"
+ "マナーモードへのアクセス"
+ "マナーモード設定の読み取りと書き込みをアプリに許可します。"
"パスワードルールの設定"
"画面ロックのパスワードとPINの長さと使用できる文字を制御します。"
"画面ロック解除試行の監視"
@@ -1514,10 +1514,10 @@
"%1$sまで"
"%1$s(次のアラーム)まで"
"ユーザーがOFFにするまで"
- "[通知を非表示]をOFFにするまで"
+ "マナーモードを OFF にするまで"
"%1$s/%2$s"
"折りたたむ"
- "通知を非表示"
+ "マナーモード"
"ダウンタイム"
"平日の夜"
"週末"
diff --git a/core/res/res/values-kn-rIN/strings.xml b/core/res/res/values-kn-rIN/strings.xml
index d251f82a4a500..6cffa0d32ad99 100644
--- a/core/res/res/values-kn-rIN/strings.xml
+++ b/core/res/res/values-kn-rIN/strings.xml
@@ -51,7 +51,7 @@
"ಸೇವೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
"ನೋಂದಣಿ ಯಶಸ್ವಿಯಾಗಿದೆ."
"ಅಳಿಸುವಿಕೆ ಯಶಸ್ವಿಯಾಗಿದೆ."
- "ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್."
+ "ತಪ್ಪು ಪಾಸ್ವರ್ಡ್."
"MMI ಪೂರ್ಣಗೊಂಡಿದೆ."
"ನೀವು ಟೈಪ್ ಮಾಡಿದ ಹಳೆಯ ಪಿನ್ ಸರಿಯಾಗಿಲ್ಲ."
"ನೀವು ಟೈಪ್ ಮಾಡಿದ PUK ಸರಿಯಾಗಿಲ್ಲ."
@@ -82,13 +82,12 @@
"ಅನಪೇಕ್ಷಿತ ಕಿರಿಕಿರಿ ಮಾಡುವ ಕರೆಗಳ ತಿರಸ್ಕಾರ"
"ಕರೆ ಮಾಡುವ ಸಂಖ್ಯೆಯ ವಿತರಣೆ"
"ಅಡಚಣೆ ಮಾಡಬೇಡ"
- "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸುವಂತೆ ಡೀಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ"
- "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸುವಂತೆ ಡೀಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಿಲ್ಲ"
- "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸದಿರುವಂತೆ ಡೀಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ"
- "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸದಿರುವಂತೆ ಡೀಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಲಾಗಿಲ್ಲ"
+ "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸುವಂತೆ ಡಿಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ"
+ "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸುವಂತೆ ಡಿಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಿಲ್ಲ"
+ "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸದಿರುವಂತೆ ಡಿಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ"
+ "ಕರೆಮಾಡುವವರ ID ಅನ್ನು ನಿರ್ಬಂಧಿಸದಿರುವಂತೆ ಡಿಫಾಲ್ಟ್ ಮಾಡಲಾಗಿದೆ. ಮುಂದಿನ ಕರೆ: ನಿರ್ಬಂಧಿಸಲಾಗಿಲ್ಲ"
"ಸೇವೆಯನ್ನು ಪೂರೈಸಲಾಗಿಲ್ಲ."
"ನೀವು ಕಾಲರ್ ID ಸೆಟ್ಟಿಂಗ್ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
- "ನಿರ್ಬಂಧಿತ ಪ್ರವೇಶವನ್ನು ಬದಲಿಸಲಾಗಿದೆ"
"ಡೇಟಾ ಸೇವೆಯನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ."
"ತುರ್ತು ಸೇವೆಯನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ."
"ಧ್ವನಿ ಸೇವೆಯನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ."
@@ -123,17 +122,21 @@
"ರೋಮಿಂಗ್ ಬ್ಯಾನರ್ ಆನ್ ಆಗಿದೆ"
"ರೋಮಿಂಗ್ ಬ್ಯಾನರ್ ಆಫ್ ಆಗಿದೆ"
"ಸೇವೆ ಹುಡುಕಲಾಗುತ್ತಿದೆ"
- "Wi-Fi ಕರೆ ಮಾಡುವಿಕೆ"
+ "ವೈ-ಫೈ ಕರೆ ಮಾಡುವಿಕೆ"
+ - "ವೈ-ಫೈ ಬಳಸಿಕೊಂಡು ಕರೆ ಮಾಡಲು ಮತ್ತು ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು, ಮೊದಲು ಈ ಸಾಧನವನ್ನು ಹೊಂದಿಸಲು ನಿಮ್ಮ ವಾಹಕವನ್ನು ಕೇಳಿ. ತದನಂತರ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಮತ್ತೆ ವೈ-ಫೈ ಆನ್ ಮಾಡಿ."
+ - "ನಿಮ್ಮ ವಾಹಕದಲ್ಲಿ ನೋಂದಾಯಿಸಿಕೊಳ್ಳಿ"
+
+
+ - "%s"
+ - "%s ವೈ-ಫೈ ಕರೆ ಮಾಡುವಿಕೆ"
- "%s"
- "%s"
"ಆಫ್"
"ವೈ-ಫೈಗೆ ಆದ್ಯತೆ ನೀಡಲಾಗಿದೆ"
"ಸೆಲ್ಯುಲಾರ್ಗೆ ಆದ್ಯತೆ ನೀಡಲಾಗಿದೆ"
- "Wi-Fi ಮಾತ್ರ"
+ "ವೈ-ಫೈ ಮಾತ್ರ"
"{0}: ಫಾರ್ವರ್ಡ್ ಮಾಡಲಾಗಿಲ್ಲ"
"{0}: {1}"
"{0}: {2} ಸೆಕೆಂಡುಗಳ ನಂತರ {1}"
@@ -165,8 +168,11 @@
"ವಾಚ್ ಸಂಗ್ರಹಣೆ ಪೂರ್ಣಗೊಂಡಿದೆ. ಸ್ಥಳವನ್ನು ಖಾಲಿಯಾಗಿಸಲು ಕೆಲವು ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಿ."
"ಟಿವಿ ಸಂಗ್ರಹಣೆ ತುಂಬಿದೆ. ಸ್ಥಳವನ್ನು ಮುಕ್ತಗೊಳಿಸಲು ಕೆಲವು ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಿ."
"ಫೋನ್ ಸಂಗ್ರಹಣೆ ತಂಬಿದೆ. ಸ್ಥಳವನ್ನು ಖಾಲಿಯಾಗಿಸಲು ಕೆಲವು ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಿ."
- "ನೆಟ್ವರ್ಕ್ ಅನ್ನು ವೀಕ್ಷಿಸಬಹುದಾಗಿರುತ್ತದೆ"
- "ಅಜ್ಞಾತ ಥರ್ಡ್ ಪಾರ್ಟಿಯ ಪ್ರಕಾರ"
+
+ - ಪ್ರಮಾಣಪತ್ರ ಅಂಗೀಕಾರಗಳನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿದೆ
+ - ಪ್ರಮಾಣಪತ್ರ ಅಂಗೀಕಾರಗಳನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿದೆ
+
+ "ಅಪರಿಚಿತ ಥರ್ಡ್ ಪಾರ್ಟಿಯ ಪ್ರಕಾರ"
"ನಿಮ್ಮ ಕೆಲಸದ ಪ್ರೊಫೈಲ್ ನಿರ್ವಾಹಕರಿಂದ"
"%s ಪ್ರಕಾರ"
"ಕೆಲಸದ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಅಳಿಸಲಾಗಿದೆ"
@@ -182,7 +188,7 @@
"ಶಾಂತ ಮೋಡ್"
"ವೈರ್ಲೆಸ್ ಆನ್ ಮಾಡು"
"ವೈರ್ಲೆಸ್ ಆಫ್ ಮಾಡು"
- "ಪರದೆ ಲಾಕ್"
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್"
"ಪವರ್ ಆಫ್ ಮಾಡು"
"ರಿಂಗರ್ ಆಫ್"
"ರಿಂಗರ್ ವೈಬ್ರೇಷನ್"
@@ -206,15 +212,16 @@
"ಟ್ಯಾಬ್ಲೆಟ್ ಆಯ್ಕೆಗಳು"
"ಟಿವಿ ಆಯ್ಕೆಗಳು"
"ಫೋನ್ ಆಯ್ಕೆಗಳು"
- "ಪರದೆ ಲಾಕ್"
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್"
"ಪವರ್ ಆಫ್ ಮಾಡು"
+ "ತುರ್ತು"
"ದೋಷದ ವರದಿ"
"ದೋಷ ವರದಿ ರಚಿಸಿ"
"ನಿಮ್ಮ ಸಾಧನದ ಪ್ರಸ್ತುತ ಸ್ಥಿತಿಯ ಕುರಿತು ಮಾಹಿತಿಯನ್ನು ಸಂಗ್ರಹಿಸಿಕೊಳ್ಳುವುದರ ಜೊತೆ ಇ-ಮೇಲ್ ರೂಪದಲ್ಲಿ ನಿಮಗೆ ರವಾನಿಸುತ್ತದೆ. ಇದು ದೋಷ ವರದಿಯನ್ನು ಪ್ರಾರಂಭಿಸಿದ ಸಮಯದಿಂದ ಅದನ್ನು ಕಳುಹಿಸುವವರೆಗೆ ಸ್ವಲ್ಪ ಸಮಯವನ್ನು ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ; ದಯವಿಟ್ಟು ತಾಳ್ಮೆಯಿಂದಿರಿ."
"ಪರಸ್ಪರ ಸಂವಹನ ವರದಿ"
- "ಹೆಚ್ಚಿನ ಸಂದರ್ಭಗಳಲ್ಲಿ ಇದನ್ನು ಬಳಸಿ. ಇದು ವರದಿಯ ಪ್ರಗತಿಯನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಲು ಮತ್ತು ಸಮಸ್ಯೆ ಕುರಿತು ಹೆಚ್ಚಿನ ವಿವರಗಳನ್ನು ನಮೂದಿಸಲು ಅನುಮತಿಸುತ್ತದೆ. ಇದು ವರದಿ ಮಾಡಲು ಹೆಚ್ಚು ಸಮಯ ತೆಗೆದುಕೊಳ್ಳುವಂತಹ ಕೆಲವು ಕಡಿಮೆ ಬಳಸಲಾದ ವಿಭಾಗಗಳನ್ನು ತ್ಯಜಿಸಬಹುದು."
+ "ಹೆಚ್ಚಿನ ಸಂದರ್ಭಗಳಲ್ಲಿ ಇದನ್ನು ಬಳಸಿ. ಇದು ವರದಿಯ ಪ್ರಗತಿಯನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಲು, ಸಮಸ್ಯೆ ಕುರಿತು ಹೆಚ್ಚಿನ ವಿವರಗಳನ್ನು ನಮೂದಿಸಲು ಮತ್ತು ಸ್ಕ್ರೀನ್ಶಾಟ್ಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಲು ಅನುಮತಿಸುತ್ತದೆ. ಇದು ವರದಿ ಮಾಡಲು ಹೆಚ್ಚು ಸಮಯ ತೆಗೆದುಕೊಳ್ಳುವಂತಹ ಕೆಲವು ಕಡಿಮೆ ಬಳಸಲಾದ ವಿಭಾಗಗಳನ್ನು ತ್ಯಜಿಸಬಹುದು."
"ಪೂರ್ಣ ವರದಿ"
- "ನಿಮ್ಮ ಸಾಧನವು ಸ್ಪಂದಿಸುತ್ತಿಲ್ಲದಿರುವಾಗ ಅಥವಾ ತುಂಬಾ ನಿಧಾನವಾಗಿರುವಾಗ ಕನಿಷ್ಟ ಹಸ್ತಕ್ಷೇಪಕ್ಕಾಗಿ ಅಥವಾ ನಿಮಗೆ ಎಲ್ಲಾ ವಿಭಾಗಗಳೂ ಅಗತ್ಯವಿರುವಾಗ ಈ ಆಯ್ಕೆಯನ್ನು ಬಳಸಿ. ಸ್ಕ್ರೀನ್ಶಾಟ್ ತೆಗೆದುಕೊಳ್ಳಲು ಅಥವಾ ಹೆಚ್ಚಿನ ವಿವರಗಳನ್ನು ನಮೂದಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ."
+ "ನಿಮ್ಮ ಸಾಧನವು ಸ್ಪಂದಿಸುತ್ತಿಲ್ಲದಿರುವಾಗ ಅಥವಾ ತುಂಬಾ ನಿಧಾನವಾಗಿರುವಾಗ ಕನಿಷ್ಟ ಹಸ್ತಕ್ಷೇಪಕ್ಕಾಗಿ ಅಥವಾ ನಿಮಗೆ ಎಲ್ಲಾ ವಿಭಾಗಗಳೂ ಅಗತ್ಯವಿರುವಾಗ ಈ ಆಯ್ಕೆಯನ್ನು ಬಳಸಿ. ಹೆಚ್ಚಿನ ವಿವರಗಳನ್ನು ನಮೂದಿಸಲು ಅಥವಾ ಹೆಚ್ಚುವರಿ ಸ್ಕ್ರೀನ್ಶಾಟ್ಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ."
- ಬಗ್ ವರದಿ ಮಾಡಲು %d ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಸ್ಕ್ರೀನ್ಶಾಟ್ ತೆಗೆದುಕೊಳ್ಳಲಾಗುತ್ತಿದೆ.
- ಬಗ್ ವರದಿ ಮಾಡಲು %d ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಸ್ಕ್ರೀನ್ಶಾಟ್ ತೆಗೆದುಕೊಳ್ಳಲಾಗುತ್ತಿದೆ.
@@ -230,13 +237,12 @@
"ಧ್ವನಿ ಸಹಾಯಕ"
"ಈಗ ಲಾಕ್ ಮಾಡಿ"
"999+"
- "(%d)"
"ವಿಷಯಗಳನ್ನು ಮರೆಮಾಡಲಾಗಿದೆ"
"ನೀತಿಯಿಂದ ಮರೆಮಾಡಲಾಗಿರುವ ವಿಷಯಗಳು"
"ಸುರಕ್ಷಿತ ಮೋಡ್"
"Android ಸಿಸ್ಟಂ"
- "ವೈಯಕ್ತಿಕ"
- "ಕಚೇರಿ"
+ "ವೈಯಕ್ತಿಕಗೆ ಬದಲಿಸಿ"
+ "ಕೆಲಸಕ್ಕೆ ಬದಲಿಸು"
"ಸಂಪರ್ಕಗಳು"
"ನಿಮ್ಮ ಸಂಪರ್ಕಗಳನ್ನು ಪ್ರವೇಶಿಸಲು"
"ಸ್ಥಳ"
@@ -246,11 +252,11 @@
"SMS"
"SMS ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು ಮತ್ತು ನಿರ್ವಹಿಸಲು"
"ಸಂಗ್ರಹಣೆ"
- "ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಫೋಟೋಗಳು, ಮಾಧ್ಯಮ ಮತ್ತು ಫೈಲ್ಗಳನ್ನು ಪ್ರವೇಶಿಸಲು"
+ "ಸಾಧನದಲ್ಲಿ ಫೋಟೋಗಳು, ಮಾಧ್ಯಮ ಮತ್ತು ಫೈಲ್ಗಳನ್ನು ಪ್ರವೇಶಿಸಲು"
"ಮೈಕ್ರೋಫೋನ್"
"ಆಡಿಯೊ ರೆಕಾರ್ಡ್ ಮಾಡಿ"
"ಕ್ಯಾಮರಾ"
- "ಚಿತ್ರಗಳನ್ನು ತೆಗೆಯಿರಿ ಹಾಗೂ ವೀಡಿಯೊ ರೆಕಾರ್ಡ್ ಮಾಡಿ"
+ "ಚಿತ್ರಗಳನ್ನು ತೆಗೆಯಲು, ವೀಡಿಯೊ ರೆಕಾರ್ಡ್ ಮಾಡಲು"
"ಫೋನ್"
"ಫೋನ್ ಕರೆ ಮಾಡಲು ಹಾಗೂ ನಿರ್ವಹಿಸಲು"
"ದೇಹ ಸೆನ್ಸರ್ಗಳು"
@@ -258,7 +264,7 @@
"ವಿಂಡೋ ವಿಷಯವನ್ನು ಹಿಂಪಡೆದುಕೊಳ್ಳುತ್ತದೆ"
"ನೀವು ಸಂವಹನ ನಡೆಸುತ್ತಿರುವ ವಿಂಡೋದ ವಿಷಯವನ್ನು ಪರೀಕ್ಷಿಸಿ."
"ಸ್ಪರ್ಶಿಸುವ ಮೂಲಕ ಎಕ್ಸ್ಪ್ಲೋರ್ ಆನ್ ಮಾಡಿ"
- "ಸ್ಪರ್ಶಿಸಲಾದ ಐಟಂಗಳನ್ನು ಗಟ್ಟಿಯಾಗಿ ಹೇಳಲಾಗುತ್ತದೆ ಮತ್ತು ಗೆಸ್ಚರ್ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಪರದೆಯನ್ನು ಎಕ್ಸ್ಪ್ಲೋರ್ ಮಾಡಬಹುದಾಗಿದೆ."
+ "ಟ್ಯಾಪ್ ಮಾಡಲಾದ ಐಟಂಗಳನ್ನು ಗಟ್ಟಿಯಾಗಿ ಹೇಳಲಾಗುತ್ತದೆ ಮತ್ತು ಗೆಸ್ಚರ್ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಪರದೆಯನ್ನು ಎಕ್ಸ್ಪ್ಲೋರ್ ಮಾಡಬಹುದಾಗಿದೆ."
"ವರ್ಧಿತ ವೆಬ್ ಪ್ರವೇಶಿಸುವಿಕೆ ಆನ್ ಆಗುವಿಕೆ"
"ಅಪ್ಲಿಕೇಶನ್ ವಿಷಯ ಇನ್ನಷ್ಟು ಲಭ್ಯವಾಗುವಂತೆ ಮಾಡಲು ಸ್ಕ್ರಿಪ್ಟ್ಗಳನ್ನು ಸ್ಥಾಪಿಸಬಹುದಾಗಿದೆ."
"ನೀವು ಟೈಪ್ ಮಾಡುವ ಪಠ್ಯವನ್ನು ಗಮನಿಸುತ್ತದೆ"
@@ -291,7 +297,7 @@
"SMS ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ಅನಿರೀಕ್ಷಿತ ವೆಚ್ಚಗಳಿಗೆ ಕಾರಣವಾಗಬಹುದು. ದುರುದ್ದೇಶಪೂರಿತ ಅಪ್ಲಿಕೇಶನ್ಗಳು ನಿಮ್ಮ ದೃಢೀಕರಣವಿಲ್ಲದೆಯೇ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ಹಣವನ್ನು ವ್ಯಯಿಸಬಹುದು."
"ನಿಮ್ಮ ಪಠ್ಯ ಸಂದೇಶಗಳನ್ನು ಓದಿ (SMS ಅಥವಾ MMS)"
"ನಿಮ್ಮ ಟ್ಯಾಬ್ಲೆಟ್ ಅಥವಾ ಸಿಮ್ ಕಾರ್ಡ್ನಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾದ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ವಿಷಯ ಅಥವಾ ಗೌಪ್ಯತೆಯನ್ನು ಲೆಕ್ಕಿಸದೆಯೇ, ಎಲ್ಲಾ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
- "ನಿಮ್ಮ ಟಿವಿ ಅಥವಾ SIM ಕಾರ್ಡ್ನಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾದ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಇದು ವಿಷಯ ಅಥವಾ ಗೋಪ್ಯತೆಯನ್ನು ಪರಿಗಣಿಸದೆ, ಎಲ್ಲಾ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
+ "ನಿಮ್ಮ ಟಿವಿ ಅಥವಾ ಸಿಮ್ ಕಾರ್ಡ್ನಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾದ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಇದು ವಿಷಯ ಅಥವಾ ಗೋಪ್ಯತೆಯನ್ನು ಪರಿಗಣಿಸದೆ, ಎಲ್ಲಾ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
"ನಿಮ್ಮ ಫೋನ್ ಅಥವಾ ಸಿಮ್ ಕಾರ್ಡ್ನಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾದ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ವಿಷಯ ಅಥವಾ ಗೌಪ್ಯತೆಯನ್ನು ಲೆಕ್ಕಿಸದೆಯೇ, ಎಲ್ಲಾ SMS ಸಂದೇಶಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
"ಪಠ್ಯ ಸಂದೇಶಗಳನ್ನು ಸ್ವೀಕರಿಸಿ (WAP)"
"WAP ಸಂದೇಶಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಮತ್ತು ಪ್ರಕ್ರಿಯೆಗೊಳಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ. ಈ ಅನುಮತಿಯು, ನಿಮಗೆ ಕಳುಹಿಸಲಾಗಿರುವ ಸಂದೇಶಗಳನ್ನು ನಿಮಗೆ ತೋರಿಸದೆಯೇ, ಅವುಗಳನ್ನು ಮಾನಿಟರ್ ಮಾಡುವ ಅಥವಾ ಅಳಿಸುವ ಸಾಮರ್ಥ್ಯವನ್ನು ಒಳಗೊಂಡಿರುತ್ತದೆ."
@@ -301,8 +307,8 @@
"ಪ್ರೊಫೈಲ್ ಮಾಲೀಕರು ಮತ್ತು ಸಾಧನ ಮಾಲೀಕರನ್ನು ಹೊಂದಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಅನುಮತಿಸುತ್ತದೆ."
"ರನ್ ಆಗುತ್ತಿರುವ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಮರುಕ್ರಮಗೊಳಿಸಿ"
"ಮುನ್ನೆಲೆ ಮತ್ತು ಹಿನ್ನಲೆಗೆ ಕಾರ್ಯಗಳನ್ನು ಸರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ನಿಮ್ಮ ಇನ್ಪುಟ್ ಇಲ್ಲದೆಯೇ, ಅಪ್ಲಿಕೇಶನ್ ಈ ಕಾರ್ಯವನ್ನು ಮಾಡಬಹುದು."
- "ಕಾರ್ ಮೋಡ್ ಸಕ್ರಿಯಗೊಳಿಸಿ"
- "ಕಾರ್ ಮೋಡ್ ಸಕ್ರಿಯಗೊಳಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
+ "ಕಾರು ಮೋಡ್ ಸಕ್ರಿಯಗೊಳಿಸಿ"
+ "ಕಾರು ಮೋಡ್ ಸಕ್ರಿಯಗೊಳಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
"ಇತರೆ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಮುಚ್ಚಿ"
"ಇತರ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಹಿನ್ನೆಲೆ ಪ್ರಕ್ರಿಯೆಗಳನ್ನು ಅಂತ್ಯಗೊಳಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ. ಇದು ಇತರ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಚಾಲನೆಯನ್ನು ನಿಲ್ಲಿಸುವುದಕ್ಕೆ ಕಾರಣವಾಗಬಹುದು."
"ಇತರ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಮೇಲೆ ಚಿತ್ರಿಸಿ"
@@ -352,9 +358,9 @@
"ಹೆಚ್ಚುವರಿ ಸ್ಥಾನ ಪೂರೈಕೆದಾರರ ಆದೇಶಗಳನ್ನು ಪ್ರವೇಶಿಸಿ"
"ಹೆಚ್ಚಿನ ಸ್ಥಾನ ಪೂರೈಕೆದಾರ ಆದೇಶಗಳನ್ನು ಪ್ರವೇಶಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು GPS ಅಥವಾ ಇತರ ಸ್ಥಾನ ಮೂಲಗಳ ಕಾರ್ಯಾಚರಣೆಯಲ್ಲಿ ಮಧ್ಯ ಪ್ರವೇಶಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಬಹುದು."
"ನಿಖರ ಸ್ಥಳವನ್ನು ಪ್ರವೇಶಿಸಿ (GPS ಮತ್ತು ನೆಟ್ವರ್ಕ್-ಆಧಾರಿತ)"
- "ಗ್ಲೊಬಲ್ ಪೊಸಿಷನಿಂಗ್ ಸಿಸ್ಟಮ್ (GPS) ಅಥವಾ ಸೆಲ್ ಟವರ್ಗಳು ಮತ್ತು Wi-Fi ನಂತಹ ನೆಟ್ವರ್ಕ್ ಸ್ಥಾನ ಮೂಲಗಳನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ನಿಖರವಾದ ಸ್ಥಾನವನ್ನು ಪಡೆಯಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಅಪ್ಲಿಕೇಶನ್ಗಾಗಿ ಅವುಗಳನ್ನು ಬಳಸಲು ಈ ಸ್ಥಾನ ಸೇವೆಗಳು ಆನ್ ಆಗಿರಬೇಕು ಮತ್ತು ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಲಭ್ಯವಿರಬೇಕು. ನೀವೆಲ್ಲಿರುವಿರಿ ಎಂಬುದನ್ನು ನಿರ್ಧರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ ಇದನ್ನು ಬಳಸಬಹುದು ಮತ್ತು ಹೆಚ್ಚುವರಿ ಬ್ಯಾಟರಿ ಶಕ್ತಿಯನ್ನು ಬಳಸಬಹುದು."
+ "ಗ್ಲೊಬಲ್ ಪೊಸಿಷನಿಂಗ್ ಸಿಸ್ಟಮ್ (GPS) ಅಥವಾ ಸೆಲ್ ಟವರ್ಗಳು ಮತ್ತು ವೈ-ಫೈ ನಂತಹ ನೆಟ್ವರ್ಕ್ ಸ್ಥಾನ ಮೂಲಗಳನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ನಿಖರವಾದ ಸ್ಥಾನವನ್ನು ಪಡೆಯಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಅಪ್ಲಿಕೇಶನ್ಗಾಗಿ ಅವುಗಳನ್ನು ಬಳಸಲು ಈ ಸ್ಥಾನ ಸೇವೆಗಳು ಆನ್ ಆಗಿರಬೇಕು ಮತ್ತು ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಲಭ್ಯವಿರಬೇಕು. ನೀವೆಲ್ಲಿರುವಿರಿ ಎಂಬುದನ್ನು ನಿರ್ಧರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ ಇದನ್ನು ಬಳಸಬಹುದು ಮತ್ತು ಹೆಚ್ಚುವರಿ ಬ್ಯಾಟರಿ ಶಕ್ತಿಯನ್ನು ಬಳಸಬಹುದು."
"ಅಂದಾಜು ಸ್ಥಳವನ್ನು ಪ್ರವೇಶಿಸಿ (ನೆಟ್ವರ್ಕ್-ಆಧಾರಿತ)"
- "ನಿಮ್ಮ ಅಂದಾಜು ಸ್ಥಳವನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಈ ಸ್ಥಳವನ್ನು ಸೆಲ್ ಟವರ್ಗಳು ಮತ್ತು Wi-Fi ನಂತಹ ನೆಟ್ವರ್ಕ್ ಸ್ಥಾನದ ಮೂಲಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಸ್ಥಳದ ಸೇವೆಗಳ ಮೂಲಕ ಪಡೆಯಲಾಗಿದೆ. ಅಪ್ಲಿಕೇಶನ್ಗಾಗಿ ಅವುಗಳನ್ನು ಬಳಸಲು ಈ ಸ್ಥಾನ ಸೇವೆಗಳನ್ನು ಆನ್ ಮಾಡಿರಬೇಕು ಮತ್ತು ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಲಭ್ಯವಿರಬೇಕು. ನೀವು ನಿಖರವಾಗಿ ಎಲ್ಲಿರುವಿರಿ ಎಂಬುದನ್ನು ನಿರ್ಧರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗಳು ಇದನ್ನು ಬಳಸಬಹುದು."
+ "ನಿಮ್ಮ ಅಂದಾಜು ಸ್ಥಳವನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಈ ಸ್ಥಳವನ್ನು ಸೆಲ್ ಟವರ್ಗಳು ಮತ್ತು ವೈ-ಫೈ ನಂತಹ ನೆಟ್ವರ್ಕ್ ಸ್ಥಾನದ ಮೂಲಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಸ್ಥಳದ ಸೇವೆಗಳ ಮೂಲಕ ಪಡೆಯಲಾಗಿದೆ. ಅಪ್ಲಿಕೇಶನ್ಗಾಗಿ ಅವುಗಳನ್ನು ಬಳಸಲು ಈ ಸ್ಥಾನ ಸೇವೆಗಳನ್ನು ಆನ್ ಮಾಡಿರಬೇಕು ಮತ್ತು ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ಲಭ್ಯವಿರಬೇಕು. ನೀವು ನಿಖರವಾಗಿ ಎಲ್ಲಿರುವಿರಿ ಎಂಬುದನ್ನು ನಿರ್ಧರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗಳು ಇದನ್ನು ಬಳಸಬಹುದು."
"ನಿಮ್ಮ ಆಡಿಯೊ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಬದಲಾಯಿಸಿ"
"ವಾಲ್ಯೂಮ್ ರೀತಿಯ ಮತ್ತು ಔಟ್ಪುಟ್ಗಾಗಿ ಯಾವ ಸ್ಪೀಕರ್ ಬಳಸಬೇಕು ಎಂಬ ರೀತಿಯ ಜಾಗತಿಕ ಆಡಿಯೊ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ."
"ಆಡಿಯೊ ರೆಕಾರ್ಡ್ ಮಾಡಿ"
@@ -401,14 +407,14 @@
"ನೆಟ್ವರ್ಕ್ ಸಂಪರ್ಕದ ಸ್ಥಿತಿಯನ್ನು ಬದಲಾಯಿಸಲು ಅಪ್ಲಿಕೇಶನ್ ಅನುಮತಿಸುತ್ತದೆ."
"ಟೆಥರಡ್ ಸಂಪರ್ಕತೆಯನ್ನು ಬದಲಾಯಿಸಿ"
"ಟೆಥರ್ ಮಾಡಲಾದ ನೆಟ್ವರ್ಕ್ ಸಂಪರ್ಕದ ಸ್ಥಿತಿಯನ್ನು ಬದಲಾಯಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
- "Wi-Fi ಸಂಪರ್ಕಗಳನ್ನು ವೀಕ್ಷಿಸಿ"
- "Wi-Fi ಸಕ್ರಿಯಗೊಂಡಿದೆಯೇ ಮತ್ತು ಸಂಪರ್ಕಿಸಲಾದ Wi-Fi ಸಾಧನಗಳ ಹೆಸರಿನ ಮಾಹಿತಿ ರೀತಿಯ, Wi-Fi ನೆಟ್ವರ್ಕ್ ಕುರಿತು ಮಾಹಿತಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ."
- "Wi-Fi ನಿಂದ ಸಂಪರ್ಕಗೊಳಿಸಿ ಮತ್ತು ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಿ"
- "Wi-Fi ಪ್ರವೇಶ ಕೇಂದ್ರಗಳಿಂದ ಸಂಪರ್ಕ ಹೊಂದಲು ಮತ್ತು ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲು, ಹಾಗೆಯೇ Wi-Fi ನೆಟ್ವರ್ಕ್ಗಳಿಗೆ ಸಾಧನದ ಕನ್ಫಿಗರೇಶನ್ ಬದಲಾಯಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ."
- "Wi-Fi ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಸ್ವೀಕಾರಕ್ಕೆ ಅನುಮತಿಸಿ"
- "ನಿಮ್ಮ ಟ್ಯಾಬ್ಲೆಟ್ ಮಾತ್ರವಲ್ಲದೇ, ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ವಿಳಾಸಗಳನ್ನು ಬಳಸಿಕೊಂಡು Wi-Fi ನೆಟ್ವರ್ಕ್ನಲ್ಲಿ ಎಲ್ಲಾ ಸಾಧನಗಳಿಗೆ ಕಳುಹಿಸಲಾಗಿರುವ ಪ್ಯಾಕೆಟ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಅಲ್ಲದ ಮೋಡ್ ಬಳಸುವ ಶಕ್ತಿಗಿಂತಲೂ ಹೆಚ್ಚಿನ ಶಕ್ತಿಯನ್ನು ಬಳಸುತ್ತದೆ."
- "Wi-Fi ನೆಟ್ವರ್ಕ್ನಲ್ಲಿ ನಿಮ್ಮ ಟಿವಿ ಮಾತ್ರವಲ್ಲದೆ, ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ವಿಳಾಸಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಎಲ್ಲಾ ಸಾಧನಗಳಿಗೆ ಕಳುಹಿಸಲಾದ ಪ್ಯಾಕೆಟ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಇದು ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಅಲ್ಲದ ಮೋಡ್ಗಿಂತಲೂ ಹೆಚ್ಚು ಪವರ್ ಬಳಸುತ್ತದೆ."
- "ನಿಮ್ಮ ಫೋನ್ ಮಾತ್ರವಲ್ಲದೇ, ಮಲ್ಟಿಕಾಸ್ಟ್ ವಿಳಾಸಗಳನ್ನು ಬಳಸಿಕೊಂಡು Wi-Fi ನೆಟ್ವರ್ಕ್ನಲ್ಲಿ ಎಲ್ಲಾ ಸಾಧನಗಳಿಗೆ ಕಳುಹಿಸಲಾಗಿರುವ ಪ್ಯಾಕೆಟ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಅಲ್ಲದ ಮೋಡ್ ಬಳಸುವ ಶಕ್ತಿಗಿಂತಲೂ ಹೆಚ್ಚಿನ ಶಕ್ತಿಯನ್ನು ಬಳಸುತ್ತದೆ."
+ "ವೈ-ಫೈ ಸಂಪರ್ಕಗಳನ್ನು ವೀಕ್ಷಿಸಿ"
+ "ವೈ-ಫೈ ಸಕ್ರಿಯಗೊಂಡಿದೆಯೇ ಮತ್ತು ಸಂಪರ್ಕಿಸಲಾದ ವೈ-ಫೈ ಸಾಧನಗಳ ಹೆಸರಿನ ಮಾಹಿತಿ ರೀತಿಯ, ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ ಕುರಿತು ಮಾಹಿತಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ."
+ "ವೈ-ಫೈ ನಿಂದ ಸಂಪರ್ಕಗೊಳಿಸಿ ಮತ್ತು ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಿ"
+ "ವೈ-ಫೈ ಪ್ರವೇಶ ಕೇಂದ್ರಗಳಿಂದ ಸಂಪರ್ಕ ಹೊಂದಲು ಮತ್ತು ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲು, ಹಾಗೆಯೇ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳಿಗೆ ಸಾಧನದ ಕನ್ಫಿಗರೇಶನ್ ಬದಲಾಯಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ."
+ "ವೈ-ಫೈ ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಸ್ವೀಕಾರಕ್ಕೆ ಅನುಮತಿಸಿ"
+ "ನಿಮ್ಮ ಟ್ಯಾಬ್ಲೆಟ್ ಮಾತ್ರವಲ್ಲದೇ, ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ವಿಳಾಸಗಳನ್ನು ಬಳಸಿಕೊಂಡು ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ನಲ್ಲಿ ಎಲ್ಲಾ ಸಾಧನಗಳಿಗೆ ಕಳುಹಿಸಲಾಗಿರುವ ಪ್ಯಾಕೆಟ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಅಲ್ಲದ ಮೋಡ್ ಬಳಸುವ ಶಕ್ತಿಗಿಂತಲೂ ಹೆಚ್ಚಿನ ಶಕ್ತಿಯನ್ನು ಬಳಸುತ್ತದೆ."
+ "ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ನಲ್ಲಿ ನಿಮ್ಮ ಟಿವಿ ಮಾತ್ರವಲ್ಲದೆ, ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ವಿಳಾಸಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಎಲ್ಲಾ ಸಾಧನಗಳಿಗೆ ಕಳುಹಿಸಲಾದ ಪ್ಯಾಕೆಟ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಇದು ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಅಲ್ಲದ ಮೋಡ್ಗಿಂತಲೂ ಹೆಚ್ಚು ಪವರ್ ಬಳಸುತ್ತದೆ."
+ "ನಿಮ್ಮ ಫೋನ್ ಮಾತ್ರವಲ್ಲದೇ, ಮಲ್ಟಿಕಾಸ್ಟ್ ವಿಳಾಸಗಳನ್ನು ಬಳಸಿಕೊಂಡು ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ನಲ್ಲಿ ಎಲ್ಲಾ ಸಾಧನಗಳಿಗೆ ಕಳುಹಿಸಲಾಗಿರುವ ಪ್ಯಾಕೆಟ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಇದು ಮಲ್ಟಿಕ್ಯಾಸ್ಟ್ ಅಲ್ಲದ ಮೋಡ್ ಬಳಸುವ ಶಕ್ತಿಗಿಂತಲೂ ಹೆಚ್ಚಿನ ಶಕ್ತಿಯನ್ನು ಬಳಸುತ್ತದೆ."
"ಬ್ಲೂಟೂತ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಪ್ರವೇಶಿಸಿ"
"ಸ್ಥಳೀಯ ಬ್ಲೂಟೂತ್ ಟ್ಯಾಬ್ಲೆಟ್ ಕಾನ್ಫಿಗರ್ ಮಾಡಲು ಮತ್ತು ಅನ್ವೇಷಿಸಲು ಹಾಗೂ ರಿಮೊಟ್ ಸಾಧನಗಳ ಜೊತೆಗೆ ಜೋಡಿ ಮಾಡಲು ಅಪ್ಲಿಕೇಶನ್ ಅನುಮತಿಸುತ್ತದೆ."
"ಸ್ಥಳೀಯ ಬ್ಲೂಟೂತ್ ಟಿವಿಯನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಲು, ಮತ್ತು ಅನ್ವೇಷಿಸಲು ಮತ್ತು ದೂರ ಸಾಧನಗಳೊಂದಿಗೆ ಜೋಡಿ ಮಾಡಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
@@ -425,29 +431,29 @@
"ಫೋನ್ನಲ್ಲಿ ಬ್ಲೂಟೂತ್ ಕಾನ್ಫಿಗರೇಶನ್ ಅನ್ನು ವೀಕ್ಷಿಸಲು ಮತ್ತು ಜೋಡಿ ಮಾಡಿರುವ ಸಾಧನಗಳೊಂದಿಗೆ ಸಂಪರ್ಕಗಳನ್ನು ಕಲ್ಪಿಸಲು ಹಾಗೂ ಸ್ವೀಕರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತದೆ."
"ಸಮೀಪ ಕ್ಷೇತ್ರ ಸಂವಹನವನ್ನು ನಿಯಂತ್ರಿಸಿ"
"ಸಮೀಪದ ಕ್ಷೇತ್ರ ಸಂವಹನ (NFC) ಟ್ಯಾಗ್ಗಳು, ಕಾರ್ಡ್ಗಳು, ಮತ್ತು ಓದುಗರನ್ನು ಅಪ್ಲಿಕೇಶನ್ ಅನುಮತಿಸುತ್ತದೆ."
- "ನಿಮ್ಮ ಪರದೆ ಲಾಕ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
+ "ನಿಮ್ಮ ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
"ಕೀಲಾಕ್ ಮತ್ತು ಯಾವುದೇ ಸಂಬಂಧಿತ ಭದ್ರತಾ ಪಾಸ್ವರ್ಡ್ ಭದ್ರತೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿ ನೀಡುತ್ತದೆ. ಉದಾಹರಣೆಗೆ, ಒಳಬರುವ ಕರೆಯನ್ನು ಸ್ವೀಕರಿಸುವಾಗ ಕೀಲಾಕ್ ಅನ್ನು ಫೋನ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುತ್ತದೆ, ನಂತರ ಕರೆಯು ಅಂತ್ಯಗೊಂಡಾಗ ಕೀಲಾಕ್ ಅನ್ನು ಮರು ಸಕ್ರಿಯಗೊಳಿಸುತ್ತದೆ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಹಾರ್ಡ್ವೇರ್ ನಿರ್ವಹಿಸಿ"
- "ಬಳಕೆಗೆ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಟೆಂಪ್ಲೇಟ್ಗಳನ್ನು ಸೇರಿಸಲು ಮತ್ತು ಅಳಿಸಲು ವಿಧಾನಗಳನ್ನು ಮನವಿ ಮಾಡಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಹಾರ್ಡ್ವೇರ್ ಬಳಸಿ"
- "ಪ್ರಮಾಣೀಕರಣಕ್ಕಾಗಿ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಹಾರ್ಡ್ವೇರ್ ಬಳಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ"
- "ಭಾಗಶಃ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಪತ್ತೆಯಾಗಿದೆ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಪ್ರಕ್ರಿಯೆಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಸೆನ್ಸಾರ್ ಕೊಳೆಯಾಗಿದೆ. ದಯವಿಟ್ಟು ಅದನ್ನು ಸ್ವಚ್ಛಗೊಳಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
+ "ಬೆರಳಚ್ಚು ಹಾರ್ಡ್ವೇರ್ ನಿರ್ವಹಿಸಿ"
+ "ಬಳಕೆಗೆ ಬೆರಳಚ್ಚು ಟೆಂಪ್ಲೇಟ್ಗಳನ್ನು ಸೇರಿಸಲು ಮತ್ತು ಅಳಿಸಲು ವಿಧಾನಗಳನ್ನು ಮನವಿ ಮಾಡಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
+ "ಬೆರಳಚ್ಚು ಹಾರ್ಡ್ವೇರ್ ಬಳಸಿ"
+ "ಪ್ರಮಾಣೀಕರಣಕ್ಕಾಗಿ ಬೆರಳಚ್ಚು ಹಾರ್ಡ್ವೇರ್ ಬಳಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ"
+ "ಭಾಗಶಃ ಬೆರಳಚ್ಚು ಪತ್ತೆಯಾಗಿದೆ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
+ "ಬೆರಳಚ್ಚು ಪ್ರಕ್ರಿಯೆಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
+ "ಬೆರಳಚ್ಚು ಸೆನ್ಸಾರ್ ಕೊಳೆಯಾಗಿದೆ. ದಯವಿಟ್ಟು ಅದನ್ನು ಸ್ವಚ್ಛಗೊಳಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
"ಬೆರಳನ್ನು ಅತಿ ವೇಗವಾಗಿ ಸರಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
"ಬೆರಳನ್ನು ತುಂಬಾ ನಿಧಾನವಾಗಿ ಸರಿಸಲಾಗಿದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಹಾರ್ಡ್ವೇರ್ ಲಭ್ಯವಿಲ್ಲ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಸಂಗ್ರಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ತೆಗೆದುಹಾಕಿ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಅವಧಿ ಮೀರಿದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಕಾರ್ಯಾಚರಣೆಯನ್ನು ರದ್ದುಮಾಡಲಾಗಿದೆ."
+ "ಬೆರಳಚ್ಚು ಹಾರ್ಡ್ವೇರ್ ಲಭ್ಯವಿಲ್ಲ."
+ "ಬೆರಳಚ್ಚು ಸಂಗ್ರಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಬೆರಳಚ್ಚು ತೆಗೆದುಹಾಕಿ."
+ "ಬೆರಳಚ್ಚು ಅವಧಿ ಮೀರಿದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
+ "ಬೆರಳಚ್ಚು ಕಾರ್ಯಾಚರಣೆಯನ್ನು ರದ್ದುಮಾಡಲಾಗಿದೆ."
"ಹಲವಾರು ಪ್ರಯತ್ನಗಳು. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
"ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
"ಫಿಂಗರ್ %d"
- "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ಐಕಾನ್"
+ "ಬೆರಳಚ್ಚು ಐಕಾನ್"
"ಸಿಂಕ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ರೀಡ್ ಮಾಡು"
"ಒಂದು ಖಾತೆಯ ಸಿಂಕ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ನೀಡುತ್ತದೆ. ಉದಾಹರಣೆಗೆ, ಖಾತೆಯೊಂದಿಗೆ ಜನರ ಅಪ್ಲಿಕೇಶನ್ ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆಯೇ ಎಂಬುದನ್ನು ಇದು ನಿರ್ಧರಿಸಬಹುದು."
"ಸಿಂಕ್ ಆನ್ ಮತ್ತು ಸಿಂಕ್ ಆಫ್ ಟಾಗಲ್ ಮಾಡಿ"
@@ -517,9 +523,9 @@
"ಪರದೆಯನ್ನು ಅನ್ಲಾಕ್ ಮಾಡುವಾಗ ಟೈಪ್ ಮಾಡಲಾದ ತಪ್ಪಾಗಿರುವ ಪಾಸ್ವರ್ಡ್ಗಳ ಸಂಖ್ಯೆಯನ್ನು ವೀಕ್ಷಿಸಿ ಮತ್ತು ಟ್ಯಾಬ್ಲೆಟ್ ಲಾಕ್ ಮಾಡಿ ಅಥವಾ ಹಲವಾರು ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಟೈಪ್ ಮಾಡಲಾಗಿದ್ದರೆ ಈ ಬಳಕೆದಾರರ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಅಳಿಸಿಹಾಕಿ."
"ಪರದೆಯನ್ನು ಅನ್ಲಾಕ್ ಮಾಡುವಾಗ ಟೈಪ್ ಮಾಡಲಾದ ತಪ್ಪಾಗಿರುವ ಪಾಸ್ವರ್ಡ್ಗಳ ಸಂಖ್ಯೆಯನ್ನು ವೀಕ್ಷಿಸಿ ಮತ್ತು ಟಿವಿಯನ್ನು ಲಾಕ್ ಮಾಡಿ ಅಥವಾ ಹಲವಾರು ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಟೈಪ್ ಮಾಡಲಾಗಿದ್ದರೆ ಈ ಬಳಕೆದಾರರ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಅಳಿಸಿಹಾಕಿ."
"ಪರದೆಯನ್ನು ಅನ್ಲಾಕ್ ಮಾಡುವಾಗ ಟೈಪ್ ಮಾಡಲಾದ ತಪ್ಪಾಗಿರುವ ಪಾಸ್ವರ್ಡ್ಗಳ ಸಂಖ್ಯೆಯನ್ನು ವೀಕ್ಷಿಸಿ ಮತ್ತು ಫೋನ್ ಲಾಕ್ ಮಾಡಿ ಅಥವಾ ಹಲವಾರು ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಟೈಪ್ ಮಾಡಲಾಗಿದ್ದರೆ ಈ ಬಳಕೆದಾರರ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಅಳಿಸಿಹಾಕಿ."
- "ಪರದೆ ಲಾಕ್ ಬದಲಾಯಿಸಿ"
- "ಪರದೆ ಲಾಕ್ ಬದಲಾಯಿಸಿ."
- "ಪರದೆ ಲಾಕ್ ಮಾಡಿ"
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಬದಲಾಯಿಸಿ"
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಬದಲಾಯಿಸಿ."
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಮಾಡಿ"
"ಪರದೆಯು ಯಾವಾಗ ಮತ್ತು ಹೇಗೆ ಲಾಕ್ ಆಗಬೇಕೆಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ."
"ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಅಳಿಸಿ"
"ಫ್ಯಾಕ್ಟರಿ ಡೇಟಾ ಮರುಹೊಂದಿಕೆಯನ್ನು ನಿರ್ವಹಿಸುವ ಮೂಲಕ ಎಚ್ಚರಿಕೆಯನ್ನು ನೀಡದೆಯೇ ಟ್ಯಾಬ್ಲೆಟ್ ಡೇಟಾವನ್ನು ಅಳಿಸಿಹಾಕಿ."
@@ -531,38 +537,38 @@
"ಯಾವುದೇ ಸೂಚನೆ ಇಲ್ಲದೆ ಈ ಫೋನ್ನಲ್ಲಿ ಈ ಬಳಕೆದಾರರ ಡೇಟಾವನ್ನು ಅಳಿಸಿ."
"ಸಾಧನವನ್ನು ಜಾಗತಿಕ ಪ್ರಾಕ್ಸಿಗೆ ಹೊಂದಿಸಿ"
"ನೀತಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ ಬಳಸಬೇಕಾದ ಸಾಧನದ ಜಾಗತಿಕ ಪ್ರಾಕ್ಸಿಯನ್ನು ಹೊಂದಿಸಿ. ಸಾಧನದ ಮಾಲೀಕರು ಮಾತ್ರ ಜಾಗತಿಕ ಪ್ರಾಕ್ಸಿಯನ್ನು ಹೊಂದಿಸಬಹುದಾಗಿರುತ್ತದೆ."
- "ಪರದೆ ಲಾಕ್ ಪಾಸ್ವರ್ಡ್ ಮುಕ್ತಾಯವನ್ನು ಹೊಂದಿಸಿ"
- "ಪರದೆ ಲಾಕ್ ಪಾಸ್ವರ್ಡ್, ಪಿನ್, ಅಥವಾ ನಮೂನೆಯನ್ನು ಹೆಚ್ಚು ಪದೆ ಪದೇ ಬದಲಾಯಿಸಬೇಕಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ಬದಲಾಯಿಸಿ."
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಪಾಸ್ವರ್ಡ್ ಮುಕ್ತಾಯವನ್ನು ಹೊಂದಿಸಿ"
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಪಾಸ್ವರ್ಡ್, ಪಿನ್, ಅಥವಾ ನಮೂನೆಯನ್ನು ಹೆಚ್ಚು ಪದೆ ಪದೇ ಬದಲಾಯಿಸಬೇಕಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ಬದಲಾಯಿಸಿ."
"ಸಂಗ್ರಹಣೆ ಎನ್ಕ್ರಿಪ್ಶನ್ ಹೊಂದಿಸಿ"
"ಸಂಗ್ರಹಿಸಿರುವ ಅಪ್ಲಿಕೇಶನ್ ಡೇಟಾವನ್ನು ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಬೇಕಾದ ಅಗತ್ಯವಿದೆ."
"ಕ್ಯಾಮರಾಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
"ಎಲ್ಲಾ ಸಾಧನ ಕ್ಯಾಮರಾಗಳ ಬಳಕೆಯನ್ನು ತಡೆಯಿರಿ."
- "ಕೆಲವು ಪರದೆ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
+ "ಕೆಲವು ಸ್ಕ್ರೀನ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
"ಕೆಲವು ಪರದೆ ಲಾಕ್ನ ವೈಶಿಷ್ಟ್ಯಗಳ ಬಳಕೆಯನ್ನು ತಡೆಯಿರಿ."
- - "ನಿವಾಸ"
+ - "ಮನೆ"
- "ಮೊಬೈಲ್"
- "ಕಚೇರಿ"
- "ಕಚೇರಿ ಫಾಕ್ಸ್"
- - "ನಿವಾಸದ ಫ್ಯಾಕ್ಸ್"
+ - "ಮನೆಯ ಫ್ಯಾಕ್ಸ್"
- "ಪೇಜರ್"
- "ಇತರೆ"
- "ಕಸ್ಟಮ್"
- - "ನಿವಾಸ"
+ - "ಮನೆ"
- "ಕಚೇರಿ"
- "ಇತರೆ"
- "ಕಸ್ಟಮ್"
- - "ನಿವಾಸ"
+ - "ಮನೆ"
- "ಕಚೇರಿ"
- "ಇತರೆ"
- "ಕಸ್ಟಮ್"
- - "ನಿವಾಸ"
+ - "ಮನೆ"
- "ಕಚೇರಿ"
- "ಇತರೆ"
- "ಕಸ್ಟಮ್"
@@ -583,15 +589,15 @@
- "Jabber"
"ಕಸ್ಟಮ್"
- "ನಿವಾಸ"
+ "ಮನೆ"
"ಮೊಬೈಲ್"
"ಕಚೇರಿ"
"ಕಚೇರಿ ಫಾಕ್ಸ್"
- "ನಿವಾಸದ ಫ್ಯಾಕ್ಸ್"
+ "ಮನೆಯ ಫ್ಯಾಕ್ಸ್"
"ಪೇಜರ್"
"ಇತರೆ"
"ಮರಳಿ ಕರೆಮಾಡು"
- "ಕಾರ್"
+ "ಕಾರು"
"ಕಂಪನಿ ಮುಖ್ಯ"
"ISDN"
"ಪ್ರಮುಖ"
@@ -608,16 +614,16 @@
"ವಾರ್ಷಿಕೋತ್ಸವ"
"ಇತರೆ"
"ಕಸ್ಟಮ್"
- "ಮುಖಪುಟ"
+ "ಮನೆ"
"ಕಚೇರಿ"
"ಇತರೆ"
"ಮೊಬೈಲ್"
"ಕಸ್ಟಮ್"
- "ನಿವಾಸ"
+ "ಮನೆ"
"ಕಚೇರಿ"
"ಇತರೆ"
"ಕಸ್ಟಮ್"
- "ನಿವಾಸ"
+ "ಮನೆ"
"ಕಚೇರಿ"
"ಇತರೆ"
"ಕಸ್ಟಮ್"
@@ -649,7 +655,7 @@
"ಸಹೋದರಿ"
"ಸಂಗಾತಿ"
"ಕಸ್ಟಮ್"
- "ನಿವಾಸ"
+ "ಮನೆ"
"ಕಚೇರಿ"
"ಇತರೆ"
"ಈ ಸಂಪರ್ಕವನ್ನು ವೀಕ್ಷಿಸಲು ಯಾವುದೇ ಅಪ್ಲಿಕೇಶನ್ ಕಂಡುಬಂದಿಲ್ಲ."
@@ -657,22 +663,23 @@
"PUK ಮತ್ತು ಹೊಸ ಪಿನ್ ಕೋಡ್ ಟೈಪ್ ಮಾಡಿ"
"PUK ಕೋಡ್"
"ಹೊಸ ಪಿನ್ ಕೋಡ್"
- "ಪಾಸ್ವರ್ಡ್ ಟೈಪ್ ಮಾಡಲು ಸ್ಪರ್ಶಿಸಿ"
+ "ಪಾಸ್ವರ್ಡ್ ಟೈಪ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಅನ್ಲಾಕ್ ಮಾಡಲು ಪಾಸ್ವರ್ಡ್ ಟೈಪ್ ಮಾಡಿ"
"ಅನ್ಲಾಕ್ ಮಾಡಲು ಪಿನ್ ಟೈಪ್ ಮಾಡಿ"
"ತಪ್ಪಾದ ಪಿನ್ ಕೋಡ್."
"ಅನ್ಲಾಕ್ ಮಾಡಲು, ಮೆನು ನಂತರ 0 ಒತ್ತಿರಿ."
"ತುರ್ತು ಸಂಖ್ಯೆ"
"ಯಾವುದೇ ಸೇವೆಯಿಲ್ಲ"
- "ಪರದೆ ಲಾಕ್ ಆಗಿದೆ."
+ "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಆಗಿದೆ."
"ಅನ್ಲಾಕ್ ಮಾಡಲು ಮೆನು ಒತ್ತಿರಿ ಇಲ್ಲವೇ ತುರ್ತು ಕರೆಯನ್ನು ಮಾಡಿ."
"ಅನ್ಲಾಕ್ ಮಾಡಲು ಮೆನು ಒತ್ತಿರಿ."
"ಅನ್ಲಾಕ್ ಮಾಡಲು ಪ್ಯಾಟರ್ನ್ ಚಿತ್ರಿಸಿ"
"ತುರ್ತು"
"ಕರೆಗೆ ಹಿಂತಿರುಗು"
"ಸರಿಯಾಗಿದೆ!"
- "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು"
- "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು"
+ "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ"
+ "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ"
+ "ಎಲ್ಲ ವೈಶಿಷ್ಟ್ಯಗಳು ಮತ್ತು ಡೇಟಾಗೆ ಅನ್ಲಾಕ್ ಮಾಡಿ"
"ಗರಿಷ್ಠ ಫೇಸ್ ಅನ್ಲಾಕ್ ಪ್ರಯತ್ನಗಳು ಮೀರಿವೆ"
"ಯಾವುದೇ ಸಿಮ್ ಕಾರ್ಡ್ ಇಲ್ಲ"
"ಟ್ಯಾಬ್ಲೆಟ್ನಲ್ಲಿ ಸಿಮ್ ಕಾರ್ಡ್ ಇಲ್ಲ."
@@ -765,7 +772,7 @@
"ಈ ಪುಟದಿಂದ ಹೊರಬನ್ನಿ"
"ಈ ಪುಟದಲ್ಲಿಯೇ ಇರಿ"
"%s\n\nನೀವು ಈ ಪುಟದಿಂದಾಚೆಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
- "ದೃಢೀಕರಿಸಿ"
+ "ದೃಢೀಕರಿಸು"
"ಸಲಹೆ: ಝೂಮ್ ಇನ್ ಮತ್ತು ಝೂಮ್ ಔಟ್ ಮಾಡಲು ಡಬಲ್-ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಸ್ವಯಂತುಂಬುವಿಕೆ"
"ಸ್ವಯಂತುಂಬುವಿಕೆಯನ್ನು ಹೊಂದಿಸಿ"
@@ -792,7 +799,7 @@
"ನಿಮ್ಮ ಟಿವಿಯಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾದ ಬ್ರೌಸರ್ನ ಇತಿಹಾಸ ಬುಕ್ಮಾರ್ಕ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಇದು ಬ್ರೌಸರ್ ಡೇಟಾವನ್ನು ಅಳಿಸಲು ಅಥವಾ ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಬಹುದು. ಗಮನಿಸಿ: ವೆಬ್ ಬ್ರೌಸಿಂಗ್ ಸಾಮರ್ಥ್ಯಗಳ ಜೊತೆಗೆ ಮೂರನೇ ವ್ಯಕ್ತಿಯ ಬ್ರೌಸರ್ಗಳ ಅಥವಾ ಇತರ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಮೂಲಕ ಈ ಅನುಮತಿಯು ಕಾರ್ಯಗತಗೊಳಿಸದಿರಬಹುದು."
"ನಿಮ್ಮ ಫೋನ್ನಲ್ಲಿ ಸಂಗ್ರಹಿಸಲಾಗಿರುವ ಬ್ರೌಸರ್ನ ಇತಿಹಾಸ ಅಥವಾ ಬುಕ್ಮಾರ್ಕ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಇದು ಬ್ರೌಸರ್ನ ಡೇಟಾವನ್ನು ಅಳಿಸಲು ಅಥವಾ ಮಾರ್ಪಡಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅವಕಾಶ ಕಲ್ಪಿಸಿಕೊಡಬಹುದು. ಗಮನಿಸಿ: ಈ ಅನುಮತಿಯನ್ನು ವೆಬ್ ಬ್ರೌಸಿಂಗ್ ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಹೊಂದಿರುವ ಮೂರನೇ-ವ್ಯಕ್ತಿ ಬ್ರೌಸರ್ಗಳು ಅಥವಾ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಮೂಲಕ ಜಾರಿಗೊಳಿಸಲಾಗುವುದಿಲ್ಲ."
"ಅಲಾರಮ್ ಹೊಂದಿಸಿ"
- "ಸ್ಥಾಪಿಸಲಾದ ಅಲಾರಂ ಗಡಿಯಾರ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ಅಲಾರಂ ಹೊಂದಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಕೆಲವು ಅಲಾರಂ ಗಡಿಯಾರ ಅಪ್ಲಿಕೇಶನ್ಗಳು ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸದಿರಬಹುದು."
+ "ಸ್ಥಾಪಿಸಲಾದ ಅಲಾರಮ್ ಗಡಿಯಾರ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ಅಲಾರಮ್ ಹೊಂದಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ. ಕೆಲವು ಅಲಾರಮ್ ಗಡಿಯಾರ ಅಪ್ಲಿಕೇಶನ್ಗಳು ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸದಿರಬಹುದು."
"ಧ್ವನಿಮೇಲ್ ಸೇರಿಸಿ"
"ನಿಮ್ಮ ದ್ವನಿಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ಗೆ ಸಂದೇಶಗಳನ್ನು ಸೇರಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
"ಬ್ರೌಸರ್ ಜಿಯೋಲೊಕೇಶನ್ ಅನುಮತಿಗಳನ್ನು ಮಾರ್ಪಡಿಸಿ"
@@ -808,9 +815,9 @@
"space"
"enter"
"ಅಳಿಸು"
- "ಹುಡುಕು"
+ "ಹುಡುಕಿ"
"ಹುಡುಕಿ…"
- "ಹುಡುಕು"
+ "ಹುಡುಕಿ"
"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
@@ -853,6 +860,71 @@
- %d ಗಂಟೆಗಳು
- %d ಗಂಟೆಗಳು
+ "ಇದೀಗ"
+
+ - %dನಿ
+ - %dನಿ
+
+
+ - %dಗಂ
+ - %dಗಂ
+
+
+ - %dದಿ
+ - %dದಿ
+
+
+ - %dವ
+ - %dವ
+
+
+ - %dನಿ.ದಲ್ಲಿ
+ - %dನಿ.ದಲ್ಲಿ
+
+
+ - %dಗಂ.ಯಲ್ಲಿ
+ - %dಗಂ.ಯಲ್ಲಿ
+
+
+ - %dದಿ.ದಲ್ಲಿ
+ - %dದಿ.ದಲ್ಲಿ
+
+
+ - %dವ.ದಲ್ಲಿ
+ - %dವ.ದಲ್ಲಿ
+
+
+ - %d ನಿಮಿಷಗಳ ಹಿಂದೆ
+ - %d ನಿಮಿಷಗಳ ಹಿಂದೆ
+
+
+ - %d ಗಂಟೆಗಳ ಹಿಂದೆ
+ - %d ಗಂಟೆಗಳ ಹಿಂದೆ
+
+
+ - %d ದಿನಗಳ ಹಿಂದೆ
+ - %d ದಿನಗಳ ಹಿಂದೆ
+
+
+ - %d ವರ್ಷಗಳ ಹಿಂದೆ
+ - %d ವರ್ಷಗಳ ಹಿಂದೆ
+
+
+ - %d ನಿಮಿಷಗಳಲ್ಲಿ
+ - %d ನಿಮಿಷಗಳಲ್ಲಿ
+
+
+ - %d ಗಂಟೆಗಳಲ್ಲಿ
+ - %d ಗಂಟೆಗಳಲ್ಲಿ
+
+
+ - %d ದಿನಗಳಲ್ಲಿ
+ - %d ದಿನಗಳಲ್ಲಿ
+
+
+ - %d ವರ್ಷಗಳಲ್ಲಿ
+ - %d ವರ್ಷಗಳಲ್ಲಿ
+
"ವೀಡಿಯೊ ಸಮಸ್ಯೆ"
"ಈ ಸಾಧನಲ್ಲಿ ಸ್ಟ್ರೀಮ್ ಮಾಡಲು ಈ ವೀಡಿಯೊ ಮಾನ್ಯವಾಗಿಲ್ಲ."
"ಈ ವೀಡಿಯೊ ಪ್ಲೇ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ."
@@ -884,28 +956,39 @@
"ಕೆಲವು ಸಿಸ್ಟಂ ಕಾರ್ಯವಿಧಾನಗಳು ಕಾರ್ಯನಿರ್ವಹಿಸದೇ ಇರಬಹುದು"
"ಸಿಸ್ಟಂನಲ್ಲಿ ಸಾಕಷ್ಟು ಸಂಗ್ರಹಣೆಯಿಲ್ಲ. ನೀವು 250MB ನಷ್ಟು ಖಾಲಿ ಸ್ಥಳವನ್ನು ಹೊಂದಿರುವಿರಾ ಎಂಬುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ ಹಾಗೂ ಮರುಪ್ರಾರಂಭಿಸಿ."
"%1$s ಚಾಲನೆಯಲ್ಲಿದೆ"
- "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಅಥವಾ ಅಪ್ಲಿಕೇಶನ್ ನಿಲ್ಲಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಅಥವಾ ಅಪ್ಲಿಕೇಶನ್ ನಿಲ್ಲಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"ಸರಿ"
- "ರದ್ದುಮಾಡು"
+ "ರದ್ದುಮಾಡಿ"
"ಸರಿ"
- "ರದ್ದುಮಾಡು"
+ "ರದ್ದುಮಾಡಿ"
"ಗಮನಿಸಿ"
"ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
"ಆನ್ ಮಾಡು"
"ಆಫ್ ಮಾಡು"
"ಇದನ್ನು ಬಳಸಿಕೊಂಡು ಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಿ"
"%1$s ಬಳಸಿಕೊಂಡು ಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಿ"
+ "ಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಿ"
"ಇದರ ಮೂಲಕ ತೆರೆಯಿರಿ"
"%1$s ಜೊತೆಗೆ ತೆರೆಯಿರಿ"
- "ಇವರ ಜೊತೆಗೆ ಸಂಪಾದಿಸಿ"
- "%1$s ಜೊತೆಗೆ ಸಂಪಾದಿಸಿ"
+ "ತೆರೆ"
+ "ಇವರ ಜೊತೆಗೆ ಎಡಿಟ್ ಮಾಡಿ"
+ "%1$s ಜೊತೆಗೆ ಎಡಿಟ್ ಮಾಡಿ"
+ "ಎಡಿಟ್"
"ಹಂಚಿಕೊಳ್ಳಿ"
"%1$s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
- "ಹೋಮ್ ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
- "ಹೋಮ್ ಎಂಬಂತೆ %1$s ಅನ್ನು ಬಳಸಿ"
- "ಈ ಕ್ರಿಯೆಗೆ ಡೀಫಾಲ್ಟ್ ಆಗಿ ಬಳಸಿ."
+ "ಹಂಚಿಕೊಳ್ಳಿ"
+ "ಇದನ್ನು ಬಳಸಿಕೊಂಡು ಕಳುಹಿಸಿ"
+ "%1$s ಬಳಸಿಕೊಂಡು ಕಳುಹಿಸಿ"
+ "ಕಳುಹಿಸು"
+ "ಮುಖಪುಟ ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಮುಖಪುಟ ಎಂಬಂತೆ %1$s ಅನ್ನು ಬಳಸಿ"
+ "ಚಿತ್ರ ಕ್ಯಾಪ್ಚರ್ ಮಾಡಿ"
+ "ಇದರ ಜೊತೆಗೆ ಚಿತ್ರ ಕ್ಯಾಪ್ಚರ್ ಮಾಡಿ"
+ "%1$s ಜೊತೆ ಚಿತ್ರ ಕ್ಯಾಪ್ಚರ್ ಮಾಡಿ"
+ "ಚಿತ್ರ ಕ್ಯಾಪ್ಚರ್ ಮಾಡಿ"
+ "ಈ ಕ್ರಿಯೆಗೆ ಡಿಫಾಲ್ಟ್ ಆಗಿ ಬಳಸಿ."
"ಬೇರೆಯ ಅಪ್ಲಿಕೇಶನ್ ಬಳಸಿ"
- "ಸಿಸ್ಟಂ ಸೆಟ್ಟಿಂಗ್ಗಳು > ಅಪ್ಲಿಕೇಶನ್ಗಳು > ಡೌನ್ಲೋಡ್ ಮಾಡಲಾದ ಡೀಫಾಲ್ಟ್ ಅನ್ನು ತೆರವುಗೊಳಿಸಿ."
+ "ಸಿಸ್ಟಂ ಸೆಟ್ಟಿಂಗ್ಗಳು > ಅಪ್ಲಿಕೇಶನ್ಗಳು > ಡೌನ್ಲೋಡ್ ಮಾಡಲಾದ ಡಿಫಾಲ್ಟ್ ಅನ್ನು ತೆರವುಗೊಳಿಸಿ."
"ಕ್ರಿಯೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ"
"USB ಸಾಧನಕ್ಕೆ ಅಪ್ಲಿಕೇಶನ್ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ"
"ಯಾವುದೇ ಅಪ್ಲಿಕೇಶನ್ಗಳು ಈ ಕ್ರಿಯೆಗಾಗಿ ಬದ್ಧತೆ ತೋರಿಸುವುದಿಲ್ಲ."
@@ -913,11 +996,10 @@
"%1$s ನಿಲ್ಲಿಸಿದೆ"
"%1$s ನಿಲ್ಲುತ್ತಲೇ ಇರುತ್ತದೆ"
"%1$s ನಿಲ್ಲುತ್ತಲೇ ಇರುತ್ತದೆ"
- "ಅಪ್ಲಿಕೇಶನ್ ಮರುಪ್ರಾರಂಭಿಸಿ"
- "ಅಪ್ಲಿಕೇಶನ್ ಮರುಹೊಂದಿಸಿ ಮತ್ತು ಮರುಪ್ರಾರಂಭಿಸಿ"
+ "ಅಪ್ಲಿಕೇಶನ್ ಮತ್ತೆ ತೆರೆಯಿರಿ"
"ಪ್ರತಿಕ್ರಿಯೆ ಕಳುಹಿಸು"
"ಮುಚ್ಚು"
- "ಮ್ಯೂಟ್"
+ "ಸಾಧನವು ಮರುಪ್ರಾರಂಭವಾಗುವವರೆಗೂ ಮ್ಯೂಟ್ ಮಾಡಿ"
"ನಿರೀಕ್ಷಿಸು"
"ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಮುಚ್ಚಿ"
@@ -935,17 +1017,22 @@
"ಮಾಪಕ"
"ಯಾವಾಗಲೂ ತೋರಿಸಿ"
"ಸಿಸ್ಟಂ ಸೆಟ್ಟಿಂಗ್ಗಳು > ಅಪ್ಲಿಕೇಶನ್ಗಳು > ಡೌನ್ಲೋಡ್ ಆಗಿರುವುದರಲ್ಲಿ ಇದನ್ನು ಮರು ಸಕ್ರಿಯಗೊಳಿಸಿ."
+ "%1$s ಪ್ರಸ್ತುತ ಪ್ರದರ್ಶನ ಗಾತ್ರದ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ ಮತ್ತು ಅನಿರೀಕ್ಷಿತವಾಗಿ ವರ್ತಿಸಬಹುದು."
+ "ಯಾವಾಗಲೂ ತೋರಿಸು"
"ಅಪ್ಲಿಕೇಶನ್ %1$s (ಪ್ರಕ್ರಿಯೆಯು %2$s) ತನ್ನ ಸ್ವಯಂ-ಜಾರಿ ಕಠಿಣ ಮೋಡ್ ನೀತಿಯನ್ನು ಉಲ್ಲಂಘನೆ ಮಾಡಿದೆ."
"%1$s ಪ್ರಕ್ರಿಯೆಯು ತನ್ನ ಸ್ವಯಂ-ಜಾರಿ ಕಠಿಣ ಮೋಡ್ ನೀತಿಯನ್ನು ಉಲ್ಲಂಘನೆ ಮಾಡಿದೆ."
"Android ಅಪ್ಗ್ರೇಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ…"
"Android ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ…"
"ಸಂಗ್ರಹಣೆಯನ್ನು ಆಪ್ಟಿಮೈಸ್ ಮಾಡಲಾಗುತ್ತಿದೆ."
+ "Android ಅಪ್ಡೇಟ್ ಮುಗಿಸಲಾಗುತ್ತಿದೆ…"
+ "ಅಪ್ಗ್ರೇಡ್ ಮುಗಿಯುವ ತನಕ ಕೆಲವು ಅಪ್ಲಿಕೇಶನ್ಗಳು ಸರಿಯಾಗಿ ಕೆಲಸ ಮಾಡದಿರಬಹುದು"
+ "%1$s ಅಪ್ಗ್ರೇಡ್ ಆಗುತ್ತಿದೆ..."
"%2$d ರಲ್ಲಿ %1$d ಅಪ್ಲಿಕೇಶನ್ ಆಪ್ಟಿಮೈಸ್ ಮಾಡಲಾಗುತ್ತಿದೆ."
"%1$s ಸಿದ್ಧಪಡಿಸಲಾಗುತ್ತಿದೆ."
"ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ."
"ಬೂಟ್ ಪೂರ್ಣಗೊಳಿಸಲಾಗುತ್ತಿದೆ."
"%1$s ರನ್ ಆಗುತ್ತಿದೆ"
- "ಅಪ್ಲಿಕೇಶನ್ ಬದಲಾಯಿಸಲು ಸ್ಪರ್ಶಿಸಿ"
+ "ಅಪ್ಲಿಕೇಶನ್ ಬದಲಾಯಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಬದಲಾಯಿಸುವುದೇ?"
"ಮತ್ತೊಂದು ಅಪ್ಲಿಕೇಶನ್ ಈಗಾಗಲೇ ಚಾಲ್ತಿಯಲ್ಲಿದೆ ನೀವು ಹೊಸದೊಂದು ಪ್ರಾರಂಭಿಸುವ ಮೊದಲು ಅದನ್ನು ನಿಲ್ಲಿಸಬೇಕು."
"%1$s ಗೆ ಹಿಂತಿರುಗಿ"
@@ -953,7 +1040,7 @@
"%1$s ಪ್ರಾರಂಭಿಸಿ"
"ಉಳಿಸದೇ ಹಳೆಯ ಅಪ್ಲಿಕೇಶನ್ ನಿಲ್ಲಿಸಿ."
"%1$s ಮೆಮೊರಿ ಮಿತಿಯನ್ನು ಮೀರಿದೆ"
- "ಹೀಪ್ ಡಂಪ್ ಅನ್ನು ಸಂಗ್ರಹಿಸಲಾಗಿದೆ; ಹಂಚಲು ಸ್ಪರ್ಶಿಸಿ"
+ "ಹೀಪ್ ಡಂಪ್ ಅನ್ನು ಸಂಗ್ರಹಿಸಲಾಗಿದೆ; ಹಂಚಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಹೀಪ್ ಡಂಪ್ ಹಂಚಿಕೊಳ್ಳುವುದೇ?"
"%1$s ಪ್ರಕ್ರಿಯೆಯು %2$s ರ ಪ್ರಕ್ರಿಯೆ ಮೆಮೊರಿ ಮಿತಿಯನ್ನು ಮೀರಿದೆ. ನೀವು ಅದರ ಡೆವಲಪರ್ ಜೊತೆ ಹಂಚಿಕೊಳ್ಳಲು ಹೀಪ್ ಡಂಪ್ ಲಭ್ಯವಿದೆ. ಎಚ್ಚರಿಕೆ: ಈ ಹೀಪ್ ಡಂಪ್ ಅಪ್ಲಿಕೇಶನ್ ಪ್ರವೇಶ ಹೊಂದಿರುವ ನಿಮ್ಮ ಯಾವುದೇ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿರಬಹುದು."
"ಪಠ್ಯಕ್ಕೆ ಕ್ರಿಯೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ"
@@ -963,7 +1050,7 @@
"ಶಾಂತ ರಿಂಗ್ಟೋನ್ ಹೊಂದಿಸಲಾಗಿದೆ"
"ಒಳ-ಕರೆಯ ವಾಲ್ಯೂಮ್"
"ಬ್ಲೂಟೂತ್ ಒಳ-ಕರೆಯ ವಾಲ್ಯೂಮ್"
- "ಅಲಾರಂ ವಾಲ್ಯೂಮ್"
+ "ಅಲಾರಮ್ ವಾಲ್ಯೂಮ್"
"ಅಧಿಸೂಚನೆಯ ವಾಲ್ಯೂಮ್"
"ವಾಲ್ಯೂಮ್"
"ಬ್ಲೂಟೂತ್ ವಾಲ್ಯೂಮ್"
@@ -971,35 +1058,46 @@
"ಕರೆಯ ವಾಲ್ಯೂಮ್"
"ಮೀಡಿಯಾ ವಾಲ್ಯೂಮ್"
"ಅಧಿಸೂಚನೆಯ ವಾಲ್ಯೂಮ್"
- "ಡೀಫಾಲ್ಟ್ ರಿಂಗ್ಟೋನ್"
- "ಡೀಫಾಲ್ಟ್ ರಿಂಗ್ಟೋನ್ (%1$s)"
+ "ಡಿಫಾಲ್ಟ್ ರಿಂಗ್ಟೋನ್"
+ "ಡಿಫಾಲ್ಟ್ ರಿಂಗ್ಟೋನ್ (%1$s)"
"ಯಾವುದೂ ಇಲ್ಲ"
"ರಿಂಗ್ಟೋನ್ಗಳು"
- "ಅಜ್ಞಾತ ರಿಂಗ್ಟೋನ್"
+ "ಅಪರಿಚಿತ ರಿಂಗ್ಟೋನ್"
- - Wi-Fi ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
- - Wi-Fi ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
+ - ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
+ - ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
- - ಮುಕ್ತ Wi-Fi ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
- - ಮುಕ್ತ Wi-Fi ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
+ - ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
+ - ಮುಕ್ತ ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗಳು ಲಭ್ಯವಿವೆ
- "Wi-Fi ನೆಟ್ವರ್ಕ್ಗೆ ಸೈನ್ ಇನ್ ಮಾಡಿ"
+ "ವೈ-ಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸೈನ್ ಇನ್ ಮಾಡಿ"
"ನೆಟ್ವರ್ಕ್ಗೆ ಸೈನ್ ಇನ್ ಮಾಡಿ"
"ವೈ-ಫೈ ಯಾವುದೇ ಇಂಟರ್ನೆಟ್ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿಲ್ಲ"
- "ಆಯ್ಕೆಗಳಿಗೆ ಸ್ಪರ್ಶಿಸಿ"
- "Wi-Fi ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ"
+ "ಆಯ್ಕೆಗಳಿಗೆ ಟ್ಯಾಪ್ ಮಾಡಿ"
+ "%1$s ಗೆ ಬದಲಾಯಿಸಲಾಗಿದೆ"
+ "%2$s ಇಂಟರ್ನೆಟ್ ಪ್ರವೇಶ ಹೊಂದಿಲ್ಲದಿರುವಾಗ, ಸಾಧನವು %1$s ಬಳಸುತ್ತದೆ. ಶುಲ್ಕಗಳು ಅನ್ವಯವಾಗಬಹುದು."
+ "%1$s ರಿಂದ %2$s ಗೆ ಬದಲಾಯಿಸಲಾಗಿದೆ"
+
+ - "ಸೆಲ್ಯುಲರ್ ಡೇಟಾ"
+ - "ವೈ-ಫೈ"
+ - "ಬ್ಲೂಟೂತ್"
+ - "ಇಥರ್ನೆಟ್"
+ - "VPN"
+
+ "ಅಪರಿಚಿತ ನೆಟ್ವರ್ಕ್ ಪ್ರಕಾರ"
+ "ವೈ-ಫೈ ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ"
" ಕಳಪೆ ಇಂಟರ್ನೆಟ್ ಸಂಪರ್ಕವನ್ನು ಹೊಂದಿದೆ."
"ಸಂಪರ್ಕವನ್ನು ಅನುಮತಿಸುವುದೇ?"
"%2$s ವೈಫೈ ನೆಟ್ವರ್ಕ್ಗೆ ಸಂಪರ್ಕಿಸಲು %1$s ಅಪ್ಲಿಕೇಶನ್ ಬಯಸುತ್ತದೆ"
"ಅಪ್ಲಿಕೇಶನ್"
- "Wi-Fi ಡೈರೆಕ್ಟ್"
- "Wi-Fi ಡೈರೆಕ್ಟ್ ಪ್ರಾರಂಭಿಸಿ. ಇದು Wi-Fi ಕ್ಲೈಂಟ್/ಹಾಟ್ಸ್ಪಾಟ್ ಅನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ."
- "Wi-Fi ಡೈರೆಕ್ಟ್ ಪ್ರಾರಂಭಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ."
- "Wi-Fi ಡೈರೆಕ್ಟ್ ಆನ್ ಆಗಿದೆ"
- "ಸೆಟ್ಟಿಂಗ್ಗಳಿಗಾಗಿ ಸ್ಪರ್ಶಿಸಿ"
+ "ವೈ-ಫೈ ಡೈರೆಕ್ಟ್"
+ "ವೈ-ಫೈ ಡೈರೆಕ್ಟ್ ಪ್ರಾರಂಭಿಸಿ. ಇದು ವೈ-ಫೈ ಕ್ಲೈಂಟ್/ಹಾಟ್ಸ್ಪಾಟ್ ಅನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ."
+ "ವೈ-ಫೈ ಡೈರೆಕ್ಟ್ ಪ್ರಾರಂಭಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ."
+ "ವೈ-ಫೈ ಡೈರೆಕ್ಟ್ ಆನ್ ಆಗಿದೆ"
+ "ಸೆಟ್ಟಿಂಗ್ಗಳಿಗೆ ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಸ್ವೀಕರಿಸು"
"ನಿರಾಕರಿಸು"
"ಆಹ್ವಾನವನ್ನು ಕಳುಹಿಸಲಾಗಿದೆ"
@@ -1008,9 +1106,9 @@
"ಗೆ:"
"ಅಗತ್ಯವಿರುವ ಪಿನ್ ಟೈಪ್ ಮಾಡಿ:"
"ಪಿನ್:"
- "ಟ್ಯಾಬ್ಲೆಟ್ %1$s ಗೆ ಸಂಪರ್ಕಗೊಂಡಿರುವಾಗ ಅದನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ Wi-Fi ನಿಂದ ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗುತ್ತದೆ"
- "%1$s ಗೆ ಸಂಪರ್ಕಗೊಳಿಸಿರುವಾಗ ಟಿವಿಯನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ Wi-Fi ನಿಂದ ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗಿರುತ್ತದೆ"
- "ಫೋನ್ %1$s ಗೆ ಸಂಪರ್ಕಗೊಂಡಿರುವಾಗ Wi-Fi ನಿಂದ ಅದು ತಾತ್ಕಾಲಿಕವಾಗಿ ಸಂಪರ್ಕ ಕಡಿತಗೊಳ್ಳುತ್ತದೆ"
+ "ಟ್ಯಾಬ್ಲೆಟ್ %1$s ಗೆ ಸಂಪರ್ಕಗೊಂಡಿರುವಾಗ ಅದನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ ವೈ-ಫೈ ನಿಂದ ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗುತ್ತದೆ"
+ "%1$s ಗೆ ಸಂಪರ್ಕಗೊಳಿಸಿರುವಾಗ ಟಿವಿಯನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ ವೈ-ಫೈ ನಿಂದ ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗಿರುತ್ತದೆ"
+ "ಫೋನ್ %1$s ಗೆ ಸಂಪರ್ಕಗೊಂಡಿರುವಾಗ ವೈ-ಫೈ ನಿಂದ ಅದು ತಾತ್ಕಾಲಿಕವಾಗಿ ಸಂಪರ್ಕ ಕಡಿತಗೊಳ್ಳುತ್ತದೆ"
"ಅಕ್ಷರವನ್ನು ಸೇರಿಸಿ"
"SMS ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ"
"<b>%1$s</b> ಹೆಚ್ಚಿನ ಸಂಖ್ಯೆಯ SMS ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸುತ್ತಿದೆ. ಸಂದೇಶಗಳ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಮುಂದುವರಿಸುವಂತೆ ಈ ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸಲು ನೀವು ಬಯಸುವಿರಾ?"
@@ -1020,7 +1118,7 @@
"ಇದು ನಿಮ್ಮ ಮೊಬೈಲ್ ಖಾತೆಯಲ್ಲಿ ""ಶುಲ್ಕಗಳನ್ನು ವಿಧಿಸುವುದಕ್ಕೆ ಕಾರಣವಾಗಬಹುದು""."
"ಇದು ನಿಮ್ಮ ಮೊಬೈಲ್ ಖಾತೆಯಲ್ಲಿ ಶುಲ್ಕಗಳನ್ನು ವಿಧಿಸುವುದಕ್ಕೆ ಕಾರಣವಾಗುತ್ತದೆ."
"ಕಳುಹಿಸು"
- "ರದ್ದುಮಾಡು"
+ "ರದ್ದುಮಾಡಿ"
"ನನ್ನ ಆಯ್ಕೆಯನ್ನು ನೆನಪಿಡು"
"ನೀವು ಇದನ್ನು ನಂತರದಲ್ಲಿ ಸೆಟ್ಟಿಂಗ್ಗಳು > ಅಪ್ಲಿಕೇಶನ್ಗಳಲ್ಲಿ ಬದಲಾಯಿಸಬಹುದು"
"ಯಾವಾಗಲೂ ಅನುಮತಿಸು"
@@ -1045,37 +1143,36 @@
"ಯಾವುದೇ ಅನುಮತಿಗಳ ಅಗತ್ಯವಿಲ್ಲ"
"ಇದು ನಿಮ್ಮ ಹಣವನ್ನು ವ್ಯಯಿಸಬಹುದು"
"ಸರಿ"
- "ಚಾರ್ಜ್ ಮಾಡುವುದಕ್ಕಾಗಿ USB"
+ "ಈ ಸಾಧನಕ್ಕೆ USB ಅನ್ನು ಚಾರ್ಜ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
+ "USB, ಲಗತ್ತಿಸಲಾದ ಸಾಧನಕ್ಕೆ ಪವರ್ ಪೂರೈಸುತ್ತಿದೆ"
"ಫೈಲ್ ವರ್ಗಾವಣೆಗೆ USB"
"ಫೋಟೋ ವರ್ಗಾವಣೆಗೆ USB"
"MIDI ಗೆ USB"
"USB ಪರಿಕರಕ್ಕೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ"
- "ಹೆಚ್ಚಿನ ಆಯ್ಕೆಗಳಿಗೆ ಸ್ಪರ್ಶಿಸಿ."
+ "ಹೆಚ್ಚಿನ ಆಯ್ಕೆಗಳಿಗೆ ಟ್ಯಾಪ್ ಮಾಡಿ."
"USB ಡೀಬಗಿಂಗ್ ಸಂಪರ್ಕ"
- "USB ಡೀಬಗಿಂಗ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
- "ದೋಷ ವರದಿಯನ್ನು ನಿರ್ವಾಹಕರ ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳುವುದೇ?"
- "ನಿಮ್ಮ ಐಟಿ ನಿರ್ವಾಹಕರು ಸಮಸ್ಯೆ ನಿವಾರಣೆಗೆ ಸಹಾಯ ಮಾಡಲು ದೋಷ ವರದಿಯನ್ನು ಮನವಿ ಮಾಡಿದ್ದಾರೆ"
- "ಸಮ್ಮತಿಸು"
- "ತಿರಸ್ಕರಿಸು"
- "ದೋಷದ ವರದಿಯನ್ನು ತೆಗೆದುಕೊಳ್ಳಲಾಗುತ್ತಿದೆ…"
- "ರದ್ದುಗೊಳಿಸಲು ಸ್ಪರ್ಶಿಸಿ"
+ "USB ಡೀಬಗ್ ಮಾಡುವಿಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
+ "ದೋಷದ ವರದಿಯನ್ನು ತೆಗೆದುಕೊಳ್ಳಲಾಗುತ್ತಿದೆ…"
+ "ಬಗ್ ವರದಿಯನ್ನು ಹಂಚುವುದೇ?"
+ "ಬಗ್ ವರದಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳಲಾಗುತ್ತಿದೆ…"
+ "ಈ ಸಾಧನದ ಸಮಸ್ಯೆ ನಿವಾರಿಸಲು ಸಹಾಯ ಮಾಡಲು ನಿಮ್ಮ IT ನಿರ್ವಾಹಕರು ಬಗ್ ವರದಿಯನ್ನು ವಿನಂತಿಸಿದ್ದಾರೆ. ಅಪ್ಲಿಕೇಶನ್ಗಳು ಮತ್ತು ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಬಹುದು."
+ "ಹಂಚಿಕೊಳ್ಳಿ"
+ "ನಿರಾಕರಿಸು"
"ಕೀಬೋರ್ಡ್ ಬದಲಿಸಿ"
- "ಕೀಬೋರ್ಡ್ಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ"
"ಭೌತಿಕ ಕೀಬೋರ್ಡ್ ಸಕ್ರಿಯವಾಗಿರುವಾಗ ಅದನ್ನು ಪರದೆಯ ಮೇಲೆ ಇರಿಸಿಕೊಳ್ಳಿ"
"ವರ್ಚ್ಯುಯಲ್ ಕೀಬೋರ್ಡ್ ತೋರಿಸು"
- "ಕೀಬೋರ್ಡ್ ಲೇಔಟ್ ಆಯ್ಕೆಮಾಡಿ"
- "ಕೀಬೋರ್ಡ್ ಲೇಔಟ್ ಆಯ್ಕೆ ಮಾಡಲು ಸ್ಪರ್ಶಿಸಿ"
+ "ಭೌತಿಕ ಕೀಬೋರ್ಡ್ ಕಾನ್ಫಿಗರ್ ಮಾಡಿ"
+ "ಭಾಷೆ ಮತ್ತು ವಿನ್ಯಾಸವನ್ನು ಆಯ್ಕೆ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
" ABCDEFGHIJKLMNOPQRSTUVWXYZ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "ಅಭ್ಯರ್ಥಿಗಳು"
"%s ಅನ್ನು ಸಿದ್ಧಪಡಿಸಲಾಗುತ್ತಿದೆ"
"ದೋಷಗಳನ್ನು ಪರಿಶೀಲಿಸಲಾಗುತ್ತಿದೆ"
"ಹೊಸ %s ಪತ್ತೆಯಾಗಿದೆ"
"ಫೋಟೋಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ವರ್ಗಾಯಿಸಲು"
"%s ದೋಷಪೂರಿತವಾಗಿದೆ"
- "%s ದೋಷಪೂರಿತವಾಗಿದೆ. ಸರಿಪಡಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "%s ದೋಷಪೂರಿತವಾಗಿದೆ. ಸರಿಪಡಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"ಬೆಂಬಲಿಸದಿರುವ %s"
- "ಈ ಸಾಧನವು %s ಅನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ. ಬೆಂಬಲಿತ ಫಾರ್ಮ್ಯಾಟ್ನಲ್ಲಿ ಹೊಂದಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ಈ ಸಾಧನವು %s ಅನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ. ಬೆಂಬಲಿತ ಫಾರ್ಮ್ಯಾಟ್ನಲ್ಲಿ ಹೊಂದಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"%s ಅನಿರೀಕ್ಷಿತವಾಗಿ ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
"ಡೇಟಾ ನಷ್ಟವನ್ನು ತಪ್ಪಿಸಲು ತೆಗೆದುಹಾಕುವುದಕ್ಕೂ ಮುನ್ನ %s ಅಳವಡಿಕೆಯನ್ನು ತೆಗೆದುಹಾಕಿ"
"%s ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
@@ -1111,10 +1208,10 @@
"ಸ್ಥಾಪಿತ ಸೆಷನ್ಗಳನ್ನು ಓದಲು ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಅನುಮತಿಸುತ್ತದೆ. ಸಕ್ರಿಯ ಪ್ಯಾಕೇಜ್ ಸ್ಥಾಪನೆಗಳ ಕುರಿತು ವಿವರಣೆಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಇದು ಅನುಮತಿಸುತ್ತದೆ."
"ಸ್ಥಾಪನೆ ಪ್ಯಾಕೇಜ್ಗಳನ್ನು ವಿನಂತಿಸಿ"
"ಪ್ಯಾಕೇಜ್ಗಳ ಸ್ಥಾಪನೆಯನ್ನು ವಿನಂತಿಸಲು ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುತ್ತದೆ."
- "ಜೂಮ್ ನಿಯಂತ್ರಿಸಲು ಎರಡು ಬಾರಿ ಸ್ಪರ್ಶಿಸಿ"
+ "ಝೂಮ್ ನಿಯಂತ್ರಿಸಲು ಎರಡು ಬಾರಿ ಟ್ಯಾಪ್ ಮಾಡಿ"
"ವಿಜೆಟ್ ಸೇರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ."
"ಹೋಗು"
- "ಹುಡುಕು"
+ "ಹುಡುಕಿ"
"ಕಳುಹಿಸು"
"ಮುಂದೆ"
"ಮುಗಿದಿದೆ"
@@ -1137,24 +1234,26 @@
"ವಾಲ್ಪೇಪರ್"
"ವಾಲ್ಪೇಪರ್ ಬದಲಿಸಿ"
"ಅಧಿಸೂಚನೆ ಕೇಳುಗ"
+ "VR ಕೇಳುವಿಕೆ"
"ಕಂಡೀಶನ್ ಪೂರೈಕೆದಾರರು"
- "ಅಧಿಸೂಚನೆ ಸಹಾಯಕ"
+ "ಅಧಿಸೂಚನೆ ಶ್ರೇಣಿಯ ಸೇವೆ"
"VPN ಸಕ್ರಿಯಗೊಂಡಿದೆ"
"%s ಮೂಲಕ VPN ಸಕ್ರಿಯಗೊಂಡಿದೆ"
- "ನೆಟ್ವರ್ಕ್ ನಿರ್ವಹಿಸಲು ಸ್ಪರ್ಶಿಸಿ"
- "%s ಗೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ. ನೆಟ್ವರ್ಕ್ ನಿರ್ವಹಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ನೆಟ್ವರ್ಕ್ ನಿರ್ವಹಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
+ "%s ಗೆ ಸಂಪರ್ಕಗೊಂಡಿದೆ. ನೆಟ್ವರ್ಕ್ ನಿರ್ವಹಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"ಯಾವಾಗಲೂ-ಆನ್ VPN ಸಂಪರ್ಕಗೊಳ್ಳುತ್ತಿದೆ…"
"ಯಾವಾಗಲೂ-ಆನ್ VPN ಸಂಪರ್ಕಗೊಂಡಿದೆ"
+ "ಯಾವಾಗಲೂ-ಆನ್ VPN ಸಂಪರ್ಕ ಕಡಿತಗೊಳಿಸಲಾಗಿದೆ"
"ಯಾವಾಗಲೂ-ಆನ್ VPN ದೋಷ"
- "ಕಾನ್ಫಿಗರ್ ಮಾಡಲು ಸ್ಪರ್ಶಿಸಿ"
+ "ಹೊಂದಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಫೈಲ್ ಆಯ್ಕೆಮಾಡು"
"ಯಾವುದೇ ಫೈಲ್ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ"
"ಮರುಹೊಂದಿಸು"
"ಸಲ್ಲಿಸು"
- "ಕಾರ್ ಮೋಡ್ ಸಕ್ರಿಯವಾಗಿದೆ"
- "ಕಾರ್ ಮೋಡ್ನಿಂದ ನಿರ್ಗಮಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ಕಾರು ಮೋಡ್ ಸಕ್ರಿಯವಾಗಿದೆ"
+ "ಕಾರು ಮೋಡ್ನಿಂದ ನಿರ್ಗಮಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"ಟೆಥರಿಂಗ್ ಅಥವಾ ಹಾಟ್ಸ್ಪಾಟ್ ಸಕ್ರಿಯವಾಗಿದೆ"
- "ಹೊಂದಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ಹೊಂದಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"ಹಿಂದೆ"
"ಮುಂದಿನದು"
"ಸ್ಕಿಪ್"
@@ -1170,8 +1269,8 @@
"ಹಂಚು"
"ಹುಡುಕಿ"
"ವೆಬ್ ಹುಡುಕಾಟ"
- "ಮುಂದಿನದನ್ನು ಹುಡುಕು"
- "ಹಿಂದಿನದನ್ನು ಹುಡುಕು"
+ "ಮುಂದಿನದನ್ನು ಹುಡುಕಿ"
+ "ಹಿಂದಿನದನ್ನು ಹುಡುಕಿ"
"%s ಅವರಿಂದ ಸ್ಥಾನ ವಿನಂತಿ"
"ಸ್ಥಾನ ವಿನಂತಿ"
"%1$s (%2$s) ಅವರಿಂದ ವಿನಂತಿಸಲಾಗಿದೆ"
@@ -1183,11 +1282,11 @@
"ಅಳಿಸುವಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಿ"
"ಈಗ ಏನೂ ಮಾಡಬೇಡಿ"
"ಖಾತೆಯೊಂದನ್ನು ಆರಿಸು"
- "ಒಂದು ಖಾತೆ ಸೇರಿಸು"
- "ಖಾತೆ ಸೇರಿಸು"
+ "ಒಂದು ಖಾತೆ ಸೇರಿಸಿ"
+ "ಖಾತೆ ಸೇರಿಸಿ"
"ಹೆಚ್ಚಿಸಿ"
"ಕಡಿಮೆ ಮಾಡಿ"
- "%s ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಹಿಡಿದಿಡಿ."
+ "%s ಸ್ಪರ್ಶಿಸಿ & ಹಿಡಿದಿಡಿ."
"ಹೆಚ್ಚಿಸಲು ಮೇಲಕ್ಕೆ ಮತ್ತು ಕಡಿಮೆ ಮಾಡಲು ಕೆಳಕ್ಕೆ ಸ್ಲೈಡ್ ಮಾಡಿ."
"ನಿಮಿಷವನ್ನು ಹೆಚ್ಚಿಸಿ"
"ನಿಮಿಷವನ್ನು ಕಡಿಮೆ ಮಾಡಿ"
@@ -1204,7 +1303,7 @@
"ಹಿಂದಿನ ತಿಂಗಳು"
"ಮುಂದಿನ ತಿಂಗಳು"
"Alt"
- "ರದ್ದುಮಾಡು"
+ "ರದ್ದುಮಾಡಿ"
"ಅಳಿಸು"
"ಮುಗಿದಿದೆ"
"ಮೋಡ್ ಬದಲಾವಣೆ"
@@ -1223,27 +1322,27 @@
"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
"%1$s, %2$s"
"%1$s, %2$s, %3$s"
- "ಆಂತರಿಕ ಸಂಗ್ರಹಣೆ"
+ "ಆಂತರಿಕವಾಗಿ ಹಂಚಲಾದ ಸಂಗ್ರಹಣೆ"
"SD ಕಾರ್ಡ್"
"%s SD ಕಾರ್ಡ್"
"USB ಡ್ರೈವ್"
"%s USB ಡ್ರೈವ್"
"USB ಸಂಗ್ರಹಣೆ"
- "ಸಂಪಾದಿಸು"
- "ಡೇಟಾ ಬಳಕೆಯ ಎಚ್ಚರಿಕೆ"
- "ಬಳಕೆ ಮತ್ತು ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ಎಡಿಟ್"
+ "ಡೇಟಾ ಬಳಕೆ ಎಚ್ಚರಿಕೆ"
+ "ಬಳಕೆ ಮತ್ತು ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"2G-3G ಡೇಟಾ ಮೀತಿಯನ್ನು ತಲುಪಿದೆ"
"4G ಡೇಟಾ ಮೀತಿಯನ್ನು ತಲುಪಿದೆ"
"ಸೆಲ್ಯುಲಾರ್ ಡೇಟಾ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ"
- "Wi-Fi ಡೇಟಾ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ"
+ "ವೈ-ಫೈ ಡೇಟಾ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ"
"ಉಳಿದಿರುವ ಆವರ್ತನೆಗೆ ಡೇಟಾವನ್ನು ವಿರಾಮಗೊಳಿಸಲಾಗಿದೆ"
"2G-3G ಡೇಟಾ ಮಿತಿ ಮೀರಿದೆ"
"4G ಡೇಟಾ ಮಿತಿ ಮೀರಿದೆ"
"ಸೆಲ್ಯುಲಾರ್ ಡೇಟಾ ಮಿತಿ ಮೀರಿದೆ"
- "Wi-Fi ಡೇಟಾ ಮಿತಿ ಮೀರಿದೆ"
+ "ವೈ-ಫೈ ಡೇಟಾ ಮಿತಿ ಮೀರಿದೆ"
"%s ನಿರ್ದಿಷ್ಟಪಡಿಸಿದ ಮಿತಿ ಮೀರಿದೆ."
"ಹಿನ್ನೆಲೆ ಡೇಟಾವನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ"
- "ನಿರ್ಬಂಧವನ್ನು ತೆಗೆದುಹಾಕಲು ಸ್ಪರ್ಶಿಸಿ."
+ "ನಿರ್ಬಂಧವನ್ನು ತೆಗೆದುಹಾಕಲು ಟ್ಯಾಪ್ ಮಾಡಿ."
"ಭದ್ರತಾ ಪ್ರಮಾಣಪತ್ರ"
"ಈ ಪ್ರಮಾಣಪತ್ರವು ಮಾನ್ಯವಾಗಿದೆ."
"ಇವರಿಗೆ ನೀಡಲಾಗಿದೆ:"
@@ -1256,8 +1355,8 @@
"ಈ ದಿನಾಂಕದಂದು ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ:"
"ಕ್ರಮ ಸಂಖ್ಯೆ:"
"ಫಿಂಗರ್ ಪ್ರಿಂಟ್ಗಳು:"
- "SHA-256 ಫಿಂಗರ್ಪ್ರಿಂಟ್:"
- "SHA-1 ಫಿಂಗರ್ಪ್ರಿಂಟ್:"
+ "SHA-256 ಬೆರಳಚ್ಚು:"
+ "SHA-1 ಬೆರಳಚ್ಚು:"
"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
"ಚಟುವಟಿಕೆಯನ್ನು ಆರಿಸಿ"
"ಹಂಚಿಕೊಳ್ಳಿ"
@@ -1294,7 +1393,7 @@
", ಸುರಕ್ಷಿತ"
"ಪ್ಯಾಟರ್ನ್ ಅನ್ನು ಮರೆತಿರುವಿರಿ"
"ತಪ್ಪು ಪ್ಯಾಟರ್ನ್"
- "ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್"
+ "ತಪ್ಪು ಪಾಸ್ವರ್ಡ್"
"ತಪ್ಪಾದ ಪಿನ್"
"%1$d ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
"ನಿಮ್ಮ ನಮೂನೆಯನ್ನು ಚಿತ್ರಿಸಿ"
@@ -1425,11 +1524,11 @@
"Kahu"
"Kaku2"
"You4"
- "ಅಜ್ಞಾತ ಪೋಟ್ರೇಟ್"
- "ಅಜ್ಞಾತ ಲ್ಯಾಂಡ್ಸ್ಕೇಪ್"
+ "ಅಪರಿಚಿತ ಪೋಟ್ರೇಟ್"
+ "ಅಪರಿಚಿತ ಲ್ಯಾಂಡ್ಸ್ಕೇಪ್"
"ರದ್ದುಮಾಡಲಾಗಿದೆ"
"ವಿಷಯವನ್ನು ಬರೆಯುವಲ್ಲಿ ದೋಷ ಎದುರಾಗಿದೆ"
- "ಅಜ್ಞಾತ"
+ "ಅಪರಿಚಿತ"
"ಮುದ್ರಣ ಸೇವೆ ಸಕ್ರಿಯಗೊಂಡಿಲ್ಲ"
"%s ಸೇವೆಯನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿದೆ"
"ಸಕ್ರಿಯಗೊಳಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
@@ -1459,20 +1558,20 @@
"ವರ್ಷವನ್ನು ಆಯ್ಕೆಮಾಡಿ"
"%1$s ಅಳಿಸಲಾಗಿದೆ"
"ಕೆಲಸ %1$s"
- "ಈ ಪರದೆಯನ್ನು ಅನ್ಪಿನ್ ಮಾಡಲು, ‘ಹಿಂದೆ’ ಮತ್ತು ‘ಸಮಗ್ರ ನೋಟ’ವನ್ನು ಏಕಕಾಲದಲ್ಲಿ ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಒತ್ತಿ ಹಿಡಿದುಕೊಳ್ಳಿ."
- "ಈ ಪರದೆಯನ್ನು ಅನ್ಪಿನ್ ಮಾಡಲು, ‘ಸಮಗ್ರ ನೋಟ’ವನ್ನು ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಒತ್ತಿ ಹಿಡಿಯಿರಿ."
+ "ಈ ಪರದೆಯನ್ನು ಅನ್ಪಿನ್ ಮಾಡಲು, ಸ್ಪರ್ಶಿಸಿ ಮತ್ತು ಹಿಂಂದೆ ಒತ್ತಿ ಹಿಡಿಯಿರಿ."
"ಅಪ್ಲಿಕೇಶನ್ ಪಿನ್ ಮಾಡಲಾಗಿದೆ: ಈ ಸಾಧನದಲ್ಲಿ ಅನ್ಪಿನ್ ಮಾಡುವುದನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ."
"ಸ್ಕ್ರೀನ್ ಪಿನ್ ಮಾಡಲಾಗಿದೆ"
"ಸ್ಕ್ರೀನ್ ಅನ್ಪಿನ್ ಮಾಡಲಾಗಿದೆ"
"ಅನ್ಪಿನ್ ಮಾಡಲು ಪಿನ್ ಕೇಳು"
"ಅನ್ಪಿನ್ ಮಾಡಲು ಅನ್ಲಾಕ್ ಪ್ಯಾಟರ್ನ್ ಕೇಳಿ"
"ಅನ್ಪಿನ್ ಮಾಡಲು ಪಾಸ್ವರ್ಡ್ ಕೇಳು"
- "ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಮರುಗಾತ್ರಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ, ಅದನ್ನು ಎರಡು ಬೆರಳುಗಳಿಂದ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ."
- "ಅಪ್ಲಿಕೇಶನ್ ಸ್ಪ್ಲಿಟ್ ಸ್ಕ್ರೀನ್ ಅನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ."
"ನಿಮ್ಮ ನಿರ್ವಾಹಕರಿಂದ ಸ್ಥಾಪಿಸಲಾಗಿದೆ"
"ನಿಮ್ಮ ನಿರ್ವಾಹಕರಿಂದ ನವೀಕರಿಸಲಾಗಿದೆ"
"ನಿಮ್ಮ ನಿರ್ವಾಹಕರಿಂದ ಅಳಿಸಲಾಗಿದೆ"
"ನಿಮ್ಮ ಬ್ಯಾಟರಿಯ ಬಾಳಿಕೆಯನ್ನು ಸುಧಾರಿಸಲು ಸಹಾಯ ಮಾಡಲು, ಬ್ಯಾಟರಿ ಉಳಿಕೆಯು ನಿಮ್ಮ ಸಾಧನದ ಕಾರ್ಯಕ್ಷಮತೆಯನ್ನು ಕಡಿಮೆ ಮಾಡುತ್ತದೆ ಮತ್ತು ವೈಬ್ರೇಷನ್, ಸ್ಥಳ ಸೇವೆಗಳು ಹಾಗೂ ಹೆಚ್ಚಿನ ಹಿನ್ನೆಲೆ ಡೇಟಾವನ್ನು ಮಿತಿಗೊಳಿಸುತ್ತದೆ. ಸಿಂಕ್ ಮಾಡುವುದನ್ನು ಅವಲಂಬಿಸಿರುವ ಇಮೇಲ್, ಸಂದೇಶ ಕಳುಹಿಸುವಿಕೆ, ಮತ್ತು ಇತರ ಅಪ್ಲಿಕೇಶನ್ಗಳು ನೀವು ತೆರೆಯದ ಹೊರತು ನವೀಕರಣಗೊಳ್ಳುವುದಿಲ್ಲ.\n\nನಿಮ್ಮ ಸಾಧನವು ಚಾರ್ಜ್ ಆಗುತ್ತಿರುವ ಸಮಯದಲ್ಲಿ ಬ್ಯಾಟರಿ ಉಳಿಕೆಯು ಆಫ್ ಆಗುತ್ತದೆ."
+ "ಡೇಟಾ ಬಳಕೆ ಕಡಿಮೆ ಮಾಡುವ ನಿಟ್ಟಿನಲ್ಲಿ, ಡೇಟಾ ಸೇವರ್ ಕೆಲವು ಅಪ್ಲಿಕೇಶನ್ಗಳು ಹಿನ್ನೆಲೆಯಲ್ಲಿ ಡೇಟಾ ಕಳುಹಿಸುವುದನ್ನು ಅಥವಾ ಸ್ವೀಕರಿಸುವುದನ್ನು ತಡೆಯುತ್ತದೆ. ನೀವು ಪ್ರಸ್ತುತ ಬಳಸುತ್ತಿರುವ ಅಪ್ಲಿಕೇಶನ್ ಡೇಟಾವನ್ನು ಪ್ರವೇಶಿಸಬಹುದು ಆದರೆ ಪದೇ ಪದೇ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ. ಇದರರ್ಥ, ಉದಾಹರಣೆಗೆ, ನೀವು ಅವುಗಳನ್ನು ಟ್ಯಾಪ್ ಮಾಡುವವರೆಗೆ ಆ ಚಿತ್ರಗಳು ಕಾಣಿಸಿಕೊಳ್ಳುವುದಿಲ್ಲ."
+ "ಡೇಟಾ ಉಳಿಸುವಿಕೆಯನ್ನು ಆನ್ ಮಾಡುವುದೇ?"
+ "ಆನ್ ಮಾಡು"
- %1$d ನಿಮಿಷಗಳವರೆಗೆ (%2$s ವರೆಗೆ)
- %1$d ನಿಮಿಷಗಳವರೆಗೆ (%2$s ವರೆಗೆ)
@@ -1526,6 +1625,8 @@
"SS ವಿನಂತಿಯನ್ನು USSD ವಿನಂತಿಗೆ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ."
"SS ವಿನಂತಿಯನ್ನು ಹೊಸ SS ವಿನಂತಿಗೆ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ."
"ಉದ್ಯೋಗ ಪ್ರೊಫೈಲ್"
+ "ವಿಸ್ತರಿಸು ಬಟನ್"
+ "ವಿಸ್ತರಣೆ ಟಾಗಲ್ ಮಾಡಿ"
"Android USB ಪೆರಿಪೆರಲ್ ಪೋರ್ಟ್"
"Android"
"USB ಪೆರಿಪೆರಲ್ ಪೋರ್ಟ್"
@@ -1533,34 +1634,48 @@
"ಓವರ್ಫ್ಲೋ ಮುಚ್ಚು"
"ಹಿಗ್ಗಿಸು"
"ಮುಚ್ಚು"
+ "%1$s: %2$s"
- %1$d ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ
- %1$d ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ
- "ಇತರೆ"
- "ನೀವು ಈ ಅಧಿಸೂಚನೆಗಳ ಪ್ರಾಮುಖ್ಯತೆಯನ್ನು ಹೊಂದಿಸಿರುವಿರಿ."
+ "ನೀವು ಈ ಅಧಿಸೂಚನೆಗಳ ಪ್ರಾಮುಖ್ಯತೆಯನ್ನು ಹೊಂದಿಸಿರುವಿರಿ."
"ಜನರು ತೊಡಗಿಕೊಂಡಿರುವ ಕಾರಣ ಇದು ಅತ್ಯಂತ ಪ್ರಮುಖವಾಗಿದೆ."
"%2$s ಮೂಲಕ ಹೊಸ ಬಳಕೆದಾರರನ್ನು ರಚಿಸಲು %1$s ಗೆ ಅನುಮತಿಸುವುದೇ ?"
"%2$s (ಈ ಖಾತೆಯ ಬಳಕೆದಾರರು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದಾರೆ) ಮೂಲಕ ಹೊಸ ಬಳಕೆದಾರರನ್ನು ರಚಿಸಲು %1$s ಗೆ ಅನುಮತಿಸುವುದೇ ?"
- "ಭಾಷೆಯ ಪ್ರಾಶಸ್ತ್ಯ"
+ "ಭಾಷೆ ಸೇರಿಸಿ"
"ಪ್ರದೇಶ ಪ್ರಾಶಸ್ತ್ಯ"
"ಭಾಷೆ ಹೆಸರನ್ನು ಟೈಪ್ ಮಾಡಿ"
- "ಸಲಹೆ ಮಾಡಿರುವುದು"
+ "ಸೂಚಿತ ಭಾಷೆ"
"ಎಲ್ಲಾ ಭಾಷೆಗಳು"
- "ಹುಡುಕು"
+ "ಎಲ್ಲಾ ಪ್ರದೇಶಗಳು"
+ "ಹುಡುಕಿ"
"ಕೆಲಸದ ಮೋಡ್ ಆಫ್ ಆಗಿದೆ"
"ಅಪ್ಲಿಕೇಶನ್ಗಳು, ಹಿನ್ನೆಲೆ ಸಿಂಕ್ ಮತ್ತು ಇತರ ಸಂಬಂಧಿತ ವೈಶಿಷ್ಟ್ಯಗಳು ಸೇರಿದಂತೆ ನಿಮ್ಮ ಕೆಲಸದ ಪ್ರೊಫೈಲ್ ಕಾರ್ಯನಿರ್ವಹಿಸಲು ಅನುಮತಿಸಿ."
"ಆನ್ ಮಾಡು"
- "%1$s ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
- "%1$s ನಿರ್ವಾಹಕರಿಂದ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ಇನ್ನಷ್ಟು ತಿಳಿದುಕೊಳ್ಳಲು ಅವರನ್ನು ಸಂಪರ್ಕಿಸಿ."
"ನೀವು ಹೊಸ ಸಂದೇಶಗಳನ್ನು ಹೊಂದಿರುವಿರಿ"
"ವೀಕ್ಷಿಸಲು SMS ಅಪ್ಲಿಕೇಶನ್ ತೆರೆಯಿರಿ"
- "ಕೆಲವು ಫಂಕ್ಷನ್ಗಳು ಲಭ್ಯವಿಲ್ಲದಿರಬಹುದು"
- "ಮುಂದುವರಿಸಲು ಸ್ಪರ್ಶಿಸಿ"
- "ಬಳಕೆದಾರ ಪ್ರೊಫೈಲ್ ಲಾಕ್ ಮಾಡಲಾಗಿದೆ"
+ "ಕೆಲವು ಕಾರ್ಯನಿರ್ವಹಣೆಗಳು ಸೀಮಿತವಾಗಿರಬಹುದು"
+ "ಅನ್ಲಾಕ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
+ "ಬಳಕೆದಾರರ ಡೇಟಾವನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿದೆ"
+ "ಕೆಲಸದ ಪ್ರೊಫೈಲ್ ಲಾಕ್ ಮಾಡಲಾಗಿದೆ"
+ "ಕೆಲಸದ ಪ್ರೊಫೈಲ್ ಅನ್ಲಾಕ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"%1$s ಗೆ ಸಂಪರ್ಕಪಡಿಸಲಾಗಿದೆ"
"ಫೈಲ್ಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಪಿನ್ ಮಾಡು"
"ಅನ್ಪಿನ್"
"ಅಪ್ಲಿಕೇಶನ್ ಮಾಹಿತಿ"
+ "−%1$s"
+ "ಸಾಧನವನ್ನು ಮರುಹೊಂದಿಸುವುದೇ?"
+ "ಸಾಧನ ಮರುಹೊಂದಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
+ "ಡೆಮೋ ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ..."
+ "ಸಾಧನ ಮರುಹೊಂದಿಸಲಾಗುತ್ತಿದೆ..."
+ "ಸಾಧನವನ್ನು ಮರುಹೊಂದಿಸುವುದೇ?"
+ "ನೀವು ಯಾವುದೇ ಬದಲಾವಣೆಗಳನ್ನು ಕಳೆದುಕೊಳ್ಳುತ್ತೀರಿ ಮತ್ತು %1$s ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಡೆಮೋ ಮತ್ತೆ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ..."
+ "ರದ್ದುಮಾಡಿ"
+ "ಈಗಲೇ ಮರುಹೊಂದಿಸು"
+ "ನಿರ್ಬಂಧಗಳು ಇಲ್ಲದೆಯೇ ಈ ಸಾಧನವನ್ನು ಬಳಸಲು ಫ್ಯಾಕ್ಟರಿ ಮರುಹೊಂದಿಸಿ"
+ "ಇನ್ನಷ್ಟು ತಿಳಿಯಲು ಸ್ಪರ್ಶಿಸಿ."
+ "%1$s ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
+ "ಕಾನ್ಫರೆನ್ಸ್ ಕರೆ"
diff --git a/core/res/res/values-ko/strings.xml b/core/res/res/values-ko/strings.xml
index 6f725aae3db45..5c5466d929a58 100644
--- a/core/res/res/values-ko/strings.xml
+++ b/core/res/res/values-ko/strings.xml
@@ -248,13 +248,13 @@
"저장"
"기기 사진, 미디어, 파일에 접근할 수 있도록"
"마이크"
- "오디오를 녹음할 수 있도록"
+ "오디오 녹음"
"카메라"
"사진 및 동영상을 촬영할 수 있도록"
"전화"
"통화 상태를 관리하거나 전화를 걸 수 있도록"
"신체 센서"
- "생체 신호에 관한 센서 데이터에 접근할 수 있도록"
+ "생체 신호에 관한 센서 데이터에 액세스"
"창 콘텐츠 가져오기"
"상호작용 중인 창의 콘텐츠를 검사합니다."
"터치하여 탐색 사용"
diff --git a/core/res/res/values-nb/strings.xml b/core/res/res/values-nb/strings.xml
index 737743a59c46c..de65113c86c5a 100644
--- a/core/res/res/values-nb/strings.xml
+++ b/core/res/res/values-nb/strings.xml
@@ -88,7 +88,6 @@
"Nummervisning er ikke begrenset som standard. Neste anrop: Ikke begrenset"
"SIM-kortet er ikke tilrettelagt for tjenesten."
"Du kan ikke endre innstillingen for anrops-ID."
- "Tilgangsbegrensning endret"
"Datatjenesten er blokkert."
"Nødtjenesten er blokkert."
"Taletjenesten er blokkert."
@@ -125,11 +124,15 @@
"Leter etter tjeneste"
"Wi-Fi-anrop"
+ - "For å ringe og sende meldinger over Wi-Fi må du først be operatøren om å konfigurere denne tjenesten. Deretter slår du på Wi-Fi-anrop igjen fra Innstillinger."
+ - "Registrer deg hos operatøren din"
+
+
+ - "%s"
+ - "%s Wi-Fi-anrop"
- "%s"
- "%s"
"Av"
"Wi-Fi er foretrukket"
"Mobil er foretrukket"
@@ -165,7 +168,10 @@
"Klokkens lagringsplass er full. Slett filer for å frigjøre plass."
"TV-ens lagringsplass er full. Slett noen filer for å frigjøre mer plass."
"Telefonlageret er fullt. Slett noen filer for å frigjøre lagringsplass."
- "Nettverket blir muligens overvåket"
+
+ - Sertifiseringsinstansene er installert
+ - Sertifiseringsinstansen er installert
+
"Av en ukjent tredjepart"
"av administratoren for jobbprofilen din"
"Av %s"
@@ -208,13 +214,14 @@
"Telefoninnstillinger"
"Lås skjermen"
"Slå av"
+ "Nødssituasjon"
"Feilrapport"
"Utfør feilrapport"
"Informasjon om tilstanden til enheten din samles inn og sendes som en e-post. Det tar litt tid fra du starter feilrapporten til e-posten er klar, så vær tålmodig."
"Interaktiv rapport"
- "Bruk dette alternativet i de fleste tilfeller. Da kan du spore fremgangen for rapporten samt skrive inn flere detaljer om problemet. Noen deler som tar lang tid å behandle, blir kanskje utelatt."
+ "Bruk dette alternativet i de fleste tilfeller. Da kan du spore fremgangen for rapporten, skrive inn flere detaljer om problemet samt ta skjermdumper. Noen deler som tar lang tid å behandle, blir kanskje utelatt."
"Fullstendig rapport"
- "Bruk dette alternativet for minst mulig forstyrrelser på systemet når enheten din er treg eller ikke svarer, eller når du trenger alle rapportdelene. Det tas ikke noen skjermdump, og du kan ikke legge til flere detaljer."
+ "Bruk dette alternativet for minst mulig forstyrrelse på systemet når enheten din er treg eller ikke svarer, eller når du trenger alle rapportdelene. Det tas ikke noen skjermdump, og du kan ikke legge til flere detaljer."
- Tar skjermdump for feilrapporten om %d sekunder.
- Tar skjermdump for feilrapporten om %d sekund.
@@ -230,13 +237,12 @@
"Talehjelp"
"Lås nå"
"999+"
- "(%d)"
"Innholdet er skjult"
"Innholdet er skjult i henhold til retningslinjene"
"Sikkermodus"
"Android-system"
- "Personlig"
- "Jobb"
+ "Bytt til den personlige profilen"
+ "Bytt til jobbprofilen"
"Kontakter"
"se kontaktene dine"
"Posisjon"
@@ -246,9 +252,9 @@
"SMS"
"sende og lese SMS-meldinger"
"Lagring"
- "åpne bilder, medier og filer på enheten din"
+ "åpne bilder, medieinnhold og filer på enheten din"
"Mikrofon"
- "spill inn lyd"
+ "ta opp lyd"
"Kamera"
"ta bilder og ta opp video"
"Telefon"
@@ -258,7 +264,7 @@
"hente innhold i vinduer"
"Den analyserer innholdet i vinduer du samhandler med."
"slå på berøringsutforsking"
- "Berørte elementer leses høyt, og skjermen kan utforskes ved hjelp av bevegelser."
+ "Elementer du trykker på, leses høyt, og skjermen kan utforskes ved bruk av bevegelser."
"slå på forbedret nettilgjengelighet"
"Skript kan installeres for å gjøre appinnhold mer tilgjengelig."
"observere teksten du skriver inn"
@@ -600,7 +606,7 @@
"Teleks"
"Teksttelefon"
"Mobil arbeid"
- "Personsøker arbeid"
+ "Personsøker jobb"
"Assistent"
"MMS"
"Egendefinert"
@@ -657,7 +663,7 @@
"Skriv inn PUK-kode og ny personlig kode"
"PUK-kode"
"Ny PIN-kode"
- "Trykk for å skrive inn passord"
+ "Trykk for å skrive inn passord"
"Skriv inn passord for å låse opp"
"Skriv inn PIN-kode for å låse opp"
"Feil personlig kode."
@@ -668,11 +674,12 @@
"Trykk på menyknappen for å låse opp eller ringe et nødnummer."
"Trykk på menyknappen for å låse opp."
"Tegn mønster for å låse opp"
- "Nødsituasjon"
+ "Nødssituasjon"
"Tilbake til samtale"
"Riktig!"
"Prøv på nytt"
"Prøv på nytt"
+ "Lås opp for å få alle funksjoner og data"
"Du har overskredet grensen for opplåsingsforsøk med Ansiktslås"
"SIM-kortet mangler"
"Nettbrettet mangler SIM-kort."
@@ -853,6 +860,71 @@
- %d timer
- 1 time
+ "nå"
+
+ - %d m
+ - %d m
+
+
+ - %d t
+ - %d t
+
+
+ - %d d
+ - %d d
+
+
+ - %d år
+ - %d år
+
+
+ - om %d m
+ - om %d m
+
+
+ - om %d t
+ - om %d t
+
+
+ - om %d d
+ - om %d d
+
+
+ - om %d år
+ - om %d år
+
+
+ - for %d minutter siden
+ - for %d minutt siden
+
+
+ - for %d timer siden
+ - for %d time siden
+
+
+ - for %d dager siden
+ - for %d dag siden
+
+
+ - for %d år siden
+ - for %d år siden
+
+
+ - om %d minutter
+ - om %d minutt
+
+
+ - om %d timer
+ - om %d time
+
+
+ - om %d dager
+ - om %d dag
+
+
+ - om %d år
+ - om %d år
+
"Videoproblem"
"Denne videoen er ikke gyldig for direkteavspilling på enheten."
"Kan ikke spille av denne videoen."
@@ -884,7 +956,7 @@
"Enkelte systemfunksjoner fungerer muligens ikke slik de skal"
"Det er ikke nok lagringsplass for systemet. Kontrollér at du har 250 MB ledig plass, og start på nytt."
"%1$s kjører"
- "Trykk for mer informasjon, eller for å stoppe appen."
+ "Trykk for å få mer informasjon eller for å stoppe appen."
"OK"
"Avbryt"
"OK"
@@ -895,14 +967,25 @@
"Av"
"Fullfør med"
"Fullfør handlingen med %1$s"
+ "Fullfør handlingen"
"Åpne med"
"Åpne med %1$s"
+ "Åpne"
"Rediger med"
"Rediger med %1$s"
+ "Endre"
"Del med"
"Del med %1$s"
+ "Del"
+ "Send via"
+ "Send via %1$s"
+ "Send"
"Velg en startsideapp"
"Bruk %1$s som startside"
+ "Ta bilde"
+ "Ta bilde med"
+ "Ta bilde med %1$s"
+ "Ta bilde"
"Bruk som standardvalg."
"Bruk en annen app"
"Fjern app angitt som standard i systeminnstillingene > Apper > Nedlastet."
@@ -913,11 +996,10 @@
"%1$s har stoppet"
"%1$s stopper gjentatte ganger"
"%1$s stopper gjentatte ganger"
- "Start appen på nytt"
- "Tilbakestill appen, og start den på nytt"
+ "Åpne appen på nytt"
"Send tilbakemelding"
"Lukk"
- "Ignorer"
+ "Ignorer frem til enheten starter på nytt"
"Vent"
"Lukk app"
@@ -935,17 +1017,22 @@
"Skala"
"Vis alltid"
"Reaktiver dette i systeminnstillingene > Apper > Nedlastet."
+ "%1$s støtter ikke den nåværende innstillingen for skjermstørrelse og fungerer kanskje ikke som den skal."
+ "Vis alltid"
"Appen %1$s (prosessen %2$s) har brutt de selvpålagte StrictMode-retningslinjene."
"Prosessen%1$s har brutt de selvpålagte StrictMode-retningslinjene."
"Android oppgraderes …"
"Android starter …"
"Optimaliser lagring."
+ "Fullfører Android-oppdatering …"
+ "Noen apper fungerer kanskje ikke skikkelig før oppgraderingen er fullført"
+ "%1$s oppgraderes …"
"Optimaliserer app %1$d av %2$d."
"Forbereder %1$s."
"Starter apper."
"Ferdigstiller oppstart."
"%1$s kjører"
- "Trykk for å bytte til appen"
+ "Trykk for å bytte til appen"
"Vil du bytte app?"
"En annen app kjører og må stoppes før du kan starte en ny app."
"Gå tilbake til %1$s"
@@ -953,7 +1040,7 @@
"Start %1$s"
"Stopp den gamle appen uten å lagre."
"%1$s er over minnegrensen"
- "Minnedumpen («heap dump») er samlet inn – trykk for å dele"
+ "Minnedumpen («heap dump») er samlet inn – trykk for å dele"
"Vil du dele minnedumpen («heap dump»)?"
"%1$s-prosessen er %2$s over grensen for prosessminne. En minnedump («heap dump») er tilgjengelig for deling med utvikleren. Vær forsiktig – denne minnedumpen kan inneholde noen av de personlige opplysningene dine som appen har tilgang til."
"Velg handling for tekst"
@@ -989,7 +1076,18 @@
"Wi-Fi har ikke Internett-tilgang"
- "Trykk for å se alternativene"
+ "Trykk for å få alternativer"
+ "Byttet til %1$s"
+ "Enheten bruker %1$s når %2$s ikke har Internett-tilgang. Avgifter kan påløpe."
+ "Byttet fra %1$s til %2$s"
+
+ - "mobildata"
+ - "Wi-Fi"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "en ukjent nettverkstype"
"Kan ikke koble til Wi-Fi"
" har en dårlig Internett-tilkobling."
"Vil du tillat tilkoblingen?"
@@ -999,7 +1097,7 @@
"Start Wi-Fi Direct. Dette deaktiverer Wi-Fi-klienten/-sonen."
"Kunne ikke starte Wi-Fi Direct."
"Wi-Fi Direct er slått på"
- "Berør for å se innstillinger"
+ "Trykk for å få innstillinger"
"Godta"
"Avslå"
"Invitasjonen er sendt"
@@ -1045,37 +1143,36 @@
"Trenger ingen rettigheter"
"dette kan koste deg penger"
"OK"
- "USB for lading"
+ "Enheten lades via USB"
+ "Den tilkoblede enheten får strøm via USB"
"USB for filoverføring"
"USB for bildeoverføring"
"USB for MIDI"
"Koblet til et USB-tilbehør"
- "Trykk for å se flere alternativer."
+ "Trykk for å få flere alternativ."
"USB-feilsøking tilkoblet"
- "Trykk for å slå av USB-feilsøking."
- "Vil du dele feilrapporten med administratoren?"
- "IT-administratoren din har bedt om en feilrapport for å hjelpe med feilsøkingen"
- "GODTA"
- "AVSLÅ"
- "Kjører feilrapport …"
- "Trykk for å avbryte"
+ "Trykk for å slå av feilsøking via USB."
+ "Kjører feilrapport …"
+ "Vil du dele feilrapporten?"
+ "Deler feilrapporten …"
+ "IT-administratoren har bedt om en feilrapport for å hjelpe med feilsøkingen på denne enheten. Apper og data kan bli delt."
+ "DEL"
+ "AVSLÅ"
"Endre tastatur"
- "Velg tastatur"
"Ha den på skjermen mens det fysiske tastaturet er aktivt"
"Vis det virtuelle tastaturet"
- "Velg tastaturoppsett"
- "Trykk for å velge et tastaturoppsett"
+ "Konfigurer et fysisk tastatur"
+ "Trykk for å velge språk og layout"
" ABCDEFGHIJKLMNOPQRSTUVWXYZÆØÅ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZÆØÅ"
- "TAG_FONT""kandidater""CLOSE_FONT"
"Forbereder %s"
"Sjekker for feil"
"%s ble oppdaget"
"For overføring av bilder og medier"
"Skadet %s"
- "%s er skadet. Trykk for å fikse."
+ "%s er skadet. Trykk for å løse problemet."
"%s som ikke støttes"
- "Denne enheten støtter ikke %s. Trykk for å konfigurere i et støttet format."
+ "Denne enheten støtter ikke %s. Trykk for å konfigurere i et støttet format."
"%s ble uventet fjernet"
"Løs ut %s før du fjerner den for å unngå tap av data"
"%s ble fjernet."
@@ -1111,13 +1208,13 @@
"Tillater en app å lese installeringsøkter. Dette gjør det mulig for den å se detaljer om aktive pakkeinstallasjoner."
"be om installasjon av pakker"
"Lar apper be om installasjon av pakker."
- "Trykk to ganger for zoomkontroll"
+ "Trykk to ganger for zoomkontroll"
"Kunne ikke legge til modulen."
"Utfør"
"Søk"
"Send"
"Neste"
- "Utført"
+ "Ferdig"
"Forrige"
"Utfør"
"Ring nummeret\n%s"
@@ -1137,24 +1234,26 @@
"Bakgrunnsbilde"
"Velg bakgrunnsbilde"
"Varsellytteren"
+ "Lyttetjeneste for virtuell virkelighet"
"Betingelsesleverandør"
- "Varselassistent"
+ "Tjeneste for rangering av varsler"
"VPN er aktivert"
"VPN er aktivert av %s"
- "Trykk for å administrere nettverket."
- "Koblet til %s. Trykk for å administrere nettverket."
+ "Trykk for å administrere nettverket."
+ "Koblet til %s. Trykk for å administrere nettverket."
"Alltid-på VPN kobler til ..."
"Alltid-på VPN er tilkoblet"
+ "Alltid på-VPN er frakoblet"
"Alltid-på VPN-feil"
- "Trykk for å konfigurere"
+ "Trykk for å konfigurere"
"Velg fil"
"Ingen fil er valgt"
"Tilbakestill"
"Send inn"
"Bilmodus er aktivert"
- "Trykk for å avslutte bilmodus."
+ "Trykk for avslutte bilmodus."
"Internettdeling eller trådløs sone er aktiv"
- "Trykk for å konfigurere."
+ "Trykk for å konfigurere."
"Tilbake"
"Neste"
"Hopp over"
@@ -1187,7 +1286,7 @@
"Legg til konto"
"Øk"
"Reduser"
- "%s – trykk og hold inne."
+ "%s – trykk og hold"
"Dra opp for å øke og ned for å redusere."
"Øk minutter"
"Reduser minutter"
@@ -1223,15 +1322,15 @@
"Flere alternativer"
"%1$s – %2$s"
"%1$s – %2$s – %3$s"
- "Intern lagring"
+ "Delt internlagring"
"SD-kort"
"%s SD-kort"
"USB-stasjon"
"%s USB-stasjon"
"USB-lagring"
- "Rediger"
- "Advarsel for høyt dataforbruk"
- "Trykk for å se bruk og innst."
+ "Endre"
+ "Varsel om databruk"
+ "Trykk for å se bruken og innstillingene."
"Datagrensen for 2G-3G er nådd"
"Datagrensen for 4G er nådd"
"Grensen for mobildata er nådd"
@@ -1243,7 +1342,7 @@
"Wi-Fi-datagrense overskredet"
"%s over angitt grense."
"Bakgrunnsdata er begrenset"
- "Trykk for å fjerne begrensning."
+ "Trykk for å fjerne begrensningen."
"Sikkerhetssertifikat"
"Sertifikatet er gyldig."
"Utstedt til:"
@@ -1459,20 +1558,20 @@
"Velg året"
"%1$s er slettet"
"Jobb-%1$s"
- "Hvis du vil avslutte én-appsmodusen for denne skjermen, trykker og holder du på Tilbake og Oversikt samtidig."
- "Hvis du vil avslutte én-appsmodusen for denne skjermen, trykker og holder du på Oversikt."
+ "For å løsne denne skjermen, trykk og hold inne Tilbake."
"Appen er festet – du kan ikke løsne apper på denne enheten."
"Skjermen er festet"
"Skjermen er løsnet"
"PIN-kode for å løsne apper"
- "Krev bruk av opplåsningsmønster for å løsne apper"
+ "Krev opplåsingsmønster for å løsne apper"
"Krev passord for å løsne apper"
- "Du kan ikke endre størrelse på appen – rull med to fingre."
- "Appen støtter ikke delt skjerm."
"Installert av administratoren"
"Oppdatert av administratoren"
"Slettet av administratoren"
"For å forlenge batterilevetiden reduserer batterispareren ytelsen til enheten din og begrenser vibrering, posisjonstjenester og mesteparten av bakgrunnsdataene. E-post, sending av meldinger og andre apper som er avhengig av synkronisering, oppdateres kanskje ikke med mindre du åpner dem.\n\nBatterisparing slås av automatisk når enheten lader."
+ "Datasparing hindrer at apper kan sende og motta data i bakgrunnen. Apper du bruker i øyeblikket, bruker ikke data i like stor grad – for eksempel vises ikke bilder før du trykker på dem."
+ "Vil du slå på Datasparing?"
+ "Slå på"
- I %1$d minutter (til %2$s)
- I 1 minutt (til %2$s)
@@ -1526,6 +1625,8 @@
"SS-forespørselen er endret til en USSD-forespørsel."
"SS-forespørselen er endret til en ny SS-forespørsel."
"Arbeidsprofil"
+ "Knapp for å vise mer"
+ "slå utvidelse av/på"
"Port for USB-tilleggsutstyr for Android"
"Android"
"Port for USB-tilleggsutstyr"
@@ -1533,36 +1634,48 @@
"Lukk overflytsmenyen"
"Maksimer"
"Lukk"
+ "%1$s%2$s"
- %1$d er valgt
- %1$d er valgt
- "Diverse"
- "Du angir viktigheten for disse varslene."
+ "Du angir viktigheten for disse varslene."
"Dette er viktig på grunn av folkene som er involvert."
"Vil du la %1$s opprette en ny bruker med %2$s?"
"Vil du la %1$s opprette en ny bruker med %2$s? (Det finnes allerede en bruker med denne kontoen.)"
- "Språkinnstilling"
+ "Legg til et språk"
"Regionsinnstilling"
"Skriv inn språknavn"
"Foreslått"
"Alle språk"
+ "Alle områder"
"Søk"
"Jobbmodus er AV"
"Slå på jobbprofilen, inkludert apper, synkronisering i bakgrunnen og relaterte funksjoner."
"Slå på"
- "%1$s er slått av"
-
-
-
"Du har nye meldinger"
"Åpne SMS-appen for å se"
- "Noen funksjoner kan være utilgjengelige"
- "Trykk for å fortsette"
- "Brukerprofilen er låst"
+ "Enkelte funksjoner kan være begrenset"
+ "Trykk for å låse opp"
+ "Brukerdataene er låst"
+ "Jobbprofilen er låst"
+ "Trykk for å låse opp jobbprofilen"
"Koblet til %1$s"
"Trykk for å se filer"
"Fest"
"Løsne"
"Info om appen"
+ "−%1$s"
+ "Tilbakestille enheten?"
+ "Trykk for å tilbakestille enheten"
+ "Starter demo …"
+ "Tilbakestiller enheten …"
+ "Tilbakestille enheten?"
+ "Du mister eventuelle endringer, og demoen starter på nytt om %1$s sekunder."
+ "Avbryt"
+ "Tilbakestill nå"
+ "Tilbakestill til fabrikkstandard for å bruke denne enheten uten begrensninger"
+ "Trykk for å finne ut mer."
+ "%1$s er slått av"
+ "Konferansesamtale"
diff --git a/core/res/res/values-nl/strings.xml b/core/res/res/values-nl/strings.xml
index 750b7166559af..e003a137de76b 100644
--- a/core/res/res/values-nl/strings.xml
+++ b/core/res/res/values-nl/strings.xml
@@ -1234,7 +1234,7 @@
"Aanraken: gebruik/inst. bekijken"
"Gegevenslimiet van 2G-3G bereikt"
"Gegevenslimiet van 4G bereikt"
- "Mobiele gegevenslimiet bereikt"
+ "Mobiele datalimiet bereikt"
"Wifi-gegevenslimiet bereikt"
"Gegev. onderbr. voor rest cyclus"
"Gegevenslimiet 2G-3G overschreden"
diff --git a/core/res/res/values-notround-watch/dimens_material.xml b/core/res/res/values-notround-watch/dimens_material.xml
index 9cacb117cf7ba..9fdf55b8a31db 100644
--- a/core/res/res/values-notround-watch/dimens_material.xml
+++ b/core/res/res/values-notround-watch/dimens_material.xml
@@ -15,12 +15,16 @@
-->
8dp
- 0dp
+ 8dp
- 16dp
- 16dp
- 16dp
+ 8dp
+ 8dp
+ 8dp
- 8dp
- 8dp
+ 0dp
+ 0dp
+
+
+ 8dp
+ 8dp
diff --git a/core/res/res/values-round-watch/config_material.xml b/core/res/res/values-round-watch/config_material.xml
index 11798709f148b..ae4a6eedf4fdf 100644
--- a/core/res/res/values-round-watch/config_material.xml
+++ b/core/res/res/values-round-watch/config_material.xml
@@ -20,9 +20,6 @@
false
-
- 0x00000031
-
@dimen/screen_percentage_15
diff --git a/core/res/res/values-round-watch/dimens_material.xml b/core/res/res/values-round-watch/dimens_material.xml
index f2de4e013a788..c8f27b1724e36 100644
--- a/core/res/res/values-round-watch/dimens_material.xml
+++ b/core/res/res/values-round-watch/dimens_material.xml
@@ -23,4 +23,8 @@
@dimen/screen_percentage_15
@dimen/screen_percentage_15
+
+
+ @dimen/screen_percentage_15
+ 8dp
diff --git a/core/res/res/values-sv/strings.xml b/core/res/res/values-sv/strings.xml
index f90f95c91261e..7d6ed4788d26f 100644
--- a/core/res/res/values-sv/strings.xml
+++ b/core/res/res/values-sv/strings.xml
@@ -88,7 +88,6 @@
"Nummerpresentatörens standardinställning är inte begränsad. Nästa samtal: Inte begränsad"
"Tjänsten är inte etablerad."
"Det går inte att ändra inställningen för nummerpresentatör."
- "Begränsad åtkomst har ändrats"
"Datatjänsten är blockerad."
"Räddningstjänsten är blockerad."
"Rösttjänsten är blockerad."
@@ -125,11 +124,15 @@
"Söker efter tjänst"
"Wi-Fi-samtal"
+ - "Om du vill ringa samtal och skicka meddelanden via Wi-Fi ber du först operatören att konfigurera tjänsten. Därefter kan du aktivera Wi-Fi-samtal på nytt från Inställningar."
+ - "Registrera dig hos operatören"
+
+
+ - "%s"
+ - "%s Wi-Fi-samtal"
- "%s"
- "%s"
"Av"
"Wi-Fi i första hand"
"Mobil i första hand"
@@ -165,7 +168,10 @@
"Klockans lagringsutrymme är fullt. Ta bort några filer för att frigöra utrymme."
"Lagringsutrymmet på TV:n är fullt. Ta bort några filer för att frigöra utrymme."
"Mobilens lagringsutrymme är fullt. Ta bort några filer för att frigöra utrymme."
- "Nätverket kan vara övervakat"
+
+ - Certifikatutfärdare har installerats
+ - Certifikatutfärdare har installerats
+
"Av en okänd tredje part"
"Av jobbprofilsadministratören"
"Av %s"
@@ -208,13 +214,14 @@
"Telefonalternativ"
"Skärmlås"
"Stäng av"
+ "Nödsituation"
"Felrapport"
"Skapa felrapport"
"Nu hämtas information om aktuell status för enheten, som sedan skickas i ett e-postmeddelade. Det tar en liten stund innan felrapporten är färdig och kan skickas, så vi ber dig ha tålamod."
"Interaktiv rapport"
- "Bör användas i de flesta fall. Då kan du spåra rapportförloppet och ange mer information om problemet. En del mindre använda avsnitt, som det tar lång tid att rapportera om, kan uteslutas."
+ "Bör användas i de flesta fall. Då kan du spåra rapportförloppet, ange mer information om problemet och ta skärmdumpar. En del mindre använda avsnitt, som det tar lång tid att rapportera om, kan uteslutas."
"Fullständig rapport"
- "Alternativet innebär minsta möjliga störning när enheten inte svarar eller är långsam, eller när alla avsnitt ska ingå i rapporten. Inget skärmdump tas och du kan inte ange mer information."
+ "Alternativet innebär minsta möjliga störning när enheten inte svarar eller är långsam, eller när alla avsnitt ska ingå i rapporten. Du kan inte ange mer information eller ta ytterligare skärmdumpar."
- Tar en skärmdump till felrapporten om %d sekunder.
- Tar en skärmdump till felrapporten om %d sekund.
@@ -230,13 +237,12 @@
"Voice Assist"
"Lås nu"
"999+"
- "(%d)"
"Innehåll har dolts"
"Innehåll har dolts p.g.a. en policy"
"Säkert läge"
"Android-system"
- "Personligt"
- "Arbetet"
+ "Byt till din personliga profil"
+ "Byt till jobbprofilen"
"Kontakter"
"få tillgång till dina kontakter"
"Plats"
@@ -258,7 +264,7 @@
"Hämta fönsterinnehåll"
"Granska innehållet i ett fönster som du interagerar med."
"Aktivera Explore by Touch"
- "Objekt som användaren rör vid läses upp högt och skärmen kan utforskas med hjälp av rörelser."
+ "Objekt som användaren trycker på läses upp högt och skärmen kan utforskas med hjälp av rörelser."
"Aktivera förbättrad webbtillgänglighet"
"Skript kan installeras för att göra appens innehåll tillgängligare."
"Observera text som du skriver"
@@ -592,15 +598,15 @@
"Övrigt"
"Återuppringning"
"Bil"
- "Nummer till företag"
+ "Företag (växel)"
"ISDN"
"Telefonnummer"
"Annat faxnummer"
"Radio"
"Telex"
"TTY TDD"
- "Mobiltelefon, arbetet"
- "Personsökare, arbetet"
+ "Jobbmobil"
+ "Personsökare"
"Assistent"
"MMS"
"Anpassad"
@@ -657,22 +663,23 @@
"Ange PUK-koden och en ny PIN-kod"
"PUK-kod"
"Ny PIN-kod"
- "Tryck om du vill ange lösenord"
+ "Tryck för att ange lösenord"
"Ange lösenord för att låsa upp"
"Ange PIN-kod för att låsa upp"
"Fel PIN-kod."
- "Tryck på Menu och sedan på 0 om du vill låsa upp."
+ "Tryck på Menu och sedan på 0 för att låsa upp."
"Nödsamtalsnummer"
"Ingen tjänst"
"Skärmen har låsts."
- "Tryck på Menu om du vill låsa upp eller ringa nödsamtal."
- "Tryck på Menu om du vill låsa upp."
+ "Tryck på Menu för att låsa upp eller ringa nödsamtal."
+ "Tryck på Menu för att låsa upp."
"Rita grafiskt lösenord för att låsa upp"
"Nödsamtal"
"Tillbaka till samtal"
"Korrekt!"
"Försök igen"
"Försök igen"
+ "Lås upp för alla funktioner och all data"
"Du har försökt låsa upp med Ansiktslås för många gånger"
"Inget SIM-kort"
"Inget SIM-kort i surfplattan."
@@ -835,7 +842,7 @@
"timmar"
"minut"
"minuter"
- "sekunder"
+ "sek."
"sekunder"
"vecka"
"veckor"
@@ -853,6 +860,71 @@
- %d timmar
- 1 timme
+ "nu"
+
+ - %dm
+ - %dm
+
+
+ - %dh
+ - %dh
+
+
+ - %dd
+ - %dd
+
+
+ - %då
+ - %då
+
+
+ - om %d m
+ - om %d m
+
+
+ - om %d h
+ - om %d h
+
+
+ - om %d d
+ - om %d d
+
+
+ - om %d å
+ - om %d å
+
+
+ - för %d minuter sedan
+ - för %d minut sedan
+
+
+ - för %d timmar sedan
+ - för %d timme sedan
+
+
+ - för %d dagar sedan
+ - för %d dag sedan
+
+
+ - för %d år sedan
+ - för %d år sedan
+
+
+ - om %d minuter
+ - om %d minut
+
+
+ - om %d timmar
+ - om %d timme
+
+
+ - om %d dagar
+ - om %d dag
+
+
+ - om %d år
+ - om %d år
+
"Videoproblem"
"Videon kan tyvärr inte spelas upp i den här enheten."
"Det går inte att spela upp videon."
@@ -884,7 +956,7 @@
"Det kan hända att vissa systemfunktioner inte fungerar"
"Det finns inte tillräckligt med utrymme för systemet. Kontrollera att du har ett lagringsutrymme på minst 250 MB och starta om."
"%1$s körs"
- "Tryck om du vill veta mer eller stoppa appen."
+ "Tryck om du vill veta mer eller stoppa appen."
"OK"
"Avbryt"
"OK"
@@ -895,14 +967,25 @@
"AV"
"Slutför åtgärd genom att använda"
"Slutför åtgärden med %1$s"
+ "Slutför åtgärd"
"Öppna med"
"Öppna med %1$s"
+ "Öppna"
"Redigera med"
"Redigera med %1$s"
+ "Redigera"
"Dela med"
"Dela med %1$s"
+ "Dela"
+ "Skicka med"
+ "Skicka med %1$s"
+ "Skicka"
"Välj en startsidesapp"
"Använd %1$s som startsida"
+ "Ta bild"
+ "Ta bild med"
+ "Ta bild med %1$s"
+ "Ta bild"
"Använd som standard för denna åtgärd."
"Använd en annan app"
"Rensa standardinställningar i Systeminställningar > Appar > Hämtat."
@@ -913,11 +996,10 @@
"%1$s har kraschat"
"%1$s kraschar gång på gång"
"%1$s kraschar gång på gång"
- "Starta om appen"
- "Återställ och starta om appen"
+ "Öppna appen igen"
"Skicka feedback"
"Stäng"
- "Dölj"
+ "Ignorera tills enheten har startat om"
"Vänta"
"Stäng appen"
@@ -935,17 +1017,22 @@
"Anpassning"
"Visa alltid"
"Aktivera detta igen i Systeminställningar > Appar > Hämtat."
+ "%1$s har inte stöd för den nuvarande inställningen för skärmstorlek och kanske inte fungerar som förväntat."
+ "Visa alltid"
"Appen %1$s (processen %2$s) har brutit mot sin egen StrictMode-policy."
"Processen %1$s har brutit mot sin egen StrictMode-policy."
"Android uppgraderas ..."
"Android startar …"
"Lagringsutrymmet optimeras."
+ "Android-uppdateringen slutförs …"
+ "En del appar kanske inte fungerar som de ska innan uppgraderingen har slutförts"
+ "%1$s uppgraderas …"
"Optimerar app %1$d av %2$d."
"%1$s förbereds."
"Appar startas."
"Uppgraderingen är klar."
"%1$s körs"
- "Tryck om du vill byta till appen"
+ "Tryck om du vill byta till appen"
"Vill du byta app?"
"En annan app som körs måste avslutas innan du kan starta en ny."
"Gå tillbaka till %1$s"
@@ -953,7 +1040,7 @@
"Starta %1$s"
"Avbryt den gamla appen utan att spara."
"Minnesgränsen har överskridits för %1$s"
- "En minnesdump har skapats – tryck här om du vill dela den"
+ "En minnesdump har skapats – tryck här om du vill dela den"
"Vill du dela minnesdumpen?"
"Minnesgränsen på %2$s har överskridits för processen %1$s. En dump av minnesheapen har skapats så att du kan dela den med utvecklaren. Var försiktig: minnesdumpen kan innehålla personliga uppgifter som appen har åtkomst till."
"Välj en åtgärd för text"
@@ -989,7 +1076,18 @@
"Wi-Fi-nätverket är inte anslutet till internet"
- "Visa alternativ genom att trycka"
+ "Tryck för alternativ"
+ "Byte av nätverk till %1$s"
+ "%1$s används på enheten när det inte finns internetåtkomst via %2$s. Avgifter kan tillkomma."
+ "Byte av nätverk från %1$s till %2$s"
+
+ - "mobildata"
+ - "Wi-Fi"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "en okänd nätverkstyp"
"Det gick inte att ansluta till Wi-Fi"
" har en dålig Internetanslutning."
"Tillåt anslutning?"
@@ -999,7 +1097,7 @@
"Starta direkt Wi-Fi-användning. Detta inaktiverar Wi-Fi-användning med klient/trådlös surfzon."
"Det gick inte att starta Wi-Fi direkt."
"Wi-Fi Direct är aktiverat"
- "Tryck om du vill visa inställningar"
+ "Tryck för inställningar"
"Godkänn"
"Avvisa"
"Inbjudan har skickats"
@@ -1045,37 +1143,36 @@
"Inga behörigheter krävs"
"detta kan kosta pengar"
"OK"
- "USB för laddning"
+ "Enheten laddas via USB"
+ "En ansluten enhet strömförsörjs via USB"
"USB för överföring av filer"
"USB för överföring av foton"
"USB för MIDI"
"Ansluten till ett USB-tillbehör"
- "Visa fler alternativ genom att trycka."
+ "Tryck för fler alternativ."
"USB-felsökning ansluten"
- "Tryck om du vill inaktivera USB-felsökning."
- "Vill du dela en felrapport med administratören?"
- "IT-administratören har bett om en felrapport som hjälp vid felsökningen."
- "GODKÄNN"
- "AVVISA"
- "Felrapporten överförs …"
- "Tryck här om du vill avbryta"
+ "Tryck om du vill inaktivera USB-felsökning."
+ "Felrapporten överförs …"
+ "Vill du dela felrapporten?"
+ "Felrapporten delas …"
+ "IT-administratören har bett om en felrapport som hjälp vid felsökningen av den här enheten. Appar och data kan komma att delas."
+ "DELA"
+ "AVVISA"
"Byt tangentbord"
- "Välj tangentbord"
"Ha kvar den på skärmen när det fysiska tangentbordet används"
"Visa virtuellt tangentbord"
- "Välj en tangentbordslayout"
- "Välj en tangentbordslayout genom att trycka."
+ "Konfigurera fysiskt tangentbord"
+ "Tryck om du vill välja språk och layout"
" ABCDEFGHIJKLMNOPQRSTUVWXYZ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "kandidater"
"Förbereder ditt %s"
"Söker efter fel"
"Nytt %s har hittats"
"För överföring av foton och media"
"%s har skadats"
- "%s har skadats. Åtgärda genom att trycka."
+ "%s har skadats. Åtgärda genom att trycka."
"%s stöds inte"
- "Enheten har inte stöd för %s. Tryck om du vill konfigurera i ett format som stöds."
+ "Enheten har inte stöd för %s. Tryck här om du vill konfigurera i ett format som stöds."
"%s togs bort oväntat"
"Montera bort %s före borttagningen för att undvika dataförlust"
"Ditt %s har tagits bort"
@@ -1111,7 +1208,7 @@
"Tillåt appen att läsa installationssessioner. Det ger den tillgång till uppgifter om aktiva paketinstallationer."
"begära installationspaket"
"Tillåter att en app begär paketinstallation."
- "Tryck två gånger för zoomkontroll"
+ "Peka två gånger för zoomkontroll"
"Det gick inte att lägga till widgeten."
"Kör"
"Sök"
@@ -1137,24 +1234,26 @@
"Bakgrund"
"Ändra bakgrund"
"Meddelandelyssnare"
+ "Lyssnare för virtuell verklighet"
"Leverantör"
- "Aviseringsassistent"
+ "Rankningstjänst för aviseringar"
"VPN är aktiverat"
"VPN aktiveras av %s"
- "Tryck om du vill hantera nätverket."
- "Ansluten till %s. Knacka lätt om du vill hantera nätverket."
+ "Knacka lätt för att hantera nätverket."
+ "Ansluten till %s. Knacka lätt för att hantera nätverket."
"Ansluter till Always-on VPN ..."
"Ansluten till Always-on VPN"
+ "Always-on VPN har kopplats från"
"Fel på Always-on VPN"
- "Tryck om du vill konfigurera"
+ "Tryck för att konfigurera"
"Välj fil"
"Ingen fil har valts"
"Återställ"
"Skicka"
"Billäge aktiverat"
- "Tryck här om du vill avsluta billäget."
+ "Tryck om du vill avsluta billäge."
"Internetdelning eller surfpunkt aktiverad"
- "Tryck om du vill konfigurera."
+ "Tryck om du vill konfigurera."
"Tillbaka"
"Nästa"
"Hoppa över"
@@ -1187,7 +1286,7 @@
"Lägg till konto"
"Öka"
"Minska"
- "%s tryck länge."
+ "%s tryck länge."
"Dra uppåt för att öka och nedåt för att minska."
"Öka minuter"
"Minska minuter"
@@ -1223,15 +1322,15 @@
"Fler alternativ"
"%1$s, %2$s"
"%1$s, %2$s, %3$s"
- "lagring"
+ "Delat internt lagringsutrymme"
"SD-kort"
"SD-kort (%s)"
"USB-enhet"
"USB-enhet (%s)"
"USB-lagring"
"Redigera"
- "Varning angående dataanvändning"
- "Visa användning och inställning"
+ "Varning – dataanvändning"
+ "Visa användning och inställning."
"Datagränsen för 2G-3G har uppnåtts"
"Datagränsen för 4G har uppnåtts"
"Datagränsen för mobilen har uppnåtts"
@@ -1243,7 +1342,7 @@
"Gränsen för data via Wi-Fi har överskridits"
"%s över angiven gräns."
"Bakgrundsdata är begränsade"
- "Tryck för att ta bort begränsning"
+ "Ta bort begränsning."
"Säkerhetscertifikat"
"Certifikatet är giltigt."
"Utfärdad till:"
@@ -1459,20 +1558,20 @@
"Välj år"
"%1$s har tagits bort"
"%1$s för arbetet"
- "Om du vill lossa skärmen trycker du länge på Tillbaka och Översikt samtidigt."
- "Om du vill lossa skämen trycker du länge på Översikt."
+ "Om du vill lossa skärmen trycker du länge på Tillbaka."
"Appen är fäst. Att lossa den är inte tillåtet på den här enheten."
"Skärmen är fäst"
"Skärmen är inte längre fäst"
"Be om pinkod innan skärmen slutar fästas"
"Be om upplåsningsmönster innan skärmen slutar fästas"
"Be om lösenord innan skärmen slutar fästas"
- "Det går inte att ändra appens storlek. Rulla med två fingrar."
- "Appen har inte stöd för delad skärm."
"Paketet har installerats av administratören"
"Uppdaterat av administratören"
"Paketet har raderats av administratören"
"I batterisparläget reduceras enhetens prestanda så att batteriet ska räcka längre och vibration, platstjänster samt den mesta användningen av bakgrundsdata begränsas. Det kan hända att appar för e-post, sms och annat som kräver synkronisering inte uppdateras förrän du öppnar dem.\n\nBatterisparläget inaktiveras automatiskt när enheten laddas."
+ "Med databesparing kan du minska dataanvändningen genom att hindra en del appar från att skicka eller ta emot data i bakgrunden. Appar som du använder kan komma åt data, men det sker kanske inte lika ofta. Detta innebär t.ex. att bilder inte visas förrän du trycker på dem."
+ "Aktivera Databesparing?"
+ "Aktivera"
- I %1$d minuter (till kl. %2$s)
- I en minut (till kl. %2$s)
@@ -1526,6 +1625,8 @@
"SS-begäran har ändrats till en USSD-begäran."
"SS-begäran har ändrats till en ny SS-begäran."
"Jobbprofil"
+ "Knappen Utöka"
+ "Utöka/komprimera"
"USB-port för Android-kringutrustning"
"Android"
"USB-port för kringutrustning"
@@ -1533,34 +1634,48 @@
"Dölj utökat verktygsfält"
"Maximera"
"Stäng"
+ "%1$s: %2$s"
- %1$d har valts
- %1$d har valts
- "Diverse"
- "Du anger hur viktiga aviseringarna är."
+ "Du anger hur viktiga aviseringarna är."
"Detta är viktigt på grund av personerna som deltar."
"Tillåter du att %1$s skapar en ny användare för %2$s?"
"Tillåter du att %1$s skapar en ny användare för %2$s (det finns redan en användare med det här kontot)?"
- "Språkinställning"
+ "Lägg till ett språk"
"Regionsinställningar"
"Ange språket"
"Förslag"
"Alla språk"
+ "Alla regioner"
"Söka"
"Arbetsläget är inaktiverat"
"Tillåt att jobbprofilen är aktiv, inklusive appar, bakgrundssynkronisering och andra tillhörande funktioner."
"Aktivera"
- "%1$s har inaktiverats"
- "Inaktiverat av administratören för %1$s. Kontakta administratören om du vill veta mer."
"Du har nya meddelanden"
"Öppna sms-appen och visa meddelandet"
- "Vissa funktioner är inte tillgängliga"
- "Tryck om du vill fortsätta"
- "Användarprofilen är låst"
+ "Vissa funktioner är begränsade"
+ "Tryck för att låsa upp"
+ "Användaruppgifterna är låsta"
+ "Jobbprofilen är låst"
+ "Tryck och lås upp jobbprofilen"
"Ansluten till %1$s"
"Filerna visas om du trycker här"
"Fäst"
"Lossa"
"Info om appen"
+ "-%1$s"
+ "Vill du återställa enheten?"
+ "Tryck om du vill återställa enheten"
+ "Demo startas …"
+ "Enheten återställs …"
+ "Vill du återställa enheten?"
+ "Ändringar som du har gjort sparas inte och demon börjar om om %1$s sekunder …"
+ "Avbryt"
+ "Återställ nu"
+ "Återställ enheten till standardinställningarna om du vill använda den utan begränsningar"
+ "Tryck här om du vill läsa mer."
+ "%1$s har inaktiverats"
+ "Konferenssamtal"
diff --git a/core/res/res/values-tr/strings.xml b/core/res/res/values-tr/strings.xml
index 60e1b89768ec8..efc7adac8e13e 100644
--- a/core/res/res/values-tr/strings.xml
+++ b/core/res/res/values-tr/strings.xml
@@ -88,7 +88,6 @@
"Arayan kimliği varsayılanları kısıtlanmamıştır. Sonraki çağrı: Kısıtlanmamış"
"Hizmet sağlanamadı."
"Arayanın kimliği ayarını değiştiremezsiniz."
- "Kısıtlanmış erişim değiştirildi"
"Veri hizmeti engellendi."
"Acil durum hizmeti engellendi."
"Ses hizmeti engellendi."
@@ -125,11 +124,15 @@
"Hizmet Aranıyor"
"Kablosuz Çağrı"
+ - "Kablosuz ağ üzerinden telefon etmek ve ileti göndermek için ilk önce operatörünüzden bu hizmeti ayarlamasını isteyin. Sonra tekrar Ayarlar\'dan Kablosuz çağrı özelliğini açın."
+ - "Operatörünüze kaydolun"
+
+
+ - "%s"
+ - "%s Kablosuz Çağrı"
- "%s"
- "%s"
"Kapalı"
"Kablosuz bağlantı tercih edildi"
"Hücresel ağ tercih edildi"
@@ -165,7 +168,10 @@
"Saat depolama alanınız dolu. Lütfen yer boşaltmak için bazı dosyaları silin."
"TV depolama alanı dolu. Boş alan açmak için bazı dosyaları silin."
"Telefonun depolama alanı dolu! Yer açmak için bazı dosyaları silin."
- "Ağ izlenebilir"
+
+ - Sertifika yetkilileri yüklendi
+ - Sertifika yetkilisi yüklendi
+
"Bunu, bilinmeyen üçüncü taraflar yapabilir"
"İş profili yöneticiniz tarafından"
"%s tarafından"
@@ -208,13 +214,14 @@
"Telefon seçenekleri"
"Ekran kilidi"
"Kapat"
+ "Acil durum"
"Hata raporu"
"Hata raporu al"
"Bu rapor, e-posta iletisi olarak göndermek üzere cihazınızın şu anki durumuyla ilgili bilgi toplar. Hata raporu başlatıldıktan sonra hazır olması biraz zaman alabilir, lütfen sabırlı olun."
"Etkileşimli rapor"
- "Çoğu durumda bunu kullanın. Bu seçenek, raporun ilerleme durumunu takip etmenize ve sorunla ilgili daha fazla ayrıntı girmenize olanak sağlar. Rapor edilmesi uzun süren ve az kullanılan bazı bölümleri yok sayabilir."
+ "Çoğu durumda bunu kullanın. Bu seçenek, raporun ilerleme durumunu takip etmenize, sorunla ilgili daha fazla ayrıntı girmenize ve ekran görüntüleri almanıza olanak tanır. Rapor edilmesi uzun süren ve az kullanılan bazı bölümleri yok sayabilir."
"Tam rapor"
- "Cihazınız yanıt vermediğinde veya çok yavaş çalıştığında ya da tüm rapor bölümlerine ihtiyacınız olduğunda, sistemle minimum etkileşim için bu seçeneği kullanın. Bu seçenekte ekran görüntüsü alınmaz veya daha fazla ayrıntı girmenize izin verilmez."
+ "Cihazınız yanıt vermediğinde veya çok yavaş çalıştığında ya da tüm rapor bölümlerine ihtiyacınız olduğunda, sisteme müdahaleyi en aza indirmek için bu seçeneği kullanın. Daha fazla ayrıntı girmenize veya başka ekran görüntüleri almanıza izin vermez."
- %d saniye içinde hata raporu ekran görüntüsü alınıyor.
- Hata raporu ekran görüntüsü %d saniye içinde alınacak.
@@ -230,13 +237,12 @@
"Sesli Yardım"
"Şimdi kilitle"
"999+"
- "(%d)"
"İçerik gizlendi"
"İçerikler politika nedeniyle gizlendi"
"Güvenli mod"
"Android Sistemi"
- "Kişisel"
- "İş"
+ "Kişisel Profile Geç"
+ "İş Profiline Geç"
"Kişiler"
"kişilerinize erişme"
"Konum"
@@ -258,7 +264,7 @@
"Pencere içeriğini alma"
"Etkileşim kurduğunuz pencerenin içeriğini inceler."
"Dokunarak Keşfet\'i açma"
- "Dokunulan öğeler sesli olarak okunur ve ekranı keşfetmek için hareketler kullanılabilir."
+ "Dokunulan öğeler sesli olarak okunur ve ekranı keşfetmek için hareketler kullanılabilir."
"Gelişmiş web erişilebilirliğini açma"
"Uygulamanın erişilebilirliğini artırmak için komut dosyaları yüklenebilir."
"Yazdığınız metni izleme"
@@ -657,7 +663,7 @@
"PUK ve yeni PIN kodunu yazın"
"PUK kodu"
"Yeni PIN kodu"
- "Şifre yazmak için dokunun"
+ "Şifre yazmak için dokunun"
"Kilidi açmak için şifreyi yazın"
"Kilidi açmak için PIN kodunu yazın"
"Yanlış PIN kodu."
@@ -673,6 +679,7 @@
"Doğru!"
"Tekrar deneyin"
"Tekrar deneyin"
+ "Tüm özellikler ve veriler için kilidi açın"
"Yüz Tanıma Kilidi için maksimum deneme sayısı aşıldı"
"SIM kart yok"
"Tablette SIM kart yok."
@@ -766,7 +773,7 @@
"Bu sayfada kal"
"%s\n\nBu sayfadan ayrılmak istediğinizden emin misiniz?"
"Onayla"
- "İpucu: Yakınlaştırmak ve uzaklaştırmak için iki kez hafifçe dokunun."
+ "İpucu: Yakınlaştırmak ve uzaklaştırmak için iki kez dokunun."
"Otomatik Doldur"
"Otomatik doldurma ayarla"
" "
@@ -853,6 +860,71 @@
- %d saat
- 1 saat
+ "şimdi"
+
+ - %ddk
+ - %ddk
+
+
+ - %dsa
+ - %dsa
+
+
+ - %dg
+ - %dg
+
+
+ - %dy
+ - %dy
+
+
+ - %ddk içinde
+ - %ddk içinde
+
+
+ - %dsa içinde
+ - %dsa içinde
+
+
+ - %dg içinde
+ - %dg içinde
+
+
+ - %dy içinde
+ - %dy içinde
+
+
+ - %d dakika önce
+ - %d dakika önce
+
+
+ - %d saat önce
+ - %d saat önce
+
+
+ - %d gün önce
+ - %d gün önce
+
+
+ - %d yıl önce
+ - %d yıl önce
+
+
+ - %d dakika içinde
+ - %d dakika içinde
+
+
+ - %d saat içinde
+ - %d saat içinde
+
+
+ - %d gün içinde
+ - %d gün içinde
+
+
+ - %d yıl içinde
+ - %d yıl içinde
+
"Video sorunu"
"Bu video bu cihazda akış için uygun değil."
"Bu video oynatılamıyor."
@@ -884,7 +956,7 @@
"Bazı sistem işlevleri çalışmayabilir"
"Sistem için yeterli depolama alanı yok. 250 MB boş alanınızın bulunduğundan emin olun ve yeniden başlatın."
"%1$s çalışıyor"
- "Daha fazla bilgi edinmek için veya uygulamayı durdurmak için dokunun."
+ "Daha fazla bilgi edinmek veya uygulamayı durdurmak için dokunun."
"Tamam"
"İptal"
"Tamam"
@@ -895,14 +967,25 @@
"KAPALI"
"İşlemi şunu kullanarak tamamla"
"İşlemi %1$s kullanarak tamamla"
+ "İşlemi tamamla"
"Şununla aç:"
"%1$s ile aç"
+ "Aç"
"Şununla düzenle:"
"%1$s ile düzenle"
+ "Düzenle"
"Şununla paylaş:"
"%1$s ile paylaş"
+ "Paylaş"
+ "Göndermek için kullanılacak uygulama"
+ "%1$s uygulamasını kullanarak gönderin"
+ "Gönder"
"Ana Ekran uygulaması seçin"
"Ana Ekran olarak %1$s uygulamasını kullanın"
+ "Fotoğraf çek"
+ "Fotoğraf çekmek için şu uygulamayı kullan:"
+ "Fotoğraf çekmek için %1$s uygulamasını kullan"
+ "Fotoğraf çek"
"Varsayılan olarak bu işlem için kullan."
"Farklı bir uygulama kullan"
"Sistem ayarları > Uygulamalar > İndirilen bölümünden varsayılanı temizleyin."
@@ -913,11 +996,10 @@
"%1$s durdu"
"%1$s sürekli olarak duruyor"
"%1$s sürekli olarak duruyor"
- "Uygulamayı yeniden başlat"
- "Uygulamayı sıfırla ve yeniden başlat"
+ "Uygulamayı tekrar aç"
"Geri bildirim gönder"
"Kapat"
- "Yok say"
+ "Cihaz yeniden başlatılana kadar bir daha gösterme"
"Bekle"
"Uygulamayı kapat"
@@ -935,17 +1017,22 @@
"Ölçek"
"Her zaman göster"
"Bunu Sistem ayarları > Uygulamalar > İndirilenler bölümünden yeniden etkinleştirin."
+ "%1$s geçerli Ekran boyutu ayarını desteklemiyor ve beklenmedik bir şekilde davranabilir."
+ "Her zaman göster"
"%1$s uygulaması (%2$s işlemi) kendiliğinden uyguladığı StrictMode politikasını ihlal etti."
"%1$s işlemi kendiliğinden uyguladığı StrictMode politikasını ihlal etti."
"Android yeni sürüme geçiriliyor..."
"Android başlatılıyor…"
"Depolama optimize ediliyor."
+ "Android güncellemesi tamamlanıyor…"
+ "Yeni sürüme geçiş işlemi tamamlanana kadar bazı uygulamalar düzgün çalışmayabilir"
+ "%1$s yeni sürüme geçiriliyor…"
"%1$d/%2$d uygulama optimize ediliyor."
"%1$s hazırlanıyor."
"Uygulamalar başlatılıyor"
"Açılış tamamlanıyor."
"%1$s çalışıyor"
- "Uygulamaya geçiş yapmak için dokunun"
+ "Uygulamaya geçmek için dokunun"
"Uygulama değiştirilsin mi?"
"Başka bir uygulama zaten çalışıyor. Yeni bir uygulama başlatmadan bu uygulama durdurulmalıdır."
"%1$s öğesine geri dön"
@@ -953,7 +1040,7 @@
"%1$s uygulamasını başlat"
"Kaydetmeden eski uygulamayı durdurun."
"%1$s bellek sınırını aştı"
- "Yığın dökümü toplandı. Paylaşmak için dokunun"
+ "Yığın dökümü toplandı. Paylaşmak için dokunun"
"Yığın dökümü paylaşılsın mı?"
"%1$s, %2$s olan işlem bellek sınırını aştı. İşlemin geliştiricisiyle paylaşabileceğiniz bir bellek yığını dökümü hazır. Dikkat: Bu bellek yığını dökümü, uygulamanın erişebildiği tüm kişisel bilgilerinizi içerebilir."
"Kısa mesaj için bir işlem seçin"
@@ -989,7 +1076,18 @@
"Kablosuz bağlantıda İnternet erişimi yok"
- "Seçenekler için dokunun"
+ "Seçenekler için dokunun"
+ "%1$s ağına geçildi"
+ "%2$s ağının İnternet erişimi olmadığında cihaz %1$s ağını kullanır. Bunun için ödeme alınabilir."
+ "%1$s ağından %2$s ağına geçildi"
+
+ - "hücresel veri"
+ - "Kablosuz"
+ - "Bluetooth"
+ - "Ethernet"
+ - "VPN"
+
+ "bilinmeyen ağ türü"
"Kablosuz bağlantısı kurulamadı"
" İnternet bağlantısı zayıf."
"Bağlantıya izin verilsin mi?"
@@ -999,7 +1097,7 @@
"Kablosuz Doğrudan Bağlantı\'yı başlat. Bu işlem, Kablosuz istemci/hotspot kullanımını kapatacak."
"Kablosuz Doğrudan Bağlantı başlatılamadı."
"Kablosuz Doğrudan Bağlantı özelliği açık"
- "Ayarlar için dokunun"
+ "Ayarlar için dokunun"
"Kabul et"
"Reddet"
"Davetiye gönderildi"
@@ -1031,16 +1129,11 @@
"SIM kart eklendi"
"Hücresel ağa erişmek için cihazınızı yeniden başlatın."
"Yeniden başlat"
-
-
-
-
-
-
-
-
-
-
+ "Yeni SIM kartınızın doğru çalışmasını sağlamak için operatörünüzden bir uygulama yüklemeniz ve bu uygulamayı açmanız gerekecektir."
+ "UYGULAMAYI AL"
+ "ŞİMDİ DEĞİL"
+ "Yeni SIM kart takıldı"
+ "Kurmak için dokunun"
"Saati ayarlayın"
"Tarihi ayarlayın"
"Ayarla"
@@ -1050,37 +1143,36 @@
"İzin gerektirmez"
"bunun için sizden ücret alınabilir"
"Tamam"
- "Şarj için USB"
+ "Bu cihaz USB\'den şarj oluyor"
+ "USB, bağlı cihaza güç sağlıyor"
"Dosya aktarımı için USB"
"Fotoğraf aktarımı için USB"
"MIDI için USB"
"USB aksesuarına bağlandı"
- "Daha fazla seçenek için dokunun."
+ "Diğer seçenekler için dokunun."
"USB hata ayıklaması bağlandı"
- "USB hata ayıklama özelliğini devre dışı bırakmak için dokunun."
- "Hata raporu yöneticiyle paylaşılsın mı?"
- "BT yöneticiniz, sorun gidermeye yardımcı olması için bir hata raporu istedi"
- "KABUL ET"
- "REDDET"
- "Hata raporu alınıyor…"
- "İptal etmek için dokunun"
+ "USB hata ayıklama özelliğini devre dışı bırakmak için dokunun."
+ "Hata raporu alınıyor…"
+ "Hata raporu paylaşılsın mı?"
+ "Hata raporu paylaşılıyor..."
+ "BT yöneticiniz, bu cihazda sorun gidermeye yardımcı olması için bir hata raporu istedi. Uygulamalar ve veriler paylaşılabilir."
+ "PAYLAŞ"
+ "REDDET"
"Klavyeyi değiştir"
- "Klavyeyi seç"
"Fiziksel klavye etkin durumdayken ekranda tut"
"Sanal klavyeyi göster"
- "Klavye düzeni seçin"
- "Bir klavye düzeni seçmek için dokunun."
+ "Fiziksel klavyeyi yapılandırın"
+ "Dili ve düzeni seçmek için hafifçe dokunun"
" ABCDEFGHIJKLMNOPQRSTUVWXYZ"
" 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "adaylar"
"%s hazırlanıyor"
"Hatalar denetleniyor"
"Yeni %s algılandı"
"Fotoğraf ve medya aktarmak için"
"Bozuk %s"
- "%s bozuk. Düzeltmek için dokunun."
+ "%s bozuk. Düzeltmek için dokunun."
"Desteklenmeyen %s"
- "Bu cihaz bu %s birimini desteklemiyor. Desteklenen bir biçimde kurmak için dokunun."
+ "Bu cihaz, bu %s ortamını desteklemiyor. Desteklenen bir biçimde kurmak için dokunun."
"%s beklenmedik şekilde çıkarıldı"
"Veri kaybı olmaması için %s birimini çıkarmadan önce bağlantısını kesin"
"%s çıkarıldı"
@@ -1116,7 +1208,7 @@
"Bir uygulamanın yükleme oturumlarını okumasına izin verir. Bu, etkin paket yüklemeleriyle ilgili ayrıntıların görülmesine olanak tanır."
"paket yükleme isteğinde bulunma"
"Uygulamaya, paketleri yükleme isteğinde bulunma izni verir."
- "Yakınlaştırma denetimi için iki kez dokunun"
+ "Zum denetimi için iki kez dokun"
"Widget eklenemedi."
"Git"
"Ara"
@@ -1142,24 +1234,26 @@
"Duvar Kağıdı"
"Duvar kağıdını değiştir"
"Bildirim dinleyici"
+ "Sanal Gerçeklik dinleyici"
"Durum sağlayıcı"
- "Bildirim yardımcısı"
+ "Bildirim sıralama hizmeti"
"VPN etkinleştirildi"
"VPN, %s tarafından etkinleştirildi"
- "Ağı yönetmek için dokunun."
- "%s oturumuna bağlandı. Ağı yönetmek için dokunun."
+ "Ağı yönetmek için hafifçe vurun."
+ "%s oturumuna bağlı. Ağı yönetmek için hafifçe vurun."
"Her zaman açık VPN\'ye bağlanılıyor…"
"Her zaman açık VPN\'ye bağlanıldı"
+ "Her zaman açık VPN bağlantısı kesildi"
"Her zaman açık VPN hatası"
- "Yapılandırmak için dokunun"
+ "Ayarlamak için dokunun"
"Dosya seç"
"Seçili dosya yok"
"Sıfırla"
"Gönder"
"Araba modu etkin"
- "Araba modundan çıkmak için dokunun."
+ "Araba modundan çıkmak için dokunun."
"Tethering veya hotspot etkin"
- "Kurulum için dokunun."
+ "Ayarlamak için dokunun."
"Geri"
"İleri"
"Atla"
@@ -1192,7 +1286,7 @@
"Hesap ekle"
"Artır"
"Azalt"
- "%s rakamına dokunun ve basılı tutun."
+ "%s dokunun ve basılı tutun."
"Artırmak için yukarı, azaltmak için aşağı kaydırın."
"Dakikayı artır"
"Dakikayı azalt"
@@ -1228,15 +1322,15 @@
"Diğer seçenekler"
"%1$s, %2$s"
"%1$s, %2$s, %3$s"
- "Dahili depolama birimi"
+ "Dahili olarak paylaşılan depolama alanı"
"SD kart"
"%s SD kartı"
"USB sürücü"
"%s USB sürücüsü"
"USB bellek"
"Düzenle"
- "Veri kullanım uyarısı"
- "Kullanımı ve ayarları görmek için dokunun."
+ "Veri kullanımı uyarısı"
+ "Kul. ve ayar. gör. için dokunun."
"2G-3G veri sınırına ulaşıldı"
"4G veri sınırına ulaşıldı"
"Hücre verisi sınırına ulaşıldı"
@@ -1248,7 +1342,7 @@
"Kablosuz veri limiti aşıldı"
"%s, belirlenen limiti aşıyor."
"Arka plan verileri kısıtlı"
- "Kısıtlamayı kaldırmak için dokunun."
+ "Kısıtlamayı kaldır. için dokunun"
"Güvenlik sertifikası"
"Bu sertifika geçerli."
"Verilen:"
@@ -1437,7 +1531,7 @@
"bilinmiyor"
"Yazdırma hizmeti etkin değil"
"%s hizmeti yüklendi"
- "Etkinleştirmek için hafifçe dokunun"
+ "Etkinleştirmek için dokunun"
"Yönetici PIN\'ini girin"
"PIN\'i girin"
"Yanlış"
@@ -1464,20 +1558,20 @@
"Yılı seçin"
"%1$s silindi"
"%1$s (İş)"
- "Bu ekranın sabitlemesini kaldırmak için Geri ve Genel Bakış\'a aynı anda dokunup basılı tutun."
- "Bu ekranın sabitlemesini kaldırmak için Genel Bakış\'a dokunup basılı tutun."
+ "Bu ekranın sabitlemesini kaldırmak için Geri\'ye dokunup basılı tutun."
"Uygulama sabitlendi. Bu cihazda sabitlemenin kaldırılmasına izin verilmiyor."
"Ekran sabitlendi"
"Ekran sabitlemesi kaldırıldı"
"Sabitlemeyi kaldırmadan önce PIN\'i sor"
"Sabitlemeyi kaldırmadan önce kilit açma desenini sor"
"Sabitlemeyi kaldırmadan önce şifre sor"
- "Uygulama yeniden boyutlandırılamaz. İki parmağınızla kaydırın."
- "Uygulama bölünmüş ekranı desteklemiyor."
"Yöneticiniz tarafından yüklendi"
"Yöneticiniz tarafından güncellendi"
"Yöneticiniz tarafından silindi"
"Pil tasarrufu özelliği, pil ömrünü iyileştirmeye yardımcı olmak için cihazın performansını düşürür, titreşimi, konum hizmetlerini ve arka plan verilerinin çoğunu sınırlar. Senkronizasyona dayalı olarak çalışan e-posta, mesajlaşma uygulamaları ve diğer uygulamalar, bunları açmadığınız sürece güncellenmeyebilir.\n\nCihazınız şarj olurken pil tasarrufu otomatik olarak kapatılır."
+ "Veri kullanımını azaltmaya yardımcı olması için Veri Tasarrufu, bazı uygulamaların arka planda veri göndermesini veya almasını engeller. Şu anda kullandığınız bir uygulama veri bağlantısına erişebilir, ancak bunu daha seyrek yapabilir. Bu durumda örneğin, siz resimlere dokunmadan resimler görüntülenmez."
+ "Veri Tasarrufu açılsın mı?"
+ "Aç"
- %1$d dakika için (şu saate kadar: %2$s)
- Bir dakika için (şu saate kadar: %2$s)
@@ -1531,6 +1625,8 @@
"SS isteği USSD isteği olarak değiştirildi."
"SS isteği yeni SS isteği olarak değiştirildi."
"İş profili"
+ "Genişlet düğmesi"
+ "genişletmeyi aç/kapat"
"Android USB Çevre Birimi Bağlantı Noktası"
"Android"
"USB Çevre Birimi Bağlantı Noktası"
@@ -1538,34 +1634,48 @@
"Taşan araç çubuğunu kapat"
"Ekranı Kapla"
"Kapat"
+ "%1$s: %2$s"
- %1$d öğe seçildi
- %1$d öğe seçildi
- "Çeşitli"
- "Bu bildirimlerin önem derecesini ayarladınız."
+ "Bu bildirimlerin önem derecesini ayarladınız."
"Bu, dahil olan kişiler nedeniyle önemlidir."
"%1$s uygulamasının %2$s hesabına sahip yeni bir Kullanıcı eklemesine izin verilsin mi?"
"%1$s uygulamasının %2$s hesabına sahip yeni bir Kullanıcı eklemesine izin verilsin mi (bu hesaba sahip bir kullanıcı zaten var)?"
- "Dil tercihi"
+ "Dil ekleyin"
"Bölge tercihi"
"Dil adını yazın"
"Önerilen"
"Tüm diller"
+ "Tüm bölgeler"
"Ara"
"İş modu KAPALI"
"Uygulamalar, arka planda senkronizasyon ve ilgili özellikler dahil olmak üzere iş profilinin çalışmasına izin ver."
"Aç"
- "%1$s devre dışı bırakıldı"
- "%1$s yöneticisi tarafından devre dışı bırakıldı. Daha fazla bilgi edinmek için kendileriyle iletişime geçin."
"Yeni mesajlarınız var"
"Görüntülemek için SMS uygulamasını açın"
- "Bazı işlevler kullanılamayabilir"
- "Devam etmek için dokunun"
- "Kullanıcı profili kilitli"
+ "Bazı işlevler sınırlı olabilir"
+ "Kilidi açmak için dokunun"
+ "Kullanıcı verileri kilitlendi"
+ "İş profili kilitlendi"
+ "İş profilinin kilidini açmak için dokunun"
"%1$s cihazına bağlandı"
- "Dosyaları görüntülemek için hafifçe dokunun"
+ "Dosyaları görüntülemek için dokunun"
"Sabitle"
"Sabitlemeyi kaldır"
"Uygulama bilgileri"
+ "−%1$s"
+ "Cihaz sıfırlansın mı?"
+ "Cihazı sıfırlamak için dokunun"
+ "Demo başlatılıyor…"
+ "Cihaz sıfırlanıyor…"
+ "Cihaz sıfırlansın mı?"
+ "Değişiklikleri kaybedeceksiniz ve demo %1$s saniye içinde tekrar başlayacak…"
+ "İptal"
+ "Şimdi sıfırla"
+ "Bu cihazı kısıtlama olmadan kullanmak için fabrika ayarlarına sıfırlayın"
+ "Daha fazla bilgi edinmek için dokunun."
+ "%1$s devre dışı"
+ "Konferans Çağrısı"
diff --git a/core/res/res/values-watch/colors_material.xml b/core/res/res/values-watch/colors_material.xml
index 18bfd4db5ae04..72f589b3d3376 100644
--- a/core/res/res/values-watch/colors_material.xml
+++ b/core/res/res/values-watch/colors_material.xml
@@ -14,15 +14,15 @@
limitations under the License.
-->
- #ff232e33
- #ff3e5059
+ #232E33
+ #3E5059
- #ff2e4978
- #ff4285f4
- #ff5e97f6
- #ffd0def7
+ #5385DB
+ #75A4F5
+ #5E97F6
+ #93B7F5
- #4D4D4D
+ #33ffffff
#ff919699
diff --git a/core/res/res/values-watch/config.xml b/core/res/res/values-watch/config.xml
index 7c05b7a8e3627..d13d154688253 100644
--- a/core/res/res/values-watch/config.xml
+++ b/core/res/res/values-watch/config.xml
@@ -62,4 +62,7 @@
ListView/GridView are notably absent since this is their default anyway.
Set to true for watch devices. -->
true
+
+
+ false
diff --git a/core/res/res/values-watch/config_material.xml b/core/res/res/values-watch/config_material.xml
index 529f18b78e4dd..03d3637b150db 100644
--- a/core/res/res/values-watch/config_material.xml
+++ b/core/res/res/values-watch/config_material.xml
@@ -30,6 +30,9 @@
true
+
+ true
+
@drawable/scrollbar_vertical_thumb
@drawable/scrollbar_vertical_track
diff --git a/core/res/res/values-notround-watch/config_material.xml b/core/res/res/values-watch/dimens.xml
similarity index 58%
rename from core/res/res/values-notround-watch/config_material.xml
rename to core/res/res/values-watch/dimens.xml
index a99674f3f0604..4c8b39ca92a7b 100644
--- a/core/res/res/values-notround-watch/config_material.xml
+++ b/core/res/res/values-watch/dimens.xml
@@ -13,13 +13,9 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-
-
-
-
- 0x00800033
+
+
+ 0dp
+
+ 0dp
diff --git a/core/res/res/values-watch/dimens_material.xml b/core/res/res/values-watch/dimens_material.xml
index b48cde62158ab..3c4904ccf07d1 100644
--- a/core/res/res/values-watch/dimens_material.xml
+++ b/core/res/res/values-watch/dimens_material.xml
@@ -39,4 +39,9 @@
1dip
1dip
+
+
+ 16dip
+ 32dip
+ 64dip
diff --git a/core/res/res/values-watch/styles_material.xml b/core/res/res/values-watch/styles_material.xml
index af4207ed4e6f5..0053c12d9d84d 100644
--- a/core/res/res/values-watch/styles_material.xml
+++ b/core/res/res/values-watch/styles_material.xml
@@ -98,7 +98,7 @@ please see styles_device_defaults.xml.
- @empty
- false
- @style/TextAppearance.Material.DialogWindowTitle
- - @integer/config_dialogTextGravity
+ - center_horizontal|top
- end
diff --git a/core/res/res/values-watch/themes_device_defaults.xml b/core/res/res/values-watch/themes_device_defaults.xml
index aa1594d465166..fbe780db6fae1 100644
--- a/core/res/res/values-watch/themes_device_defaults.xml
+++ b/core/res/res/values-watch/themes_device_defaults.xml
@@ -314,7 +314,7 @@ a similar way.
- @color/primary_device_default_dark
- @color/primary_dark_device_default_dark
- @color/accent_device_default_dark
- - ?attr/colorBackgroundFloating
+ - @color/background_device_default_dark
- @color/background_floating_device_default_dark
- @color/background_cache_hint_selector_device_default
- @color/button_normal_device_default_dark
diff --git a/core/res/res/values-zh-rCN/strings.xml b/core/res/res/values-zh-rCN/strings.xml
index 938571ed92a53..03f3c0fa8240f 100644
--- a/core/res/res/values-zh-rCN/strings.xml
+++ b/core/res/res/values-zh-rCN/strings.xml
@@ -189,7 +189,7 @@
"振铃器开启"
"Android 系统更新"
"正在准备更新…"
- "正在处理更新文件包…"
+ "正在处理更新软件包…"
"正在重新启动…"
"恢复出厂设置"
"正在重新启动…"
diff --git a/core/res/res/values/colors_device_defaults.xml b/core/res/res/values/colors_device_defaults.xml
index 89691e90d46ed..8f0350a887b96 100644
--- a/core/res/res/values/colors_device_defaults.xml
+++ b/core/res/res/values/colors_device_defaults.xml
@@ -28,10 +28,10 @@
@color/tertiary_material_settings
@color/quaternary_material_settings
- @color/material_deep_teal_700
+ @color/accent_material_700
@color/accent_material_light
@color/accent_material_dark
- @color/material_deep_teal_50
+ @color/accent_material_50
@color/background_material_dark
@color/background_material_light
diff --git a/core/res/res/values/colors_material.xml b/core/res/res/values/colors_material.xml
index 92426c6a9bcac..37feff8daf7f8 100644
--- a/core/res/res/values/colors_material.xml
+++ b/core/res/res/values/colors_material.xml
@@ -36,8 +36,10 @@
@color/material_blue_grey_700
@color/material_blue_grey_200
+ @color/material_deep_teal_700
@color/material_deep_teal_500
@color/material_deep_teal_200
+ @color/material_deep_teal_50
#ff5a595b
#ffd6d7d7
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index e4382a2f6aa60..7a3e8b92251d7 100644
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -1056,6 +1056,12 @@
4000
8000
+
+ 0
+
250
@@ -1936,6 +1942,12 @@
mirror the content of the default display. -->
true
+
+ 0
+
false
diff --git a/core/res/res/values/config_material.xml b/core/res/res/values/config_material.xml
index 840a551f914ff..8737df84e0600 100644
--- a/core/res/res/values/config_material.xml
+++ b/core/res/res/values/config_material.xml
@@ -32,6 +32,9 @@
false
+
+ false
+
true
diff --git a/core/res/res/values/dimens_material.xml b/core/res/res/values/dimens_material.xml
index ae3116584e5de..ebe577c737581 100644
--- a/core/res/res/values/dimens_material.xml
+++ b/core/res/res/values/dimens_material.xml
@@ -129,6 +129,7 @@
20dp
+ 20dp
2dp
2dp
@@ -193,4 +194,9 @@
16dip
16dip
+
+
+ 16dip
+ 48dp
+ 76dp
diff --git a/core/res/res/values/styles_material.xml b/core/res/res/values/styles_material.xml
index 22bdf7e9616a3..a1e12d281c951 100644
--- a/core/res/res/values/styles_material.xml
+++ b/core/res/res/values/styles_material.xml
@@ -739,6 +739,10 @@ please see styles_device_defaults.xml.
@@ -752,6 +756,10 @@ please see styles_device_defaults.xml.
@@ -759,6 +767,10 @@ please see styles_device_defaults.xml.
diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml
index 23a3bf14d7096..3a5177d2e9f30 100644
--- a/core/res/res/values/symbols.xml
+++ b/core/res/res/values/symbols.xml
@@ -307,6 +307,7 @@
+
@@ -1735,6 +1736,7 @@
+
diff --git a/core/res/res/values/themes_material.xml b/core/res/res/values/themes_material.xml
index ff8693bbbdade..0de773bc37248 100644
--- a/core/res/res/values/themes_material.xml
+++ b/core/res/res/values/themes_material.xml
@@ -175,6 +175,7 @@ please see themes_device_defaults.xml.
- @transition/move
- false
- true
+ - @bool/config_windowSwipeToDismiss
- @style/ThemeOverlay.Material.Dialog
@@ -536,6 +537,7 @@ please see themes_device_defaults.xml.
- @transition/move
- false
- true
+ - @bool/config_windowSwipeToDismiss
- @style/ThemeOverlay.Material.Dialog
diff --git a/docs/html/_redirects.yaml b/docs/html/_redirects.yaml
index 6185dab16e22f..7daf85c6acfe9 100644
--- a/docs/html/_redirects.yaml
+++ b/docs/html/_redirects.yaml
@@ -1237,7 +1237,7 @@ redirects:
- from: /r/studio-ui/run-with-work-profile.html
to: /studio/run/index.html?utm_source=android-studio#ir-work-profile
- from: /r/studio-ui/am-gpu-debugger.html
- to: /studio/profile/am-gpu.html?utm_source=android-studio
+ to: /studio/debug/am-gpu-debugger.html?utm_source=android-studio
- from: /r/studio-ui/theme-editor.html
to: /studio/write/theme-editor.html?utm_source=android-studio
- from: /r/studio-ui/translations-editor.html
diff --git a/docs/html/google/play/billing/billing_integrate.jd b/docs/html/google/play/billing/billing_integrate.jd
index 5d6b3a8f2e3ff..506a44006bdba 100755
--- a/docs/html/google/play/billing/billing_integrate.jd
+++ b/docs/html/google/play/billing/billing_integrate.jd
@@ -9,18 +9,18 @@ page.tags="inapp, billing, iap"
In this document
- Adding the AIDL file
- - Updating Your Manifest
+ - Updating your manifest
- Creating a ServiceConnection
- - Making In-app Billing Requests
+
- Making In-app Billing requests
- - Querying Items Available for Purchase
-
-
- Purchasing an Item
- - Querying Purchased Items
- - Consuming a Purchase
- - Implementing Subscriptions
+ - Querying items available for purchase
-
+
- Purchasing an item
+ - Querying purchased items
+ - Consuming a purchase
+ - Implementing subscriptions
- - Securing Your App
+
- Securing your app
Reference
@@ -42,7 +42,7 @@ page.tags="inapp, billing, iap"
In-app Billing on Google Play provides a straightforward, simple interface
for sending In-app Billing requests and managing In-app Billing transactions
using Google Play. The information below covers the basics of how to make
- calls from your application to the In-app Billing service using the Version 3
+ calls from your application to the In-app Billing service using the In-app Billing Version 3
API.
@@ -51,26 +51,25 @@ page.tags="inapp, billing, iap"
your application, see the Selling In-app Products
training class. The training class provides a complete sample In-app Billing
- application, including convenience classes to handle key tasks related to
- setting up your connection, sending billing requests and processing responses
+ application, including convenience classes to handle key tasks that are related to
+ setting up your connection, sending billing requests, processing responses
from Google Play, and managing background threading so that you can make
In-app Billing calls from your main activity.
- Before you start, be sure that you read the In-app Billing
- Overview to familiarize yourself with concepts that will make it easier
+ Overview to familiarize yourself with concepts that make it easier
for you to implement In-app Billing.
-To implement In-app Billing in your application, you need to do the
-following:
+Complete these steps to implement In-app Billing in your application:
- Add the In-app Billing library to your project.
- Update your {@code AndroidManifest.xml} file.
- - Create a {@code ServiceConnection} and bind it to
+
- Create a {@code ServiceConnection} and bind it to the
{@code IInAppBillingService}.
- Send In-app Billing requests from your application to
{@code IInAppBillingService}.
@@ -79,55 +78,56 @@ following:
Adding the AIDL file to your project
-{@code IInAppBillingService.aidl} is an Android Interface Definition
+
The {@code IInAppBillingService.aidl} is an Android Interface Definition
Language (AIDL) file that defines the interface to the In-app Billing Version
-3 service. You will use this interface to make billing requests by invoking IPC
+3 service. You can use this interface to make billing requests by invoking IPC
method calls.
-To get the AIDL file:
+
+Complete these steps to get the AIDL file:
- Open the Android SDK Manager.
- In the SDK Manager, expand the {@code Extras} section.
- Select Google Play Billing Library.
- Click Install packages to complete the download.
-The {@code IInAppBillingService.aidl} file will be installed to {@code /extras/google/play_billing/}.
+The {@code IInAppBillingService.aidl} file will be installed to {@code <sdk>/extras/google/play_billing/}.
-To add the AIDL to your project:
+Complete these steps to add the AIDL to your project:
- - First, download the Google Play Billing Library to your Android project:
+
- Download the Google Play Billing Library to your Android project:
- Select Tools > Android > SDK Manager.
- Under Appearance & Behavior > System Settings > Android SDK,
select the SDK Tools tab to select and download Google Play Billing
Library.
- - Next, copy the {@code IInAppBillingService.aidl} file to your project.
+
- Copy the {@code IInAppBillingService.aidl} file to your project.
- - If you are using Android Studio:
+
- If you are using Android Studio, complete these steps to copy the file:
- Navigate to {@code src/main} in the Project tool window.
- - Select File > New > Directory and enter {@code aidl} in the
- New Directory window, then select OK.
+
- Select File > New > Directory, enter {@code aidl} in the
+ New Directory window, and select OK.
-
- Select File > New > Package and enter
- {@code com.android.vending.billing} in the New Package window, then select
+
- Select File > New > Package, enter
+ {@code com.android.vending.billing} in the New Package window, and select
OK.
- Using your operating system file explorer, navigate to
- {@code /extras/google/play_billing/}, copy the
+ {@code <sdk>/extras/google/play_billing/}, copy the
{@code IInAppBillingService.aidl} file, and paste it into the
{@code com.android.vending.billing} package in your project.
- - If you are developing in a non-Android Studio environment: Create the
- following directory {@code /src/com/android/vending/billing} and copy the
- {@code IInAppBillingService.aidl} file into this directory. Put the AIDL
- file into your project and use the Gradle tool to build your project so that
- the
IInAppBillingService.java file gets generated.
+ - If you are developing in a non-Android Studio environment, create the
+ following directory: {@code /src/com/android/vending/billing}. Copy the
+ {@code IInAppBillingService.aidl} file into this directory. Place the AIDL
+ file in your project and use the Gradle tool to build your project so that
+ the
IInAppBillingService.java file is generated.
@@ -137,16 +137,16 @@ method calls.
-Updating Your App's Manifest
+Updating your app's manifest
In-app billing relies on the Google Play application, which handles all
- communication between your application and the Google Play server. To use the
+ of the communication between your application and the Google Play server. To use the
Google Play application, your application must request the proper permission.
You can do this by adding the {@code com.android.vending.BILLING} permission
to your AndroidManifest.xml file. If your application does not declare the
In-app Billing permission, but attempts to send billing requests, Google Play
- will refuse the requests and respond with an error.
+ refuses the requests and responds with an error.
@@ -182,7 +182,7 @@ method calls.
onServiceDisconnected} and {@link
android.content.ServiceConnection#onServiceConnected onServiceConnected}
methods to get a reference to the {@code IInAppBillingService} instance after
- a connection has been established.
+ a connection is established.
@@ -208,20 +208,25 @@ ServiceConnection mServiceConn = new ServiceConnection() {
bindService} method. Pass the method an {@link android.content.Intent} that
references the In-app Billing service and an instance of the {@link
android.content.ServiceConnection} that you created, and explicitly set the
- Intent's target package name to com.android.vending — the
+ Intent's target package name to com.android.vending—the
package name of Google Play app.
Caution: To protect the security of billing transactions,
- always make sure to explicitly set the intent's target package name to
+ always explicitly set the intent's target package name to
com.android.vending, using {@link
- android.content.Intent#setPackage(java.lang.String) setPackage()} as shown in
- the example below. Setting the package name explicitly ensures that
+ android.content.Intent#setPackage(java.lang.String) setPackage()}.
+ Setting the package name explicitly ensures that
only the Google Play app can handle billing requests from your app,
preventing other apps from intercepting those requests.
+
+ The following code sample demonstrates how to set the intent's target package
+ to protect the security of transactions:
+
+
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
@@ -233,6 +238,13 @@ public void onCreate(Bundle savedInstanceState) {
}
+Caution: To ensure that your app is secure, always use an
+explicit intent when starting a {@link android.app.Service} and do not declare intent filters for
+your services. Using an implicit intent to start a service is a security hazard because you cannot
+be certain of the service that will respond to the intent, and the user cannot see which service
+starts. Beginning with Android 5.0 (API level 21), the system throws an exception if you call
+{@link android.content.Context#bindService bindService()} with an implicit intent.
+
You can now use the mService reference to communicate with the Google Play
service.
@@ -242,10 +254,14 @@ public void onCreate(Bundle savedInstanceState) {
Important: Remember to unbind from the In-app Billing
service when you are done with your {@link android.app.Activity}. If you
don’t unbind, the open service connection could cause your device’s
- performance to degrade. This example shows how to perform the unbind
+ performance to degrade.
+
+
+
+ This example shows how to perform the unbind
operation on a service connection to In-app Billing called {@code
mServiceConn} by overriding the activity’s {@link
- android.app.Activity#onDestroy onDestroy} method.
+ android.app.Activity#onDestroy onDestroy} method:
@@ -264,29 +280,29 @@ public void onDestroy() {
"{@docRoot}training/in-app-billing/preparing-iab-app.html">Selling In-app
Products training class and associated sample.
-Making In-app Billing Requests
+Making In-app Billing requests
- Once your application is connected to Google Play, you can initiate purchase
+ After your application is connected to Google Play, you can initiate purchase
requests for in-app products. Google Play provides a checkout interface for
- users to enter their payment method, so your application does not need to
+ users to enter their payment method, so your application doesn't need to
handle payment transactions directly. When an item is purchased, Google Play
recognizes that the user has ownership of that item and prevents the user
from purchasing another item with the same product ID until it is consumed.
- You can control how the item is consumed in your application, and notify
+ You can control how the item is consumed in your application and notify
Google Play to make the item available for purchase again. You can also query
- Google Play to quickly retrieve the list of purchases that were made by the
- user. This is useful, for example, when you want to restore the user's
+ Google Play to quickly retrieve the list of purchases that the
+ user made. This is useful, for example, when you want to restore the user's
purchases when your user launches your app.
-Querying for Items Available for Purchase
+Querying for items available for purchase
In your application, you can query the item details from Google Play using
the In-app Billing Version 3 API. To pass a request to the In-app Billing
- service, first create a {@link android.os.Bundle} that contains a String
+ service, create a {@link android.os.Bundle} that contains a String
{@link java.util.ArrayList} of product IDs with key "ITEM_ID_LIST", where
- each string is a product ID for an purchasable item.
+ each string is a product ID for an purchasable item. Here is an example:
@@ -299,9 +315,9 @@ querySkus.putStringArrayList(“ITEM_ID_LIST”, skuList);
To retrieve this information from Google Play, call the {@code getSkuDetails}
- method on the In-app Billing Version 3 API, and pass the method the In-app
+ method on the In-app Billing Version 3 API and pass the In-app
Billing API version (“3”), the package name of your calling app, the purchase
- type (“inapp”), and the {@link android.os.Bundle} that you created.
+ type (“inapp”), and the {@link android.os.Bundle} that you created, into the method:
@@ -310,35 +326,35 @@ Bundle skuDetails = mService.getSkuDetails(3,
- If the request is successful, the returned {@link android.os.Bundle}has a
+ If the request is successful, the returned {@link android.os.Bundle} has a
response code of {@code BILLING_RESPONSE_RESULT_OK} (0).
- Warning: Do not call the {@code getSkuDetails} method on the
- main thread. Calling this method triggers a network request which could block
+ Warning: Don't call the {@code getSkuDetails} method on the
+ main thread. Calling this method triggers a network request that could block
your main thread. Instead, create a separate thread and call the {@code
- getSkuDetails} method from inside that thread.
+ getSkuDetails} method from inside of that thread.
- To see all the possible response codes from Google Play, see In-app
Billing Reference.
The query results are stored in a String ArrayList with key {@code
- DETAILS_LIST}. The purchase information is stored in the String in JSON
- format. To see the types of product detail information that are returned, see
+ DETAILS_LIST}. The purchase information is stored within the String in JSON
+ format. To view the types of product detail information that are returned, see
In-app
Billing Reference.
- In this example, you are retrieving the prices for your in-app items from the
- skuDetails {@link android.os.Bundle} returned from the previous code snippet.
+ In this example shows how to retrieve the prices for your in-app items from the
+ skuDetails {@link android.os.Bundle} that is returned from the previous code snippet:
@@ -357,15 +373,15 @@ if (response == 0) {
}
-Purchasing an Item
+Purchasing an item
To start a purchase request from your app, call the {@code getBuyIntent}
- method on the In-app Billing service. Pass in to the method the In-app
+ method on the In-app Billing service. Pass the In-app
Billing API version (“3”), the package name of your calling app, the product
ID for the item to purchase, the purchase type (“inapp” or "subs"), and a
- {@code developerPayload} String. The {@code developerPayload} String is used
+ {@code developerPayload} String into the method. The {@code developerPayload} String is used
to specify any additional arguments that you want Google Play to send back
- along with the purchase information.
+ along with the purchase information. Here is an example:
@@ -377,10 +393,13 @@ Bundle buyIntentBundle = mService.getBuyIntent(3, getPackageName(),
If the request is successful, the returned {@link android.os.Bundle} has a
response code of {@code BILLING_RESPONSE_RESULT_OK} (0) and a {@link
android.app.PendingIntent} that you can use to start the purchase flow. To
- see all the possible response codes from Google Play, see In-app
- Billing Reference. Next, extract a {@link android.app.PendingIntent} from
- the response {@link android.os.Bundle} with key {@code BUY_INTENT}.
+ Billing Reference.
+
+
+ The next step is to extract a {@link android.app.PendingIntent} from
+ the response {@link android.os.Bundle} with key {@code BUY_INTENT}, as shown here:
@@ -390,8 +409,8 @@ PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
To complete the purchase transaction, call the {@link
android.app.Activity#startIntentSenderForResult startIntentSenderForResult}
- method and use the {@link android.app.PendingIntent} that you created. In
- this example, you are using an arbitrary value of 1001 for the request code.
+ method and use the {@link android.app.PendingIntent} that you created. This
+ example uses an arbitrary value of 1001 for the request code:
@@ -404,9 +423,9 @@ startIntentSenderForResult(pendingIntent.getIntentSender(),
Google Play sends a response to your {@link android.app.PendingIntent} to the
{@link android.app.Activity#onActivityResult onActivityResult} method of your
application. The {@link android.app.Activity#onActivityResult
- onActivityResult} method will have a result code of {@code
- Activity.RESULT_OK} (1) or {@code Activity.RESULT_CANCELED} (0). To see the
- types of order information that is returned in the response {@link
+ onActivityResult} method has a result code of {@code
+ Activity.RESULT_OK} (1) or {@code Activity.RESULT_CANCELED} (0). To view the
+ types of order information that are returned in the response {@link
android.content.Intent}, see In-app
Billing Reference.
@@ -415,7 +434,7 @@ startIntentSenderForResult(pendingIntent.getIntentSender(),
The purchase data for the order is a String in JSON format that is mapped to
the {@code INAPP_PURCHASE_DATA} key in the response {@link
- android.content.Intent}, for example:
+ android.content.Intent}. Here is an example:
@@ -436,13 +455,13 @@ startIntentSenderForResult(pendingIntent.getIntentSender(),
long. Pass this entire token to other methods, such as when you consume the
purchase, as described in Consume
- a Purchase. Do not abbreviate or truncate this token; you must save and
+ a Purchase. Don't abbreviate or truncate this token; you must save and
return the entire token.
- Continuing from the previous example, you get the response code, purchase
- data, and signature from the response {@link android.content.Intent}.
+ Continuing from the previous example, you receive the response code, purchase
+ data, and signature from the response {@link android.content.Intent}:
@@ -472,23 +491,23 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) {
Security Recommendation: When you send a purchase request,
create a String token that uniquely identifies this purchase request and
- include this token in the {@code developerPayload}.You can use a randomly
- generated string as the token. When you receive the purchase response from
- Google Play, make sure to check the returned data signature, the {@code
+ include this token in the {@code developerPayload}. You can use a randomly-generated
+ string as the token. When you receive the purchase response from
+ Google Play, ensure that you check the returned data signature, the {@code
orderId}, and the {@code developerPayload} String. For added security, you
- should perform the checking on your own secure server. Make sure to verify
+ should perform the checking on your own secure server. Verify
that the {@code orderId} is a unique value that you have not previously
- processed, and the {@code developerPayload} String matches the token that you
+ processed and that the {@code developerPayload} String matches the token that you
sent previously with the purchase request.
-Querying for Purchased Items
+Querying for purchased items
- To retrieve information about purchases made by a user from your app, call
+ To retrieve information about purchases that are made by a user from your app, call
the {@code getPurchases} method on the In-app Billing Version 3 service. Pass
- in to the method the In-app Billing API version (“3”), the package name of
- your calling app, and the purchase type (“inapp” or "subs").
+ the In-app Billing API version (“3”), the package name of
+ your calling app, and the purchase type (“inapp” or "subs") into the method. Here is an example:
@@ -507,18 +526,18 @@ Bundle ownedItems = mService.getPurchases(3, getPackageName(), "inapp", null);
To improve performance, the In-app Billing service returns only up to 700
products that are owned by the user when {@code getPurchase} is first called.
If the user owns a large number of products, Google Play includes a String
- token mapped to the key {@code INAPP_CONTINUATION_TOKEN} in the response
+ token that is mapped to the key {@code INAPP_CONTINUATION_TOKEN} in the response
{@link android.os.Bundle} to indicate that more products can be retrieved.
- Your application can then make a subsequent {@code getPurchases} call, and
+ Your application can then make a subsequent {@code getPurchases} call and
pass in this token as an argument. Google Play continues to return a
continuation token in the response {@link android.os.Bundle} until all
- products that are owned by the user has been sent to your app.
+ of the products that are owned by the user are sent to your app.
-For more information about the data returned by {@code getPurchases}, see
+
For more information about the data that is returned by {@code getPurchases}, see
In-app Billing Reference. The following example shows how you can
- retrieve this data from the response.
+ retrieve this data from the response:
@@ -548,26 +567,26 @@ if (response == 0) {
-Consuming a Purchase
+Consuming a purchase
You can use the In-app Billing Version 3 API to track the ownership of
purchased in-app products in Google Play. Once an in-app product is
- purchased, it is considered to be "owned" and cannot be purchased from Google
+ purchased, it is considered to be owned and cannot be purchased from Google
Play. You must send a consumption request for the in-app product before
Google Play makes it available for purchase again.
-
+
Important: Managed in-app products are consumable, but
subscriptions are not.
- How you use the consumption mechanism in your app is up to you. Typically,
- you would implement consumption for in-app products with temporary benefits
+ The way that you use the consumption mechanism in your app is up to you. Typically,
+ you implement consumption for in-app products with temporary benefits
that users may want to purchase multiple times (for example, in-game currency
- or equipment). You would typically not want to implement consumption for
+ or equipment). You typically don't want to implement consumption for
in-app products that are purchased once and provide a permanent effect (for
example, a premium upgrade).
@@ -576,21 +595,21 @@ if (response == 0) {
To record a purchase consumption, send the {@code consumePurchase} method to
the In-app Billing service and pass in the {@code purchaseToken} String value
that identifies the purchase to be removed. The {@code purchaseToken} is part
- of the data returned in the {@code INAPP_PURCHASE_DATA} String by the Google
- Play service following a successful purchase request. In this example, you
- are recording the consumption of a product that is identified with the {@code
- purchaseToken} in the {@code token} variable.
+ of the data that is returned in the {@code INAPP_PURCHASE_DATA} String by the Google
+ Play service following a successful purchase request. This example
+ records the consumption of a product that is identified with the {@code
+ purchaseToken} in the {@code token} variable:
int response = mService.consumePurchase(3, getPackageName(), token);
-
- Warning: Do not call the {@code consumePurchase} method on
- the main thread. Calling this method triggers a network request which could
+
+ Warning: Don't call the {@code consumePurchase} method on
+ the main thread. Calling this method triggers a network request that could
block your main thread. Instead, create a separate thread and call the {@code
- consumePurchase} method from inside that thread.
+ consumePurchase} method from inside of that thread.
@@ -600,20 +619,20 @@ int response = mService.consumePurchase(3, getPackageName(), token);
purchased.
-
- Security Recommendation: You must send a consumption request
+
+ Security Recommendation: Send a consumption request
before provisioning the benefit of the consumable in-app purchase to the
- user. Make sure that you have received a successful consumption response from
+ user. Ensure that you receive a successful consumption response from
Google Play before you provision the item.
-Implementing Subscriptions
+Implementing subscriptions
Launching a purchase flow for a subscription is similar to launching the
purchase flow for a product, with the exception that the product type must be set
to "subs". The purchase result is delivered to your Activity's
{@link android.app.Activity#onActivityResult onActivityResult} method, exactly
-as in the case of in-app products.
+as in the case of in-app products. Here is an example:
Bundle bundle = mService.getBuyIntent(3, "com.example.myapp",
@@ -629,18 +648,18 @@ if (bundle.getInt(RESPONSE_CODE) == BILLING_RESPONSE_RESULT_OK) {
To query for active subscriptions, use the {@code getPurchases} method, again
-with the product type parameter set to "subs".
+with the product type parameter set to "subs":
Bundle activeSubs = mService.getPurchases(3, "com.example.myapp",
"subs", continueToken);
-The call returns a {@code Bundle} with all the active subscriptions owned by
-the user. Once a subscription expires without renewal, it will no longer appear
+
The call returns a {@code Bundle} with all of the active subscriptions that are owned by
+the user. When a subscription expires without renewal, it no longer appears
in the returned {@code Bundle}.
-Securing Your Application
+Securing your application
To help ensure the integrity of the transaction information that is sent to
your application, Google Play signs the JSON string that contains the response
@@ -648,21 +667,21 @@ data for a purchase order. Google Play uses the private key that is associated
with your application in the Developer Console to create this signature. The
Developer Console generates an RSA key pair for each application.
-
Note:To find the public key portion of this key
-pair, open your application's details in the Developer Console, then click on
-Services & APIs, and look at the field titled
+
Note: To find the public key portion of this key
+pair, open your application's details in the Developer Console, click
+Services & APIs, and review the field titled
Your License Key for This Application.
-The Base64-encoded RSA public key generated by Google Play is in binary
+
The Base64-encoded RSA public key that is generated by Google Play is in binary
encoded, X.509 subjectPublicKeyInfo DER SEQUENCE format. It is the same public
key that is used with Google Play licensing.
-When your application receives this signed response you can
+
When your application receives this signed response, you can
use the public key portion of your RSA key pair to verify the signature.
-By performing signature verification you can detect responses that have
+By performing signature verification, you can detect any responses that have
been tampered with or that have been spoofed. You can perform this signature
verification step in your application; however, if your application connects
-to a secure remote server then we recommend that you perform the signature
+to a secure remote server, Google recommends that you perform the signature
verification on that server.
For more information about best practices for security and design, see
In this document
- - The Basics
- - Creating a Bound Service
+
- The basics
+ - Creating a bound service
- Extending the Binder class
- Using a Messenger
- - Binding to a Service
+
- Binding to a service
- Additional notes
- - Managing the Lifecycle of a Bound Service
+ - Managing the lifecycle of a bound service
Key classes
@@ -32,9 +32,13 @@ parent.link=services.html
Samples
- - {@code
+
-
+ {@code
RemoteService}
- - {@code
+
-
+ {@code
LocalService}
@@ -45,19 +49,23 @@ parent.link=services.html
-A bound service is the server in a client-server interface. A bound service allows components
-(such as activities) to bind to the service, send requests, receive responses, and even perform
+
A bound service is the server in a client-server interface. It allows components
+(such as activities) to bind to the service, send requests, receive responses, and perform
interprocess communication (IPC). A bound service typically lives only while it serves another
application component and does not run in the background indefinitely.
-This document shows you how to create a bound service, including how to bind
-to the service from other application components. However, you should also refer to the Services document for additional
-information about services in general, such as how to deliver notifications from a service, set
-the service to run in the foreground, and more.
+Note: If your app targets Android 5.0 (API level 21) or later,
+it's recommended that you use the {@link android.app.job.JobScheduler} to execute background
+ services. For more information about {@link android.app.job.JobScheduler}, see its
+ {@link android.app.job.JobScheduler API-reference documentation}.
+This document describes how to create a bound service, including how to bind
+to the service from other application components. For additional information about services in
+ general, such as how to deliver notifications from a service and set the service to run
+ in the foreground, refer to the
+ Services document.
-The Basics
+The basics
A bound service is an implementation of the {@link android.app.Service} class that allows
other applications to bind to it and interact with it. To provide binding for a
@@ -67,57 +75,61 @@ clients can use to interact with the service.
-
Binding to a Started Service
+
Binding to a started service
As discussed in the Services
-document, you can create a service that is both started and bound. That is, the service can be
-started by calling {@link android.content.Context#startService startService()}, which allows the
-service to run indefinitely, and also allow a client to bind to the service by calling {@link
+document, you can create a service that is both started and bound. That is, you can start a
+ service by calling {@link android.content.Context#startService startService()}, which allows the
+service to run indefinitely, and you can also allow a client to bind to the service by
+ calling {@link
android.content.Context#bindService bindService()}.
If you do allow your service to be started and bound, then when the service has been
-started, the system does not destroy the service when all clients unbind. Instead, you must
-explicitly stop the service, by calling {@link android.app.Service#stopSelf stopSelf()} or {@link
+started, the system does not destroy the service when all clients unbind.
+ Instead, you must
+explicitly stop the service by calling {@link android.app.Service#stopSelf stopSelf()} or {@link
android.content.Context#stopService stopService()}.
-
Although you should usually implement either {@link android.app.Service#onBind onBind()}
-or {@link android.app.Service#onStartCommand onStartCommand()}, it's sometimes necessary to
+
Although you usually implement either {@link android.app.Service#onBind onBind()}
+or {@link android.app.Service#onStartCommand onStartCommand()}, it's sometimes
+ necessary to
implement both. For example, a music player might find it useful to allow its service to run
indefinitely and also provide binding. This way, an activity can start the service to play some
music and the music continues to play even if the user leaves the application. Then, when the user
-returns to the application, the activity can bind to the service to regain control of playback.
+returns to the application, the activity can bind to the service to regain control of
+ playback.
-
Be sure to read the section about Managing the Lifecycle of a Bound
-Service, for more information about the service lifecycle when adding binding to a
-started service.
+
For more information about the service lifecycle when adding binding to a started service,
+ see Managing the lifecycle of a bound Service.
-A client can bind to the service by calling {@link android.content.Context#bindService
+
A client can bind to a service by calling {@link android.content.Context#bindService
bindService()}. When it does, it must provide an implementation of {@link
android.content.ServiceConnection}, which monitors the connection with the service. The {@link
-android.content.Context#bindService bindService()} method returns immediately without a value, but
+android.content.Context#bindService bindService()} method returns immediately without a
+ value, but
when the Android system creates the connection between the
client and service, it calls {@link
android.content.ServiceConnection#onServiceConnected onServiceConnected()} on the {@link
android.content.ServiceConnection}, to deliver the {@link android.os.IBinder} that
the client can use to communicate with the service.
-Multiple clients can connect to the service at once. However, the system calls your service's
-{@link android.app.Service#onBind onBind()} method to retrieve the {@link android.os.IBinder} only
+
Multiple clients can connect to a service simultaneously. However, the system calls your service's
+{@link android.app.Service#onBind onBind()} method to retrieve the
+ {@link android.os.IBinder} only
when the first client binds. The system then delivers the same {@link android.os.IBinder} to any
-additional clients that bind, without calling {@link android.app.Service#onBind onBind()} again.
+additional clients that bind, without calling {@link android.app.Service#onBind onBind()}
+ again.
-When the last client unbinds from the service, the system destroys the service (unless the
-service was also started by {@link android.content.Context#startService startService()}).
+When the last client unbinds from the service, the system destroys the service, unless the
+service was also started by {@link android.content.Context#startService startService()}.
-When you implement your bound service, the most important part is defining the interface
-that your {@link android.app.Service#onBind onBind()} callback method returns. There are a few
-different ways you can define your service's {@link android.os.IBinder} interface and the following
-section discusses each technique.
+The most important part of your bound service implementation is defining the interface
+that your {@link android.app.Service#onBind onBind()} callback method returns. The following
+section discusses several different ways that you can define your service's
+ {@link android.os.IBinder} interface.
-
-
-Creating a Bound Service
+Creating a bound service
When creating a service that provides binding, you must provide an {@link android.os.IBinder}
that provides the programming interface that clients can use to interact with the service. There
@@ -125,12 +137,14 @@ are three ways you can define the interface:
- Extending the Binder class
- - If your service is private to your own application and runs in the same process as the client
-(which is common), you should create your interface by extending the {@link android.os.Binder} class
+
- If your service is private to your own application and runs in the same process
+ as the client
+(which is common), you should create your interface by extending the {@link android.os.Binder}
+ class
and returning an instance of it from
{@link android.app.Service#onBind onBind()}. The client receives the {@link android.os.Binder} and
can use it to directly access public methods available in either the {@link android.os.Binder}
-implementation or even the {@link android.app.Service}.
+implementation or the {@link android.app.Service}.
This is the preferred technique when your service is merely a background worker for your own
application. The only reason you would not create your interface this way is because
your service is used by other applications or across separate processes.
@@ -143,20 +157,20 @@ android.os.Message} objects. This {@link android.os.Handler}
is the basis for a {@link android.os.Messenger} that can then share an {@link android.os.IBinder}
with the client, allowing the client to send commands to the service using {@link
android.os.Message} objects. Additionally, the client can define a {@link android.os.Messenger} of
-its own so the service can send messages back.
+its own, so the service can send messages back.
This is the simplest way to perform interprocess communication (IPC), because the {@link
android.os.Messenger} queues all requests into a single thread so that you don't have to design
your service to be thread-safe.
- - Using AIDL
- - AIDL (Android Interface Definition Language) performs all the work to decompose objects into
-primitives that the operating system can understand and marshall them across processes to perform
+
- Using AIDL
+ - Android Interface Definition Language (AIDL) decomposes objects into
+primitives that the operating system can understand and marshals them across processes to perform
IPC. The previous technique, using a {@link android.os.Messenger}, is actually based on AIDL as
its underlying structure. As mentioned above, the {@link android.os.Messenger} creates a queue of
all the client requests in a single thread, so the service receives requests one at a time. If,
however, you want your service to handle multiple requests simultaneously, then you can use AIDL
-directly. In this case, your service must be capable of multi-threading and be built thread-safe.
+directly. In this case, your service must be thread-safe and capable of multi-threading.
To use AIDL directly, you must
create an {@code .aidl} file that defines the programming interface. The Android SDK tools use
this file to generate an abstract class that implements the interface and handles IPC, which you
@@ -164,19 +178,18 @@ can then extend within your service.
- Note: Most applications should not use AIDL to
+
Note: Most applications shouldn't use AIDL to
create a bound service, because it may require multithreading capabilities and
-can result in a more complicated implementation. As such, AIDL is not suitable for most applications
+can result in a more complicated implementation. As such, AIDL is not suitable for
+ most applications
and this document does not discuss how to use it for your service. If you're certain that you need
to use AIDL directly, see the AIDL
document.
-
-
-
Extending the Binder class
-If your service is used only by the local application and does not need to work across processes,
+
If your service is used only by the local application and does not need to
+ work across processes,
then you can implement your own {@link android.os.Binder} class that provides your client direct
access to public methods in the service.
@@ -187,13 +200,14 @@ background.
Here's how to set it up:
- - In your service, create an instance of {@link android.os.Binder} that either:
+
- In your service, create an instance of {@link android.os.Binder} that does
+ one of the following:
- - contains public methods that the client can call
- - returns the current {@link android.app.Service} instance, which has public methods the
-client can call
- - or, returns an instance of another class hosted by the service with public methods the
-client can call
+ - Contains public methods that the client can call.
+ - Returns the current {@link android.app.Service} instance, which has public methods the
+client can call.
+ - Returns an instance of another class hosted by the service with public methods the
+client can call.
- Return this instance of {@link android.os.Binder} from the {@link
android.app.Service#onBind onBind()} callback method.
@@ -202,12 +216,13 @@ android.content.ServiceConnection#onServiceConnected onServiceConnected()} callb
make calls to the bound service using the methods provided.
-Note: The reason the service and client must be in the same
-application is so the client can cast the returned object and properly call its APIs. The service
+
Note: The service and client must be in the same
+application so that the client can cast the returned object and properly call its APIs.
+ The service
and client must also be in the same process, because this technique does not perform any
-marshalling across processes.
+marshaling across processes.
-For example, here's a service that provides clients access to methods in the service through
+
For example, here's a service that provides clients with access to methods in the service through
a {@link android.os.Binder} implementation:
@@ -316,32 +331,30 @@ section provides more information about this process of binding to the service.<
Note: In the example above, the
{@link android.app.Activity#onStop onStop()} method unbinds the client from the service. Clients
should unbind from services at appropriate times, as discussed in
-Additional Notes.
+Additional notes.
For more sample code, see the {@code
+href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/app/LocalService.html">
+{@code
LocalService.java} class and the {@code
+href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/app/LocalServiceActivities.html">
+{@code
LocalServiceActivities.java} class in ApiDemos.
-
-
-
-
Using a Messenger
Compared to AIDL
When you need to perform IPC, using a {@link android.os.Messenger} for your interface is
-simpler than implementing it with AIDL, because {@link android.os.Messenger} queues
-all calls to the service, whereas, a pure AIDL interface sends simultaneous requests to the
+simpler than using AIDL, because {@link android.os.Messenger} queues
+all calls to the service. A pure AIDL interface sends simultaneous requests to the
service, which must then handle multi-threading.
For most applications, the service doesn't need to perform multi-threading, so using a {@link
android.os.Messenger} allows the service to handle one call at a time. If it's important
-that your service be multi-threaded, then you should use AIDL to define your interface.
@@ -352,10 +365,11 @@ you to perform interprocess communication (IPC) without the need to use AIDL.Here's a summary of how to use a {@link android.os.Messenger}:
-
+
- The service implements a {@link android.os.Handler} that receives a callback for each
call from a client.
- - The {@link android.os.Handler} is used to create a {@link android.os.Messenger} object
+
- The service uses the {@link android.os.Handler} to create a {@link android.os.Messenger}
+ object
(which is a reference to the {@link android.os.Handler}).
- The {@link android.os.Messenger} creates an {@link android.os.IBinder} that the service
returns to clients from {@link android.app.Service#onBind onBind()}.
@@ -365,11 +379,12 @@ returns to clients from {@link android.app.Service#onBind onBind()}.
- The service receives each {@link android.os.Message} in its {@link
android.os.Handler}—specifically, in the {@link android.os.Handler#handleMessage
handleMessage()} method.
-
+
-In this way, there are no "methods" for the client to call on the service. Instead, the
-client delivers "messages" ({@link android.os.Message} objects) that the service receives in
+
In this way, there are no methods for the client to call on the service. Instead, the
+client delivers messages ({@link android.os.Message} objects) that the service
+ receives in
its {@link android.os.Handler}.
Here's a simple example service that uses a {@link android.os.Messenger} interface:
@@ -488,41 +503,42 @@ public class ActivityMessenger extends Activity {
}
-Notice that this example does not show how the service can respond to the client. If you want the
-service to respond, then you need to also create a {@link android.os.Messenger} in the client. Then
-when the client receives the {@link android.content.ServiceConnection#onServiceConnected
+
Notice that this example does not show how the service can respond to the client.
+ If you want the
+service to respond, you need to also create a {@link android.os.Messenger} in the client.
+When the client receives the {@link android.content.ServiceConnection#onServiceConnected
onServiceConnected()} callback, it sends a {@link android.os.Message} to the service that includes
the client's {@link android.os.Messenger} in the {@link android.os.Message#replyTo} parameter
of the {@link android.os.Messenger#send send()} method.
You can see an example of how to provide two-way messaging in the {@code
+href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/app/MessengerService.html">
+{@code
MessengerService.java} (service) and {@code
+href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/app/MessengerServiceActivities.html">
+{@code
MessengerServiceActivities.java} (client) samples.
-
-
-
-
-Binding to a Service
+Binding to a service
Application components (clients) can bind to a service by calling
{@link android.content.Context#bindService bindService()}. The Android
system then calls the service's {@link android.app.Service#onBind
-onBind()} method, which returns an {@link android.os.IBinder} for interacting with the service.
+onBind()} method, which returns an {@link android.os.IBinder} for interacting with
+ the service.
-The binding is asynchronous. {@link android.content.Context#bindService
-bindService()} returns immediately and does not return the {@link android.os.IBinder} to
-the client. To receive the {@link android.os.IBinder}, the client must create an instance of {@link
+
The binding is asynchronous, and {@link android.content.Context#bindService
+bindService()} returns immediately without not returning the {@link android.os.IBinder} to
+the client. To receive the {@link android.os.IBinder}, the client must create an
+ instance of {@link
android.content.ServiceConnection} and pass it to {@link android.content.Context#bindService
bindService()}. The {@link android.content.ServiceConnection} includes a callback method that the
system calls to deliver the {@link android.os.IBinder}.
Note: Only activities, services, and content providers can bind
-to a service—you cannot bind to a service from a broadcast receiver.
+to a service—you can't bind to a service from a broadcast receiver.
-So, to bind to a service from your client, you must:
+To bind to a service from your client, follow these steps:
- Implement {@link android.content.ServiceConnection}.
Your implementation must override two callback methods:
@@ -533,7 +549,8 @@ the service's {@link android.app.Service#onBind onBind()} method.
- {@link android.content.ServiceConnection#onServiceDisconnected
onServiceDisconnected()}
- The Android system calls this when the connection to the service is unexpectedly
-lost, such as when the service has crashed or has been killed. This is not called when the
+lost, such as when the service has crashed or has been killed. This is not
+ called when the
client unbinds.
@@ -548,12 +565,12 @@ android.content.Context#unbindService unbindService()}.
If your client is still bound to a service when your app destroys the client, destruction
causes the client to unbind. It is better practice to unbind the client as soon as it is done
interacting with the service. Doing so allows the idle service to shut down. For more information
-about appropriate times to bind and unbind, see Additional Notes.
+about appropriate times to bind and unbind, see Additional notes.
-For example, the following snippet connects the client to the service created above by
+
The following example connects the client to the service created above by
extending the Binder class, so all it must do is cast the returned
{@link android.os.IBinder} to the {@code LocalService} class and request the {@code
LocalService} instance:
@@ -579,8 +596,9 @@ private ServiceConnection mConnection = new ServiceConnection() {
};
-With this {@link android.content.ServiceConnection}, the client can bind to a service by passing
-it to {@link android.content.Context#bindService bindService()}. For example:
+With this {@link android.content.ServiceConnection}, the client can bind to a service
+ by passing
+it to {@link android.content.Context#bindService bindService()}, as shown in the following example:
Intent intent = new Intent(this, LocalService.class);
@@ -589,11 +607,21 @@ bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
- The first parameter of {@link android.content.Context#bindService bindService()} is an
-{@link android.content.Intent} that explicitly names the service to bind (thought the intent
-could be implicit).
+{@link android.content.Intent} that explicitly names the service to bind.
+Caution: If you use an intent to bind to a
+ {@link android.app.Service}, ensure that your app is secure by using an explicit
+intent. Using an implicit intent to start a service is a
+security hazard because you can't be certain what service will respond to the intent,
+and the user can't see which service starts. Beginning with Android 5.0 (API level 21),
+ the system
+throws an exception if you call {@link android.content.Context#bindService bindService()}
+with an implicit intent.
+
+
- The second parameter is the {@link android.content.ServiceConnection} object.
- The third parameter is a flag indicating options for the binding. It should usually be {@link
-android.content.Context#BIND_AUTO_CREATE} in order to create the service if its not already alive.
+android.content.Context#BIND_AUTO_CREATE} in order to create the service if it's not already
+ alive.
Other possible values are {@link android.content.Context#BIND_DEBUG_UNBIND}
and {@link android.content.Context#BIND_NOT_FOREGROUND}, or {@code 0} for none.
@@ -606,10 +634,11 @@ and {@link android.content.Context#BIND_NOT_FOREGROUND}, or {@code 0} for none.<
You should always trap {@link android.os.DeadObjectException} exceptions, which are thrown
when the connection has broken. This is the only exception thrown by remote methods.
Objects are reference counted across processes.
- You should usually pair the binding and unbinding during
-matching bring-up and tear-down moments of the client's lifecycle. For example:
+ You usually pair the binding and unbinding during
+matching bring-up and tear-down moments of the client's lifecycle, as described in the
+ following examples:
- - If you only need to interact with the service while your activity is visible, you
+
- If you need to interact with the service only while your activity is visible, you
should bind during {@link android.app.Activity#onStart onStart()} and unbind during {@link
android.app.Activity#onStop onStop()}.
- If you want your activity to receive responses even while it is stopped in the
@@ -619,33 +648,34 @@ activity needs to use the service the entire time it's running (even in the back
the service is in another process, then you increase the weight of the process and it becomes
more likely that the system will kill it.
- Note: You should usually not bind and unbind
+
Note: You don't usually bind and unbind
during your activity's {@link android.app.Activity#onResume onResume()} and {@link
-android.app.Activity#onPause onPause()}, because these callbacks occur at every lifecycle transition
+android.app.Activity#onPause onPause()}, because these callbacks occur at every
+ lifecycle transition
and you should keep the processing that occurs at these transitions to a minimum. Also, if
-multiple activities in your application bind to the same service and there is a transition between
-two of those activities, the service may be destroyed and recreated as the current activity unbinds
-(during pause) before the next one binds (during resume). (This activity transition for how
+multiple activities in your application bind to the same service and there is a
+ transition between
+two of those activities, the service may be destroyed and recreated as the current
+ activity unbinds
+(during pause) before the next one binds (during resume). This activity transition for how
activities coordinate their lifecycles is described in the Activities
-document.)
+document.
For more sample code, showing how to bind to a service, see the {@code
+href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/app/RemoteService.html">
+{@code
RemoteService.java} class in ApiDemos.
-
-
-
-
-Managing the Lifecycle of a Bound Service
+Managing the lifecycle of a bound service
When a service is unbound from all clients, the Android system destroys it (unless it was also
started with {@link android.app.Service#onStartCommand onStartCommand()}). As such, you don't have
to manage the lifecycle of your service if it's purely a bound
-service—the Android system manages it for you based on whether it is bound to any clients.
+service—the Android system manages it for you based on whether it is bound to
+ any clients.
However, if you choose to implement the {@link android.app.Service#onStartCommand
onStartCommand()} callback method, then you must explicitly stop the service, because the
@@ -660,17 +690,11 @@ your {@link android.app.Service#onUnbind onUnbind()} method, you can optionally
onRebind()} the next time a client binds to the service. {@link android.app.Service#onRebind
onRebind()} returns void, but the client still receives the {@link android.os.IBinder} in its
{@link android.content.ServiceConnection#onServiceConnected onServiceConnected()} callback.
-Below, figure 1 illustrates the logic for this kind of lifecycle.
-
+The following figure illustrates the logic for this kind of lifecycle.
Figure 1. The lifecycle for a service that is started
and also allows binding.
-
For more information about the lifecycle of a started service, see the Services document.
-
-
-
-
diff --git a/docs/html/guide/components/fundamentals.jd b/docs/html/guide/components/fundamentals.jd
index ed3ba7dc22499..eaa82c8fe25e8 100644
--- a/docs/html/guide/components/fundamentals.jd
+++ b/docs/html/guide/components/fundamentals.jd
@@ -6,28 +6,29 @@ page.title=Application Fundamentals
In this document
-- App Components
+
- App components
- Activating components
-- The Manifest File
+
- The manifest file
- Declaring components
- Declaring app requirements
-- App Resources
+- App resources
Android apps are written in the Java programming language. The Android SDK tools compile
-your code—along with any data and resource files—into an APK: an Android package,
+your code along with any data and resource files into an APK, an Android package,
which is an archive file with an {@code .apk} suffix. One APK file contains all the contents
of an Android app and is the file that Android-powered devices use to install the app.
-Once installed on a device, each Android app lives in its own security sandbox:
+Each Android app lives in its own security sandbox, protected by
+ the following Android security features:
- The Android operating system is a multi-user Linux system in which each app is a
@@ -40,54 +41,61 @@ app so that only the user ID assigned to that app can access them.
- Each process has its own virtual machine (VM), so an app's code runs in isolation from
other apps.
-- By default, every app runs in its own Linux process. Android starts the process when any
-of the app's components need to be executed, then shuts down the process when it's no longer
+
- By default, every app runs in its own Linux process. The Android system starts
+ the process when any
+of the app's components need to be executed, and then shuts down the process
+ when it's no longer
needed or when the system must recover memory for other apps.
-In this way, the Android system implements the principle of least privilege. That is,
+
The Android system implements the principle of least privilege. That is,
each app, by default, has access only to the components that it requires to do its work and
no more. This creates a very secure environment in which an app cannot access parts of
-the system for which it is not given permission.
-
-However, there are ways for an app to share data with other apps and for an
+the system for which it is not given permission. However, there are ways for an app to share
+ data with other apps and for an
app to access system services:
- It's possible to arrange for two apps to share the same Linux user ID, in which case
they are able to access each other's files. To conserve system resources, apps with the
-same user ID can also arrange to run in the same Linux process and share the same VM (the
-apps must also be signed with the same certificate).
+same user ID can also arrange to run in the same Linux process and share the same VM. The
+apps must also be signed with the same certificate.
An app can request permission to access device data such as the user's
-contacts, SMS messages, the mountable storage (SD card), camera, Bluetooth, and more. The user has
+contacts, SMS messages, the mountable storage (SD card), camera, and Bluetooth. The user has
to explicitly grant these permissions. For more information, see
Working with System Permissions.
-That covers the basics regarding how an Android app exists within the system. The rest of
-this document introduces you to:
+The rest of this document introduces the following concepts:
- The core framework components that define your app.
- - The manifest file in which you declare components and required device features for your
+
- The manifest file in which you declare the components and the required device
+ features for your
app.
- - Resources that are separate from the app code and allow your app to
+
- Resources that are separate from the app code and that allow your app to
gracefully optimize its behavior for a variety of device configurations.
-App Components
+App components
App components are the essential building blocks of an Android app. Each
component is a different point through which the system can enter your app. Not all
-components are actual entry points for the user and some depend on each other, but each one exists
-as its own entity and plays a specific role—each one is a unique building block that
-helps define your app's overall behavior.
+components are actual entry points for the user and some depend on each other,
+ but each one exists
+as its own entity and plays a specific role.
-There are four different types of app components. Each type serves a distinct purpose
-and has a distinct lifecycle that defines how the component is created and destroyed.
-
-Here are the four types of app components:
+There are four different types of app components:
+
+- Activities.
+- Services.
+- Content providers.
+- Broadcast receivers.
+
+Each type serves a distinct purpose
+and has a distinct lifecycle that defines how the component is created and destroyed.
+ The following sections describe the four types of app components.
@@ -98,11 +106,12 @@ an email app might have one activity that shows a list of new
emails, another activity to compose an email, and another activity for reading emails. Although
the activities work together to form a cohesive user experience in the email app, each one
is independent of the others. As such, a different app can start any one of these
-activities (if the email app allows it). For example, a camera app can start the
-activity in the email app that composes new mail, in order for the user to share a picture.
+activities if the email app allows it. For example, a camera app can start the
+activity in the email app that composes new mail to allow the user to share a picture.
-An activity is implemented as a subclass of {@link android.app.Activity} and you can learn more
-about it in the Activities
+
An activity is implemented as a subclass of {@link android.app.Activity}. You can learn more
+about {@link android.app.Activity} in the
+ Activities
developer guide.
@@ -111,13 +120,16 @@ developer guide.
- A service is a component that runs in the background to perform long-running
operations or to perform work for remote processes. A service
-does not provide a user interface. For example, a service might play music in the background while
+does not provide a user interface. For example, a service might play music in the
+ background while
the user is in a different app, or it might fetch data over the network without
-blocking user interaction with an activity. Another component, such as an activity, can start the
+blocking user interaction with an activity. Another component, such as an activity,
+ can start the
service and let it run or bind to it in order to interact with it.
-
A service is implemented as a subclass of {@link android.app.Service} and you can learn more
-about it in the Services developer
+
A service is implemented as a subclass of {@link android.app.Service}. You can learn more
+about {@link android.app.Service} in the
+Services developer
guide.
@@ -125,12 +137,14 @@ guide.
- Content providers
- A content provider manages a shared set of app data. You can store the data in
-the file system, an SQLite database, on the web, or any other persistent storage location your
-app can access. Through the content provider, other apps can query or even modify
-the data (if the content provider allows it). For example, the Android system provides a content
+the file system, in a SQLite database, on the web, or on any other persistent storage
+ location that your
+app can access. Through the content provider, other apps can query or modify
+the data if the content provider allows it. For example, the Android system provides a content
provider that manages the user's contact information. As such, any app with the proper
-permissions can query part of the content provider (such as {@link
-android.provider.ContactsContract.Data}) to read and write information about a particular person.
+permissions can query part of the content provider, such as {@link
+android.provider.ContactsContract.Data}, to read and write information about
+ a particular person.
Content providers are also useful for reading and writing data that is private to your
app and not shared. For example, the
- Broadcast receivers
- A broadcast receiver is a component that responds to system-wide broadcast
-announcements. Many broadcasts originate from the system—for example, a broadcast announcing
+announcements. Many broadcasts originate from the system—for example,
+ a broadcast announcing
that the screen has turned off, the battery is low, or a picture was captured.
Apps can also initiate broadcasts—for example, to let other apps know that
-some data has been downloaded to the device and is available for them to use. Although broadcast
+some data has been downloaded to the device and is available for them to use.
+ Although broadcast
receivers don't display a user interface, they may create a status bar notification
to alert the user when a broadcast event occurs. More commonly, though, a broadcast receiver is
-just a "gateway" to other components and is intended to do a very minimal amount of work. For
-instance, it might initiate a service to perform some work based on the event.
+just a gateway to other components and is intended to do a very minimal amount of work.
+ For instance, it might initiate a service to perform some work based on the event.
A broadcast receiver is implemented as a subclass of {@link android.content.BroadcastReceiver}
and each broadcast is delivered as an {@link android.content.Intent} object. For more information,
@@ -170,52 +186,59 @@ see the {@link android.content.BroadcastReceiver} class.
A unique aspect of the Android system design is that any app can start another
app’s component. For example, if you want the user to capture a
photo with the device camera, there's probably another app that does that and your
-app can use it, instead of developing an activity to capture a photo yourself. You don't
+app can use it instead of developing an activity to capture a photo yourself. You don't
need to incorporate or even link to the code from the camera app.
Instead, you can simply start the activity in the camera app that captures a
photo. When complete, the photo is even returned to your app so you can use it. To the user,
it seems as if the camera is actually a part of your app.
-When the system starts a component, it starts the process for that app (if it's not
-already running) and instantiates the classes needed for the component. For example, if your
+
When the system starts a component, it starts the process for that app if it's not
+already running and instantiates the classes needed for the component. For example, if your
app starts the activity in the camera app that captures a photo, that activity
runs in the process that belongs to the camera app, not in your app's process.
Therefore, unlike apps on most other systems, Android apps don't have a single entry
-point (there's no {@code main()} function, for example).
+point (there's no {@code main()} function).
Because the system runs each app in a separate process with file permissions that
restrict access to other apps, your app cannot directly activate a component from
-another app. The Android system, however, can. So, to activate a component in
-another app, you must deliver a message to the system that specifies your intent to
+another app. However, the Android system can. To activate a component in
+another app, deliver a message to the system that specifies your intent to
start a particular component. The system then activates the component for you.
-Activating Components
+Activating components
Three of the four component types—activities, services, and
broadcast receivers—are activated by an asynchronous message called an intent.
-Intents bind individual components to each other at runtime (you can think of them
-as the messengers that request an action from other components), whether the component belongs
+Intents bind individual components to each other at runtime. You can think of them
+as the messengers that request an action from other components, whether the component belongs
to your app or another.
-An intent is created with an {@link android.content.Intent} object, which defines a message to
-activate either a specific component or a specific type of component—an intent
-can be either explicit or implicit, respectively.
+Note: If your app targets Android 5.0 (API level 21) or later,
+ use the {@link android.app.job.JobScheduler} to execute background
+ services. For more information about using this class, see the
+ {@link android.app.job.JobScheduler} reference documentation.
-For activities and services, an intent defines the action to perform (for example, to "view" or
-"send" something) and may specify the URI of the data to act on (among other things that the
-component being started might need to know). For example, an intent might convey a request for an
+
An intent is created with an {@link android.content.Intent} object, which defines a message to
+activate either a specific component (explicit intent) or a specific type of component
+ (implicit intent).
+
+For activities and services, an intent defines the action to perform (for example, to
+ view or
+send something) and may specify the URI of the data to act on, among other things that the
+component being started might need to know. For example, an intent might convey a request for an
activity to show an image or to open a web page. In some cases, you can start an
-activity to receive a result, in which case, the activity also returns
-the result in an {@link android.content.Intent} (for example, you can issue an intent to let
-the user pick a personal contact and have it returned to you—the return intent includes a
-URI pointing to the chosen contact).
+activity to receive a result, in which case the activity also returns
+the result in an {@link android.content.Intent}. For example, you can issue an intent to let
+the user pick a personal contact and have it returned to you. The return intent includes a
+URI pointing to the chosen contact.
For broadcast receivers, the intent simply defines the
-announcement being broadcast (for example, a broadcast to indicate the device battery is low
-includes only a known action string that indicates "battery is low").
+announcement being broadcast. For example, a broadcast to indicate the device battery is low
+includes only a known action string that indicates battery is low.
-The other component type, content provider, is not activated by intents. Rather, it is
+
Unlike activities, services, and broadcast receivers, content providers are not activated
+ by intents. Rather, they are
activated when targeted by a request from a {@link android.content.ContentResolver}. The content
resolver handles all direct transactions with the content provider so that the component that's
performing transactions with the provider doesn't need to and instead calls methods on the {@link
@@ -224,15 +247,19 @@ provider and the component requesting information (for security).
There are separate methods for activating each type of component:
- - You can start an activity (or give it something new to do) by
+
- You can start an activity or give it something new to do by
passing an {@link android.content.Intent} to {@link android.content.Context#startActivity
startActivity()} or {@link android.app.Activity#startActivityForResult startActivityForResult()}
(when you want the activity to return a result).
- - You can start a service (or give new instructions to an ongoing service) by
+
+
+
- With Android 5.0 (API level 21) and later, you can start a service with
+ {@link android.app.job.JobScheduler}. For earlier Android versions, you can start
+ a service (or give new instructions to an ongoing service) by
passing an {@link android.content.Intent} to {@link android.content.Context#startService
-startService()}. Or you can bind to the service by passing an {@link android.content.Intent} to
-{@link android.content.Context#bindService bindService()}.
- - You can initiate a broadcast by passing an {@link android.content.Intent} to methods like
+startService()}. You can bind to the service by passing an {@link android.content.Intent} to
+{@link android.content.Context#bindService bindService()}.
+ - You can initiate a broadcast by passing an {@link android.content.Intent} to methods such as
{@link android.content.Context#sendBroadcast(Intent) sendBroadcast()}, {@link
android.content.Context#sendOrderedBroadcast(Intent, String) sendOrderedBroadcast()}, or {@link
android.content.Context#sendStickyBroadcast sendStickyBroadcast()}.
@@ -242,35 +269,35 @@ android.content.ContentProvider#query query()} on a {@link android.content.Conte
For more information about using intents, see the Intents and
-Intent Filters document. More information about activating specific components is also provided
-in the following documents: Activities, Services, {@link
-android.content.BroadcastReceiver} and Content Providers.
+Intent Filters document.
+ The following documents provide more information about activating specifc components:
+ Activities,
+ Services
+ {@link android.content.BroadcastReceiver}, and
+ Content Providers.
-
-The Manifest File
+The manifest file
Before the Android system can start an app component, the system must know that the
-component exists by reading the app's {@code AndroidManifest.xml} file (the "manifest"
-file). Your app must declare all its components in this file, which must be at the root of
-the app project directory.
+component exists by reading the app's manifest file, {@code AndroidManifest.xml}.
+ Your app must declare all its components in this file, which must be at the root of the
+ app project directory.
The manifest does a number of things in addition to declaring the app's components,
-such as:
+such as the following:
- - Identify any user permissions the app requires, such as Internet access or
+
- Identifies any user permissions the app requires, such as Internet access or
read-access to the user's contacts.
- - Declare the minimum API Level
+
- Declares the minimum
+ API Level
required by the app, based on which APIs the app uses.
- - Declare hardware and software features used or required by the app, such as a camera,
+
- Declares hardware and software features used or required by the app, such as a camera,
bluetooth services, or a multitouch screen.
- - API libraries the app needs to be linked against (other than the Android framework
+
- Declares API libraries the app needs to be linked against (other than the Android framework
APIs), such as the Google Maps
-library.
- - And more
+href="http://code.google.com/android/add-ons/google-apis/maps-overview.html">
+Google Maps library.
+
@@ -301,47 +328,59 @@ the {@code android:name} attribute specifies the fully qualified class name of t
android.app.Activity} subclass and the {@code android:label} attribute specifies a string
to use as the user-visible label for the activity.
-You must declare all app components this way:
+You must declare all app components using the following elements:
<activity> elements
-for activities
+for activities.
<service> elements for
-services
+services.
<receiver> elements
-for broadcast receivers
+for broadcast receivers.
<provider> elements
-for content providers
+for content providers.
Activities, services, and content providers that you include in your source but do not declare
in the manifest are not visible to the system and, consequently, can never run. However,
broadcast
-receivers can be either declared in the manifest or created dynamically in code (as
-{@link android.content.BroadcastReceiver} objects) and registered with the system by calling
+receivers can be either declared in the manifest or created dynamically in code as
+{@link android.content.BroadcastReceiver} objects and registered with the system by calling
{@link android.content.Context#registerReceiver registerReceiver()}.
For more about how to structure the manifest file for your app, see The AndroidManifest.xml File
documentation.
-
-
Declaring component capabilities
-As discussed above, in Activating Components, you can use an
-{@link android.content.Intent} to start activities, services, and broadcast receivers. You can do so
-by explicitly naming the target component (using the component class name) in the intent. However,
-the real power of intents lies in the concept of implicit intents. An implicit intent
-simply describes the type of action to perform (and, optionally, the data upon which you’d like to
-perform the action) and allows the system to find a component on the device that can perform the
-action and start it. If there are multiple components that can perform the action described by the
-intent, then the user selects which one to use.
+As discussed above, in Activating components, you can use an
+{@link android.content.Intent} to start activities, services, and broadcast receivers.
-
The way the system identifies the components that can respond to an intent is by comparing the
+
+
+You can use an {@link android.content.Intent}
+ by explicitly naming the target component (using the component class name) in the intent.
+ You can also use an implicit intent, which
+describes the type of action to perform and, optionally, the data upon which you’d like to
+perform the action. The implicit intent allows the system to find a component on the device
+ that can perform the
+action and start it. If there are multiple components that can perform the action described by the
+intent, the user selects which one to use.
+
+Caution: If you use an intent to start a
+ {@link android.app.Service}, ensure that your app is secure by using an
+ explicit
+intent. Using an implicit intent to start a service is a
+security hazard because you cannot be certain what service will respond to the intent,
+and the user cannot see which service starts. Beginning with Android 5.0 (API level 21), the system
+throws an exception if you call {@link android.content.Context#bindService bindService()}
+with an implicit intent. Do not declare intent filters for your services.
+
+The system identifies the components that can respond to an intent by comparing the
intent received to the intent filters provided in the manifest file of other apps on
the device.
@@ -351,8 +390,9 @@ from other apps. You can declare an intent filter for your component by
adding an {@code
} element as a child of the component's declaration element.
-For example, if you've built an email app with an activity for composing a new email, you can
-declare an intent filter to respond to "send" intents (in order to send a new email) like this:
+For example, if you build an email app with an activity for composing a new email, you can
+declare an intent filter to respond to "send" intents (in order to send a new email),
+ as shown in the following example:
<manifest ... >
...
@@ -368,8 +408,9 @@ declare an intent filter to respond to "send" intents (in order to send a new em
</manifest>
-Then, if another app creates an intent with the {@link
-android.content.Intent#ACTION_SEND} action and passes it to {@link android.app.Activity#startActivity
+
If another app creates an intent with the {@link
+android.content.Intent#ACTION_SEND} action and passes it to
+ {@link android.app.Activity#startActivity
startActivity()}, the system may start your activity so the user can draft and send an
email.
@@ -382,7 +423,7 @@ href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filter
Declaring app requirements
There are a variety of devices powered by Android and not all of them provide the
-same features and capabilities. In order to prevent your app from being installed on devices
+same features and capabilities. To prevent your app from being installed on devices
that lack features needed by your app, it's important that you clearly define a profile for
the types of devices your app supports by declaring device and software requirements in your
manifest file. Most of these declarations are informational only and the system does not read
@@ -391,7 +432,7 @@ for users when they search for apps from their device.
For example, if your app requires a camera and uses APIs introduced in Android 2.1 (API Level 7),
-you should declare these as requirements in your manifest file like this:
+you must declare these as requirements in your manifest file as shown in the following example:
<manifest ... >
@@ -402,10 +443,10 @@ you should declare these as requirements in your manifest file like this:
</manifest>
-Now, devices that do not have a camera and have an
-Android version lower than 2.1 cannot install your app from Google Play.
-
-However, you can also declare that your app uses the camera, but does not
+
With the declarations shown in the example, devices that do not have a
+ camera and have an
+Android version lower than 2.1 cannot install your app from Google Play.
+ However, you can declare that your app uses the camera, but does not
require it. In that case, your app must set the {@code required}
attribute to {@code "false"} and check at runtime whether
@@ -417,15 +458,15 @@ document.
-App Resources
+App resources
An Android app is composed of more than just code—it requires resources that are
separate from the source code, such as images, audio files, and anything relating to the visual
-presentation of the app. For example, you should define animations, menus, styles, colors,
+presentation of the app. For example, you can define animations, menus, styles, colors,
and the layout of activity user interfaces with XML files. Using app resources makes it easy
-to update various characteristics of your app without modifying code and—by providing
-sets of alternative resources—enables you to optimize your app for a variety of
-device configurations (such as different languages and screen sizes).
+to update various characteristics of your app without modifying code. Providing
+sets of alternative resources enables you to optimize your app for a variety of
+device configurations, such as different languages and screen sizes.
For every resource that you include in your Android project, the SDK build tools define a unique
integer ID, which you can use to reference the resource from your app code or from
@@ -435,20 +476,22 @@ named {@code R.drawable.logo}, which you can use to reference the image and inse
user interface.
One of the most important aspects of providing resources separate from your source code
-is the ability for you to provide alternative resources for different device
-configurations. For example, by defining UI strings in XML, you can translate the strings into other
-languages and save those strings in separate files. Then, based on a language qualifier
+is the ability to provide alternative resources for different device
+configurations. For example, by defining UI strings in XML, you can translate
+ the strings into other
+languages and save those strings in separate files. Then Android applies the
+ appropriate language strings
+to your UI based on a language qualifier
that you append to the resource directory's name (such as {@code res/values-fr/} for French string
-values) and the user's language setting, the Android system applies the appropriate language strings
-to your UI.
+values) and the user's language setting.
Android supports many different qualifiers for your alternative resources. The
qualifier is a short string that you include in the name of your resource directories in order to
-define the device configuration for which those resources should be used. As another
-example, you should often create different layouts for your activities, depending on the
-device's screen orientation and size. For example, when the device screen is in portrait
+define the device configuration for which those resources should be used. For
+example, you should create different layouts for your activities, depending on the
+device's screen orientation and size. When the device screen is in portrait
orientation (tall), you might want a layout with buttons to be vertical, but when the screen is in
-landscape orientation (wide), the buttons should be aligned horizontally. To change the layout
+landscape orientation (wide), the buttons could be aligned horizontally. To change the layout
depending on the orientation, you can define two different layouts and apply the appropriate
qualifier to each layout's directory name. Then, the system automatically applies the appropriate
layout depending on the current device orientation.
@@ -465,15 +508,15 @@ create alternative resources for different device configurations, read
- Intents and Intent Filters
- - Information about how to use the {@link android.content.Intent} APIs to
+
- How to use the {@link android.content.Intent} APIs to
activate app components, such as activities and services, and how to make your app components
available for use by other apps.
- Activities
- - Information about how to create an instance of the {@link android.app.Activity} class,
+
- How to create an instance of the {@link android.app.Activity} class,
which provides a distinct screen in your application with a user interface.
- Providing Resources
- - Information about how Android apps are structured to separate app resources from the
+
- How Android apps are structured to separate app resources from the
app code, including how you can provide alternative resources for specific device
configurations.
@@ -484,14 +527,13 @@ href="{@docRoot}guide/topics/resources/providing-resources.html">Providing Resou
- Device Compatibility
- - Information about Android works on different types of devices and an introduction
+
- How Android works on different types of devices and an introduction
to how you can optimize your app for each device or restrict your app's availability
to different devices.
- System Permissions
- - Information about how Android restricts app access to certain APIs with a permission
+
- How Android restricts app access to certain APIs with a permission
system that requires the user's consent for your app to use those APIs.
-
diff --git a/docs/html/guide/components/intents-filters.jd b/docs/html/guide/components/intents-filters.jd
index d1d8c78fae3f3..8f41bc3d36756 100644
--- a/docs/html/guide/components/intents-filters.jd
+++ b/docs/html/guide/components/intents-filters.jd
@@ -7,21 +7,21 @@ page.tags="IntentFilter"
In this document
- - Intent Types
- - Building an Intent
+
- Intent types
+ - Building an intent
- Example explicit intent
- Example implicit intent
- Forcing an app chooser
- - Receiving an Implicit Intent
+
- Receiving an implicit intent
- Example filters
- - Using a Pending Intent
- - Intent Resolution
+
- Using a pending intent
+ - Intent resolution
- Action test
- Category test
@@ -46,13 +46,14 @@ page.tags="IntentFilter"
An {@link android.content.Intent} is a messaging object you can use to request an action
from another app component.
Although intents facilitate communication between components in several ways, there are three
-fundamental use-cases:
+fundamental use cases:
-- To start an activity:
+
- Starting an activity
An {@link android.app.Activity} represents a single screen in an app. You can start a new
instance of an {@link android.app.Activity} by passing an {@link android.content.Intent}
-to {@link android.content.Context#startActivity startActivity()}. The {@link android.content.Intent}
+to {@link android.content.Context#startActivity startActivity()}.
+ The {@link android.content.Intent}
describes the activity to start and carries any necessary data.
If you want to receive a result from the activity when it finishes,
@@ -63,10 +64,16 @@ android.app.Activity#onActivityResult onActivityResult()} callback.
For more information, see the Activities guide.
-- To start a service:
+
- Starting a service
A {@link android.app.Service} is a component that performs operations in the background
-without a user interface. You can start a service to perform a one-time operation
-(such as download a file) by passing an {@link android.content.Intent}
+without a user interface. With Android 5.0 (API level 21) and later, you can start a service
+ with {@link android.app.job.JobScheduler}. For more information
+ about {@link android.app.job.JobScheduler}, see its
+ {@link android.app.job.JobScheduler API-reference documentation}.
+For versions earlier than Android 5.0 (API level 21), you can start a service by using
+methods of the {@link android.app.Service} class. You can start a service
+ to perform a one-time operation
+(such as downloading a file) by passing an {@link android.content.Intent}
to {@link android.content.Context#startService startService()}. The {@link android.content.Intent}
describes the service to start and carries any necessary data.
@@ -75,7 +82,7 @@ from another component by passing an {@link android.content.Intent} to {@link
android.content.Context#bindService bindService()}. For more information, see the Services guide.
-- To deliver a broadcast:
+
- Delivering a broadcast
A broadcast is a message that any app can receive. The system delivers various
broadcasts for system events, such as when the system boots up or the device starts charging.
You can deliver a broadcast to other apps by passing an {@link android.content.Intent}
@@ -89,7 +96,7 @@ android.content.Context#sendStickyBroadcast sendStickyBroadcast()}.
-Intent Types
+Intent types
There are two types of intents:
@@ -97,7 +104,7 @@ android.content.Context#sendStickyBroadcast sendStickyBroadcast()}.
- Explicit intents specify the component to start by name (the
fully-qualified class name). You'll typically use an explicit intent to start a component in
your own app, because you know the class name of the activity or service you want to start. For
-example, start a new activity in response to a user action or start a service to download
+example, you can start a new activity in response to a user action or start a service to download
a file in the background.
- Implicit intents do not name a specific component, but instead declare a general action
@@ -106,12 +113,13 @@ show the user a location on a map, you can use an implicit intent to request tha
app show a specified location on a map.
-When you create an explicit intent to start an activity or service, the system immediately
+
Figure 1 shows how an intent is delivered to start an activity. When you create an
+ explicit intent to start an activity or service, the system immediately
starts the app component specified in the {@link android.content.Intent} object.

-
Figure 1. Illustration of how an implicit intent is
+
Figure 1. How an implicit intent is
delivered through the system to start another activity: [1] Activity A creates an
{@link android.content.Intent} with an action description and passes it to {@link
android.content.Context#startActivity startActivity()}. [2] The Android System searches all
@@ -135,11 +143,12 @@ you make it possible for other apps to directly start your activity with a certa
Likewise, if you do not declare any intent filters for an activity, then it can be started
only with an explicit intent.
-
Caution: To ensure your app is secure, always use an explicit
+
Caution: To ensure that your app is secure, always
+ use an explicit
intent when starting a {@link android.app.Service} and do not
declare intent filters for your services. Using an implicit intent to start a service is a
-security hazard because you cannot be certain what service will respond to the intent,
-and the user cannot see which service starts. Beginning with Android 5.0 (API level 21), the system
+security hazard because you can't be certain what service will respond to the intent,
+and the user can't see which service starts. Beginning with Android 5.0 (API level 21), the system
throws an exception if you call {@link android.content.Context#bindService bindService()}
with an implicit intent.
@@ -147,7 +156,7 @@ with an implicit intent.
-
Building an Intent
+
Building an intent
An {@link android.content.Intent} object carries information that the Android system uses
to determine which component to start (such as the exact component name or component
@@ -163,22 +172,23 @@ order to properly perform the action (such as the action to take and the data to
- The name of the component to start.
This is optional, but it's the critical piece of information that makes an intent
-explicit, meaning that the intent should be delivered only to the app component
-defined by the component name. Without a component name, the intent is implicit and the
+explicit, meaning that the intent should be delivered only to the app component
+defined by the component name. Without a component name, the intent is implicit and the
system decides which component should receive the intent based on the other intent information
-(such as the action, data, and category—described below). So if you need to start a specific
+(such as the action, data, and category—described below). If you need to start a specific
component in your app, you should specify the component name.
-Note: When starting a {@link android.app.Service}, you should
-always specify the component name. Otherwise, you cannot be certain what service
+
Note: When starting a {@link android.app.Service},
+ always specify the component name. Otherwise, you cannot be certain what service
will respond to the intent, and the user cannot see which service starts.
This field of the {@link android.content.Intent} is a
{@link android.content.ComponentName} object, which you can specify using a fully
-qualified class name of the target component, including the package name of the app. For example,
+qualified class name of the target component, including the package name of the app, for example,
{@code com.example.ExampleActivity}. You can set the component name with {@link
android.content.Intent#setComponent setComponent()}, {@link android.content.Intent#setClass
-setClass()}, {@link android.content.Intent#setClassName(String, String) setClassName()}, or with the
+setClass()}, {@link android.content.Intent#setClassName(String, String) setClassName()},
+ or with the
{@link android.content.Intent} constructor.
@@ -188,10 +198,10 @@ setClass()}, {@link android.content.Intent#setClassName(String, String) setClass
In the case of a broadcast intent, this is the action that took place and is being reported.
The action largely determines how the rest of the intent is structured—particularly
-what is contained in the data and extras.
+the information that is contained in the data and extras.
You can specify your own actions for use by intents within your app (or for use by other
-apps to invoke components in your app), but you should usually use action constants
+apps to invoke components in your app), but you usually specify action constants
defined by the {@link android.content.Intent} class or other framework classes. Here are some
common actions for starting an activity:
@@ -203,7 +213,7 @@ common actions for starting an activity:
view in a map app.
- {@link android.content.Intent#ACTION_SEND}
-
- Also known as the "share" intent, you should use this in an intent with {@link
+
- Also known as the share intent, you should use this in an intent with {@link
android.content.Context#startActivity startActivity()} when you have some data that the user can
share through another app, such as an email app or social sharing app.
@@ -217,12 +227,13 @@ that open specific screens in the system's Settings app.
setAction()} or with an {@link android.content.Intent} constructor.
If you define your own actions, be sure to include your app's package name
-as a prefix. For example:
+as a prefix, as shown in the following example:
static final String ACTION_TIMETRAVEL = "com.example.action.TIMETRAVEL";
- Data
-
- The URI (a {@link android.net.Uri} object) that references the data to be acted on and/or the
+
- The URI (a {@link android.net.Uri} object) that references the data to
+ be acted on and/or the
MIME type of that data. The type of data supplied is generally dictated by the intent's action. For
example, if the action is {@link android.content.Intent#ACTION_EDIT}, the data should contain the
URI of the document to edit.
@@ -231,10 +242,11 @@ URI of the document to edit.
it's often important to specify the type of data (its MIME type) in addition to its URI.
For example, an activity that's able to display images probably won't be able
to play an audio file, even though the URI formats could be similar.
-So specifying the MIME type of your data helps the Android
+Specifying the MIME type of your data helps the Android
system find the best component to receive your intent.
However, the MIME type can sometimes be inferred from the URI—particularly when the data is a
-{@code content:} URI, which indicates the data is located on the device and controlled by a
+{@code content:} URI. A {@code content:} URI indicates the data is located on the device
+ and controlled by a
{@link android.content.ContentProvider}, which makes the data MIME type visible to the system.
To set only the data URI, call {@link android.content.Intent#setData setData()}.
@@ -243,7 +255,7 @@ can set both explicitly with {@link
android.content.Intent#setDataAndType setDataAndType()}.
Caution: If you want to set both the URI and MIME type,
-do not call {@link android.content.Intent#setData setData()} and
+don't call {@link android.content.Intent#setData setData()} and
{@link android.content.Intent#setType setType()} because they each nullify the value of the other.
Always use {@link android.content.Intent#setDataAndType setDataAndType()} to set both
URI and MIME type.
@@ -258,7 +270,7 @@ Here are some common categories:
- {@link android.content.Intent#CATEGORY_BROWSABLE}
- The target activity allows itself to be started by a web browser to display data
- referenced by a link—such as an image or an e-mail message.
+ referenced by a link, such as an image or an e-mail message.
- {@link android.content.Intent#CATEGORY_LAUNCHER}
- The activity is the initial activity of a task and is listed in
@@ -276,14 +288,14 @@ categories.
These properties listed above (component name, action, data, and category) represent the
defining characteristics of an intent. By reading these properties, the Android system
-is able to resolve which app component it should start.
-
-However, an intent can carry additional information that does not affect
-how it is resolved to an app component. An intent can also supply:
+is able to resolve which app component it should start. However, an intent can carry
+ additional information that does not affect
+how it is resolved to an app component. An intent can also supply the following information:
- Extras
-- Key-value pairs that carry additional information required to accomplish the requested action.
+
- Key-value pairs that carry additional information required to accomplish
+ the requested action.
Just as some actions use particular kinds of data URIs, some actions also use particular extras.
You can add extra data with various {@link android.content.Intent#putExtra putExtra()} methods,
@@ -293,21 +305,22 @@ the {@link android.os.Bundle} in the {@link android.content.Intent} with {@link
android.content.Intent#putExtras putExtras()}.
For example, when creating an intent to send an email with
-{@link android.content.Intent#ACTION_SEND}, you can specify the "to" recipient with the
-{@link android.content.Intent#EXTRA_EMAIL} key, and specify the "subject" with the
+{@link android.content.Intent#ACTION_SEND}, you can specify the to recipient with the
+{@link android.content.Intent#EXTRA_EMAIL} key, and specify the subject with the
{@link android.content.Intent#EXTRA_SUBJECT} key.
The {@link android.content.Intent} class specifies many {@code EXTRA_*} constants
for standardized data types. If you need to declare your own extra keys (for intents that
your app receives), be sure to include your app's package name
-as a prefix. For example:
+as a prefix, as shown in the following example:
static final String EXTRA_GIGAWATTS = "com.example.EXTRA_GIGAWATTS";
- Flags
-- Flags defined in the {@link android.content.Intent} class that function as metadata for the
+
- Flags are defined in the {@link android.content.Intent} class that function as metadata for the
intent. The flags may instruct the Android system how to launch an activity (for example, which
-task the activity should belong
+task
+ the activity should belong
to) and how to treat it after it's launched (for example, whether it belongs in the list of recent
activities).
@@ -354,7 +367,8 @@ this intent explicitly starts the {@code DownloadService} class in the app.
to perform the action. Using an implicit intent is useful when your app cannot perform the
action, but other apps probably can and you'd like the user to pick which app to use.
-
For example, if you have content you want the user to share with other people, create an intent
+
For example, if you have content that you want the user to share with other people,
+ create an intent
with the {@link android.content.Intent#ACTION_SEND} action
and add extras that specify the content to share. When you call
{@link android.content.Context#startActivity startActivity()} with that intent, the user can
@@ -362,13 +376,15 @@ pick an app through which to share the content.
Caution: It's possible that a user won't have any
apps that handle the implicit intent you send to {@link android.content.Context#startActivity
-startActivity()}. If that happens, the call will fail and your app will crash. To verify
+startActivity()}. If that happens, the call fails and your app crashes. To verify
that an activity will receive the intent, call {@link android.content.Intent#resolveActivity
resolveActivity()} on your {@link android.content.Intent} object. If the result is non-null,
-then there is at least one app that can handle the intent and it's safe to call
+ there is at least one app that can handle the intent and it's safe to call
{@link android.content.Context#startActivity startActivity()}. If the result is null,
-you should not use the intent and, if possible, you should disable the feature that issues
-the intent.
+ do not use the intent and, if possible, you should disable the feature that issues
+the intent. The following example shows how to verify that the intent resolves
+to an activity. This example doesn't use a URI, but the intent's data type
+is declared to specify the content carried by the extras.
@@ -384,8 +400,7 @@ if (sendIntent.resolveActivity(getPackageManager()) != null) {
}
-Note: In this case, a URI is not used, but the intent's data type
-is declared to specify the content carried by the extras.
+
When {@link android.content.Context#startActivity startActivity()} is called, the system
@@ -393,7 +408,7 @@ examines all of the installed apps to determine which ones can handle this kind
intent with the {@link android.content.Intent#ACTION_SEND} action and that carries "text/plain"
data). If there's only one app that can handle it, that app opens immediately and is given the
intent. If multiple activities accept the intent, the system
-displays a dialog so the user can pick which app to use..
+displays a dialog such as the one shown in Figure 2, so the user can pick which app to use.
@@ -405,23 +420,26 @@ displays a dialog so the user can pick which app to use..
When there is more than one app that responds to your implicit intent,
the user can select which app to use and make that app the default choice for the
-action. This is nice when performing an action for which the user
-probably wants to use the same app from now on, such as when opening a web page (users
-often prefer just one web browser) .
+action. The ability to select a default is helpful when performing an action for which the user
+probably wants to use the same app every time, such as when opening a web page (users
+often prefer just one web browser).
However, if multiple apps can respond to the intent and the user might want to use a different
app each time, you should explicitly show a chooser dialog. The chooser dialog asks the
-user to select which app to use for the action every time (the user cannot select a default app for
+user to select which app to use for the action (the user cannot select a default app for
the action). For example, when your app performs "share" with the {@link
android.content.Intent#ACTION_SEND} action, users may want to share using a different app depending
-on their current situation, so you should always use the chooser dialog, as shown in figure 2.
+on their current situation, so you should always use the chooser dialog, as shown in Figure 2.
To show the chooser, create an {@link android.content.Intent} using {@link
android.content.Intent#createChooser createChooser()} and pass it to {@link
-android.app.Activity#startActivity startActivity()}. For example:
+android.app.Activity#startActivity startActivity()}, as shown in the following example.
+ This example displays a dialog with a list of apps that respond to the intent passed to the {@link
+android.content.Intent#createChooser createChooser()} method and uses the supplied text as the
+dialog title.
Intent sendIntent = new Intent(Intent.ACTION_SEND);
@@ -439,26 +457,16 @@ if (sendIntent.resolveActivity(getPackageManager()) != null) {
}
-
This displays a dialog with a list of apps that respond to the intent passed to the {@link
-android.content.Intent#createChooser createChooser()} method and uses the supplied text as the
-dialog title.
-
-
-
-
-
-
-
-
Receiving an Implicit Intent
+
Receiving an implicit intent
To advertise which implicit intents your app can receive, declare one or more intent filters for
each of your app components with an {@code }
+"{@docRoot}guide/topics/manifest/intent-filter-element.html">{@code <intent-filter>}
element in your manifest file.
Each intent filter specifies the type of intents it accepts based on the intent's action,
-data, and category. The system will deliver an implicit intent to your app component only if the
+data, and category. The system delivers an implicit intent to your app component only if the
intent can pass through one of your intent filters.
Note: An explicit intent is always delivered to its target,
@@ -471,28 +479,28 @@ it inspects the {@link android.content.Intent} and decides how to behave based o
in the {@link android.content.Intent} (such as to show the editor controls or not).
Each intent filter is defined by an {@code }
+href="{@docRoot}guide/topics/manifest/intent-filter-element.html">{@code <intent-filter>}
element in the app's manifest file, nested in the corresponding app component (such
-as an {@code }
+as an {@code <activity>}
element). Inside the {@code },
+href="{@docRoot}guide/topics/manifest/intent-filter-element.html">{@code <intent-filter>},
you can specify the type of intents to accept using one or more
of these three elements:
-- {@code }
+- {@code <action>}
- Declares the intent action accepted, in the {@code name} attribute. The value
must be the literal string value of an action, not the class constant.
-- {@code }
+- {@code <data>}
- Declares the type of data accepted, using one or more attributes that specify various
aspects of the data URI (
scheme, host, port,
- path, etc.) and MIME type.
-- {@code }
+ path) and MIME type.
+- {@code <category>}
- Declares the intent category accepted, in the {@code name} attribute. The value
must be the literal string value of an action, not the class constant.
-
Note: In order to receive implicit intents, you
- must include the
+
Note: To receive implicit intents, you
+ must include the
{@link android.content.Intent#CATEGORY_DEFAULT} category in the intent filter. The methods
{@link android.app.Activity#startActivity startActivity()} and
{@link android.app.Activity#startActivityForResult startActivityForResult()} treat all intents
@@ -515,12 +523,12 @@ of these three elements:
</activity>
-It's okay to create a filter that includes more than one instance of
-{@code },
-{@code }, or
-{@code }.
-If you do, you simply need to be certain that the component can handle any and all combinations
-of those filter elements.
+You can create a filter that includes more than one instance of
+{@code <action>},
+{@code <data>}, or
+{@code <category>}.
+If you do, you need to be certain that the component can handle any and all
+combinations of those filter elements.
When you want to handle multiple kinds of intents, but only in specific combinations of
action, data, and category type, then you need to create multiple intent filters.
@@ -569,8 +577,8 @@ is running.
Example filters
-To better understand some of the intent filter behaviors, look at the following snippet
-from the manifest file of a social-sharing app.
+To demonstrate some of the intent filter behaviors, here is an example
+from the manifest file of a social-sharing app:
<activity android:name="MainActivity">
@@ -607,9 +615,9 @@ opens when the user initially launches the app with the launcher icon:
indicates this is the main entry point and does not expect any intent data.
- The {@link android.content.Intent#CATEGORY_LAUNCHER} category indicates that this activity's
icon should be placed in the system's app launcher. If the {@code } element
+ href="{@docRoot}guide/topics/manifest/activity-element.html">{@code <activity>} element
does not specify an icon with {@code icon}, then the system uses the icon from the {@code }
+ href="{@docRoot}guide/topics/manifest/application-element.html">{@code <application>}
element.
These two must be paired together in order for the activity to appear in the app launcher.
@@ -620,7 +628,7 @@ they can also enter {@code ShareActivity} directly from another app that issues
intent matching one of the two intent filters.
Note: The MIME type,
-{@code
+{@code
application/vnd.google.panorama360+jpg}, is a special data type that specifies
panoramic photos, which you can handle with the Google
@@ -638,7 +646,7 @@ panorama APIs.
-Using a Pending Intent
+Using a pending intent
A {@link android.app.PendingIntent} object is a wrapper around an {@link
android.content.Intent} object. The primary purpose of a {@link android.app.PendingIntent}
@@ -646,25 +654,25 @@ is to grant permission to a foreign application
to use the contained {@link android.content.Intent} as if it were executed from your
app's own process.
-Major use cases for a pending intent include:
+Major use cases for a pending intent include the following:
- - Declare an intent to be executed when the user performs an action with your Declaring an intent to be executed when the user performs an action with your Notification
(the Android system's {@link android.app.NotificationManager}
executes the {@link android.content.Intent}).
-
- Declare an intent to be executed when the user performs an action with your
+
- Declaring an intent to be executed when the user performs an action with your
App Widget
(the Home screen app executes the {@link android.content.Intent}).
-
- Declare an intent to be executed at a specified time in the future (the Android
+
- Declaring an intent to be executed at a specified future time (the Android
system's {@link android.app.AlarmManager} executes the {@link android.content.Intent}).
-Because each {@link android.content.Intent} object is designed to be handled by a specific
+
Just as each {@link android.content.Intent} object is designed to be handled by a specific
type of app component (either an {@link android.app.Activity}, a {@link android.app.Service}, or
a {@link android.content.BroadcastReceiver}), so too must a {@link android.app.PendingIntent} be
-created with the same consideration. When using a pending intent, your app will not
+created with the same consideration. When using a pending intent, your app doesn't
execute the intent with a call such as {@link android.content.Context#startActivity
-startActivity()}. You must instead declare the intended component type when you create the
+startActivity()}. Instead, you must declare the intended component type when you create the
{@link android.app.PendingIntent} by calling the respective creator method:
@@ -677,14 +685,14 @@ startActivity()}. You must instead declare the intended component type when you
Unless your app is receiving pending intents from other apps,
-the above methods to create a {@link android.app.PendingIntent} are the only
-{@link android.app.PendingIntent} methods you'll probably ever need.
+the above methods to create a {@link android.app.PendingIntent} are probably the only
+{@link android.app.PendingIntent} methods you'll ever need.
Each method takes the current app {@link android.content.Context}, the
{@link android.content.Intent} you want to wrap, and one or more flags that specify
how the intent should be used (such as whether the intent can be used more than once).
-More information about using pending intents is provided with the documentation for each
+
For more information about using pending intents, see the documentation for each
of the respective use cases, such as in the Notifications
and App Widgets API guides.
@@ -695,27 +703,27 @@ and App Widgets API g
-Intent Resolution
+Intent resolution
When the system receives an implicit intent to start an activity, it searches for the
-best activity for the intent by comparing the intent to intent filters based on three aspects:
+best activity for the intent by comparing the it to intent filters based on three aspects:
- - The intent action
-
- The intent data (both URI and data type)
-
- The intent category
+
- Action.
+
- Data (both URI and data type).
+
- Category.
-The following sections describe how intents are matched to the appropriate component(s)
-in terms of how the intent filter is declared in an app's manifest file.
+The following sections describe how intents are matched to the appropriate components
+according to the intent filter declaration in an app's manifest file.
Action test
To specify accepted intent actions, an intent filter can declare zero or more
{@code
-} elements. For example:
+<action>} elements, as shown in the following example:
<intent-filter>
@@ -725,13 +733,13 @@ in terms of how the intent filter is declared in an app's manifest file.
</intent-filter>
-To get through this filter, the action specified in the {@link android.content.Intent}
+
To pass this filter, the action specified in the {@link android.content.Intent}
must match one of the actions listed in the filter.
If the filter does not list any actions, there is nothing for an
intent to match, so all intents fail the test. However, if an {@link android.content.Intent}
-does not specify an action, it will pass the test (as long as the filter
-contains at least one action).
+does not specify an action, it passes the test as long as the filter
+contains at least one action.
@@ -739,7 +747,7 @@ contains at least one action).
To specify accepted intent categories, an intent filter can declare zero or more
{@code
-} elements. For example:
+} elements, as shown in the following example:
<intent-filter>
@@ -752,17 +760,17 @@ contains at least one action).
For an intent to pass the category test, every category in the {@link android.content.Intent}
must match a category in the filter. The reverse is not necessary—the intent filter may
declare more categories than are specified in the {@link android.content.Intent} and the
-{@link android.content.Intent} will still pass. Therefore, an intent with no categories should
-always pass this test, regardless of what categories are declared in the filter.
+{@link android.content.Intent} still passes. Therefore, an intent with no categories
+always passes this test, regardless of what categories are declared in the filter.
Note:
-Android automatically applies the the {@link android.content.Intent#CATEGORY_DEFAULT} category
+Android automatically applies the {@link android.content.Intent#CATEGORY_DEFAULT} category
to all implicit intents passed to {@link
android.content.Context#startActivity startActivity()} and {@link
android.app.Activity#startActivityForResult startActivityForResult()}.
-So if you want your activity to receive implicit intents, it must
-include a category for {@code "android.intent.category.DEFAULT"} in its intent filters (as
-shown in the previous {@code } example.
+If you want your activity to receive implicit intents, it must
+include a category for {@code "android.intent.category.DEFAULT"} in its intent filters, as
+shown in the previous {@code <intent-filter>} example.
@@ -770,7 +778,7 @@ shown in the previous {@code } example.
To specify accepted intent data, an intent filter can declare zero or more
{@code
-} elements. For example:
+<data>} elements, as shown in the following example:
<intent-filter>
@@ -781,15 +789,16 @@ shown in the previous {@code } example.
Each <data>
-element can specify a URI structure and a data type (MIME media type). There are separate
-attributes — {@code scheme}, {@code host}, {@code port},
-and {@code path} — for each part of the URI:
+element can specify a URI structure and a data type (MIME media type).
+ Each part of the URI is a separate
+attribute: {@code scheme}, {@code host}, {@code port},
+and {@code path}:
-{@code ://:/}
+{@code <scheme>://<host>:<port>/<path>}
-For example:
+The following example shows possible values for these attributes:
{@code content://com.example.project:200/folder/subfolder/etc}
@@ -799,7 +808,7 @@ the port is {@code 200}, and the path is {@code folder/subfolder/etc}.
Each of these attributes is optional in a {@code } element,
+href="{@docRoot}guide/topics/manifest/data-element.html">{@code <data>} element,
but there are linear dependencies:
- If a scheme is not specified, the host is ignored.
@@ -842,17 +851,17 @@ type matches a type listed in the filter. It passes the URI part of the test
either if its URI matches a URI in the filter or if it has a {@code content:}
or {@code file:} URI and the filter does not specify a URI. In other words,
a component is presumed to support {@code content:} and {@code file:} data if
-its filter lists only a MIME type.
+its filter lists only a MIME type.
This last rule, rule (d), reflects the expectation
that components are able to get local data from a file or content provider.
-Therefore, their filters can list just a data type and do not need to explicitly
+Therefore, their filters can list just a data type and don't need to explicitly
name the {@code content:} and {@code file:} schemes.
-This is a typical case. A {@code } element
-like the following, for example, tells Android that the component can get image data from a content
+The following example shows a typical case in which a {@code <data>} element
+ tells Android that the component can get image data from a content
provider and display it:
@@ -863,14 +872,15 @@ provider and display it:
</intent-filter>
-Because most available data is dispensed by content providers, filters that
-specify a data type but not a URI are perhaps the most common.
+Filters that
+specify a data type but not a URI are perhaps the most common because most available
+ data is dispensed by content providers.
-Another common configuration is filters with a scheme and a data type. For
+Another common configuration is a filter with a scheme and a data type. For
example, a {@code }
+href="{@docRoot}guide/topics/manifest/data-element.html">{@code <data>}
element like the following tells Android that
the component can retrieve video data from the network in order to perform the action:
@@ -894,7 +904,7 @@ by finding all the activities with intent filters that specify the
Your application can use intent matching in a similar way.
The {@link android.content.pm.PackageManager} has a set of {@code query...()}
-methods that return all components that can accept a particular intent, and
+methods that return all components that can accept a particular intent and
a similar series of {@code resolve...()} methods that determine the best
component to respond to an intent. For example,
{@link android.content.pm.PackageManager#queryIntentActivities
@@ -907,7 +917,3 @@ can respond. There's a similar method,
{@link android.content.pm.PackageManager#queryBroadcastReceivers
queryBroadcastReceivers()}, for broadcast receivers.
-
-
-
-
diff --git a/docs/html/guide/components/services.jd b/docs/html/guide/components/services.jd
index e646a17a18a72..a7ed7186e1fbc 100644
--- a/docs/html/guide/components/services.jd
+++ b/docs/html/guide/components/services.jd
@@ -5,11 +5,11 @@ page.title=Services
In this document
-- The Basics
+- The basics
- Declaring a service in the manifest
-- Creating a Started Service
+
- Creating a started service
- Extending the IntentService class
- Extending the Service class
@@ -17,10 +17,10 @@ page.title=Services
- Stopping a service
-- Creating a Bound Service
-- Sending Notifications to the User
-- Running a Service in the Foreground
-- Managing the Lifecycle of a Service
+
- Creating a bound service
+- Sending notifications to the user
+- Running a service in the foreground
+- Managing the lifecycle of a service
- Implementing the lifecycle callbacks
@@ -48,70 +48,80 @@ page.title=Services
-
A {@link android.app.Service} is an application component that can perform
-long-running operations in the background and does not provide a user interface. Another
-application component can start a service and it will continue to run in the background even if the
+long-running operations in the background, and it does not provide a user interface. Another
+application component can start a service, and it continues to run in the background even if the
user switches to another application. Additionally, a component can bind to a service to
-interact with it and even perform interprocess communication (IPC). For example, a service might
+interact with it and even perform interprocess communication (IPC). For example, a service can
handle network transactions, play music, perform file I/O, or interact with a content provider, all
from the background.
-A service can essentially take two forms:
+These are the three different types of services:
+ - Scheduled
+ - A service is scheduled when an API such as the {@link android.app.job.JobScheduler},
+ introduced in Android 5.0 (API level 21), launches the service. You can use the
+ {@link android.app.job.JobScheduler} by registering jobs and specifying their requirements for
+ network and timing. The system then gracefully schedules the jobs for execution at the
+ appropriate times. The {@link android.app.job.JobScheduler} provides many methods to define
+ service-execution conditions.
+
Note: If your app targets Android 5.0 (API level 21), Google
+ recommends that you use the {@link android.app.job.JobScheduler} to execute background
+ services. For more information about using this class, see the
+ {@link android.app.job.JobScheduler} reference documentation.
- Started
- - A service is "started" when an application component (such as an activity) starts it by
-calling {@link android.content.Context#startService startService()}. Once started, a service
-can run in the background indefinitely, even if the component that started it is destroyed. Usually,
-a started service performs a single operation and does not return a result to the caller.
-For example, it might download or upload a file over the network. When the operation is done, the
-service should stop itself.
+ - A service is started when an application component (such as an activity)
+ calls {@link android.content.Context#startService startService()}. After it's started, a
+ service can run in the background indefinitely, even if the component that started it is
+ destroyed. Usually, a started service performs a single operation and does not return a result to
+ the caller. For example, it can download or upload a file over the network. When the operation is
+ complete, the service should stop itself.
- Bound
- - A service is "bound" when an application component binds to it by calling {@link
-android.content.Context#bindService bindService()}. A bound service offers a client-server
-interface that allows components to interact with the service, send requests, get results, and even
-do so across processes with interprocess communication (IPC). A bound service runs only as long as
-another application component is bound to it. Multiple components can bind to the service at once,
-but when all of them unbind, the service is destroyed.
+ - A service is bound when an application component binds to it by calling {@link
+ android.content.Context#bindService bindService()}. A bound service offers a client-server
+ interface that allows components to interact with the service, send requests, receive results,
+ and even do so across processes with interprocess communication (IPC). A bound service runs only
+ as long as another application component is bound to it. Multiple components can bind to the
+ service at once, but when all of them unbind, the service is destroyed.
-Although this documentation generally discusses these two types of services separately, your
-service can work both ways—it can be started (to run indefinitely) and also allow binding.
-It's simply a matter of whether you implement a couple callback methods: {@link
+
Although this documentation generally discusses started and bound services separately,
+your service can work both ways—it can be started (to run indefinitely) and also allow
+binding. It's simply a matter of whether you implement a couple of callback methods: {@link
android.app.Service#onStartCommand onStartCommand()} to allow components to start it and {@link
android.app.Service#onBind onBind()} to allow binding.
Regardless of whether your application is started, bound, or both, any application component
-can use the service (even from a separate application), in the same way that any component can use
+can use the service (even from a separate application) in the same way that any component can use
an activity—by starting it with an {@link android.content.Intent}. However, you can declare
-the service as private, in the manifest file, and block access from other applications. This is
-discussed more in the section about Declaring the service in the
+the service as private in the manifest file and block access from other applications.
+This is discussed more in the section about Declaring the service in the
manifest.
Caution: A service runs in the
-main thread of its hosting process—the service does not create its own thread
-and does not run in a separate process (unless you specify otherwise). This means
-that, if your service is going to do any CPU intensive work or blocking operations (such as MP3
-playback or networking), you should create a new thread within the service to do that work. By using
-a separate thread, you will reduce the risk of Application Not Responding (ANR) errors and the
-application's main thread can remain dedicated to user interaction with your activities.
+main thread of its hosting process; the service does not create its own
+thread and does not run in a separate process unless you specify otherwise. If
+your service is going to perform any CPU-intensive work or blocking operations, such as MP3
+playback or networking, you should create a new thread within the service to complete that work.
+By using a separate thread, you can reduce the risk of Application Not Responding (ANR) errors,
+and the application's main thread can remain dedicated to user interaction with your
+activities.
-
-The Basics
+The basics
Should you use a service or a thread?
-
A service is simply a component that can run in the background even when the user is not
-interacting with your application. Thus, you should create a service only if that is what you
+
A service is simply a component that can run in the background, even when the user is not
+interacting with your application, so you should create a service only if that is what you
need.
-
If you need to perform work outside your main thread, but only while the user is interacting
-with your application, then you should probably instead create a new thread and not a service. For
-example, if you want to play some music, but only while your activity is running, you might create
+
If you must perform work outside of your main thread, but only while the user is interacting
+with your application, you should instead create a new thread. For example, if you want to
+play some music, but only while your activity is running, you might create
a thread in {@link android.app.Activity#onCreate onCreate()}, start running it in {@link
-android.app.Activity#onStart onStart()}, then stop it in {@link android.app.Activity#onStop
-onStop()}. Also consider using {@link android.os.AsyncTask} or {@link android.os.HandlerThread},
+android.app.Activity#onStart onStart()}, and stop it in {@link android.app.Activity#onStop
+onStop()}. Also consider using {@link android.os.AsyncTask} or {@link android.os.HandlerThread}
instead of the traditional {@link java.lang.Thread} class. See the Processes and
Threading document for more information about threads.
@@ -121,78 +131,81 @@ blocking operations.
-To create a service, you must create a subclass of {@link android.app.Service} (or one
-of its existing subclasses). In your implementation, you need to override some callback methods that
-handle key aspects of the service lifecycle and provide a mechanism for components to bind to
-the service, if appropriate. The most important callback methods you should override are:
+To create a service, you must create a subclass of {@link android.app.Service} or use one
+of its existing subclasses. In your implementation, you must override some callback methods that
+handle key aspects of the service lifecycle and provide a mechanism that allows the components to
+bind to the service, if appropriate. These are the most important callback methods that you should
+override:
- {@link android.app.Service#onStartCommand onStartCommand()}
- - The system calls this method when another component, such as an activity,
-requests that the service be started, by calling {@link android.content.Context#startService
-startService()}. Once this method executes, the service is started and can run in the
+
- The system invokes this method by calling {@link android.content.Context#startService
+startService()} when another component (such as an activity) requests that the service be started.
+When this method executes, the service is started and can run in the
background indefinitely. If you implement this, it is your responsibility to stop the service when
-its work is done, by calling {@link android.app.Service#stopSelf stopSelf()} or {@link
-android.content.Context#stopService stopService()}. (If you only want to provide binding, you don't
-need to implement this method.)
+its work is complete by calling {@link android.app.Service#stopSelf stopSelf()} or {@link
+android.content.Context#stopService stopService()}. If you only want to provide binding, you don't
+need to implement this method.
- {@link android.app.Service#onBind onBind()}
- - The system calls this method when another component wants to bind with the
-service (such as to perform RPC), by calling {@link android.content.Context#bindService
-bindService()}. In your implementation of this method, you must provide an interface that clients
-use to communicate with the service, by returning an {@link android.os.IBinder}. You must always
-implement this method, but if you don't want to allow binding, then you should return null.
+ - The system invokes this method by calling {@link android.content.Context#bindService
+bindService()} when another component wants to bind with the service (such as to perform RPC).
+In your implementation of this method, you must provide an interface that clients
+use to communicate with the service by returning an {@link android.os.IBinder}. You must always
+implement this method; however, if you don't want to allow binding, you should return
+null.
- {@link android.app.Service#onCreate()}
- - The system calls this method when the service is first created, to perform one-time setup
-procedures (before it calls either {@link android.app.Service#onStartCommand onStartCommand()} or
+
- The system invokes this method to perform one-time setup procedures when the service is
+initially created (before it calls either
+{@link android.app.Service#onStartCommand onStartCommand()} or
{@link android.app.Service#onBind onBind()}). If the service is already running, this method is not
called.
- {@link android.app.Service#onDestroy()}
- - The system calls this method when the service is no longer used and is being destroyed.
+
- The system invokes this method when the service is no longer used and is being destroyed.
Your service should implement this to clean up any resources such as threads, registered
-listeners, receivers, etc. This is the last call the service receives.
+listeners, or receivers. This is the last call that the service receives.
If a component starts the service by calling {@link
android.content.Context#startService startService()} (which results in a call to {@link
-android.app.Service#onStartCommand onStartCommand()}), then the service
-remains running until it stops itself with {@link android.app.Service#stopSelf()} or another
+android.app.Service#onStartCommand onStartCommand()}), the service
+continues to run until it stops itself with {@link android.app.Service#stopSelf()} or another
component stops it by calling {@link android.content.Context#stopService stopService()}.
If a component calls
-{@link android.content.Context#bindService bindService()} to create the service (and {@link
-android.app.Service#onStartCommand onStartCommand()} is not called), then the service runs
-only as long as the component is bound to it. Once the service is unbound from all clients, the
-system destroys it.
+{@link android.content.Context#bindService bindService()} to create the service and {@link
+android.app.Service#onStartCommand onStartCommand()} is not called, the service runs
+only as long as the component is bound to it. After the service is unbound from all of its clients,
+the system destroys it.
-The Android system will force-stop a service only when memory is low and it must recover system
+
The Android system force-stops a service only when memory is low and it must recover system
resources for the activity that has user focus. If the service is bound to an activity that has user
-focus, then it's less likely to be killed, and if the service is declared to run in the foreground (discussed later), then it will almost never be killed.
-Otherwise, if the service was started and is long-running, then the system will lower its position
-in the list of background tasks over time and the service will become highly susceptible to
-killing—if your service is started, then you must design it to gracefully handle restarts
+focus, it's less likely to be killed; if the service is declared to run in the foreground, it's rarely killed.
+If the service is started and is long-running, the system lowers its position
+in the list of background tasks over time, and the service becomes highly susceptible to
+killing—if your service is started, you must design it to gracefully handle restarts
by the system. If the system kills your service, it restarts it as soon as resources become
-available again (though this also depends on the value you return from {@link
-android.app.Service#onStartCommand onStartCommand()}, as discussed later). For more information
+available, but this also depends on the value that you return from {@link
+android.app.Service#onStartCommand onStartCommand()}. For more information
about when the system might destroy a service, see the Processes and Threading
document.
-In the following sections, you'll see how you can create each type of service and how to use
-it from other application components.
-
-
+In the following sections, you'll see how you can create the
+{@link android.content.Context#startService startService()} and
+{@link android.content.Context#bindService bindService()} service methods, as well as how to use
+them from other application components.
Declaring a service in the manifest
-Like activities (and other components), you must declare all services in your application's
-manifest file.
+You must declare all services in your application's
+manifest file, just as you do for activities and other components.
To declare your service, add a {@code } element
+href="{@docRoot}guide/topics/manifest/service-element.html">{@code <service>} element
as a child of the {@code }
-element. For example:
+href="{@docRoot}guide/topics/manifest/application-element.html">{@code <application>}
+element. Here is an example:
<manifest ... >
@@ -205,48 +218,44 @@ element. For example:
See the {@code } element
+href="{@docRoot}guide/topics/manifest/service-element.html">{@code <service>} element
reference for more information about declaring your service in the manifest.
-There are other attributes you can include in the {@code } element to
-define properties such as permissions required to start the service and the process in
+
There are other attributes that you can include in the {@code <service>} element to
+define properties such as the permissions that are required to start the service and the process in
which the service should run. The {@code android:name}
-attribute is the only required attribute—it specifies the class name of the service. Once
-you publish your application, you should not change this name, because if you do, you risk breaking
+attribute is the only required attribute—it specifies the class name of the service. After
+you publish your application, leave this name unchanged to avoid the risk of breaking
code due to dependence on explicit intents to start or bind the service (read the blog post, Things
That Cannot Change).
-
To ensure your app is secure, always use an explicit intent when starting or binding
-your {@link android.app.Service} and do not declare intent filters for the service. If
-it's critical that you allow for some amount of ambiguity as to which service starts, you can
-supply intent filters for your services and exclude the component name from the {@link
-android.content.Intent}, but you then must set the package for the intent with {@link
-android.content.Intent#setPackage setPackage()}, which provides sufficient disambiguation for the
-target service.
+Caution: To ensure that your app is secure, always use an
+explicit intent when starting a {@link android.app.Service} and do not declare intent filters for
+your services. Using an implicit intent to start a service is a security hazard because you cannot
+be certain of the service that will respond to the intent, and the user cannot see which service
+starts. Beginning with Android 5.0 (API level 21), the system throws an exception if you call
+{@link android.content.Context#bindService bindService()} with an implicit intent.
-Additionally, you can ensure that your service is available to only your app by
+
You can ensure that your service is available to only your app by
including the {@code android:exported}
-attribute and setting it to {@code "false"}. This effectively stops other apps from starting your
+attribute and setting it to {@code false}. This effectively stops other apps from starting your
service, even when using an explicit intent.
-
-
-
-Creating a Started Service
+Creating a started service
A started service is one that another component starts by calling {@link
-android.content.Context#startService startService()}, resulting in a call to the service's
+android.content.Context#startService startService()}, which results in a call to the service's
{@link android.app.Service#onStartCommand onStartCommand()} method.
When a service is started, it has a lifecycle that's independent of the
-component that started it and the service can run in the background indefinitely, even if
+component that started it. The service can run in the background indefinitely, even if
the component that started it is destroyed. As such, the service should stop itself when its job
-is done by calling {@link android.app.Service#stopSelf stopSelf()}, or another component can stop it
-by calling {@link android.content.Context#stopService stopService()}.
+is complete by calling {@link android.app.Service#stopSelf stopSelf()}, or another component can
+stop it by calling {@link android.content.Context#stopService stopService()}.
An application component such as an activity can start the service by calling {@link
android.content.Context#startService startService()} and passing an {@link android.content.Intent}
@@ -254,65 +263,65 @@ that specifies the service and includes any data for the service to use. The ser
this {@link android.content.Intent} in the {@link android.app.Service#onStartCommand
onStartCommand()} method.
-For instance, suppose an activity needs to save some data to an online database. The activity can
-start a companion service and deliver it the data to save by passing an intent to {@link
+
For instance, suppose an activity needs to save some data to an online database. The activity
+can start a companion service and deliver it the data to save by passing an intent to {@link
android.content.Context#startService startService()}. The service receives the intent in {@link
-android.app.Service#onStartCommand onStartCommand()}, connects to the Internet and performs the
-database transaction. When the transaction is done, the service stops itself and it is
+android.app.Service#onStartCommand onStartCommand()}, connects to the Internet, and performs the
+database transaction. When the transaction is complete, the service stops itself and is
destroyed.
Caution: A service runs in the same process as the application
-in which it is declared and in the main thread of that application, by default. So, if your service
+in which it is declared and in the main thread of that application by default. If your service
performs intensive or blocking operations while the user interacts with an activity from the same
-application, the service will slow down activity performance. To avoid impacting application
-performance, you should start a new thread inside the service.
+application, the service slows down activity performance. To avoid impacting application
+performance, start a new thread inside the service.
Traditionally, there are two classes you can extend to create a started service:
+
- {@link android.app.Service}
- - This is the base class for all services. When you extend this class, it's important that
-you create a new thread in which to do all the service's work, because the service uses your
-application's main thread, by default, which could slow the performance of any activity your
+
- This is the base class for all services. When you extend this class, it's important to
+create a new thread in which the service can complete all of its work; the service uses your
+application's main thread by default, which can slow the performance of any activity that your
application is running.
- {@link android.app.IntentService}
- - This is a subclass of {@link android.app.Service} that uses a worker thread to handle all
-start requests, one at a time. This is the best option if you don't require that your service
-handle multiple requests simultaneously. All you need to do is implement {@link
+
- This is a subclass of {@link android.app.Service} that uses a worker thread to handle all of
+the start requests, one at a time. This is the best option if you don't require that your service
+handle multiple requests simultaneously. Implement {@link
android.app.IntentService#onHandleIntent onHandleIntent()}, which receives the intent for each
-start request so you can do the background work.
+start request so that you can complete the background work.
The following sections describe how you can implement your service using either one for these
classes.
-
Extending the IntentService class
-Because most started services don't need to handle multiple requests simultaneously
-(which can actually be a dangerous multi-threading scenario), it's probably best if you
+
Because most of the started services don't need to handle multiple requests simultaneously
+(which can actually be a dangerous multi-threading scenario), it's best that you
implement your service using the {@link android.app.IntentService} class.
-The {@link android.app.IntentService} does the following:
+The {@link android.app.IntentService} class does the following:
- - Creates a default worker thread that executes all intents delivered to {@link
-android.app.Service#onStartCommand onStartCommand()} separate from your application's main
+
- It creates a default worker thread that executes all of the intents that are delivered to
+{@link android.app.Service#onStartCommand onStartCommand()}, separate from your application's main
thread.
- Creates a work queue that passes one intent at a time to your {@link
android.app.IntentService#onHandleIntent onHandleIntent()} implementation, so you never have to
worry about multi-threading.
- - Stops the service after all start requests have been handled, so you never have to call
+
- Stops the service after all of the start requests are handled, so you never have to call
{@link android.app.Service#stopSelf}.
- - Provides default implementation of {@link android.app.IntentService#onBind onBind()} that
-returns null.
+ - Provides a default implementation of {@link android.app.IntentService#onBind onBind()}
+ that returns null.
- Provides a default implementation of {@link android.app.IntentService#onStartCommand
onStartCommand()} that sends the intent to the work queue and then to your {@link
android.app.IntentService#onHandleIntent onHandleIntent()} implementation.
-All this adds up to the fact that all you need to do is implement {@link
-android.app.IntentService#onHandleIntent onHandleIntent()} to do the work provided by the
-client. (Though, you also need to provide a small constructor for the service.)
+To complete the work that is provided by the client, implement {@link
+android.app.IntentService#onHandleIntent onHandleIntent()}.
+However, you also need to provide a small constructor for the service.
Here's an example implementation of {@link android.app.IntentService}:
@@ -352,12 +361,12 @@ android.app.IntentService#onHandleIntent onHandleIntent()}.
If you decide to also override other callback methods, such as {@link
android.app.IntentService#onCreate onCreate()}, {@link
android.app.IntentService#onStartCommand onStartCommand()}, or {@link
-android.app.IntentService#onDestroy onDestroy()}, be sure to call the super implementation, so
+android.app.IntentService#onDestroy onDestroy()}, be sure to call the super implementation so
that the {@link android.app.IntentService} can properly handle the life of the worker thread.
For example, {@link android.app.IntentService#onStartCommand onStartCommand()} must return
-the default implementation (which is how the intent gets delivered to {@link
-android.app.IntentService#onHandleIntent onHandleIntent()}):
+the default implementation, which is how the intent is delivered to {@link
+android.app.IntentService#onHandleIntent onHandleIntent()}:
@Override
@@ -369,22 +378,21 @@ public int onStartCommand(Intent intent, int flags, int startId) {
Besides {@link android.app.IntentService#onHandleIntent onHandleIntent()}, the only method
from which you don't need to call the super class is {@link android.app.IntentService#onBind
-onBind()} (but you only need to implement that if your service allows binding).
+onBind()}. You need to implement this only if your service allows binding.
In the next section, you'll see how the same kind of service is implemented when extending
-the base {@link android.app.Service} class, which is a lot more code, but which might be
+the base {@link android.app.Service} class, which uses more code, but might be
appropriate if you need to handle simultaneous start requests.
-
Extending the Service class
-As you saw in the previous section, using {@link android.app.IntentService} makes your
+
Using {@link android.app.IntentService} makes your
implementation of a started service very simple. If, however, you require your service to
-perform multi-threading (instead of processing start requests through a work queue), then you
+perform multi-threading (instead of processing start requests through a work queue), you
can extend the {@link android.app.Service} class to handle each intent.
-For comparison, the following example code is an implementation of the {@link
-android.app.Service} class that performs the exact same work as the example above using {@link
+
For comparison, the following example code shows an implementation of the {@link
+android.app.Service} class that performs the same work as the previous example using {@link
android.app.IntentService}. That is, for each start request, it uses a worker thread to perform the
job and processes only one request at a time.
@@ -460,20 +468,20 @@ public class HelloService extends Service {
However, because you handle each call to {@link android.app.Service#onStartCommand
onStartCommand()} yourself, you can perform multiple requests simultaneously. That's not what
-this example does, but if that's what you want, then you can create a new thread for each
-request and run them right away (instead of waiting for the previous request to finish).
+this example does, but if that's what you want, you can create a new thread for each
+request and run them right away instead of waiting for the previous request to finish.
Notice that the {@link android.app.Service#onStartCommand onStartCommand()} method must return an
integer. The integer is a value that describes how the system should continue the service in the
-event that the system kills it (as discussed above, the default implementation for {@link
-android.app.IntentService} handles this for you, though you are able to modify it). The return value
+event that the system kills it. The default implementation for {@link
+android.app.IntentService} handles this for you, but you are able to modify it. The return value
from {@link android.app.Service#onStartCommand onStartCommand()} must be one of the following
constants:
- {@link android.app.Service#START_NOT_STICKY}
- If the system kills the service after {@link android.app.Service#onStartCommand
-onStartCommand()} returns, do not recreate the service, unless there are pending
+onStartCommand()} returns, do not recreate the service unless there are pending
intents to deliver. This is the safest option to avoid running your service when not necessary
and when your application can simply restart any unfinished jobs.
- {@link android.app.Service#START_STICKY}
@@ -481,9 +489,9 @@ and when your application can simply restart any unfinished jobs.
onStartCommand()} returns, recreate the service and call {@link
android.app.Service#onStartCommand onStartCommand()}, but do not redeliver the last intent.
Instead, the system calls {@link android.app.Service#onStartCommand onStartCommand()} with a
-null intent, unless there were pending intents to start the service, in which case,
+null intent unless there are pending intents to start the service. In that case,
those intents are delivered. This is suitable for media players (or similar services) that are not
-executing commands, but running indefinitely and waiting for a job.
+executing commands but are running indefinitely and waiting for a job.
- {@link android.app.Service#START_REDELIVER_INTENT}
- If the system kills the service after {@link android.app.Service#onStartCommand
onStartCommand()} returns, recreate the service and call {@link
@@ -494,35 +502,35 @@ actively performing a job that should be immediately resumed, such as downloadin
For more details about these return values, see the linked reference documentation for each
constant.
-
-
-Starting a Service
+Starting a service
You can start a service from an activity or other application component by passing an
{@link android.content.Intent} (specifying the service to start) to {@link
android.content.Context#startService startService()}. The Android system calls the service's {@link
android.app.Service#onStartCommand onStartCommand()} method and passes it the {@link
-android.content.Intent}. (You should never call {@link android.app.Service#onStartCommand
-onStartCommand()} directly.)
+android.content.Intent}.
+
+Note: Never call
+{@link android.app.Service#onStartCommand onStartCommand()} directly.
For example, an activity can start the example service in the previous section ({@code
HelloService}) using an explicit intent with {@link android.content.Context#startService
-startService()}:
+startService()}, as shown here:
Intent intent = new Intent(this, HelloService.class);
startService(intent);
-The {@link android.content.Context#startService startService()} method returns immediately and
+
The {@link android.content.Context#startService startService()} method returns immediately, and
the Android system calls the service's {@link android.app.Service#onStartCommand
onStartCommand()} method. If the service is not already running, the system first calls {@link
-android.app.Service#onCreate onCreate()}, then calls {@link android.app.Service#onStartCommand
-onStartCommand()}.
+android.app.Service#onCreate onCreate()}, and then it calls
+{@link android.app.Service#onStartCommand onStartCommand()}.
-If the service does not also provide binding, the intent delivered with {@link
+
If the service does not also provide binding, the intent that is delivered with {@link
android.content.Context#startService startService()} is the only mode of communication between the
-application component and the service. However, if you want the service to send a result back, then
+application component and the service. However, if you want the service to send a result back,
the client that starts the service can create a {@link android.app.PendingIntent} for a broadcast
(with {@link android.app.PendingIntent#getBroadcast getBroadcast()}) and deliver it to the service
in the {@link android.content.Intent} that starts the service. The service can then use the
@@ -533,109 +541,102 @@ broadcast to deliver a result.
the service (with {@link android.app.Service#stopSelf stopSelf()} or {@link
android.content.Context#stopService stopService()}) is required to stop it.
-
Stopping a service
A started service must manage its own lifecycle. That is, the system does not stop or
destroy the service unless it must recover system memory and the service
-continues to run after {@link android.app.Service#onStartCommand onStartCommand()} returns. So,
-the service must stop itself by calling {@link android.app.Service#stopSelf stopSelf()} or another
+continues to run after {@link android.app.Service#onStartCommand onStartCommand()} returns. The
+service must stop itself by calling {@link android.app.Service#stopSelf stopSelf()}, or another
component can stop it by calling {@link android.content.Context#stopService stopService()}.
Once requested to stop with {@link android.app.Service#stopSelf stopSelf()} or {@link
android.content.Context#stopService stopService()}, the system destroys the service as soon as
possible.
-However, if your service handles multiple requests to {@link
-android.app.Service#onStartCommand onStartCommand()} concurrently, then you shouldn't stop the
-service when you're done processing a start request, because you might have since received a new
+
If your service handles multiple requests to {@link
+android.app.Service#onStartCommand onStartCommand()} concurrently, you shouldn't stop the
+service when you're done processing a start request, as you might have received a new
start request (stopping at the end of the first request would terminate the second one). To avoid
this problem, you can use {@link android.app.Service#stopSelf(int)} to ensure that your request to
stop the service is always based on the most recent start request. That is, when you call {@link
android.app.Service#stopSelf(int)}, you pass the ID of the start request (the startId
delivered to {@link android.app.Service#onStartCommand onStartCommand()}) to which your stop request
-corresponds. Then if the service received a new start request before you were able to call {@link
-android.app.Service#stopSelf(int)}, then the ID will not match and the service will not stop.
+corresponds. Then, if the service receives a new start request before you are able to call {@link
+android.app.Service#stopSelf(int)}, the ID does not match and the service does not stop.
-Caution: It's important that your application stops its services
-when it's done working, to avoid wasting system resources and consuming battery power. If necessary,
-other components can stop the service by calling {@link
+
Caution: To avoid wasting system resources and consuming
+battery power, ensure that your application stops its services when it's done working.
+If necessary, other components can stop the service by calling {@link
android.content.Context#stopService stopService()}. Even if you enable binding for the service,
-you must always stop the service yourself if it ever received a call to {@link
+you must always stop the service yourself if it ever receives a call to {@link
android.app.Service#onStartCommand onStartCommand()}.
For more information about the lifecycle of a service, see the section below about Managing the Lifecycle of a Service.
-
-
-Creating a Bound Service
+Creating a bound service
A bound service is one that allows application components to bind to it by calling {@link
-android.content.Context#bindService bindService()} in order to create a long-standing connection
-(and generally does not allow components to start it by calling {@link
-android.content.Context#startService startService()}).
+android.content.Context#bindService bindService()} to create a long-standing connection.
+It generally doesn't allow components to start it by calling {@link
+android.content.Context#startService startService()}.
-You should create a bound service when you want to interact with the service from activities
+
Create a bound service when you want to interact with the service from activities
and other components in your application or to expose some of your application's functionality to
-other applications, through interprocess communication (IPC).
+other applications through interprocess communication (IPC).
-To create a bound service, you must implement the {@link
+
To create a bound service, implement the {@link
android.app.Service#onBind onBind()} callback method to return an {@link android.os.IBinder} that
defines the interface for communication with the service. Other application components can then call
{@link android.content.Context#bindService bindService()} to retrieve the interface and
begin calling methods on the service. The service lives only to serve the application component that
-is bound to it, so when there are no components bound to the service, the system destroys it
-(you do not need to stop a bound service in the way you must when the service is started
-through {@link android.app.Service#onStartCommand onStartCommand()}).
+is bound to it, so when there are no components bound to the service, the system destroys it.
+You do not need to stop a bound service in the same way that you must when the service is
+started through {@link android.app.Service#onStartCommand onStartCommand()}.
-To create a bound service, the first thing you must do is define the interface that specifies
-how a client can communicate with the service. This interface between the service
+
To create a bound service, you must define the interface that specifies how a client can
+communicate with the service. This interface between the service
and a client must be an implementation of {@link android.os.IBinder} and is what your service must
return from the {@link android.app.Service#onBind
-onBind()} callback method. Once the client receives the {@link android.os.IBinder}, it can begin
+onBind()} callback method. After the client receives the {@link android.os.IBinder}, it can begin
interacting with the service through that interface.
-Multiple clients can bind to the service at once. When a client is done interacting with the
-service, it calls {@link android.content.Context#unbindService unbindService()} to unbind. Once
-there are no clients bound to the service, the system destroys the service.
+Multiple clients can bind to the service simultaneously. When a client is done interacting with
+the service, it calls {@link android.content.Context#unbindService unbindService()} to unbind.
+When there are no clients bound to the service, the system destroys the service.
-There are multiple ways to implement a bound service and the implementation is more
-complicated than a started service, so the bound service discussion appears in a separate
-document about There are multiple ways to implement a bound service, and the implementation is more
+complicated than a started service. For these reasons, the bound service discussion appears in a
+separate document about Bound Services.
+Sending notifications to the user
-
-Sending Notifications to the User
-
-Once running, a service can notify the user of events using When a service is running, it can notify the user of events using Toast Notifications or Status Bar Notifications.
-A toast notification is a message that appears on the surface of the current window for a
-moment then disappears, while a status bar notification provides an icon in the status bar with a
+
A toast notification is a message that appears on the surface of the current window for only a
+moment before disappearing. A status bar notification provides an icon in the status bar with a
message, which the user can select in order to take an action (such as start an activity).
-Usually, a status bar notification is the best technique when some background work has completed
-(such as a file completed
-downloading) and the user can now act on it. When the user selects the notification from the
-expanded view, the notification can start an activity (such as to view the downloaded file).
+Usually, a status bar notification is the best technique to use when background work such as
+a file download has completed, and the user can now act on it. When the user
+selects the notification from the expanded view, the notification can start an activity
+(such as to display the downloaded file).
See the Toast Notifications or Status Bar Notifications
developer guides for more information.
+Running a service in the foreground
-
-Running a Service in the Foreground
-
-A foreground service is a service that's considered to be something the
-user is actively aware of and thus not a candidate for the system to kill when low on memory. A
+
A foreground service is a service that the
+user is actively aware of and is not a candidate for the system to kill when low on memory. A
foreground service must provide a notification for the status bar, which is placed under the
-"Ongoing" heading, which means that the notification cannot be dismissed unless the service is
-either stopped or removed from the foreground.
+Ongoing heading. This means that the notification cannot be dismissed unless the service
+is either stopped or removed from the foreground.
For example, a music player that plays music from a service should be set to run in the
foreground, because the user is explicitly aware
@@ -643,9 +644,9 @@ of its operation. The notification in the status bar might indicate the current
the user to launch an activity to interact with the music player.
To request that your service run in the foreground, call {@link
-android.app.Service#startForeground startForeground()}. This method takes two parameters: an integer
-that uniquely identifies the notification and the {@link
-android.app.Notification} for the status bar. For example:
+android.app.Service#startForeground startForeground()}. This method takes two parameters: an
+integer that uniquely identifies the notification and the {@link
+android.app.Notification} for the status bar. Here is an example:
Notification notification = new Notification(R.drawable.icon, getText(R.string.ticker_text),
@@ -657,30 +658,27 @@ notification.setLatestEventInfo(this, getText(R.string.notification_title),
startForeground(ONGOING_NOTIFICATION_ID, notification);
-Caution: The integer ID you give to {@link
+
Caution: The integer ID that you give to {@link
android.app.Service#startForeground startForeground()} must not be 0.
-
To remove the service from the foreground, call {@link
-android.app.Service#stopForeground stopForeground()}. This method takes a boolean, indicating
+android.app.Service#stopForeground stopForeground()}. This method takes a boolean, which indicates
whether to remove the status bar notification as well. This method does not stop the
-service. However, if you stop the service while it's still running in the foreground, then the
+service. However, if you stop the service while it's still running in the foreground, the
notification is also removed.
For more information about notifications, see Creating Status Bar
Notifications.
+Managing the lifecycle of a service
+The lifecycle of a service is much simpler than that of an activity. However, it's even more
+important that you pay close attention to how your service is created and destroyed because a
+service can run in the background without the user being aware.
-Managing the Lifecycle of a Service
-
-The lifecycle of a service is much simpler than that of an activity. However, it's even more important
-that you pay close attention to how your service is created and destroyed, because a service
-can run in the background without the user being aware.
-
-The service lifecycle—from when it's created to when it's destroyed—can follow two
-different paths:
+The service lifecycle—from when it's created to when it's destroyed—can follow
+either of these two paths:
- A started service
@@ -689,27 +687,26 @@ android.content.Context#startService startService()}. The service then runs inde
stop itself by calling {@link
android.app.Service#stopSelf() stopSelf()}. Another component can also stop the
service by calling {@link android.content.Context#stopService
-stopService()}. When the service is stopped, the system destroys it..
+stopService()}. When the service is stopped, the system destroys it.
- A bound service
The service is created when another component (a client) calls {@link
android.content.Context#bindService bindService()}. The client then communicates with the service
through an {@link android.os.IBinder} interface. The client can close the connection by calling
{@link android.content.Context#unbindService unbindService()}. Multiple clients can bind to
-the same service and when all of them unbind, the system destroys the service. (The service
-does not need to stop itself.)
+the same service and when all of them unbind, the system destroys the service. The service
+does not need to stop itself.
-These two paths are not entirely separate. That is, you can bind to a service that was already
-started with {@link android.content.Context#startService startService()}. For example, a background
-music service could be started by calling {@link android.content.Context#startService
+
These two paths are not entirely separate. You can bind to a service that is already
+started with {@link android.content.Context#startService startService()}. For example, you can
+start a background music service by calling {@link android.content.Context#startService
startService()} with an {@link android.content.Intent} that identifies the music to play. Later,
possibly when the user wants to exercise some control over the player or get information about the
current song, an activity can bind to the service by calling {@link
-android.content.Context#bindService bindService()}. In cases like this, {@link
+android.content.Context#bindService bindService()}. In cases such as this, {@link
android.content.Context#stopService stopService()} or {@link android.app.Service#stopSelf
-stopSelf()} does not actually stop the service until all clients unbind.
-
+stopSelf()} doesn't actually stop the service until all of the clients unbind.
Implementing the lifecycle callbacks
@@ -763,20 +760,30 @@ shows the lifecycle when the service is created with {@link android.content.Cont
startService()} and the diagram on the right shows the lifecycle when the service is created
with {@link android.content.Context#bindService bindService()}.
-By implementing these methods, you can monitor two nested loops of the service's lifecycle:
+Figure 2 illustrates the typical callback methods for a service. Although the figure separates
+services that are created by {@link android.content.Context#startService startService()} from those
+created by {@link android.content.Context#bindService bindService()}, keep
+in mind that any service, no matter how it's started, can potentially allow clients to bind to it.
+A service that was initially started with {@link android.app.Service#onStartCommand
+onStartCommand()} (by a client calling {@link android.content.Context#startService startService()})
+can still receive a call to {@link android.app.Service#onBind onBind()} (when a client calls
+{@link android.content.Context#bindService bindService()}).
+
+By implementing these methods, you can monitor these two nested loops of the service's
+lifecycle:
-- The entire lifetime of a service happens between the time {@link
-android.app.Service#onCreate onCreate()} is called and the time {@link
+
- The entire lifetime of a service occurs between the time that {@link
+android.app.Service#onCreate onCreate()} is called and the time that {@link
android.app.Service#onDestroy} returns. Like an activity, a service does its initial setup in
{@link android.app.Service#onCreate onCreate()} and releases all remaining resources in {@link
-android.app.Service#onDestroy onDestroy()}. For example, a
-music playback service could create the thread where the music will be played in {@link
-android.app.Service#onCreate onCreate()}, then stop the thread in {@link
+android.app.Service#onDestroy onDestroy()}. For example, a
+music playback service can create the thread where the music is played in {@link
+android.app.Service#onCreate onCreate()}, and then it can stop the thread in {@link
android.app.Service#onDestroy onDestroy()}.
-
The {@link android.app.Service#onCreate onCreate()} and {@link android.app.Service#onDestroy
-onDestroy()} methods are called for all services, whether
+
Note: The {@link android.app.Service#onCreate onCreate()}
+and {@link android.app.Service#onDestroy onDestroy()} methods are called for all services, whether
they're created by {@link android.content.Context#startService startService()} or {@link
android.content.Context#bindService bindService()}.
@@ -784,8 +791,8 @@ android.content.Context#bindService bindService()}.
android.app.Service#onStartCommand onStartCommand()} or {@link android.app.Service#onBind onBind()}.
Each method is handed the {@link
android.content.Intent} that was passed to either {@link android.content.Context#startService
-startService()} or {@link android.content.Context#bindService bindService()}, respectively.
-If the service is started, the active lifetime ends the same time that the entire lifetime
+startService()} or {@link android.content.Context#bindService bindService()}.
+
If the service is started, the active lifetime ends at the same time that the entire lifetime
ends (the service is still active even after {@link android.app.Service#onStartCommand
onStartCommand()} returns). If the service is bound, the active lifetime ends when {@link
android.app.Service#onUnbind onUnbind()} returns.
@@ -795,26 +802,16 @@ android.app.Service#onUnbind onUnbind()} returns.
Note: Although a started service is stopped by a call to
either {@link android.app.Service#stopSelf stopSelf()} or {@link
android.content.Context#stopService stopService()}, there is not a respective callback for the
-service (there's no {@code onStop()} callback). So, unless the service is bound to a client,
+service (there's no {@code onStop()} callback). Unless the service is bound to a client,
the system destroys it when the service is stopped—{@link
android.app.Service#onDestroy onDestroy()} is the only callback received.
-Figure 2 illustrates the typical callback methods for a service. Although the figure separates
-services that are created by {@link android.content.Context#startService startService()} from those
-created by {@link android.content.Context#bindService bindService()}, keep
-in mind that any service, no matter how it's started, can potentially allow clients to bind to it.
-So, a service that was initially started with {@link android.app.Service#onStartCommand
-onStartCommand()} (by a client calling {@link android.content.Context#startService startService()})
-can still receive a call to {@link android.app.Service#onBind onBind()} (when a client calls
-{@link android.content.Context#bindService bindService()}).
-
For more information about creating a service that provides binding, see the Bound Services document,
which includes more information about the {@link android.app.Service#onRebind onRebind()}
callback method in the section about Managing the Lifecycle of
-a Bound Service.
-
+href="{@docRoot}guide/components/bound-services.html#Lifecycle">Managing the lifecycle of
+a bound service.
Unless you specify otherwise, most of the operations you do in an app run in the foreground on
- a special thread called the UI thread. This can cause problems, because long-running operations
- will interfere with the responsiveness of your user interface. This annoys your users, and can
+ a special thread called the UI thread. Long-running foreground operations can cause problems
+ and interfere with the responsiveness of your user interface, which annoys your users and can
even cause system errors. To avoid this, the Android framework offers several classes that
- help you off-load operations onto a separate thread running in the background. The most useful
- of these is {@link android.app.IntentService}.
+ help you off-load operations onto a separate thread that runs in the background. The most
+ useful of these is {@link android.app.IntentService}.
This class describes how to implement an {@link android.app.IntentService}, send it work
requests, and report its results to other components.
+
+Note: If your app targets Android 5.0 (API level 21),
+ you should use {@link android.app.job.JobScheduler} to execute background
+ services. For more information about this class,
+ see the {@link android.app.job.JobScheduler} reference documentation.
+
Lessons
-
diff --git a/location/java/android/location/LocationManager.java b/location/java/android/location/LocationManager.java
index 2b3ed8748a20b..da0e515cda4be 100644
--- a/location/java/android/location/LocationManager.java
+++ b/location/java/android/location/LocationManager.java
@@ -1465,7 +1465,7 @@ public class LocationManager {
mGpsNmeaListener = null;
mNmeaBuffer = null;
mOldGnssCallback = null;
- mGnssCallback = new GnssStatus.Callback() {
+ mGnssCallback = mGpsListener != null ? new GnssStatus.Callback() {
@Override
public void onStarted() {
mGpsListener.onGpsStatusChanged(GpsStatus.GPS_EVENT_STARTED);
@@ -1485,7 +1485,7 @@ public class LocationManager {
public void onSatelliteStatusChanged(GnssStatus status) {
mGpsListener.onGpsStatusChanged(GpsStatus.GPS_EVENT_SATELLITE_STATUS);
}
- };
+ } : null;
mOldGnssNmeaListener = null;
mGnssNmeaListener = null;
}
@@ -1502,12 +1502,12 @@ public class LocationManager {
mOldGnssCallback = null;
mGnssCallback = null;
mOldGnssNmeaListener = null;
- mGnssNmeaListener = new OnNmeaMessageListener() {
+ mGnssNmeaListener = mGpsNmeaListener != null ? new OnNmeaMessageListener() {
@Override
public void onNmeaMessage(String nmea, long timestamp) {
mGpsNmeaListener.onNmeaReceived(timestamp, nmea);
}
- };
+ } : null;
}
GnssStatusListenerTransport(GnssStatusCallback callback) {
@@ -1516,7 +1516,7 @@ public class LocationManager {
GnssStatusListenerTransport(GnssStatusCallback callback, Handler handler) {
mOldGnssCallback = callback;
- mGnssCallback = new GnssStatus.Callback() {
+ mGnssCallback = mOldGnssCallback != null ? new GnssStatus.Callback() {
@Override
public void onStarted() {
mOldGnssCallback.onStarted();
@@ -1536,7 +1536,7 @@ public class LocationManager {
public void onSatelliteStatusChanged(GnssStatus status) {
mOldGnssCallback.onSatelliteStatusChanged(status);
}
- };
+ } : null;
mGnssHandler = new GnssHandler(handler);
mOldGnssNmeaListener = null;
mGnssNmeaListener = null;
@@ -1569,12 +1569,12 @@ public class LocationManager {
mOldGnssCallback = null;
mGnssHandler = new GnssHandler(handler);
mOldGnssNmeaListener = listener;
- mGnssNmeaListener = new OnNmeaMessageListener() {
+ mGnssNmeaListener = mOldGnssNmeaListener != null ? new OnNmeaMessageListener() {
@Override
public void onNmeaMessage(String message, long timestamp) {
mOldGnssNmeaListener.onNmeaReceived(timestamp, message);
}
- };
+ } : null;
mGpsListener = null;
mGpsNmeaListener = null;
mNmeaBuffer = new ArrayList();
@@ -1597,7 +1597,7 @@ public class LocationManager {
@Override
public void onGnssStarted() {
- if (mGpsListener != null) {
+ if (mGnssCallback != null) {
Message msg = Message.obtain();
msg.what = GpsStatus.GPS_EVENT_STARTED;
mGnssHandler.sendMessage(msg);
@@ -1606,7 +1606,7 @@ public class LocationManager {
@Override
public void onGnssStopped() {
- if (mGpsListener != null) {
+ if (mGnssCallback != null) {
Message msg = Message.obtain();
msg.what = GpsStatus.GPS_EVENT_STOPPED;
mGnssHandler.sendMessage(msg);
@@ -1615,7 +1615,7 @@ public class LocationManager {
@Override
public void onFirstFix(int ttff) {
- if (mGpsListener != null) {
+ if (mGnssCallback != null) {
mTimeToFirstFix = ttff;
Message msg = Message.obtain();
msg.what = GpsStatus.GPS_EVENT_FIRST_FIX;
diff --git a/packages/BackupRestoreConfirmation/res/values-bn-rBD/strings.xml b/packages/BackupRestoreConfirmation/res/values-bn-rBD/strings.xml
index 440cb647c0245..2b69d5bfd5409 100644
--- a/packages/BackupRestoreConfirmation/res/values-bn-rBD/strings.xml
+++ b/packages/BackupRestoreConfirmation/res/values-bn-rBD/strings.xml
@@ -24,13 +24,13 @@
"একটি সংযুক্ত ডেস্কটপ কম্পিউটার থেকে সমস্ত ডেটার সম্পূর্ণ ব্যাকআপ নেওয়ার অনুরোধ করা হয়েছে৷ আপনি কি এটি করার অনুমতি দিতে চান?\n\nযদি আপনি নিজের থেকে এই ব্যাকআপ নেওয়ার অনুরোধ না করে থাকেন, তবে এই প্রক্রিয়াটিতে অনুমতি প্রদান করবেন না৷ এটি বর্তমানে ডিভাইসটিতে থাকা সমস্ত ডেটাকে প্রতিস্থাপন করবে!"
"আমার ডেটা পুনরুদ্ধার করুন"
"পুনরুদ্ধার করবেন না"
- "দয়া করে নীচে আপনার বর্তমান ব্যাকআপের পাসওয়ার্ড দিন:"
- "দয়া করে নীচে আপনার ডিভাইসের এনক্রিপশান পাসওয়ার্ড লিখুন৷"
- "দয়া করে নীচে আপানার ডিভাইসের এনক্রিপশান পাসওয়ার্ড লিখুন৷ এছাড়াও ব্যাকআপ সংরক্ষণাগার এনক্রিপ্ট করতে এটি ব্যবহার করা হবে৷"
+ "দয়া করে নিচে আপনার বর্তমান ব্যাকআপের পাসওয়ার্ড দিন:"
+ "দয়া করে নিচে আপনার ডিভাইসের এনক্রিপশান পাসওয়ার্ড লিখুন৷"
+ "দয়া করে নিচে আপানার ডিভাইসের এনক্রিপশান পাসওয়ার্ড লিখুন৷ এছাড়াও ব্যাকআপ সংরক্ষণাগার এনক্রিপ্ট করতে এটি ব্যবহার করা হবে৷"
"সম্পূর্ণ ব্যাকআপ ডেটা এনক্রিপ্ট করতে দয়া করে একটি পাসওয়ার্ড লিখুন৷ যদি এটি খালি রেখে দেওয়া হয় তবে আপনার বর্তমান ব্যাকআপ পাসওয়ার্ডটি ব্যবহার করা হবে:"
- "আপনি যদি সম্পূর্ণ ব্যাকআপ ডেটা এনক্রিপ্ট করতে চান তাহলে নীচে একটি পাসওয়ার্ড লিখুন:"
- "আপনার ডিভাইস এনক্রিপ্ট হয়ে থাকার কারণে আপনার ব্যাকআপকে এনক্রিপ্ট করতে হবে। দয়া করে নীচে একটি পাসওয়ার্ড দিন:"
- "যদি পুনরুদ্ধার করা ডেটা এনক্রিপ্ট করা থাকে, তবে দয়া করে নীচে পাসওয়ার্ডটি লিখুন:"
+ "আপনি যদি সম্পূর্ণ ব্যাকআপ ডেটা এনক্রিপ্ট করতে চান তাহলে নিচে একটি পাসওয়ার্ড লিখুন:"
+ "আপনার ডিভাইস এনক্রিপ্ট হয়ে থাকার কারণে আপনার ব্যাকআপকে এনক্রিপ্ট করতে হবে। দয়া করে নিচে একটি পাসওয়ার্ড দিন:"
+ "যদি পুনরুদ্ধার করা ডেটা এনক্রিপ্ট করা থাকে, তবে দয়া করে নিচে পাসওয়ার্ডটি লিখুন:"
"ব্যাকআপ নেওয়া শুরু হয়েছে..."
"ব্যাকআপ নেওয়া সম্পূর্ণ হয়েছে"
"পুনরুদ্ধার করা শুরু হচ্ছে..."
diff --git a/packages/BackupRestoreConfirmation/res/values-sk/strings.xml b/packages/BackupRestoreConfirmation/res/values-sk/strings.xml
index 804f980b16744..44d01deafe6bb 100644
--- a/packages/BackupRestoreConfirmation/res/values-sk/strings.xml
+++ b/packages/BackupRestoreConfirmation/res/values-sk/strings.xml
@@ -19,7 +19,7 @@
"Úplná záloha"
"Úplné obnovenie"
"Bola vyžiadaná úplná záloha všetkých dát do pripojeného počítača. Chcete túto akciu povoliť?\n\nAk ste zálohu nevyžiadali vy, túto operáciu nepovoľujte."
- "Zálohovať dáta"
+ "Zálohovať moje dáta"
"Nezálohovať"
"Z pripojeného počítača bolo vyžiadané úplné obnovenie všetkých údajov. Chcete túto akciu povoliť?\n\nAk ste toto obnovenie nevyžiadali vy, túto operáciu nepovoľujte. Táto akcia nahradí všetky údaje v zariadení."
"Obnoviť údaje"
diff --git a/packages/DocumentsUI/res/values-b+sr+Latn/strings.xml b/packages/DocumentsUI/res/values-b+sr+Latn/strings.xml
index 3252a43858537..922aa2a947709 100644
--- a/packages/DocumentsUI/res/values-b+sr+Latn/strings.xml
+++ b/packages/DocumentsUI/res/values-b+sr+Latn/strings.xml
@@ -46,7 +46,7 @@
"Kopiraj"
"Premesti"
"Odbaci"
- "Pokušaj ponovo"
+ "Probaj ponovo"
"Prema imenu"
"Prema datumu izmene"
"Prema veličini"
diff --git a/packages/DocumentsUI/res/values-fa/strings.xml b/packages/DocumentsUI/res/values-fa/strings.xml
index b7d09f8e0b36c..cc27e8e9a0b55 100644
--- a/packages/DocumentsUI/res/values-fa/strings.xml
+++ b/packages/DocumentsUI/res/values-fa/strings.xml
@@ -16,8 +16,7 @@
- "اسناد"
- "فایلها"
+ "Files"
"بارگیریها"
"باز کردن از"
"ذخیره در"
@@ -26,8 +25,7 @@
"نمای فهرستی"
"مرتبسازی براساس"
"جستجو"
-
-
+ "تنظیمات ذخیرهسازی"
"باز کردن"
"ذخیره"
"اشتراکگذاری"
@@ -38,8 +36,8 @@
"پنجره جدید"
"کپی"
"جایگذاری"
- "نمایش فضای ذخیرهسازی داخلی"
- "پنهان کردن فضای ذخیرهسازی داخلی"
+ "نمایش حافظه داخلی"
+ "پنهان کردن حافظه داخلی"
"نمایش اندازه فایل"
"پنهان کردن اندازه فایل"
"انتخاب"
@@ -54,7 +52,7 @@
"پنهان کردن ریشهها"
"ذخیره سند انجام نشد"
"ایجاد پوشه انجام نشد"
- "جستجوی اسناد ناموفق بود"
+ "محتوا درحال حاضر بارگیری نمیشود"
"اخیر"
"%1$s آزاد"
"خدمات ذخیرهسازی"
@@ -63,11 +61,12 @@
"برنامههای بیشتر"
"موردی موجود نیست"
"مورد منطبقی در %1$s وجود ندارد"
- "فایل باز نمیشود"
+ "فایل باز نمیشود"
"برخی از اسناد حذف نمیشوند"
"اشتراکگذاری از طریق"
"در حال کپی کردن فایلها"
"درحال انتقال فایلها"
+ "در حال حذف فایلها"
"%s باقیمانده"
- در حال کپی کردن %1$d فایل.
@@ -85,22 +84,23 @@
"در حال آمادهسازی برای کپی..."
"درحال آمادهسازی برای انتقال…"
"درحال آمادهسازی برای حذف…"
-
- - %1$d فایل کپی نشد
- - %1$d فایل کپی نشد
+
+ - %1$d فایل کپی نشد
+ - %1$d فایل کپی نشد
-
- - %1$d فایل منتقل نشد
- - %1$d فایل منتقل نشد
+
+ - %1$d فایل منتقل نشد
+ - %1$d فایل منتقل نشد
-
- - %1$d فایل حذف نشد
- - %1$d فایل حذف نشد
+
+ - %1$d فایل حذف نشد
+ - %1$d فایل حذف نشد
"برای مشاهده جزئیات ضربه بزنید"
"بستن"
- "این فایلها کپی نشدند: %1$s"
- "این فایلها منتقل نشدند: %1$s"
+ "این فایلها کپی نشدند: %1$s"
+ "این فایلها منتقل نشدند: %1$s"
+ "این فایلها حذف نشدند: %1$s"
"این فایلها به قالب دیگری تبدیل شدند: %1$s"
- %1$d فایل در بریدهدان کپی شد.
@@ -110,6 +110,34 @@
"تغییر نام"
"نام سند تغییر نکرد"
"بعضی از فایلها تبدیل شدند"
+ "به ^1 اجازه داده شود به فهرست راهنمای ^2 در ^3 دسترسی داشته باشد؟"
+ "به ^1 اجازه دسترسی به دایرکتوری ^2 داده شود؟"
+ "به ^1 اجازه میدهید به دادههایتان دسترسی پیدا کند، از جمله عکسها و ویدئوهایتان در ^2؟"
+ "دوباره سؤال نشود"
"ارزیابیشده"
"اجازه ندارد"
+
+ - %1$d مورد انتخاب شد
+ - %1$d مورد انتخاب شد
+
+
+ - %1$d مورد
+ - %1$d مورد
+
+ "«%1$s» حذف شود؟"
+ "پوشه «%1$s» و محتوای آن حذف شود؟"
+
+ - %1$d فایل حذف شود؟
+ - %1$d فایل حذف شود؟
+
+
+ - %1$d پوشه و محتوای آنها حذف شود؟
+ - %1$d پوشه و محتوای آنها حذف شود؟
+
+
+ - %1$d مورد حذف شود؟
+ - %1$d مورد حذف شود؟
+
+ "متأسفیم، هر بار حداکثر میتوانید ۱۰۰۰ مورد انتخاب کنید."
+ "فقط میتوان ۱۰۰۰ مورد انتخاب کرد"
diff --git a/packages/DocumentsUI/res/values-kk-rKZ/strings.xml b/packages/DocumentsUI/res/values-kk-rKZ/strings.xml
index 715db08863fa6..075f2560b3f5f 100644
--- a/packages/DocumentsUI/res/values-kk-rKZ/strings.xml
+++ b/packages/DocumentsUI/res/values-kk-rKZ/strings.xml
@@ -16,18 +16,16 @@
- "Құжаттар"
- "Файлдар"
+ "Файлдар"
"Жүктеулер"
"Мынадан ашу:"
"Сақталатын орны"
"Жаңа қалта"
"Торлы көрініс"
"Тізім көрінісі"
- "Белгіге қарай сұрыптау"
+ "Сұрыптау"
"Іздеу"
-
-
+ "Жад параметрлері"
"Ашу"
"Сақтау"
"Бөлісу"
@@ -54,8 +52,8 @@
"Тамырын жасыру"
"Құжатты сақтау орындалмады"
"Қалта жасақтау іске аспады"
- "Құжаттарды өтіну орындалмады"
- "Жуықта қолданылған"
+ "Қазір мазмұнды жүктеу мүмкін емес"
+ "Соңғы"
"%1$s бос"
"Жад қызметтері"
"Төте пернелер"
@@ -63,11 +61,12 @@
"Басқа қолданбалар"
"Бос"
"%1$s ішінде сәйкестіктер жоқ"
- "Файлды аша алмады"
+ "Файлды ашу мүмкін емес"
"Кейбір құжаттарды жою мүмкін болмады"
"Бөлісу"
"Файлдарды көшіру"
"Файлдар тасымалдануда"
+ "Файлдар жойылуда"
"%s қалды"
- %1$d файлды көшіру.
@@ -85,22 +84,23 @@
"Көшіруге дайындау…"
"Тасымалдауға дайындалуда..."
"Жоюға дайындалуда…"
-
- - %1$d файлды көшіру мүмкін емес
- - %1$d файлды көшіру мүмкін емес
+
+ - %1$d файлды көшіру мүмкін болмады
+ - %1$d файлды көшіру мүмкін болмады
-
- - %1$d файл тасымалданбады
- - %1$d файл тасымалданбады
+
+ - %1$d файлды жылжыту мүмкін болмады
+ - %1$d файлды жылжыту мүмкін болмады
-
+
- %1$d файлды жою мүмкін болмады
- %1$d файлды жою мүмкін болмады
"Мәліметтерді көру үшін түртіңіз"
"Жабу"
- "Мына файлдар көшірілген жоқ: %1$s"
- "Мына файлдар тасымалданған жоқ: %1$s"
+ "Мына файлдар көшірілген жоқ: %1$s"
+ "Мына файлдар жылжытылған жоқ: %1$s"
+ "Келесі файлдар жойылмады: %1$s"
"Мына файлдар басқа пішімге түрлендірілді: %1$s"
- Аралық сақтағышқа %1$d файл көшірілді.
@@ -110,6 +110,34 @@
"Атын өзгерту"
"Құжат қайта аталмады"
"Кейбір файлдар түрлендірілді"
+ "^1 қолданбасына ^3 қоймасындағы ^2 каталогына өтуге рұқсат беру керек пе?"
+ "^1 қолданбасына ^2 каталогына кіруге рұқсат беру керек пе?"
+ "^1 ^2 қоймасындағы деректерге, соның ішінде фотосуреттерге және бейнелерге кіру мүмкіндігін беру керек пе?"
+ "Қайта сұралмасын"
"Рұқсат беру"
"Бас тарту"
+
+ - %1$d таңдалды
+ - %1$d таңдалды
+
+
+ - %1$d элемент
+ - %1$d элемент
+
+ "\"%1$s\" жою керек пе?"
+ "\"%1$s\" қалтасын және оның мазмұнын жою керек пе?"
+
+ - %1$d файлды жою керек пе?
+ - %1$d файлды жою керек пе?
+
+
+ - %1$d қалтаны ішіндегісімен бірге жою керек пе?
+ - %1$d қалтаны ішіндегісімен бірге жою керек пе?
+
+
+ - %1$d элементті жою керек пе?
+ - %1$d элементті жою керек пе?
+
+ "Бір жолы тек 1000 элемент таңдауға болады"
+ "Тек 1000 элемент таңдалды"
diff --git a/packages/DocumentsUI/res/values-kn-rIN/strings.xml b/packages/DocumentsUI/res/values-kn-rIN/strings.xml
index dc644a84efc0f..7becf4e7776ac 100644
--- a/packages/DocumentsUI/res/values-kn-rIN/strings.xml
+++ b/packages/DocumentsUI/res/values-kn-rIN/strings.xml
@@ -16,8 +16,7 @@
- "ಡಾಕ್ಯುಮೆಂಟ್ಗಳು"
- "ಫೈಲ್ಗಳು"
+ "ಫೈಲ್ಗಳು"
"ಡೌನ್ಲೋಡ್ಗಳು"
"ಇದರ ಮೂಲಕ ತೆರೆಯಿರಿ"
"ಇವುಗಳಲ್ಲಿ ಉಳಿಸಿ"
@@ -25,9 +24,8 @@
"ಗ್ರಿಡ್ ವೀಕ್ಷಣೆ"
"ಪಟ್ಟಿ ವೀಕ್ಷಣೆ"
"ಈ ಪ್ರಕಾರ ವಿಂಗಡಿಸು"
- "ಹುಡುಕು"
-
-
+ "ಹುಡುಕಿ"
+ "ಸಂಗ್ರಹಣೆ ಸೆಟ್ಟಿಂಗ್ಗಳು"
"ತೆರೆ"
"ಉಳಿಸು"
"ಹಂಚು"
@@ -54,7 +52,7 @@
"ರೂಟ್ಗಳನ್ನು ಮರೆಮಾಡು"
"ಡಾಕ್ಯುಮೆಂಟ್ ಉಳಿಸಲು ವಿಫಲವಾಗಿದೆ"
"ಫೋಲ್ಡರ್ ರಚಿಸಲು ವಿಫಲವಾಗಿದೆ"
- "ಡಾಕ್ಯುಮೆಂಟ್ಗಳನ್ನು ಪ್ರಶ್ನಿಸಲು ವಿಫಲವಾಗಿದೆ"
+ "ಈ ಕ್ಷಣದಲ್ಲಿ ವಿಷಯವನ್ನು ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ"
"ಇತ್ತೀಚಿನದು"
"%1$s ಮುಕ್ತವಾಗಿದೆ"
"ಸಂಗ್ರಹಣೆ ಸೇವೆಗಳು"
@@ -63,11 +61,12 @@
"ಇನ್ನಷ್ಟು ಅಪ್ಲಿಕೇಶನ್ಗಳು"
"ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ"
"%1$s ರಲ್ಲಿ ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಗಳಿಲ್ಲ"
- "ಫೈಲ್ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ"
+ "ಫೈಲ್ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ"
"ಕೆಲವು ಡಾಕ್ಯುಮೆಂಟ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"
"ಈ ಮೂಲಕ ಹಂಚಿಕೊಳ್ಳಿ"
"ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ"
"ಫೈಲ್ಗಳನ್ನು ಸರಿಸಲಾಗುತ್ತಿದೆ"
+ "ಫೈಲ್ ಅಳಿಸಲಾಗುತ್ತಿದೆ"
"%s ಉಳಿದಿದೆ"
- %1$d ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ.
@@ -85,22 +84,23 @@
"ನಕಲಿಸಲು ಸಿದ್ಧಪಡಿಸಲಾಗುತ್ತಿದೆ..."
"ಸರಿಸಲು ಸಿದ್ಧಪಡಿಸಲಾಗುತ್ತಿದೆ…"
"ಅಳಿಸಲು ಸಿದ್ಧಪಡಿಸಲಾಗುತ್ತಿದೆ…"
-
- - %1$d ಫೈಲ್ಗಳನ್ನು ನಕಲು ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
- - %1$d ಫೈಲ್ಗಳನ್ನು ನಕಲು ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
+
+ - %1$d ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
+ - %1$d ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
-
+
- %1$d ಫೈಲ್ಗಳನ್ನು ಸರಿಸಲಾಗಲಿಲ್ಲ
- %1$d ಫೈಲ್ಗಳನ್ನು ಸರಿಸಲಾಗಲಿಲ್ಲ
-
+
- %1$d ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
- %1$d ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ
"ವಿವರಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ"
"ಮುಚ್ಚು"
- "ಈ ಫೈಲ್ಗಳನ್ನು ನಕಲು ಮಾಡಿಲ್ಲ: %1$s"
- "ಈ ಫೈಲ್ಗಳನ್ನು ಸರಿಸಲಾಗಿಲ್ಲ: %1$s"
+ "ಈ ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲಾಗಿಲ್ಲ: %1$s"
+ "ಈ ಫೈಲ್ಗಳನ್ನು ಸರಿಸಲಾಗಿಲ್ಲ: %1$s"
+ "ಈ ಫೈಲ್ಗಳನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ: %1$s"
"ಈ ಫೈಲ್ಗಳನ್ನು ಮತ್ತೊಂದು ಫಾರ್ಮೆಟ್ಗೆ ಪರಿವರ್ತಿಸಲಾಗಿತ್ತು: %1$s"
- ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ %1$d ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲಾಗಿದೆ.
@@ -110,6 +110,34 @@
"ಮರುಹೆಸರಿಸು"
"ಡಾಕ್ಯುಮೆಂಟ್ ಮರುಹೆಸರಿಸಲು ವಿಫಲವಾಗಿದೆ"
"ಕೆಲವು ಫೈಲ್ಗಳನ್ನು ಪರಿವರ್ತಿಸಲಾಗಿದೆ"
+ "^3 ರಲ್ಲಿ ^2 ಡೈರೆಕ್ಟರಿಗೆ ^1 ಪ್ರವೇಶ ನೀಡುವುದೇ?"
+ "^1^2 ಡೈರೆಕ್ಟರಿ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸುವುದೇ?"
+ "^2 ಸಂಗ್ರಹಣೆಯಲ್ಲಿನ ಪೋಟೋಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳು ಸೇರಿದಂತೆ ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಪ್ರವೇಶಿಸಲು ^1 ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅನುಮತಿಸುವುದೇ?"
+ "ಮತ್ತೆ ಕೇಳಬೇಡಿ"
"ಅನುಮತಿಸು"
"ನಿರಾಕರಿಸು"
+
+ - %1$d ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ
+ - %1$d ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ
+
+
+ - %1$d ಐಟಂಗಳು
+ - %1$d ಐಟಂಗಳು
+
+ "\"%1$s\" ಅಳಿಸುವುದೇ?"
+ "\"%1$s\" ಫೋಲ್ಡರ್ ಮತ್ತು ಅದರ ವಿಷಯಗಳನ್ನು ಅಳಿಸುವುದೇ?"
+
+ - %1$d ಫೈಲ್ಗಳನ್ನು ಅಳಿಸುವುದೇ?
+ - %1$d ಫೈಲ್ಗಳನ್ನು ಅಳಿಸುವುದೇ?
+
+
+ - %1$d ಫೋಲ್ಡರ್ಗಳು ಮತ್ತು ಅವುಗಳ ವಿಷಯಗಳನ್ನು ಅಳಿಸುವುದೇ?
+ - %1$d ಫೋಲ್ಡರ್ಗಳು ಮತ್ತು ಅವುಗಳ ವಿಷಯಗಳನ್ನು ಅಳಿಸುವುದೇ?
+
+
+ - %1$d ಐಟಂಗಳನ್ನು ಅಳಿಸುವುದೇ?
+ - %1$d ಐಟಂಗಳನ್ನು ಅಳಿಸುವುದೇ?
+
+ "ಕ್ಷಮಿಸಿ, ನೀವು ಒಂದೇ ಬಾರಿಗೆ 1000 ಐಟಂಗಳನ್ನು ಮಾತ್ರ ಆಯ್ಕೆ ಮಾಡಬಹುದು"
+ "1000 ಐಟಂಗಳನ್ನು ಮಾತ್ರ ಆಯ್ಕೆ ಮಾಡಬಹುದು"
diff --git a/packages/DocumentsUI/res/values-nl/strings.xml b/packages/DocumentsUI/res/values-nl/strings.xml
index b613da3dd0891..7bcd8539ad03d 100644
--- a/packages/DocumentsUI/res/values-nl/strings.xml
+++ b/packages/DocumentsUI/res/values-nl/strings.xml
@@ -16,8 +16,7 @@
- "Documenten"
- "Bestanden"
+ "Bestanden"
"Downloads"
"Openen vanuit"
"Opslaan in"
@@ -53,7 +52,7 @@
"Roots verbergen"
"Kan document niet opslaan"
"Kan map niet maken"
- "Kan geen query\'s voor documenten verzenden"
+ "Kan content momenteel niet laden"
"Recent"
"%1$s vrij"
"Opslagservices"
@@ -62,11 +61,12 @@
"Meer apps"
"Geen items"
"Geen overeenkomsten in %1$s"
- "Kan bestand niet openen"
+ "Kan bestand niet openen"
"Kan bepaalde documenten niet verwijderen"
"Delen via"
"Bestanden kopiëren"
"Bestanden verplaatsen"
+ "Bestanden verwijderen"
"%s resterend"
- %1$d bestanden kopiëren.
@@ -84,22 +84,23 @@
"Kopiëren voorbereiden…"
"Verplaatsen voorbereiden…"
"Verwijderen voorbereiden…"
-
+
- Kan %1$d bestanden niet kopiëren
- Kan %1$d bestand niet kopiëren
-
+
- Kan %1$d bestanden niet verplaatsen
- Kan %1$d bestand niet verplaatsen
-
+
- Kan %1$d bestanden niet verwijderen
- Kan %1$d bestand niet verwijderen
"Tik om details te bekijken"
"Sluiten"
- "Deze bestanden zijn niet gekopieerd: %1$s"
- "Deze bestanden zijn niet verplaatst: %1$s"
+ "Deze bestanden zijn niet gekopieerd: %1$s"
+ "Deze bestanden zijn niet verplaatst: %1$s"
+ "Deze bestanden zijn niet verwijderd: %1$s"
"Deze bestanden zijn geconverteerd vanuit een andere indeling: %1$s"
- %1$d bestanden gekopieerd naar klembord.
@@ -109,6 +110,34 @@
"Naam wijzigen"
"Kan naam van document niet wijzigen"
"Sommige bestanden zijn geconverteerd"
+ "^1 toegang verlenen tot de map ^2 op ^3?"
+ "^1 toegang verlenen tot de map ^2?"
+ "^1 toegang verlenen tot je gegevens, waaronder foto\'s en video\'s, op ^2?"
+ "Niet meer vragen"
"Toestaan"
"Weigeren"
+
+ - %1$d geselecteerd
+ - %1$d geselecteerd
+
+
+ - %1$d items
+ - %1$d item
+
+ "%1$s verwijderen?"
+ "Map %1$s en de bijbehorende content verwijderen?"
+
+ - %1$d bestanden verwijderen?
+ - %1$d bestand verwijderen?
+
+
+ - %1$d mappen en de bijbehorende content verwijderen?
+ - %1$d map en de bijbehorende content verwijderen?
+
+
+ - %1$d items verwijderen?
+ - %1$d item verwijderen?
+
+ "Je kunt maximaal 1000 items tegelijk selecteren"
+ "Kan maximaal 1000 items selecteren"
diff --git a/packages/DocumentsUI/res/values-sr/strings.xml b/packages/DocumentsUI/res/values-sr/strings.xml
index b43a8d3e51276..60e29b8dcb223 100644
--- a/packages/DocumentsUI/res/values-sr/strings.xml
+++ b/packages/DocumentsUI/res/values-sr/strings.xml
@@ -46,7 +46,7 @@
"Копирај"
"Премести"
"Одбаци"
- "Покушај поново"
+ "Пробај поново"
"Према имену"
"Према датуму измене"
"Према величини"
diff --git a/packages/DocumentsUI/res/values-sv/strings.xml b/packages/DocumentsUI/res/values-sv/strings.xml
index 2d1d924f9a8ab..4064385d5af5e 100644
--- a/packages/DocumentsUI/res/values-sv/strings.xml
+++ b/packages/DocumentsUI/res/values-sv/strings.xml
@@ -45,7 +45,7 @@
"Välj"
"Kopiera"
"Flytta"
- "Ta bort permanent"
+ "Avvisa"
"Försök igen"
"Efter namn"
"Efter ändringsdatum"
diff --git a/packages/DocumentsUI/res/values-tr/strings.xml b/packages/DocumentsUI/res/values-tr/strings.xml
index 500c37fe9edca..53f495f6ad97a 100644
--- a/packages/DocumentsUI/res/values-tr/strings.xml
+++ b/packages/DocumentsUI/res/values-tr/strings.xml
@@ -97,7 +97,7 @@
- %1$d dosya silinemedi
- %1$d dosya silinemedi
- "Ayrıntıları görmek için hafifçe dokunun"
+ "Ayrıntıları görmek için dokunun"
"Kapat"
"Şu dosyalar kopyalanmadı: %1$s"
"Şu dosyalar taşınmadı: %1$s"
diff --git a/packages/DocumentsUI/res/values-uz-rUZ/strings.xml b/packages/DocumentsUI/res/values-uz-rUZ/strings.xml
index 4a0aba2ebd847..a0ac3296678c5 100644
--- a/packages/DocumentsUI/res/values-uz-rUZ/strings.xml
+++ b/packages/DocumentsUI/res/values-uz-rUZ/strings.xml
@@ -16,23 +16,21 @@
- "Hujjatlar"
- "Fayllar"
- "Yuklanishlar"
+ "Fayllar"
+ "Yuklanmalar"
"Ochish"
"Saqlash"
"Yangi jild"
- "Katak ko‘rinishida"
+ "To‘r ko‘rinishida"
"Ro‘yxat ko‘rinishida"
"Saralash"
"Qidirish"
-
-
+ "Xotira sozlamalari"
"Ochish"
"Saqlash"
- "Ulashish"
+ "Baham ko‘rish"
"O‘chirish"
- "Barchasini belgilash"
+ "Hammasini belgilash"
"Nusxalash…"
"Ko‘chirib o‘tkazish…"
"Yangi oyna"
@@ -40,8 +38,8 @@
"Joylash"
"Ichki xotirani ko‘rsatish"
"Ichki xotirani berkitish"
- "Fayl hajmini ko‘rsatish"
- "Fayl hajmini berkitish"
+ "Fayllar hajmi ko‘rsatilsin"
+ "Fayllar hajmi ko‘rsatilmasin"
"Tanlash"
"Nusxalash"
"Ko‘chirib o‘tkazish"
@@ -54,7 +52,7 @@
"Asosiy jildlarni yashirish"
"Hujjat saqlanmadi"
"Jild yaratilmadi"
- "Hujjatlar so‘rovi jo‘natilmadi"
+ "Ayni paytda kontentni yuklab bo‘lmayapti"
"Yaqinda"
"%1$s bo‘sh"
"Xotira xizmatlari"
@@ -63,11 +61,12 @@
"Ko‘proq dasturlar"
"Hech narsa yo‘q"
"%1$s jildidan topilmadi"
- "Fayl ochilmadi"
+ "Fayl ochilmadi"
"Ba’zi hujjatlar o‘chirilmadi"
- "Quyidagi orqali ulashish"
+ "Baham ko‘rish"
"Fayllar nusxalanmoqda"
"Ko‘chirib o‘tkazilmoqda"
+ "Fayllar o‘chirilmoqda"
"%s qoldi"
- %1$d ta fayl nusxalanmoqda
@@ -85,22 +84,23 @@
"Nuxsa olishga tayyorgarlik..."
"Ko‘chirishga tayyorgarlik…"
"O‘chirishga tayyorlanmoqda…"
-
- - %1$d ta fayldan nusxa olinmadi
- - %1$d ta fayldan nusxa olinmadi
+
+ - %1$d ta fayldan nusxa olib bo‘lmadi
+ - %1$d ta fayldan nusxa olib bo‘lmadi
-
- - %1$d ta fayl ko‘chirib o‘tkazilmadi
- - %1$d ta fayl ko‘chirib o‘tkazilmadi
+
+ - %1$d ta faylni ko‘chirib bo‘lmadi
+ - %1$d ta faylni ko‘chirib bo‘lmadi
-
+
- %1$d ta faylni o‘chirib bo‘lmadi
- %1$d ta faylni o‘chirib bo‘lmadi
"Batafsil ma’lumot olish uchun bosing"
"Yopish"
- "Ushbu fayllardan nusxa olinmadi: %1$s"
- "Ushbu fayllar ko‘chirib o‘tkazilmadi: %1$s"
+ "Quyidagi fayllardan nusxa olinmadi: %1$s"
+ "Quyidagi fayllar ko‘chirilmadi: %1$s"
+ "Quyidagi fayllar o‘chirib tashlanmadi: %1$s"
"Ushbu fayllar boshqa formatga o‘girildi: %1$s"
- %1$d ta fayldan vaqtinchalik xotiraga nusxa olindi.
@@ -110,6 +110,34 @@
"Qayta nomlash"
"Hujjatni qayta nomlab bo‘lmadi"
"Bir nechta fayllar o‘girildi"
+ "^1 ilovasiga ^3 xotirasidagi “^2” jildidan foydalanishiga ruxsat berilsinmi?"
+ "^1 ilovasiga “^2” jildidan foydalanishiga ruxsat berilsinmi?"
+ "^1 ilovasiga ^2 xotirasidagi ma’lumotlardan, jumladan, rasmlar va videolardan foydalanishiga ruxsat berilsinmi?"
+ "Boshqa so‘ralmasin"
"Ruxsat berish"
- "Rad qilish"
+ "Rad etish"
+
+ - %1$d ta belgilandi
+ - %1$d ta belgilandi
+
+
+ - %1$d ta element
+ - %1$d ta element
+
+ "“%1$s” o‘chirib tashlansinmi?"
+ "“%1$s” jildi ichidagi kontentlari bilan o‘chirib tashlansinmi?"
+
+ - %1$d ta fayl o‘chirilsinmi?
+ - %1$d ta fayl o‘chirib tashlansinmi?
+
+
+ - %1$d ta jild ichidagi kontentlari bilan o‘chirib tashlansinmi?
+ - %1$d ta jild ichidagi kontentlari bilan o‘chirib tashlansinmi?
+
+
+ - %1$d ta element o‘chirib tashlansinmi?
+ - %1$d ta element o‘chirib tashlansinmi?
+
+ "Faqat 1000 tagacha obyektni tanlash mumkin"
+ "Faqat 1000 tagacha obyektni tanlash mumkin"
diff --git a/packages/ExternalStorageProvider/src/com/android/externalstorage/ExternalStorageProvider.java b/packages/ExternalStorageProvider/src/com/android/externalstorage/ExternalStorageProvider.java
index 3ef9b8e1b8c4e..10e5dcc916789 100644
--- a/packages/ExternalStorageProvider/src/com/android/externalstorage/ExternalStorageProvider.java
+++ b/packages/ExternalStorageProvider/src/com/android/externalstorage/ExternalStorageProvider.java
@@ -161,7 +161,8 @@ public class ExternalStorageProvider extends DocumentsProvider {
final VolumeInfo privateVol = mStorageManager.findPrivateForEmulated(volume);
title = mStorageManager.getBestVolumeDescription(privateVol);
}
- } else if (volume.getType() == VolumeInfo.TYPE_PUBLIC) {
+ } else if (volume.getType() == VolumeInfo.TYPE_PUBLIC
+ && volume.getMountUserId() == userId) {
rootId = volume.getFsUuid();
title = mStorageManager.getBestVolumeDescription(volume);
} else {
diff --git a/packages/Keyguard/res/values-b+sr+Latn/strings.xml b/packages/Keyguard/res/values-b+sr+Latn/strings.xml
index 0eb4210a49c3f..5c38a30105f75 100644
--- a/packages/Keyguard/res/values-b+sr+Latn/strings.xml
+++ b/packages/Keyguard/res/values-b+sr+Latn/strings.xml
@@ -61,7 +61,7 @@
"Pogrešan šablon"
"Pogrešna lozinka"
"Pogrešan PIN"
- "Pokušajte ponovo za %d sekunde(i)."
+ "Probajte ponovo za %d sekunde(i)."
"Nacrtajte šablon"
"Unesite PIN SIM kartice"
"Unesite PIN za SIM „%1$s“"
@@ -77,9 +77,9 @@
"Ponovo unesite ispravni PUK kôd. Ponovljeni pokušaji će trajno onemogućiti SIM."
"PIN kodovi se ne podudaraju"
"Previše pokušaja unosa šablona"
- "Uneli ste netačni PIN %1$d puta. \n\nPokušajte ponovo za %2$d sekunde(i)."
- "Uneli ste netačnu lozinku %1$d puta. \n\nPokušajte ponovo za %2$d sekunde(i)."
- "Nacrtali ste šablon za otključavanje netačno %1$d puta. \n\nPokušajte ponovo za %2$d sekunde(i)."
+ "Uneli ste netačni PIN %1$d puta. \n\nProbajte ponovo za %2$d sekunde(i)."
+ "Uneli ste netačnu lozinku %1$d puta. \n\nProbajte ponovo za %2$d sekunde(i)."
+ "Nacrtali ste šablon za otključavanje netačno %1$d puta. \n\nProbajte ponovo za %2$d sekunde(i)."
"Pogrešno ste pokušali da otključate tablet %1$d put(a). Imate još %2$d pokušaj(a), nakon čega se tablet resetuje i svi podaci sa njega brišu."
"Pogrešno ste pokušali da otključate telefon %1$d put(a). Imate još %2$d pokušaj(a), nakon čega se telefon resetuje i svi podaci sa njega brišu."
"Pogrešno ste pokušali da otključate tablet %d put(a). Tablet će biti resetovan i svi podaci sa njega će biti izbrisani."
@@ -92,8 +92,8 @@
"Pogrešno ste pokušali da otključate telefon %1$d put(a). Imate još %2$d pokušaj(a), nakon čega se poslovni profil uklanja i svi podaci sa profila brišu."
"Pogrešno ste pokušali da otključate tablet %d put(a). Poslovni profil će biti uklonjen i svi podaci sa njega će biti izbrisani."
"Pogrešno ste pokušali da otključate telefon %d put(a). Poslovni profil će biti uklonjen i svi podaci sa njega će biti izbrisani."
- "Nacrtali ste šablon za otključavanje netačno %1$d puta. Posle još %2$d neuspešna(ih) pokušaja, od vas će biti zatraženo da otključate tablet pomoću naloga e-pošte.\n\nPokušajte ponovo za %3$d sekunde(i)."
- "Nacrtali ste šablon za otključavanje netačno %1$d puta. Posle još %2$d neuspešna(ih) pokušaja, od vas će biti zatraženo da otključate telefon pomoću naloga e-pošte.\n\nPokušajte ponovo za %3$d sekunde(i)."
+ "Nacrtali ste šablon za otključavanje netačno %1$d puta. Posle još %2$d neuspešna(ih) pokušaja, od vas će biti zatraženo da otključate tablet pomoću naloga e-pošte.\n\nProbajte ponovo za %3$d sekunde(i)."
+ "Nacrtali ste šablon za otključavanje netačno %1$d puta. Posle još %2$d neuspešna(ih) pokušaja, od vas će biti zatraženo da otključate telefon pomoću naloga e-pošte.\n\nProbajte ponovo za %3$d sekunde(i)."
"Netačan SIM PIN kôd. Sada morate da kontaktirate mobilnog operatera da biste otključali uređaj."
- Netačan SIM PIN kôd. Imate još %d pokušaj.
diff --git a/packages/Keyguard/res/values-da/strings.xml b/packages/Keyguard/res/values-da/strings.xml
index 5ce1ef0f60338..42658de3aa729 100644
--- a/packages/Keyguard/res/values-da/strings.xml
+++ b/packages/Keyguard/res/values-da/strings.xml
@@ -131,5 +131,5 @@
- Enheden blev sidst låst op for %d timer siden. Bekræft adgangskoden.
- Enheden blev sidst låst op for %d timer siden. Bekræft adgangskoden.
- "Kan ikke genkendes"
+ "Ikke genkendt"
diff --git a/packages/Keyguard/res/values-sr/strings.xml b/packages/Keyguard/res/values-sr/strings.xml
index fa6bc096ecf53..c2389e4baec18 100644
--- a/packages/Keyguard/res/values-sr/strings.xml
+++ b/packages/Keyguard/res/values-sr/strings.xml
@@ -61,7 +61,7 @@
"Погрешан шаблон"
"Погрешна лозинка"
"Погрешан PIN"
- "Покушајте поново за %d секунде(и)."
+ "Пробајте поново за %d секунде(и)."
"Нацртајте шаблон"
"Унесите PIN SIM картице"
"Унесите PIN за SIM „%1$s“"
@@ -77,9 +77,9 @@
"Поново унесите исправни PUK кôд. Поновљени покушаји ће трајно онемогућити SIM."
"PIN кодови се не подударају"
"Превише покушаја уноса шаблона"
- "Унели сте нетачни PIN %1$d пута. \n\nПокушајте поново за %2$d секунде(и)."
- "Унели сте нетачну лозинку %1$d пута. \n\nПокушајте поново за %2$d секунде(и)."
- "Нацртали сте шаблон за откључавање нетачно %1$d пута. \n\nПокушајте поново за %2$d секунде(и)."
+ "Унели сте нетачни PIN %1$d пута. \n\nПробајте поново за %2$d секунде(и)."
+ "Унели сте нетачну лозинку %1$d пута. \n\nПробајте поново за %2$d секунде(и)."
+ "Нацртали сте шаблон за откључавање нетачно %1$d пута. \n\nПробајте поново за %2$d секунде(и)."
"Погрешно сте покушали да откључате таблет %1$d пут(а). Имате још %2$d покушај(а), након чега се таблет ресетује и сви подаци са њега бришу."
"Погрешно сте покушали да откључате телефон %1$d пут(а). Имате још %2$d покушај(а), након чега се телефон ресетује и сви подаци са њега бришу."
"Погрешно сте покушали да откључате таблет %d пут(а). Таблет ће бити ресетован и сви подаци са њега ће бити избрисани."
@@ -92,8 +92,8 @@
"Погрешно сте покушали да откључате телефон %1$d пут(а). Имате још %2$d покушај(а), након чега се пословни профил уклања и сви подаци са профила бришу."
"Погрешно сте покушали да откључате таблет %d пут(а). Пословни профил ће бити уклоњен и сви подаци са њега ће бити избрисани."
"Погрешно сте покушали да откључате телефон %d пут(а). Пословни профил ће бити уклоњен и сви подаци са њега ће бити избрисани."
- "Нацртали сте шаблон за откључавање нетачно %1$d пута. После још %2$d неуспешна(их) покушаја, од вас ће бити затражено да откључате таблет помоћу налога е-поште.\n\nПокушајте поново за %3$d секунде(и)."
- "Нацртали сте шаблон за откључавање нетачно %1$d пута. После још %2$d неуспешна(их) покушаја, од вас ће бити затражено да откључате телефон помоћу налога е-поште.\n\nПокушајте поново за %3$d секунде(и)."
+ "Нацртали сте шаблон за откључавање нетачно %1$d пута. После још %2$d неуспешна(их) покушаја, од вас ће бити затражено да откључате таблет помоћу налога е-поште.\n\nПробајте поново за %3$d секунде(и)."
+ "Нацртали сте шаблон за откључавање нетачно %1$d пута. После још %2$d неуспешна(их) покушаја, од вас ће бити затражено да откључате телефон помоћу налога е-поште.\n\nПробајте поново за %3$d секунде(и)."
"Нетачан SIM PIN кôд. Сада морате да контактирате мобилног оператера да бисте откључали уређај."
- Нетачан SIM PIN кôд. Имате још %d покушај.
diff --git a/packages/Keyguard/res/values-sv/strings.xml b/packages/Keyguard/res/values-sv/strings.xml
index 10b599129998b..731880608c833 100644
--- a/packages/Keyguard/res/values-sv/strings.xml
+++ b/packages/Keyguard/res/values-sv/strings.xml
@@ -34,7 +34,7 @@
"Laddas snabbt"
"Laddas långsamt"
"Anslut din laddare."
- "Tryck på Meny om du vill låsa upp."
+ "Tryck på Meny för att låsa upp."
"Nätverk låst"
"Inget SIM-kort"
"Inget SIM-kort i surfplattan."
diff --git a/packages/Keyguard/res/values-zh-rCN/strings.xml b/packages/Keyguard/res/values-zh-rCN/strings.xml
index 2c86a7ab0cd37..bfe8eb855ed44 100644
--- a/packages/Keyguard/res/values-zh-rCN/strings.xml
+++ b/packages/Keyguard/res/values-zh-rCN/strings.xml
@@ -36,7 +36,7 @@
"请连接充电器。"
"按“菜单”键解锁。"
"网络已锁定"
- "无 SIM 卡"
+ "没有 SIM 卡"
"平板电脑中没有SIM卡。"
"手机中没有SIM卡。"
"请插入SIM卡。"
diff --git a/packages/MtpDocumentsProvider/res/values-gl-rES/strings.xml b/packages/MtpDocumentsProvider/res/values-gl-rES/strings.xml
new file mode 100644
index 0000000000000..7e61c7cedff98
--- /dev/null
+++ b/packages/MtpDocumentsProvider/res/values-gl-rES/strings.xml
@@ -0,0 +1,25 @@
+
+
+
+
+ "Host MTP"
+ "Descargas"
+ "%2$s de %1$s"
+ "Accedendo aos ficheiros do dispositivo %1$s"
+ "O outro dispositivo está ocupado. Non podes transferir ficheiros ata que estea dispoñible."
+ "Non se atopou ningún ficheiro. Se o outro dispositivo está bloqueado, desbloquéao e téntao de novo."
+
diff --git a/packages/PrintSpooler/res/values-ar/strings.xml b/packages/PrintSpooler/res/values-ar/strings.xml
index eab1339a4d218..9751ca283b7d8 100644
--- a/packages/PrintSpooler/res/values-ar/strings.xml
+++ b/packages/PrintSpooler/res/values-ar/strings.xml
@@ -30,7 +30,7 @@
"اختر طابعة"
"جميع الصفحات وعددها %1$s"
"النطاق %1$s"
- "على سبيل المثال، 1—5،8،11—13"
+ "مثلاً، ١—٥،٨،١١—١٣"
"معاينة قبل الطباعة"
"تثبيت برنامج عرض PDF للمعاينة"
"تعطّل تطبيق الطباعة"
@@ -65,11 +65,26 @@
"%1$s - %2$s"
"مزيد من المعلومات حول هذه الطابعة"
- "بعض خدمات الطباعة معطَّلة."
- "اختر خدمة طباعة"
+ "تعذَّر إنشاء الملف"
+ "بعض خدمات الطباعة معطَّلة"
"البحث عن طابعات"
"لم يتم تمكين أي خدمات طباعة"
"لم يتم العثور على طابعات"
+ "تعذرت إضافة طابعات"
+ "اختر لإضافة طابعة"
+ "حدد للتمكين"
+ "الخدمات الممكنة"
+ "الخدمات الموصى بها"
+ "الخدمات المعطَّلة"
+ "جميع الخدمات"
+
+ - التثبيت لاستكشاف %1$s طابعات
+ - التثبيت لاستكشاف طابعتين (%1$s)
+ - التثبيت لاستكشاف %1$s طابعات
+ - التثبيت لاستكشاف %1$s طابعة
+ - التثبيت لاستكشاف %1$s طابعات
+ - التثبيت لاستكشاف %1$s طابعة
+
"جارٍ طباعة %1$s"
"جارٍ إلغاء %1$s"
"خطا في الطابعة %1$s"
@@ -78,7 +93,6 @@
"إعادة تشغيل"
"لا يوجد اتصال بالطابعة"
"غير معروف"
- "%1$s – غير متاحة"
"هل تريد استخدام %1$s؟"
"من الممكن أن يمر المستند عبر خادم أو أكثر أثناء إرساله إلى الطابعة."
@@ -98,5 +112,6 @@
"عذرًا، هذا لا يعمل. أعد المحاولة."
"إعادة المحاولة"
"الطابعة ليست متوفرة في الوقت الحالي."
+ "يتعذر عرض المعاينة."
"جارٍ تحضير المعاينة…"
diff --git a/packages/PrintSpooler/res/values-b+sr+Latn/strings.xml b/packages/PrintSpooler/res/values-b+sr+Latn/strings.xml
index b28aa29304c0b..40e3fb71552c4 100644
--- a/packages/PrintSpooler/res/values-b+sr+Latn/strings.xml
+++ b/packages/PrintSpooler/res/values-b+sr+Latn/strings.xml
@@ -92,8 +92,8 @@
- "Vodoravno"
"Upisivanje u datoteku nije moguće"
- "Žao nam je, ovo nije uspelo. Pokušajte ponovo."
- "Pokušajte ponovo"
+ "Žao nam je, ovo nije uspelo. Probajte ponovo."
+ "Probajte ponovo"
"Ovaj štampač trenutno nije dostupan."
"Priprema pregleda..."
diff --git a/packages/PrintSpooler/res/values-bs-rBA/strings.xml b/packages/PrintSpooler/res/values-bs-rBA/strings.xml
new file mode 100644
index 0000000000000..42b8f90b5ae57
--- /dev/null
+++ b/packages/PrintSpooler/res/values-bs-rBA/strings.xml
@@ -0,0 +1,111 @@
+
+
+
+
+ "Štampanje na čekanju"
+ "Više opcija"
+ "Odredište"
+ "Kopije"
+ "Primjeraka:"
+ "Veličina papira"
+ "Veličina papira:"
+ "U boji"
+ "Dvostrano"
+ "Orijentacija"
+ "Stranicā"
+ "Odaberite štampač"
+ "Sve stranice (%1$s)"
+ "Opseg od %1$s"
+ "npr. 1—5,8,11—13"
+ "Pregled prije štampanja"
+ "Instaliraj PDF pregledavač za prikaz"
+ "Aplikacija za štampanje je prestala raditi"
+ "Kreiranje zadatka za štampu"
+ "Sačuvaj kao PDF"
+ "Svi štampači…"
+ "Dijaloški okvir za štampanje"
+ "%1$d /%2$d"
+ "Strana %1$d od %2$d"
+ "Rezime, primjeraka %1$s, veličina papira %2$s"
+ "Regulator za proširivanje"
+ "Regulator za skupljanje"
+ "Štampaj"
+ "Sačuvaj u PDF"
+ "Opcije za štampanje su proširene"
+ "Opcije za štampanje su skupljene"
+ "Traži"
+ "Svi štampači"
+ "Dodaj uslugu"
+ "Okvir za pretraživanje je prikazan"
+ "Okvir za pretraživanje je skriven"
+ "Dodaj štampač"
+ "Izaberite štampač"
+ "Zaboravi ovaj štampač"
+
+ - %1$s štampač je pronađen
+ - %1$s štampača su pronađena
+ - %1$s štampača je pronađeno
+
+ "%1$s - %2$s"
+ "Više informacija o ovom štampaču"
+ "Nije uspjelo kreiranje fajla"
+ "Neke usluge za štampanje su isključene"
+ "Traženje štampača"
+ "Usluga za štampanje nije uključena"
+ "Nijedan štampač nije pronađen"
+ "Ne mogu se dodati štampači"
+ "Odaberite da biste dodali štampač"
+ "Odaberite da biste uključili"
+ "Uključene usluge"
+ "Preporučene usluge"
+ "Isključene usluge"
+ "Sve usluge"
+
+ - Instaliraj da pronađeš %1$s štampač
+ - Instaliraj da pronađeš %1$s štampača
+ - Instaliraj da pronađeš %1$s štampača
+
+ "Štampa se %1$s"
+ "Otkazivanje %1$s"
+ "Greška pri štampanju %1$s"
+ "Štampač je blokirao %1$s"
+ "Otkaži"
+ "Ponovo pokreni"
+ "Nema konekcije sa štampačem"
+ "nepoznat"
+ "Zaista želite koristiti uslugu %1$s?"
+ "Moguće je da dokument prije štampanja prođe kroz jedan ili više servera."
+
+ - "Crno-bijela"
+ - "U boji"
+
+
+ - "Nije podržano"
+ - "Po dužoj strani"
+ - "Po kraćoj strani"
+
+
+ - "Uspravno"
+ - "Vodoravno"
+
+ "Nije moguće pisati u fajl"
+ "Nažalost, nije uspjelo. Pokušajte ponovo."
+ "Ponovi"
+ "Štampač trenutno nije dostupan."
+ "Pregled se ne može prikazati"
+ "Priprema pregleda..."
+
diff --git a/packages/PrintSpooler/res/values-ja/strings.xml b/packages/PrintSpooler/res/values-ja/strings.xml
index e0fc79a9b26f2..0fd132c814bf1 100644
--- a/packages/PrintSpooler/res/values-ja/strings.xml
+++ b/packages/PrintSpooler/res/values-ja/strings.xml
@@ -29,7 +29,7 @@
"ページ"
"プリンタを選択"
"%1$sページすべて"
- "%1$sページ分"
+ "範囲選択(%1$sページ内)"
"例: 1-5,8,11-13"
"印刷プレビュー"
"プレビュー用PDFビューアをインストール"
diff --git a/packages/PrintSpooler/res/values-kn-rIN/strings.xml b/packages/PrintSpooler/res/values-kn-rIN/strings.xml
index fc5149a495cbe..487ac01281596 100644
--- a/packages/PrintSpooler/res/values-kn-rIN/strings.xml
+++ b/packages/PrintSpooler/res/values-kn-rIN/strings.xml
@@ -47,7 +47,7 @@
"PDF ಗೆ ಉಳಿಸು"
"ಪ್ರಿಂಟ್ ಆಯ್ಕೆಗಳನ್ನು ವಿಸ್ತರಿಸಲಾಗಿದೆ"
"ಪ್ರಿಂಟ್ ಆಯ್ಕೆಗಳನ್ನು ಮುಚ್ಚಲಾಗಿದೆ"
- "ಹುಡುಕು"
+ "ಹುಡುಕಿ"
"ಎಲ್ಲಾ ಪ್ರಿಂಟರ್ಗಳು"
"ಸೇವೆಯನ್ನು ಸೇರಿಸು"
"ಹುಡುಕಾಟ ಪೆಟ್ಟಿಗೆಯನ್ನು ತೋರಿಸಲಾಗಿದೆ"
@@ -61,20 +61,30 @@
"%1$s - %2$s"
"ಈ ಪ್ರಿಂಟರ್ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ಮಾಹಿತಿ"
- "ಕೆಲವು ಮುದ್ರಣ ಸೇವೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
- "ಮುದ್ರಣ ಸೇವೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ"
+ "ಫೈಲ್ ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"
+ "ಕೆಲವು ಮುದ್ರಣ ಸೇವೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
"ಪ್ರಿಂಟರ್ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ"
"ಯಾವುದೇ ಮುದ್ರಣ ಸೇವೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಲ್ಲ"
"ಯಾವುದೇ ಮುದ್ರಕಗಳು ಕಂಡುಬಂದಿಲ್ಲ"
+ "ಪ್ರಿಂಟರ್ಗಳನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ"
+ "ಪ್ರಿಂಟರ್ ಸೇರಿಸಲು ಆಯ್ಕೆಮಾಡಿ"
+ "ಸಕ್ರಿಯಗೊಳಿಸಲು ಆಯ್ಕೆಮಾಡಿ"
+ "ಸಕ್ರಿಯಗೊಳಿಸಲಾದ ಸೇವೆಗಳು"
+ "ಶಿಫಾರಸು ಮಾಡಲಾದ ಸೇವೆಗಳು"
+ "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾದ ಸೇವೆಗಳು"
+ "ಎಲ್ಲ ಸೇವೆಗಳು"
+
+ - %1$s ಪ್ರಿಂಟರ್ಗಳನ್ನು ಶೋಧಿಸಲು ಸ್ಥಾಪಿಸಿ
+ - %1$s ಪ್ರಿಂಟರ್ಗಳನ್ನು ಶೋಧಿಸಲು ಸ್ಥಾಪಿಸಿ
+
"%1$s ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ"
"%1$s ರದ್ದು ಮಾಡಲಾಗುತ್ತಿದೆ"
"ಮುದ್ರಕ ದೋಷ %1$s"
"ಮುದ್ರಕವು %1$s ನಿರ್ಬಂಧಿಸಿದೆ"
- "ರದ್ದುಮಾಡು"
+ "ರದ್ದುಮಾಡಿ"
"ಮರುಪ್ರಾರಂಭಿಸು"
"ಮುದ್ರಕಕ್ಕೆ ಸಂಪರ್ಕವಿಲ್ಲ"
- "ಅಜ್ಞಾತ"
- "%1$s – ಲಭ್ಯವಿಲ್ಲ"
+ "ಅಪರಿಚಿತ"
"%1$s ಬಳಸುವುದೇ?"
"ನಿಮ್ಮ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಿಂಟರ್ಗೆ ಹೋಗುವ ಸಂದರ್ಭದಲ್ಲಿ ಒಂದು ಅಥವಾ ಅದಕ್ಕಿಂತ ಹೆಚ್ಚು ಸರ್ವರ್ಗಳ ಮೂಲಕ ಹಾದು ಹೋಗಬಹುದು."
@@ -94,5 +104,6 @@
"ಕ್ಷಮಿಸಿ, ಅದು ಕೆಲಸ ಮಾಡುತ್ತಿಲ್ಲ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
"ಮರುಪ್ರಯತ್ನಿಸು"
"ಈ ಪ್ರಿಂಟರ್ ಸದ್ಯಕ್ಕೆ ಲಭ್ಯವಿಲ್ಲ."
+ "ಪೂರ್ವವೀಕ್ಷಣೆ ಪ್ರದರ್ಶಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ"
"ಪೂರ್ವವೀಕ್ಷಣೆ ತಯಾರಾಗುತ್ತಿದೆ…"
diff --git a/packages/PrintSpooler/res/values-sr/strings.xml b/packages/PrintSpooler/res/values-sr/strings.xml
index feb2940d7da8b..c9ca030e13489 100644
--- a/packages/PrintSpooler/res/values-sr/strings.xml
+++ b/packages/PrintSpooler/res/values-sr/strings.xml
@@ -92,8 +92,8 @@
- "Водоравно"
"Уписивање у датотеку није могуће"
- "Жао нам је, ово није успело. Покушајте поново."
- "Покушајте поново"
+ "Жао нам је, ово није успело. Пробајте поново."
+ "Пробајте поново"
"Овај штампач тренутно није доступан."
"Припрема прегледа..."
diff --git a/packages/PrintSpooler/res/values-zh-rCN/strings.xml b/packages/PrintSpooler/res/values-zh-rCN/strings.xml
index 42cf3b14bf479..d4e796339bc9a 100644
--- a/packages/PrintSpooler/res/values-zh-rCN/strings.xml
+++ b/packages/PrintSpooler/res/values-zh-rCN/strings.xml
@@ -60,12 +60,23 @@
- 找到 %1$s 台打印机
"%1$s - %2$s"
- "关于此打印机的更多信息"
- "部分打印服务已停用。"
- "选择打印服务"
+ "此打印机的详细信息"
+ "无法创建文件"
+ "部分打印服务已停用"
"正在搜索打印机"
"未启用任何打印服务"
"找不到打印机"
+ "无法添加打印机"
+ "选择即可添加打印机"
+ "选择即可启用"
+ "已启用的服务"
+ "推荐的服务"
+ "已停用的服务"
+ "所有服务"
+
+ - 安装即可找到 %1$s 台打印机
+ - 安装即可找到 %1$s 台打印机
+
"正在打印“%1$s”"
"正在取消打印“%1$s”"
"打印机在打印“%1$s”时出错"
@@ -74,7 +85,6 @@
"重新开始"
"未与打印机建立连接"
"未知"
- "%1$s - 无法使用"
"要使用%1$s吗?"
"您的文档可能会通过一个或多个服务器发送至打印机。"
@@ -94,5 +104,6 @@
"抱歉,操作失败。请重试。"
"重试"
"该打印机目前无法使用。"
+ "无法显示预览"
"即将显示预览…"
diff --git a/packages/SettingsProvider/res/values/defaults.xml b/packages/SettingsProvider/res/values/defaults.xml
index a536874b750b6..c459571616d81 100644
--- a/packages/SettingsProvider/res/values/defaults.xml
+++ b/packages/SettingsProvider/res/values/defaults.xml
@@ -220,4 +220,7 @@
false
+
+
+ false
diff --git a/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java b/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java
index d55bb4f44aa5f..07bcce67c87ec 100644
--- a/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java
+++ b/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java
@@ -2484,6 +2484,9 @@ class DatabaseHelper extends SQLiteOpenHelper {
loadStringSetting(stmt, Settings.Secure.ACCESSIBILITY_SCREEN_READER_URL,
R.string.def_accessibility_screen_reader_url);
+ loadBooleanSetting(stmt, Settings.Secure.ACCESSIBILITY_DISABLE_ANIMATIONS,
+ R.bool.def_accessibility_disable_animations);
+
if (SystemProperties.getBoolean("ro.lockscreen.disable.default", false) == true) {
loadSetting(stmt, Settings.System.LOCKSCREEN_DISABLED, "1");
} else {
diff --git a/packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java b/packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java
index e66e963c01794..fec33a270868d 100644
--- a/packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java
+++ b/packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java
@@ -2102,7 +2102,7 @@ public class SettingsProvider extends ContentProvider {
}
private final class UpgradeController {
- private static final int SETTINGS_VERSION = 131;
+ private static final int SETTINGS_VERSION = 132;
private final int mUserId;
@@ -2417,6 +2417,21 @@ public class SettingsProvider extends ContentProvider {
}
if (currentVersion == 130) {
+ // Split Ambient settings
+ final SettingsState secureSettings = getSecureSettingsLocked(userId);
+ boolean dozeExplicitlyDisabled = "0".equals(secureSettings.
+ getSettingLocked(Settings.Secure.DOZE_ENABLED).getValue());
+
+ if (dozeExplicitlyDisabled) {
+ secureSettings.insertSettingLocked(Settings.Secure.DOZE_PULSE_ON_PICK_UP,
+ "0", SettingsState.SYSTEM_PACKAGE_NAME);
+ secureSettings.insertSettingLocked(Settings.Secure.DOZE_PULSE_ON_DOUBLE_TAP,
+ "0", SettingsState.SYSTEM_PACKAGE_NAME);
+ }
+ currentVersion = 131;
+ }
+
+ if (currentVersion == 131) {
// Initialize new multi-press timeout to default value
final SettingsState systemSecureSettings = getSecureSettingsLocked(userId);
final String oldValue = systemSecureSettings.getSettingLocked(
@@ -2429,7 +2444,7 @@ public class SettingsProvider extends ContentProvider {
SettingsState.SYSTEM_PACKAGE_NAME);
}
- currentVersion = 131;
+ currentVersion = 132;
}
if (currentVersion != newVersion) {
diff --git a/packages/Shell/res/values-tr/strings.xml b/packages/Shell/res/values-tr/strings.xml
index 3f562d7d94162..69d526a04a1f6 100644
--- a/packages/Shell/res/values-tr/strings.xml
+++ b/packages/Shell/res/values-tr/strings.xml
@@ -17,23 +17,27 @@
"Kabuk"
- "Hata raporu oluşturuluyor"
- "Hata raporu kaydedildi"
+ "Hata raporu (#%d) oluşturuluyor"
+ "Hata raporu (#%d) yakalandı"
"Hata raporuna ayrıntılar ekleniyor"
"Lütfen bekleyin…"
- "Hata raporunuzu paylaşmak için hızlıca sola kaydırın"
- "Hata raporunuzu paylaşmak için dokunun"
- "Hata raporları, kişisel ve özel bilgiler dahil olmak üzere sistemin çeşitli günlük dosyalarından veriler içerir. Hata raporlarını sadece güvendiğiniz uygulamalar ve kişilerle paylaşın."
- "Bir dahaki sefere bu iletiyi göster"
+ "Hata raporu kısa süre içinde telefonda görüntülenecektir"
+ "Hata raporunuzu paylaşmak için dokunun"
+ "Hata raporunu ekran görüntüsüz paylaşmak için dokunun veya bitirmek için ekran görüntüsünü bekleyin"
+ "Hata raporunu ekran görüntüsüz paylaşmak için dokunun veya bitirmek için ekran görüntüsünü bekleyin"
+ "Hata raporları, sistemin çeşitli günlük dosyalarından veriler içerir. Bu günlükler, hassas olarak kabul ettiğiniz verileri (uygulama kullanımı ve konum verileri gibi) içerebilir. Hata raporlarını yalnızca güvendiğiniz kişiler ve uygulamalarla paylaşın."
+ "Bir daha gösterme"
"Hata raporları"
"Hata raporu dosyası okunamadı"
+ "Hata raporu ayrıntıları zip dosyasına eklenemedi"
"adsız"
"Ayrıntılar"
"Ekran görüntüsü"
- "Ekran görüntüsü başarıyla alındı."
+ "Ekran görüntüsü başarıyla alındı."
"Ekran görüntüsü alınamadı."
- "Hata raporu ayrıntıları"
+ "Hata raporu (#%d) ayrıntıları"
"Dosya adı"
- "Başlık"
- "Ayrıntılı açıklama"
+ "Hata başlığı"
+ "Hata özeti"
+ "Kaydet"
diff --git a/packages/SystemUI/res/values-bn-rBD/strings.xml b/packages/SystemUI/res/values-bn-rBD/strings.xml
index 3ece957f18866..f3a007e9f7680 100644
--- a/packages/SystemUI/res/values-bn-rBD/strings.xml
+++ b/packages/SystemUI/res/values-bn-rBD/strings.xml
@@ -43,16 +43,16 @@
"চালু করুন"
"ব্যাটারি সঞ্চয়কারী চালু"
"সেটিংস"
- "Wi-Fi"
+ "ওয়াই-ফাই"
"স্বতঃ-ঘূর্ণায়মান স্ক্রীণ"
"নিঃশব্দ করুন"
"স্বতঃ"
"বিজ্ঞপ্তিগুলি"
- "Bluetooth টিথার করা হয়েছে"
+ "ব্লুটুথ টিথার করা হয়েছে"
"ইনপুট পদ্ধতিগুলি সেট আপ করুন"
"ফিজিক্যাল কীবোর্ড"
- "এই %1$s অ্যাপ্লিকেশানটিকে কি USB ডিভাইস অ্যাক্সেস করা মঞ্জুরি দেবেন?"
- "এই %1$s অ্যাপ্লিকেশানটিকে কি USB যন্ত্রাংশ অ্যাক্সেস করার মঞ্জুরি দেবেন?"
+ "এই %1$s অ্যাপ্লিকেশানটিকে কি USB ডিভাইস অ্যাক্সেস করা অনুমতি দেবেন?"
+ "এই %1$s অ্যাপ্লিকেশানটিকে কি USB যন্ত্রাংশ অ্যাক্সেস করার অনুমতি দেবেন?"
"যখন এই USB ডিভাইসটি সংযুক্ত থাকে তখন কি %1$s খুলবেন?"
"যখন এই USB যন্ত্রাংশটি সংযুক্ত থাকে তখন কি %1$s খুলবেন?"
"ইনস্টল থাকা কোনো অ্যাপ্লিকেশান এই USB যন্ত্রাংশের সাথে কাজ করে না৷ %1$s এ এই যন্ত্রাংশের সম্পর্কে আরো জানুন৷"
@@ -64,16 +64,18 @@
"কম্পিউটারের RSA কী আঙ্গুলের ছাপ হল:\n%1$s"
"এই কম্পিউটার থেকে সর্বদা অনুমতি দিন"
"USB ডিবাগিং অনুমোদিত নয়"
- "ব্যবহারকারী বর্তমানে এই ডিভাইসটিতে সাইন ইন করেছেন তাই USB ডিবাগিং চালু করা যাবে না। এই বৈশিষ্ট্যটি ব্যবহার করতে, অনুগ্রহ করে প্রশাসক ব্যবহারকারীতে পাল্টান।"
+ "ব্যবহারকারী বর্তমানে এই ডিভাইসটিতে প্রবেশ করুন করেছেন তাই USB ডিবাগিং চালু করা যাবে না। এই বৈশিষ্ট্যটি ব্যবহার করতে, অনুগ্রহ করে প্রশাসক ব্যবহারকারীতে পাল্টান।"
"স্ক্রীণ পূরণ করতে জুম করুন"
"পূর্ণ স্ক্রীণে প্রসারিত করুন"
"স্ক্রীনশট সংরক্ষণ করা হচ্ছে..."
"স্ক্রীনশট সংরক্ষণ করা হচ্ছে..."
"স্ক্রীনশট সংরক্ষণ করা হচ্ছে৷"
"স্ক্রীনশট নেওয়া হযেছে৷"
- "আপনার স্ক্রীনশট দেখতে স্পর্শ করুন৷"
+ "আপনার স্ক্রিনশট দেখতে আলতো চাপ দিন৷"
"স্ক্রীনশট নেওয়া যায়নি৷"
- "সঞ্চয়স্থান সীমিত হওয়ার ফলে স্ক্রীনশট নেওয়া যাবে না, অথবা এটি অ্যাপ্লিকেশানটি অথবা আপনার প্রতিষ্ঠানের দ্বারা অনুমোদিত নয়৷"
+ "স্ক্রীনশট সংরক্ষণের সময়ে সমস্যা হয়েছে৷"
+ "সঞ্চয়স্থান সীমিত থাকায় স্ক্রীনশটটি সংরক্ষণ করা যাবে না৷"
+ "অ্যাপ্লিকেশান বা আপনার প্রতিষ্ঠান স্ক্রীনশটগুলি নেওয়া অনুমতি দেয়নি৷"
"USB ফাইল স্থানান্তরের বিকল্পগুলি"
"একটি মিডিয়া প্লেয়ার হিসাবে মাউন্ট করুন (MTP)"
"একটি ক্যামেরা হিসাবে মাউন্ট করুন (PTP)"
@@ -97,8 +99,8 @@
"বাতিল করুন"
"সামঞ্জস্যের জুম বোতাম৷"
"ছোট থেকে বৃহৎ স্ক্রীণে জুম করুন৷"
- "Bluetooth সংযুক্ত হয়েছে৷"
- "Bluetooth সংযোগ বিচ্ছিন্ন হয়েছে৷"
+ "ব্লুটুথ সংযুক্ত হয়েছে৷"
+ "ব্লুটুথ সংযোগ বিচ্ছিন্ন হয়েছে৷"
"কোনো ব্যাটারি নেই৷"
"এক দন্ড ব্যাটারি রয়েছে৷"
"দুই দন্ড ব্যাটারি রয়েছে৷"
@@ -116,6 +118,7 @@
"পূর্ণ ডেটার সংকেত রয়েছে৷"
"%s এর সাথে সংযুক্ত।"
"%sএ সংযুক্ত হয়ে আছে।"
+ "%s এর সাথে সংযুক্ত৷"
"WiMAX অনুপলব্ধ৷"
"WiMAX এ একটি দণ্ড৷"
"WiMAX এ দুইটি দণ্ড৷"
@@ -140,18 +143,24 @@
"3G"
"3.5G"
"4G"
+ "4G+"
"LTE"
+ "LTE+"
"CDMA"
"রোমিং"
"Edge"
- "Wi-Fi"
+ "ওয়াই-ফাই"
"কোনো সিম নেই৷"
+ "সেলুলার ডেটা"
+ "সেলুলার ডেটা চালু রয়েছে"
"সেলুলার ডেটা বন্ধ আছে"
- "Bluetooth টিথারিং৷"
+ "ব্লুটুথ টিথারিং৷"
"বিমান মোড৷"
"কোনো SIM কার্ড নেই।"
"পরিষেবা প্রদানকারীর নেটওয়ার্ক পরিবর্তিত হচ্ছে।"
+ "ব্যাটারির বিশদ বিবরণ খুলুন"
"%d শতাংশ ব্যাটারি রয়েছে৷"
+ "ব্যাটারি চার্জ হচ্ছে, %d শতাংশ৷"
"সিস্টেম সেটিংস৷"
"বিজ্ঞপ্তিগুলি৷"
"বিজ্ঞপ্তি সাফ করুন৷"
@@ -166,6 +175,7 @@
"%s খারিজ করুন।"
"%s খারিজ করা হয়েছে৷"
"সমস্ত সাম্প্রতিক অ্যাপ্লিকেশন খারিজ করা হয়েছে।"
+ "%s অ্যাপ্লিকেশানের তথ্য খুলবে৷"
"%s তারাঙ্কিত করা হচ্ছে।"
"%1$s %2$s"
"বিজ্ঞপ্তি খারিজ করা হয়েছে৷"
@@ -188,15 +198,17 @@
"“বিরক্ত করবেন না” চালু করবেন, শুধুমাত্র অগ্রাধিকার৷"
"“বিরক্ত করবেন না” চালু করবেন, একদম নিরব"
"“বিরক্ত করবেন না” চালু করবেন, শুধুমাত্র অ্যালার্মগুলি৷"
+ "বিরক্ত করবেন না৷"
"“বিরক্ত করবেন না” বন্ধ৷"
"বিরক্ত করবেন না বন্ধ রয়েছে৷"
"বিরক্ত করবেন না চালু রয়েছে৷"
- "Bluetooth বন্ধ আছে।"
- "Bluetooth চালু আছে।"
- "Bluetooth সংযুক্ত হচ্ছে।"
- "Bluetooth সংযুক্ত হয়েছে৷"
- "Bluetooth বন্ধ হয়েছে।"
- "Bluetooth চালু হয়েছে।"
+ "ব্লুটুথ"
+ "ব্লুটুথ বন্ধ আছে।"
+ "ব্লুটুথ চালু আছে।"
+ "ব্লুটুথ সংযুক্ত হচ্ছে।"
+ "ব্লুটুথ সংযুক্ত হয়েছে৷"
+ "ব্লুটুথ বন্ধ হয়েছে।"
+ "ব্লুটুথ চালু হয়েছে।"
"অবস্থানের প্রতিবেদন বন্ধ আছে।"
"অবস্থানের প্রতিবেদন চালু আছে।"
"অবস্থানের প্রতিবেদন বন্ধ হয়েছে।"
@@ -206,6 +218,7 @@
"বেশি সময়।"
"কম সময়।"
"ফ্ল্যাশলাইট বন্ধ আছে।"
+ "ফ্ল্যাশলাইট অনুপলব্ধ৷"
"ফ্ল্যাশলাইট চালু আছে।"
"ফ্ল্যাশলাইট বন্ধ হয়েছে।"
"ফ্ল্যাশলাইট চালু হয়েছে।"
@@ -218,19 +231,26 @@
"কাজের মোড চালু আছে"
"কাজের মোড বন্ধ আছে।"
"কাজের মোড চালু আছে"
+ "ডেটা সেভার বন্ধ আছে।"
+ "ডেটা সেভার চালু আছে।"
"প্রদর্শনের উজ্জ্বলতা"
"2G-3G ডেটা বিরতি দেওয়া হয়েছে"
"4G ডেটা বিরতি দেওয়া হয়েছে"
"সেলুলার ডেটা বিরতি দেওয়া হয়েছে"
"ডেট বিরতি দেওয়া হয়েছে"
- "আপনার সেট ডেটার সীমা অবধি পৌঁছনোর কারনে ডিভাইস এই চক্রের অবশিষ্টাংশের জন্য ডেটা ব্যবহারে বিরতি দেওয়া হয়েছে৷ \n\nপুনরায় চালু করা হলে পরিষেবা প্রদানকারীর দ্বারা চার্জের করা হতে পারে৷"
+ "আপনার সেটা করা ডেটা সীমা ছাড়িয়ে গেছে৷ আপনি আর সেলুলার ডেটা ব্যবহার করতে পারবেন না৷\n\nআপনি যদি আবার ব্যবহার করতে শুরু করেন তাহলে ডেটা ব্যবহারের জন্য চার্জ লাগতে পারে৷"
"পুনঃসূচনা করুন"
"কোনো ইন্টারনেট সংযোগ নেই"
- "Wi-Fi সংযুক্ত হয়েছে"
+ "ওয়াই-ফাই সংযুক্ত হয়েছে"
"GPS এর জন্য অনুসন্ধান করা হচ্ছে"
"GPS এর দ্বারা সেট করা অবস্থান"
"অবস্থান অনুরোধ সক্রিয় রয়েছে"
"সমস্ত বিজ্ঞপ্তি সাফ করুন৷"
+ "+ %sটি"
+
+ - ভিতরে আরও %sটি বিজ্ঞপ্তি আছে।
+ - ভিতরে আরও %sটি বিজ্ঞপ্তি আছে।
+
"বিজ্ঞপ্তির সেটিংস"
"%s সেটিংস"
"স্ক্রীন স্বয়ংক্রিয়ভাবে ঘুরে যাবে৷"
@@ -240,18 +260,20 @@
"এখন ভূদৃশ্য সজ্জাতে স্ক্রীন লক হয়েছে।"
"এখন প্রতিকৃতি সজ্জাতে স্ক্রীন লক হয়েছে।"
"ডেজার্ট কেস"
- "স্ক্রিনসেভার"
+ "স্ক্রীন সেভার"
"ইথারনেট"
"বিরক্ত করবেন না"
"শুধুমাত্র অগ্রাধিকার"
"শুধুমাত্র অ্যালার্মগুলি"
"একদম নিরব"
- "Bluetooth"
- "Bluetooth (%d টি ডিভাইস)"
- "Bluetooth বন্ধ"
+ "ব্লুটুথ"
+ "ব্লুটুথ (%d টি ডিভাইস)"
+ "ব্লুটুথ বন্ধ"
"যুক্ত করা কোন ডিভাইস উপলব্ধ নয়"
"উজ্জ্বলতা"
"স্বতঃ ঘূর্ণায়মান"
+ "স্বতঃ-ঘূর্ণায়মান স্ক্রীন"
+ "%s এ সেট করুন"
"ঘূর্ণন লক করা হয়েছে"
"প্রতিকৃতি"
"ভূদৃশ্য"
@@ -266,11 +288,12 @@
"আমাকে"
"ব্যবহারকারী"
"নতুন ব্যবহারকারী"
- "Wi-Fi"
+ "ওয়াই-ফাই"
"সংযুক্ত নয়"
"কোনো নেটওয়ার্ক নেই"
- "Wi-Fi বন্ধ"
- "কোনো Wi-Fi নেটওয়ার্ক উপলব্ধ নেই"
+ "ওয়াই-ফাই বন্ধ"
+ "ওয়াই-ফাই চালু আছে"
+ "কোনো ওয়াই-ফাই নেটওয়ার্ক উপলব্ধ নেই"
"কাস্ট করুন"
"কাস্ট করা হচ্ছে"
"নামবিহীন ডিভাইস"
@@ -296,16 +319,24 @@
"সীমা %s"
"%s সতর্কতা"
"কাজের মোড"
- "আপনার সাম্প্রতিক স্ক্রীনগুলো এখানে দেখা যাবে"
+ "নাইট লাইট"
+ "নাইট লাইট চালু আছে, বন্ধ করতে আলতো চাপুন"
+ "নাইট লাইট বন্ধ আছে, চালু করতে আলতো চাপুন"
+ "কোনো সাম্প্রতিক আইটেম নেই"
+ "আপনি সবকিছু সাফ করেছেন"
"অ্যাপ্লিকেশানের তথ্য"
"স্ক্রীন পিন করা"
"অনুসন্ধান"
"%s শুরু করা যায়নি৷"
- "ইতিহাস"
- "সাফ করুন"
+ "নিরাপদ মোডে %s অক্ষম করা হয়েছে৷"
+ "সবকিছু সাফ করুন"
+ "অ্যাপ্লিকেশান বিভক্ত-স্ক্রীন সমর্থন করে না"
+ "বিভক্ত স্ক্রীন ব্যবহার করতে এখানে টেনে আনুন"
"অনুভূমিক স্প্লিট"
"উল্লম্ব স্প্লিট"
"কাস্টম স্প্লিট করুন"
+
+
"চার্জ হয়েছে"
"চার্জ হচ্ছে"
"পূর্ণ হতে %s সময় লাগবে"
@@ -320,7 +351,7 @@
"এটি অ্যালার্ম, সংগীত, ভিডিও এবং গেমগুলি থেকে আসা সমস্ত রকমের ধ্বনি এবং কম্পনগুলিকে বন্ধ করে৷"
"+%d"
"নিচে অপেক্ষাকৃত কম জরুরী বিজ্ঞপ্তিগুলি"
- "খোলার জন্য আবার স্পর্শ করুন"
+ "খোলার জন্য আবার আলতো চাপুন"
"আনলক করতে উপরের দিকে সোয়াইপ করুন"
"ফোনের জন্য আইকন থেকে সোয়াইপ করুন"
"ভয়েস সহায়তার জন্য আইকন থেকে সোয়াইপ করুন"
@@ -332,8 +363,6 @@
"একদম\nনিরব"
"শুধুমাত্র\nঅগ্রাধিকার"
"শুধুমাত্র\nঅ্যালার্মগুলি"
- "সমস্ত"
- "সমস্ত\n"
"চার্জ হচ্ছে (পূর্ণ হতে %s সময় বাকি)"
"দ্রুত চার্জ হচ্ছে (পূর্ণ হতে %s সময় বাকি)"
"ধীরে ধীরে চার্জ হচ্ছে (পূর্ণ হতে %s সময় বাকি)"
@@ -375,6 +404,7 @@
"ডিভাইসটি নিরীক্ষণ করা হতে পারে"
"প্রোফাইল পর্যবেক্ষণ করা হতে পারে"
"নেটওয়ার্ক নিরীক্ষণ করা হতে পারে"
+ "নেটওয়ার্ক নিরীক্ষণ করা হতে পারে"
"ডিভাইস নিরীক্ষণ"
"প্রোফাইল দেখরেখ করা"
"নেটওয়ার্ক নিরীক্ষণ"
@@ -387,6 +417,7 @@
"VPN"
"আপনি %1$s -এ সংযুক্ত হয়েছেন, যা ইমেল, অ্যাপ্লিকেশান এবং ওয়েবসাইটগুলি সমেত আপনার নেটওয়ার্ক কার্যকলাপ নিরীক্ষণ করতে পারে৷"
"আপনি %1$s -এ সংযুক্ত হয়েছেন, যা ইমেল, অ্যাপ্লিকেশান এবং ওয়েবসাইটগুলি সমেত আপনার ব্যক্তিগত নেটওয়ার্ক কার্যকলাপ নিরীক্ষণ করতে পারে৷"
+ "আপনি %1$s এর সাথে সংযুক্ত হয়েছেন, যা ইমেল, অ্যাপ এবং ওয়েবসাইটগুলি সহ আপনার ব্যক্তিগত নেটওয়ার্কের কার্যকলাপ নিরীক্ষণ করবে৷"
"%1$s আপনার কাজের প্রোফাইল পরিচালনা করে৷ এটি %2$s -এ সংযুক্ত রয়েছে যা আপনার ইমেল, অ্যাপ্লিকেশান ও ওয়েবসাইটগুলি সহ আপনার কাজের নেটওয়ার্কের কার্যকলাপ নিরীক্ষণ করতে পারে৷\n\nআরো তথ্যের জন্য, আপনার প্রশাসকের সাথে যোগাযোগ করুন৷"
"%1$s আপনার কাজের প্রোফাইল পরিচালনা করে৷ এটি %2$s -এ সংযুক্ত রয়েছে যা আপনার ইমেল, অ্যাপ্লিকেশান ও ওয়েবসাইটগুলি সহ আপনার কাজের নেটওয়ার্কের কার্যকলাপ নিরীক্ষণ করতে পারে৷\n\nএছাড়াও আপনি %3$s এর সাথে সংযুক্ত রয়েছেন যা আপনার ব্যক্তিগত নেটওয়ার্কের কার্যকলাপ নিরীক্ষণ করতে পারে৷"
"%1$s আপনার ডিভাইস পরিচালনা করে৷\n\nআপনার প্রশাসক আপনার ডিভাইসের সাথে সম্পর্কিত সেটিংস, কর্পোরেট অ্যাক্সেস, অ্যাপ্লিকেশান ডেটা এবং ডিভাইসের অবস্থান সম্পর্কিত তথ্য নিরীক্ষণ ও পরিচালনা করতে পারেন৷\n\nআপনি %2$s এর সাথে সংযুক্ত রয়েছেন যা ইমেল, অ্যাপ্লিকেশান ও ওয়েবসাইটগুলি সহ আপনার নেটওয়ার্কের কার্যকলাপ নিরীক্ষণ করতে পারে৷\n\nআরো তথ্যের জন্য, আপনার প্রশাসকের সাথে যোগাযোগ করুন৷"
@@ -400,19 +431,35 @@
"প্রসারিত করুন"
"সঙ্কুচিত করুন"
"স্ক্রীন পিন করা হয়েছে"
- "এটি আপনি আনপিন না করা পর্যন্ত এটিকে প্রদর্শিত করবে৷ আনপিন করতে \'ফিরুন\' এ স্পর্শ করে ধরে রাখুন৷"
+ "এটি আপনি আনপিন না করা পর্যন্ত এটিকে প্রদর্শিত করবে৷ আনপিন করতে \'ফিরুন\' এ স্পর্শ করে ধরে রাখুন৷"
"বুঝেছি"
"না থাক"
"%1$s লুকাবেন?"
"আপনি পরের বার সেটিংস-এ এটি চালু করলে এটি উপস্থিত হবে"
"লুকান"
"%1$s ভলিউম ডায়লগ হতে চায়৷"
- "মঞ্জুরি দিন"
+ "অনুমতি দিন"
"প্রত্যাখ্যান করুন"
"%1$s হল ভলিউম ডায়লগ"
- "আসলটি পুনঃস্থাপন করতে স্পর্শ করুন৷"
- ", "
+ "আসলটি পুনঃস্থাপন করতে আলতো চাপ দিন৷"
"আপনি আপনার কাজের প্রোফাইল ব্যবহার করছেন"
+
+ - "কল করুন"
+ - "সিস্টেম"
+ - "রিং"
+ - "মিডিয়া"
+ - "অ্যালার্ম"
+
+ - "ব্লুটুথ"
+
+
+
+
+ "%1$s। সশব্দ করতে আলতো চাপুন।"
+ "%1$s। কম্পন এ সেট করতে আলতো চাপুন। অ্যাক্সেসযোগ্যতার পরিষেবাগুলিকে নিঃশব্দ করা হতে পারে।"
+ "%1$s। নিঃশব্দ করতে আলতো চাপুন। অ্যাক্সেসযোগ্যতার পরিষেবাগুলিকে নিঃশব্দ করা হতে পারে।"
+ "%s ভলিউম নিয়ন্ত্রণগুলি দেখানো হয়েছে৷ খারিজ করতে উপরের দিকে সোয়াইপ করুন৷"
+ "ভলিউম নিয়ন্ত্রণগুলি লুকানো রয়েছে"
"সিস্টেম UI টিউনার"
"এম্বেড করা ব্যাটারির শতকরা হার দেখায়"
"যখন চার্জ করা হবে না তখন স্থিতি দন্ডের আইকনের ভিতরে ব্যাটারি স্তরের শতকার হার দেখায়"
@@ -448,57 +495,94 @@
"দ্রুত সেটিংসে পুনরায় সাজান"
"দ্রুত সেটিংসে উজ্জ্বলতা দেখান"
"পরীক্ষামূলক"
- "Bluetooth চালু করবেন?"
- "আপনার ট্যাবলেটের সাথে আপনার কীবোর্ড সংযুক্ত করতে, আপনাকে প্রথমে Bluetooth চালু করতে হবে।"
+ "ব্লুটুথ চালু করবেন?"
+ "আপনার ট্যাবলেটের সাথে আপনার কীবোর্ড সংযুক্ত করতে, আপনাকে প্রথমে ব্লুটুথ চালু করতে হবে।"
"চালু করুন"
- "%1$s বিজ্ঞপ্তিগুলিতে প্রয়োগ করুন"
- "এই অ্যাপ্লিকেশনের থেকে সব বিজ্ঞপ্তিতে প্রয়োগ করুন"
- "অবরুদ্ধ"
- "কম গুরুত্ব"
- "সাধারণ গুরুত্ব"
- "বেশি গুরুত্ব"
- "জরুরি গুরুত্ব"
- "এই বিজ্ঞপ্তিগুলি কখনোই দেখানো হবে না"
- "বিজ্ঞপ্তি তালিকার নীচের অংশে নিঃশব্দে দেখানো হয়"
- "নিঃশব্দে এই বিজ্ঞপ্তিগুলি দেখানো হয়"
- "বিজ্ঞপ্তি তালিকার শীর্ষে দেখানো হয় এবং শব্দ করে"
- "স্ক্রীনের উপরে দেখানো হয় এবং শব্দ করে"
+ "নীরবভাবে বিজ্ঞপ্তিগুলি দেখায়"
+ "সমস্ত বিজ্ঞপ্তি অবরুদ্ধ করুন"
+ "নীরব করবেন না"
+ "নীরব বা অবরুদ্ধ করবেন না"
+ "পাওয়ার বিজ্ঞপ্তির নিয়ন্ত্রণগুলি"
+ "চালু আছে"
+ "বন্ধ আছে"
+ "পাওয়ার বিজ্ঞপ্তির নিয়ন্ত্রণগুলি ব্যহবার করে, আপনি কোনো অ্যাপ্লিকেশানের বিজ্ঞপ্তির জন্য ০ থেকে ৫ পর্যন্ত একটি গুরুত্বের লেভেলকে সেট করতে পারবেন৷ \n\n""লেভেল ৫"" \n- বিজ্ঞপ্তি তালিকার শীর্ষে দেখায় \n- পূর্ণ স্ক্রীনের বাধাকে অনুমতি দেয় \n- সর্বদা স্ক্রীনে উপস্থিত হয় \n\n""লেভেল ৪"" \n- পূর্ণ স্ক্রীনের বাধাকে আটকায় \n- সর্বদা স্ক্রীনে উপস্থিত হয় \n\n""লেভেল ৩"" \n- পূর্ণ স্ক্রীনের বাধাকে আটকায় \n- কখনই স্ক্রীনে উপস্থিত হয় না \n\n""লেভেল ২"" \n- পূর্ণ স্ক্রীনের বাধাকে আটকায় \n- কখনই স্ক্রীনে উপস্থিত হয় না \n- কখনই শব্দ এবং কম্পন করে না \n\n""লেভেল ১"" \n- পূর্ণ স্ক্রীনের বাধাকে আটকায় \n- কখনই স্ক্রীনে উপস্থিত হয় না \n- কখনই শব্দ এবং কম্পন করে না \n- লক স্ক্রীন এবং স্থিতি দন্ড থেকে লুকায় \n- বিজ্ঞপ্তি তালিকার নীচের দিকে দেখায় \n\n""লেভেল ০"" \n- অ্যাপ্লিকেশান থেকে সমস্ত বিজ্ঞপ্তিকে অবরূদ্ধ করে"
+ "গুরুত্ব: স্বয়ংক্রিয়"
+ "গুরুত্ব: লেভেল ০"
+ "গুরুত্ব: লেভেল ১"
+ "গুরুত্ব: লেভেল ২"
+ "গুরুত্ব: লেভেল ৩"
+ "গুরুত্ব: লেভেল ৪"
+ "গুরুত্ব: লেভেল ৫"
+ "অ্যাপ্লিকেশান প্রতিটি বিজ্ঞপ্তির গুরুত্ব নির্ধারণ করে৷"
+ "এই অ্যাপ্লিকেশান থেকে কখনোই বিজ্ঞপ্তিগুলিকে দেখাবে না।"
+ "পূর্ণ স্ক্রীনের কোনো বাধা নেই, স্ক্রীনে উপস্থিত হয় না, শব্দ বা কম্পন করে না৷ লক স্ক্রীন এবং স্থিতি দন্ড থেকে লুকায়৷"
+ "পূর্ণ স্ক্রীনের কোনো বাধা নেই, স্ক্রীনে উপস্থিত হয় না, শব্দ বা কম্পন করে না৷"
+ "পূর্ণ স্ক্রীনের কোনো বাধা নেই বা স্ক্রীনে উপস্থিত হবে না৷"
+ "সর্বদা স্ক্রীনে উপস্থিত হয়৷ পূর্ণ স্ক্রীনের কোনো বাধা নেই৷"
+ "সর্বদা স্ক্রীনে উপস্থিত হয়, এবং পূর্ণ স্ক্রীনের বাধাকে অনুমতি দেয়৷"
"আরো সেটিংস"
"সম্পন্ন"
- "স্বাভাবিক রঙ"
- "রাতের রঙ"
- "কাস্টম রঙ"
- "স্বয়ংক্রিয়ভাবে"
- "অজানা রঙ"
- "রঙ সংশোধন"
- "দ্রুত সেটিংস টাইল দেখান"
- "কাস্টম রূপান্তর সক্ষম করুন"
- "প্রয়োগ করুন"
- "সেটিংস নিশ্চিত করুন"
- "কিছু রঙের সেটিংস এই ডিভাইসকে ব্যবহারের অযোগ্য করে দিতে পারে৷ এই রঙের সেটিংস নিশ্চিত করতে ওকে এ ক্লিক করুন, অন্যথায় ১০ সেকেন্ড পরে এই সেটিংস পুনরায় সেট হবে৷"
- "ব্যাটারি (%1$d%%)"
+ "%1$s বিজ্ঞপ্তির নিয়ন্ত্রণগুলি"
+ "ব্যাটারির ব্যবহার"
"চার্জ করার সময় ব্যাটারি সেভার উপলব্ধ নয়"
"ব্যাটারি সেভার"
"কার্য-সম্পাদনা ও পশ্চাদপট ডেটাকে কমিয়ে দেয়"
+ "%1$s বোতাম"
+ "হোম"
+ "ফিরুন"
+ "উপরে"
+ "নিচে"
+ "বাম"
+ "ডান"
+ "কেন্দ্র"
+ "ট্যাব"
+ "স্পেস"
+ "এন্টার"
+ "ব্যাকস্পেস"
+ "প্লে/বিরতি"
+ "থামান"
+ "পরবর্তী"
+ "পূর্ববর্তী"
+ "পেছনের দিকে যান"
+ "দ্রুত ফরওয়ার্ড"
+ "পেজ আপ"
+ "পেজ ডাউন"
+ "মুছুন"
+ "হোম"
+ "শেষ"
+ "ঢোকান"
+ "সংখ্যা লক"
+ "সংখ্যাপ্যাড %1$s"
"সিস্টেম"
"হোম"
"সাম্প্রতিকগুলি"
"পিছনে"
- "ভলিউমে \'বিরক্ত করবেন না\' দেখাবেন না"
- "ভলিউম ডায়লগে \"বিরক্ত করবেন না\" এর পূর্ণ নিয়ন্ত্রণের মঞ্জুরি দিন৷"
- "ভলিউম এবং \'বিরক্ত করবেন না\'"
- "ভলিউম কমানোর মাধ্যেমে \'বিরক্ত করবেন না\' চালু করুন"
+ "বিজ্ঞপ্তিগুলি"
+ "কীবোর্ড শর্টকাট"
+ "ইনপুট পদ্ধতি পাল্টান"
+ "অ্যাপ্লিকেশানগুলি"
+ "সহযোগিতা"
+ "ব্রাউজার"
+ "পরিচিতি"
+ "ইমেল"
+ "IM"
+ "সংগীত"
+ "YouTube"
+ "ক্যালেন্ডার"
+ "ভলিউম নিয়ন্ত্রণ সহ দেখান"
+ "বিরক্ত করবেন না"
+ "ভলিউম বোতামের শর্টকাট"
"ভলিউম বাড়ানোর মাধ্যেমে \'বিরক্ত করবেন না\' থেকে প্রস্থান করুন"
"ব্যাটারি"
"ঘড়ি"
"হেডসেট"
"হেডফোনগুলি সংযুক্ত হয়েছে"
"হেডসেট সংযুক্ত হয়েছে"
- "স্থিতি দন্ডে দেখানোর জন্য আইকনগুলিকে সক্ষম বা অক্ষম করুন৷"
"ডেটা সেভার"
"ডেটা সেভার চালু আছে"
"ডেটা সেভার বন্ধ আছে"
"চালু আছে"
+ "বন্ধ আছে"
"নেভিগেশন দন্ড"
"শুরু করুন"
"কেন্দ্র"
@@ -519,4 +603,53 @@
"কীকোড বোতামগুলি নেভিগেশান দন্ডে কীবোর্ডের কীগুলি যোগ করার অনুমতি দেয়। চাপ দেওয়ার সময়ে সেগুলি নির্বাচিত কীবোর্ডের কী কে অনুকরণ করে। বোতামে দেখানো হয়েছে এমন একটি চিত্রকে অনুসরণ করে অবশ্যই প্রথমে বোতামের জন্য কী নির্বাচন করতে হবে।"
"কীবোর্ডের বোতাম নির্বাচন করুন"
"পূর্বরূপ দেখুন"
+ "টাইলগুলি যোগ করার জন্য টেনে আনুন"
+ "সরানোর জন্য এখানে টেনে আনুন"
+ "সম্পাদনা করুন"
+ "সময়"
+
+ - "ঘণ্টা, মিনিট, এবং সেকেন্ড দেখান"
+ - "ঘণ্টা এবং মিনিট দেখান (ডিফল্ট)"
+ - "এই আইকনটি দেখাবেন না"
+
+
+ - "সর্বদা শতাংশ দেখান"
+ - "চার্জ করার সময় শতাংশ দেখান (ডিফল্ট)"
+ - "এই আইকনটি দেখাবেন না"
+
+ "অন্যান্য"
+ "বিভক্ত-স্ক্রীন বিভাজক"
+ "বাম দিকের অংশ নিয়ে পূর্ণ স্ক্রীন"
+ "৭০% বাকি আছে"
+ "৫০% বাকি আছে"
+ "৩০% বাকি আছে"
+ "ডান দিকের অংশ নিয়ে পূর্ণ স্ক্রীন"
+ "উপর দিকের অংশ নিয়ে পূর্ণ স্ক্রীন"
+ "শীর্ষ ৭০%"
+ "শীর্ষ ৫০%"
+ "শীর্ষ ৩০%"
+ "নীচের অংশ নিয়ে পূর্ণ স্ক্রীন"
+ "%1$d অবস্থান, %2$s৷ সম্পাদনা করতে দুবার আলতো চাপুন৷"
+ "%1$s৷ যোগ করতে দুবার আলতো চাপুন৷"
+ "%1$d অবস্থান৷ নির্বাচন করতে দুবার আলতো চাপুন৷"
+ "%1$s সরান"
+ "%1$s সরান"
+ "%2$d অবস্থানে %1$s যোগ করা হয়েছে"
+ "%1$s মোছা হয়েছে"
+ "%1$s %2$d এ সরানো হয়েছে"
+ "দ্রুত সেটিংস সম্পাদক৷"
+ "%1$s বিজ্ঞপ্তি: %2$s"
+ "অ্যাপ্লিকেশানটি বিভক্ত স্ক্রীনে কাজ নাও করতে পারে৷"
+ "অ্যাপ্লিকেশান বিভক্ত-স্ক্রীন সমর্থন করে না৷"
+ "সেটিংস খুলুন।"
+ "দ্রুত সেটিংস খুলুন৷"
+ "দ্রুত সেটিংস বন্ধ করুন৷"
+ "অ্যালার্ম সেট করা হয়েছে৷"
+ "%s হিসেবে প্রবেশ করুন রয়েছেন"
+ "কোন ইন্টারনেট নেই৷"
+ "বিশদ বিবরণ খুলুন৷"
+ "%s সেটিংস খুলুন৷"
+ "ক্রম বা সেটিংস সম্পাদনা করুন৷"
+ "%2$dটির মধ্যে %1$d নং পৃষ্ঠা"
+ "বিজ্ঞপ্তিগুলিকে নীরব বা অবরুদ্ধ করা যাবে না"
diff --git a/packages/SystemUI/res/values-bs-rBA-land/strings.xml b/packages/SystemUI/res/values-bs-rBA-land/strings.xml
new file mode 100644
index 0000000000000..56a4ad276d086
--- /dev/null
+++ b/packages/SystemUI/res/values-bs-rBA-land/strings.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ "Ekran je sada zaključan u vodoravnom prikazu."
+
diff --git a/packages/SystemUI/res/values-da/strings.xml b/packages/SystemUI/res/values-da/strings.xml
index ce7db059316c4..1bab624fc01ee 100644
--- a/packages/SystemUI/res/values-da/strings.xml
+++ b/packages/SystemUI/res/values-da/strings.xml
@@ -432,7 +432,7 @@
"Du vil ikke kunne høre din næste alarm %1$s"
"kl. %1$s"
"på %1$s"
- "Hurtigindstillinger %s."
+ "Hurtige indstillinger %s."
"Hotspot"
"Arbejdsprofil"
"Sjovt for nogle, men ikke for alle"
diff --git a/packages/SystemUI/res/values-fa-land/strings.xml b/packages/SystemUI/res/values-fa-land/strings.xml
index adc2b118894f9..fe67cf0a7d41e 100644
--- a/packages/SystemUI/res/values-fa-land/strings.xml
+++ b/packages/SystemUI/res/values-fa-land/strings.xml
@@ -19,5 +19,5 @@
- "صفحه اکنون در جهت افقی قفل است."
+ "صفحه اکنون در حالت افقی قفل است."
diff --git a/packages/SystemUI/res/values-fa/strings_tv.xml b/packages/SystemUI/res/values-fa/strings_tv.xml
new file mode 100644
index 0000000000000..b97a64650dfc5
--- /dev/null
+++ b/packages/SystemUI/res/values-fa/strings_tv.xml
@@ -0,0 +1,33 @@
+
+
+
+
+ "بستن PIP"
+ "تمام صفحه"
+ "پخش"
+ "مکث"
+ "کنترل PIP با نگهداشتن ""HOME"
+ "تصویر در تصویر"
+ "تا زمانی که ویدئوی دیگری را پخش کنید، این صفحه حالت ویدئو در ویدئوی شما را حفظ میکند. برای کنترل آن، دکمه ""صفحه اصلی"" را فشار دهید و نگه دارید."
+ "متوجه شدم"
+ "رد کردن"
+
+
+
diff --git a/packages/SystemUI/res/values-hy-rAM/strings.xml b/packages/SystemUI/res/values-hy-rAM/strings.xml
index 18943e951f7db..0e12b28f552ab 100644
--- a/packages/SystemUI/res/values-hy-rAM/strings.xml
+++ b/packages/SystemUI/res/values-hy-rAM/strings.xml
@@ -32,7 +32,7 @@
"Ծանուցումներ չկան"
"Ընթացիկ"
"Ծանուցումներ"
- "Մարտկոցը լիցքաթափվում է"
+ "Մարտկոցի լիցքը սպառվում է"
"Մնաց %s"
"Մնաց %s: Մարտկոցի տնտեսումը միացված է:"
"USB լիցքավորումը չի աջակցվում:\nՕգտվեք միայն գործող լիցքավորիչից:"
@@ -51,8 +51,8 @@
"Bluetooth-ը կապված է"
"Կարգավորել մուտքագրման եղանակները"
"Ֆիզիկական ստեղնաշար"
- "Թույլատրե՞լ %1$s հավելվածի մուտքը USB սարք:"
- "Թույլատրե՞լ, որ %1$s հավելվածը մուտք գործի USB լրասարք:"
+ "Թույլատրե՞լ %1$s հավելվածին օգտագործել USB սարքը։"
+ "Թույլատրե՞լ, %1$s հավելվածին օգտագործել USB սարքը։"
"Բացե՞լ %1$s-ը, երբ այս USB կրիչը կապակցված է:"
"Բացե՞լ %1$s-ը, երբ այս USB լրասարքը կապակցված է:"
"Այս USB լրասարքի հետ ոչ մի հավելված չի աշխատում: Իմացեք ավելին այս լրասարքի մասին %1$s-ում"
@@ -71,9 +71,11 @@
"Պահում է էկրանի հանույթը..."
"Էկրանի հանույթը պահվում է:"
"Էկրանի հանույթը լուսանկարվել է:"
- "Հպեք ձեր էկրանի հանույթը տեսնելու համար:"
+ "Հպեք՝ էկրանի պատկերը տեսնելու համար:"
"Չհաջողվեց լուսանկարել էկրանի հանույթը:"
- "Չենք կարող պատճենել էկրանը՝ տարածքի սահմանափակման կամ ձեր կազմակերպության կողմից արգելքի պատճառով:"
+ "Էկրանի պատկերը պահելիս խնդիր առաջացավ:"
+ "Չհաջողվեց պահել էկրանի պատկերը սահմանափակ հիշողության պատճառով:"
+ "Այս հավելվածը կամ ձեր կազմակերպությունը չի թույլատրում Էկրանի պատկերի ստացումը:"
"USB ֆայլերի փոխանցման ընտրանքներ"
"Միացնել որպես մեդիա նվագարկիչ (MTP)"
"Միացնել որպես ֆոտոխցիկ (PTP)"
@@ -116,6 +118,7 @@
"Տվյալների ազդանշանը լրիվ է:"
"Միացված է %s-ին:"
"Կապակցված է %s-ին:"
+ "Կապակցված է %s-ին:"
"WiMAX չկա:"
"WiMAX-ի մեկ գիծ:"
"WiMAX-ի երկու գիծ:"
@@ -140,18 +143,24 @@
"3G"
"3.5G"
"4G"
+ "4G+"
"LTE"
+ "LTE+"
"CDMA"
"Ռոումինգ"
"Edge"
"Wi-Fi"
"SIM չկա:"
+ "Բջջային տվյալներ"
+ "Բջջային տվյալներն ակտիվ են"
"Բջջային ցանցով տվյալների փոխանցումն անջատված է"
"Bluetooth-ը կապվում է:"
- "Ինքնաթիռային ռեժիմ"
+ "Ինքնաթիռի ռեժիմ"
"SIM քարտ չկա:"
"Օպերատորի ցանցի փոփոխում:"
+ "Բացել մարտկոցի տվյալները"
"Մարտկոցը %d տոկոս է:"
+ "Մարտկոցը լիցքավորվում է: Լիցքը %d տոկոս է:"
"Համակարգի կարգավորումներ:"
"Ծանուցումներ:"
"Մաքրել ծանուցումը:"
@@ -166,6 +175,7 @@
"Անտեսել %s-ը:"
"%s-ը անտեսված է:"
"Բոլոր վերջին հավելվածները հեռացվել են ցուցակից:"
+ "Բացել %s հավելվածի մասին տեղեկությունները"
"Մեկնարկել %s-ը:"
"%1$s %2$s"
"Ծանուցումը անտեսվեց:"
@@ -181,16 +191,18 @@
"Wifi-ը միացավ:"
"Շարժական %1$s: %2$s: %3$s:"
"Մարտկոցը %s է:"
- "Ինքնաթիռային ռեժիմն անջատված է:"
- "Ինքնաթիռային ռեժիմը միացված է:"
- "Ինքնաթիռային ռեժիմն անջատվեց:"
- "Ինքնաթիռային ռեժիմը միացավ:"
+ "Ինքնաթիռի ռեժիմն անջատված է:"
+ "Ինքնաթիռի ռեժիմը միացված է:"
+ "Ինքնաթիռի ռեժիմն անջատվեց:"
+ "Ինքնաթիռի ռեժիմը միացավ:"
"Չխանգարելու ընտրանքը միացված է: Ընդհատել միայն կարևոր ծանուցումների դեպքում:"
"Չանհանգստացնել՝ ընդհանուր լուռ վիճակը:"
"Չանհանգստացնել՝ միայն զարթուցիչ"
+ "Չընդհատել:"
"Չխանգարելու ընտրանքն անջատված է:"
"Չխանգարելու ընտրանքն անջատվեց:"
"Չխանգարելու ընտրանքը միացվեց:"
+ "Bluetooth:"
"Bluetooth-ն անջատված է:"
"Bluetooth-ը միացված է:"
"Bluetooth-ը միանում է:"
@@ -206,6 +218,7 @@
"Ավելացնել ժամանակը:"
"Պակասեցնել ժամանակը:"
"Լապտերն անջատված է:"
+ "Լապտերն անհասանելի է:"
"Լապտերը միացված է:"
"Լապտերն անջատվեց:"
"Լապտերը միացավ:"
@@ -218,12 +231,14 @@
"Աշխատանքային ռեժիմը միացված է:"
"Աշխատանքային ռեժիմն անջատվեց:"
"Աշխատանքային ռեժիմը միացվեց:"
+ "Տվյալների խնայումն անջատվեց:"
+ "Տվյալների խնայումը միացվեց:"
"Ցուցադրել պայծառությունը"
"2Գ-3Գ տվյալների օգտագործումը դադարեցված է"
"4Գ տվյալների օգտագործումը դադարեցված է"
"Բջջային տվյալների օգտագործումը դադարեցված է"
"Տվյալների օգտագործումը դադարեցված է"
- "Քանի որ ձեր սահմանված տվյալների սահմանաչափը սպառվել է, սարքն այլևս չի օգտագործի տվյալները այս ցիկլի մնացած ընթացքում:\n\nԵթե վերսկսեք, հնարավոր է կիրառվեն գանձումներ ձեր օպերատորի կողմից:"
+ "Տվյալների օգտագործման համար նշված սահմանաչափը լրացել է: Դուք բջջային տվյալներ այլևս չեք օգտագործում:\n\nԵթե վերսկսեք բջջային տվյալների օգտագործումը, դրա համար կարող են վճարներ գանձվել:"
"Վերսկսել"
"Ինտերնետ կապ չկա"
"Wi-Fi-ը միացված է"
@@ -231,6 +246,11 @@
"Տեղադրությունը կարգավորվել է GPS-ի կողմից"
"Տեղադրության հարցումներն ակտիվ են"
"Մաքրել բոլոր ծանուցումները:"
+ "+ %s"
+
+ - Ներսում ևս %s ծանուցում կա:
+ - Ներսում ևս %s ծանուցում կա:
+
"Ծանուցման կարգավորումներ"
"%s-ի կարգավորումներ"
"Էկրանը ինքնաշխատ կպտտվի:"
@@ -240,7 +260,7 @@
"Էկրանն այժմ կողպված է հորիզոնական դիրքում:"
"Էկրանն այժմ կողպված է ուղղահայաց դիրքում:"
"Dessert Case"
- "Ցերեկային ռեժիմ"
+ "Էկրանի խնայարար"
"Ethernet"
"Չխանգարել"
"Միայն կարևոր ծանուցումների դեպքում"
@@ -252,6 +272,8 @@
"Հասանելի զուգավորված սարքեր չկան"
"Պայծառություն"
"Ինքնապտտում"
+ "Ինքնուրույն պտտել էկրանը"
+ "Նշանակել %s-ի"
"Պտտումը կողպված է"
"Դիմանկար"
"Լանդշաֆտ"
@@ -270,6 +292,7 @@
"Միացված չէ"
"Ցանց չկա"
"Wi-Fi-ը անջատված է"
+ "Wi-Fi-ը միացված է"
"Հասանելի Wi-Fi ցանցեր չկան"
"Հեռարձակում"
"Հեռարձակում"
@@ -296,16 +319,24 @@
"Սահմանաչափ՝ %s"
"%s զգուշացում"
"Աշխատանքային ռեժիմ"
- "Ձեր վերջին էկրանները տեսանելի են այստեղ"
+ "Գիշերային լույս"
+ "Գիշերային լույսը միացված է, հպեք՝ անջատելու համար"
+ "Գիշերային լույսն անջատված է, հպեք՝ միացնելու համար"
+ "Վերջին տարրեր չկան"
+ "Դուք ջնջել եք ամենը"
"Հավելվածի մասին"
"էկրանի ամրակցում"
"որոնել"
"Հնարավոր չէ գործարկել %s-ը:"
- "Պատմություն"
- "Մաքրել"
+ "%s հավելվածը անվտանգ ռեժիմում անջատված է:"
+ "Մաքրել բոլորը"
+ "Հավելվածը չի աջակցում էկրանի տրոհումը"
+ "Քաշեք այստեղ՝ էկրանի տրոհումն օգտագործելու համար"
"Հորիզոնական տրոհում"
"Ուղղահայաց տրոհում"
"Հատուկ տրոհում"
+
+
"Լիցքավորված է"
"Լիցքավորվում է"
"Լրիվ լիցքավորմանը մնաց %s"
@@ -320,7 +351,7 @@
"Այս գործողությունն արգելափակում է ԲՈԼՈՐ ձայներն ու թրթռումները, այդ թվում նաև զարթուցիչների, երաժշտության, տեսանյութերի և խաղերի ձայներն ու թրթռումները:"
"+%d"
"Պակաս հրատապ ծանուցումները ստորև"
- "Կրկին հպեք՝ բացելու համար"
+ "Կրկին հպեք՝ բացելու համար"
"Սահեցրեք վերև` ապակողպելու համար"
"Սահահարվածեք հեռախոսի պատկերակից"
"Սահահարվածեք ձայնային հուշման պատկերակից"
@@ -332,8 +363,6 @@
"Ընդհանուր\nլուռ վիճակը"
"Միայն\nկարևորները"
"Միայն\nզարթուցիչ"
- "Բոլորը"
- "Բոլորը\n"
"Լիցքավորում (%s մինչև լրիվ լիցքավորումը)"
"Արագ լիցքավորում (%s՝ մինչև ավարտ)"
"Դանդաղ լիցքավորում (%s՝ մինչև ավարտ)"
@@ -375,6 +404,7 @@
"Սարքը կարող է վերահսկվել"
"Պրոֆիլը կարող է վերահսկվել"
"Ցանցը կարող է վերահսկվել"
+ "Ցանցը կարող է վերահսկվել"
"Սարքի մշտադիտարկում"
"Պրոֆիլի վերահսկում"
"Ցանցի մշտադիտարկում"
@@ -387,22 +417,23 @@
"VPN"
"Դուք կապակցված եք %1$s հավելվածին, որը կարող է վերահսկել ձեր ցանցի գործունեությունը, այդ թվում նաև էլփոստի հաշիվները, հավելվածները և կայքերը:"
"Դուք կապակցված եք %1$s հավելվածին, որը կարող է վերահսկել անձնական ցանցում կատարած ձեր գործողությունները, այդ թվում նաև էլփոստի հաշիվները, հավելվածները և կայքերը:"
+ "Դուք կապակցված եք %1$s հավելվածին, որը կարող է վերահսկել անձնական ցանցում կատարած ձեր գործողությունները, այդ թվում նաև էլփոստի հաշիվները, հավելվածները և կայքերը:"
"Աշխատանքային պրոֆիլի կառավարիչն է՝ %1$s: Այն կապակցված է %2$s հավելվածին, որը կարող է վերահսկել աշխատանքային ցանցում կատարած գործունեությունը, այդ թվում նաև էլփոստի հաշիվները, հավելվածները և կայքերը:\n\nԼրացուցիչ տեղեկությունների համար դիմեք ադմինիստրատորին:"
"Աշխատանքային պրոֆիլի կառավարիչն է՝ %1$s: Այն կապակցված է %2$s հավելվածին, որը կարող է վերահսկել աշխատանքային ցանցում կատարած գործունեությունը, այդ թվում նաև էլփոստի հաշիվները, հավելվածները և կայքերը:\n\nԴուք նույնպես կապակցված եք %3$s հավելվածին, որը կարող է վերահսկել անձնական ցանցում կատարած ձեր գործողությունները:"
"Սարքի կառավարիչն է՝ %1$s:\n\nԱդմինիստրատորը կարող է վերահսկել և կառավարել կարգավորումները, կորպորատիվ հաշիվը, հավելվածները, սարքի հետ առնչվող և սարքի տեղադրության տվյալները:\n\nՆաև կապակցված եք %2$s հավելվածին, ինչը կարող է վերահսկել ձեր ցանցի գործունեությունը, այդ թվում նաև՝ էլփոստի հաշիվները, հավելվածները և կայքերը:\n\nԼրացուցիչ տեղեկությունների համար դիմեք ադմինիստրատորին:"
"Սարքը կմնա արգելափակված՝ մինչև ձեռքով չբացեք"
"Ավելի արագ ստացեք ծանուցումները"
"Տեսեք դրանք մինչև ապակողպելը"
- "Ոչ, շնորհակալություն"
+ "Ոչ"
"Կարգավորել"
"%1$s. %2$s"
"Ավարտել"
"Ընդարձակել"
"Կոծկել"
"Էկրանն ամրացված է"
- "Էկրանը կմնա տեսադաշտում, մինչև այն ապամրացնեք: Ապամրացնելու համար հպեք և պահեք Հետ կոճակը:"
- "Հասկանալի է"
- "Ոչ, շնորհակալություն"
+ "Էկրանը կմնա տեսադաշտում, մինչև այն ապամրացնեք: Ապամրացնելու համար հպեք և պահեք Հետ կոճակը:"
+ "Եղավ"
+ "Ոչ"
"Թաքցնե՞լ %1$s-ը:"
"Այն դարձյալ կհայտնվի, երբ նորից միացնեք կարգավորումներում:"
"Թաքցնել"
@@ -410,9 +441,25 @@
"Թույլատրել"
"Մերժել"
"%1$s-ը ձայնի ուժգնության երկխոսության հավելված է"
- "Դիպչեք՝ սկզբնօրինակը վերականգնելու համար:"
- ", "
+ "Հպեք՝ բնօրինակը վերականգնելու համար:"
"Դուք օգտագործում եք ձեր աշխատանքային պրոֆիլը"
+
+ - "Զանգել"
+ - "Համակարգ"
+ - "Զանգ"
+ - "Մեդիա"
+ - "Զարթուցիչ"
+
+ - "Bluetooth"
+
+
+
+
+ "%1$s: Հպեք՝ ձայնը միացնելու համար:"
+ "%1$s: Հպեք՝ թրթռումը միացնելու համար: Մատչելիության ծառայությունների ձայնը կարող է անջատվել:"
+ "%1$s: Հպեք՝ ձայնն անջատելու համար: Մատչելիության ծառայությունների ձայնը կարող է անջատվել:"
+ "%s ձայնի ուժգնության կառավարները ցուցադրված են: Մատը սահեցրեք վերև՝ փակելու համար:"
+ "Ձայնի ուժգնության կառավարները թաքցված են"
"Համակարգի ՕՄ-ի կարգավորիչ"
"Ցուցադրել ներկառուցված մարտկոցի տոկոսայնությունը"
"Ցուցադրել մարտկոցի լիցքավորման տոկոսայնությունը կարգավիճակի գոտու պատկերակի վրա, երբ այն չի լիցքավորվում"
@@ -425,7 +472,7 @@
"Ethernet"
"Զարթուցիչ"
"Android for Work-ի պրոֆիլ"
- "Ինքնաթիռային ռեժիմ"
+ "Ինքնաթիռի ռեժիմ"
"Սալիկի ավելացում"
"Սալիկի հեռարձակում"
"Ժամը %1$s-ի զարթուցիչը չի զանգի, եթե մինչ այդ չանջատեք այս կարգավորումը"
@@ -438,7 +485,7 @@
"Զվարճանք մեկ՝ որոշակի մարդու համար"
"Համակարգի ՕՄ-ի ընդունիչը հնարավորություն է տալիս հարմարեցնել Android-ի օգտվողի միջերեսը: Այս փորձնական գործառույթները կարող են հետագա թողարկումների մեջ փոփոխվել, խափանվել կամ ընդհանրապես չհայտնվել: Եթե շարունակում եք, զգուշացեք:"
"Այս փորձնական գործառույթները կարող են հետագա թողարկումների մեջ փոփոխվել, խափանվել կամ ընդհանրապես չհայտնվել: Եթե շարունակում եք, զգուշացեք:"
- "Հասկանալի է"
+ "Եղավ"
"Համակարգի ՕՄ-ի ընդունիչը ավելացվել է կարգավորումներին"
"Հեռացնել կարգավորումներից"
"Հեռացնե՞լ Համակարգի ՕՄ-ի ընդունիչը կարգավորումներից և չօգտվել այլևս նրա գործառույթներից:"
@@ -451,54 +498,91 @@
"Միացնե՞լ Bluetooth-ը:"
"Ստեղնաշարը ձեր պլանշետին միացնելու համար նախ անհրաժեշտ է միացնել Bluetooth-ը:"
"Միացնել"
- "Կիրառել %1$s-ի ծանուցումների նկատմամբ"
- "Կիրառել այս հավելվածի բոլոր ծանուցումների նկատմամբ"
- "Արգելափակված"
- "Ցածր կարևորություն"
- "Սովորական կարևորություն"
- "Բարձր կարևորություն"
- "Հրատապ կարևորություն"
- "Երբեք չցուցադրել այս ծանուցումները"
- "Ցուցադրել ծանուցումների ցանկի ներքևում առանց ձայնային ազդանշանի"
- "Ցուցադրել այս ծանուցումներն առանց ձայնային ազդանշանի"
- "Ցուցադրել ծանուցումների ցանկի վերևում և հնչեցնել ձայնային ազդանշան"
- "Ցուցադրել էկրանին և հնչեցնել ձայնային ազդանշան"
+ "Ցույց տալ ծանուցումներն առանց ձայնային ազդանշանի"
+ "Արգելափակել բոլոր ծանուցումները"
+ "Ձայնը չանջատել"
+ "Ձայնը չանջատել և չարգելափակել"
+ "Ծանուցումների ընդլայնված կառավարում"
+ "Միացնել"
+ "Անջատել"
+ "Ծանուցումների ընդլայնված կառավարման օգնությամբ կարող եք յուրաքանչյուր հավելվածի ծանուցումների համար նշանակել կարևորության աստիճան՝ 0-5 սահմաններում: \n\n""5-րդ աստիճան"" \n- Ցուցադրել ծանուցումների ցանկի վերևում \n- Թույլատրել լիաէկրան ընդհատումները \n- Միշտ ցուցադրել կարճ ծանուցումները \n\n""4-րդ աստիճան"" \n- Արգելել լիաէկրան ընդհատումները \n- Միշտ ցուցադրել կարճ ծանուցումները \n\n""3-րդ աստիճան"" \n- Արգելել լիաէկրան ընդհատումները \n- Արգելել կարճ ծանուցումների ցուցադրումը \n\n""2-րդ աստիճան"" \n- Արգելել լիաէկրան ընդհատումները \n- Արգելել կարճ ծանուցումների ցուցադրումը \n- Անջատել ձայնը և թրթռումը \n\n""1-ին աստիճան"" \n- Արգելել լիաէկրան ընդհատումները \n- Արգելել կարճ ծանուցումների ցուցադրումը \n- Անջատել ձայնը և թրթռումը \n- Չցուցադրել կողպէկրանում և կարգավիճակի գոտում \n- Ցուցադրել ծանուցումների ցանկի ներքևում \n\n""0-րդ աստիճան"\n"- Արգելափակել հավելվածի բոլոր ծանուցումները"
+ "Կարևորությունը՝ ավտոմատ"
+ "Կարևորությունը՝ 0-րդ աստիճան"
+ "Կարևորությունը՝ 1-ին աստիճան"
+ "Կարևորությունը՝ 2-րդ աստիճան"
+ "Կարևորությունը՝ 3-րդ աստիճան"
+ "Կարևորությունը՝ 4-րդ աստիճան"
+ "Կարևորությունը՝ 5-րդ աստիճան"
+ "Յուրաքանչյուր ծանուցման կարևորությունը որոշում է հավելվածը:"
+ "Երբեք ցույց չտալ ծանուցումներ այս հավելվածից:"
+ "Արգելել լիաէկրան ընդհատումները, կարճ ծանուցումները, ձայնը կամ թրթռումը: Չցուցադրել կողպէկրանում և կարգավիճակի գոտում:"
+ "Արգելել լիաէկրան ընդհատումները, կարճ ծանուցումները, ձայնը կամ թրթռումը:"
+ "Արգելել լիաէկրան ընդհատումները կամ կարճ ծանուցումները:"
+ "Միշտ ցուցադրել կարճ ծանուցումները: Արգելել լիաէկրան ընդհատումները:"
+ "Միշտ ցուցադրել կարճ ծանուցումները և թույլատրել լիաէկրան ընդհատումները:"
"Այլ կարգավորումներ"
"Պատրաստ է"
- "Սովորական գույներ"
- "Գիշերային գույներ"
- "Հատուկ գույներ"
- "Ավտոմատ"
- "Անհայտ գույներ"
- "Գույնի փոփոխում"
- "Ցույց տալ Արագ կարգավորումների սալիկը"
- "Միացնել հատուկ գունային անցումը"
- "Կիրառել"
- "Հաստատել կարգավորումները"
- "Գունային որոշ կարգավորումները կարող են այս սարքը օգտագործման համար ոչ պիտանի դարձնել: Սեղմեք Լավ կոճակը՝ գունային այս կարգավորումները հաստատելու համար: Հակառակ դեպքում այս կարգավորումները կվերակայվեն 10 վայրկյան հետո:"
- "Մարտկոց (%1$d%%)"
+ "%1$s հավելվածի ծանուցումների կառավարներ"
+ "Մարտկոցի օգտագործում"
"Մարտկոցի տնտեսումը լիցքավորման ժամանակ հասանելի չէ"
"Մարտկոցի տնտեսում"
"Նվազեցնում է ծանրաբեռնվածությունը և ֆոնային տվյալները"
+ "%1$s կոճակ"
+ "Գլխավոր էջ"
+ "Հետ"
+ "Վերև"
+ "Ներքև"
+ "Ձախ"
+ "Աջ"
+ "Կենտրոն"
+ "Tab"
+ "Բացատ"
+ "Մուտք"
+ "Հետշարժ"
+ "Նվագարկում/դադար"
+ "Դադարեցնել"
+ "Հաջորդը"
+ "Նախորդը"
+ "Հետ անցնել"
+ "Արագ առաջ անցնել"
+ "Page Up"
+ "Page down"
+ "Ջնջել"
+ "Գլխավոր էջ"
+ "Վերջ"
+ "Տեղադրել"
+ "Num Lock"
+ "Numpad %1$s"
"Համակարգ"
"Գլխավոր էջ"
"Վերջինները"
"Հետ"
- "Ցույց տալ Չխանգարել գործառույթը ձայնի կառավարման պատուհանում"
- "Թույլատրել Չխանգարել գործառույթի ամբողջական վերահսկումը ձայնի կառավարման պատուհանում:"
- "Ձայնի ուժգնություն և Չխանգարել գործառույթ"
- "Մտնել Չխանգարել գործառույթ ձայնի նվազեցման կոճակը սեղմելիս"
+ "Ծանուցումներ"
+ "Ստեղնային դյուրանցումներ"
+ "Փոխարկել մուտքագրման եղանակը"
+ "Հավելվածներ"
+ "Օգնություն"
+ "Դիտարկիչ"
+ "Կոնտակտներ"
+ "Էլփոստ"
+ "IM"
+ "Երաժշտություն"
+ "YouTube"
+ "Օրացույց"
+ "Ցույց տալ ձայնի ուժգնության կառավարման տարրերի հետ"
+ "Չընդհատել"
+ "Ձայնի կոճակների դյուրանցում"
"Ելնել Չխանգարել գործառույթից ձայնի ավելացման կոճակը սեղմելիս"
"Մարտկոց"
"Ժամացույց"
"Ականջակալ"
"Ականջակալը կապակցված է"
"Ականջակալը կապակցված է"
- "Միացնել կամ անջատել պատկերակների ցուցադրումը կարգավիճակի գոտում:"
"Տվյալների խնայում"
"Տվյալների խնայումը միացված է"
"Տվյալների խնայումն անջատված է"
"Միացնել"
+ "Անջատել"
"Նավարկման գոտի"
"Սկսել"
"Կենտրոն"
@@ -519,4 +603,53 @@
"Ստեղնային կոդի կոճակները թույլ են տալիս Նավարկման գոտում ավելացնել ստեղնաշարի ստեղները: Սեղմելու դեպքում դրանք էմուլացնում են ստեղնաշարի ընտրված ստեղնը: Կոճակի համար նախ անհրաժեշտ է ընտրել ստեղնը, այնուհետև՝ կոճակի վրա ցուցադրվող պատկերը:"
"Ընտրեք ստեղնաշարի կոճակը"
"Նախադիտում"
+ "Քաշեք՝ սալիկներ ավելացնելու համար"
+ "Քաշեք այստեղ՝ հեռացնելու համար"
+ "Փոփոխել"
+ "Ժամ"
+
+ - "Ցույց տալ ժամերը, րոպեները և վայրկյանները"
+ - "Ցույց տալ ժամերը և րոպեները (կանխադրված է)"
+ - "Ցույց չտալ այս պատկերակը"
+
+
+ - "Միշտ ցույց տալ տոկոսը"
+ - "Ցույց տալ տոկոսը լիցքավորելու ժամանակ (կանխադրված է)"
+ - "Ցույց չտալ այս պատկերակը"
+
+ "Այլ"
+ "Տրոհված էկրանի բաժանիչ"
+ "Ձախ էկրանը՝ լիաէկրան"
+ "Ձախ էկրանը՝ 70%"
+ "Ձախ էկրանը՝ 50%"
+ "Ձախ էկրանը՝ 30%"
+ "Աջ էկրանը՝ լիաէկրան"
+ "Վերևի էկրանը՝ լիաէկրան"
+ "Վերևի էկրանը՝ 70%"
+ "Վերևի էկրանը՝ 50%"
+ "Վերևի էկրանը՝ 30%"
+ "Ներքևի էկրանը՝ լիաէկրան"
+ "Դիրք %1$d, %2$s: Կրկնակի հպեք՝ փոխելու համար:"
+ "%1$s: Կրկնակի հպեք՝ ավելացնելու համար:"
+ "Դիրք %1$d: Կրկնակի հպեք՝ ընտրելու համար:"
+ "Տեղափոխել %1$s սալիկը"
+ "Հեռացնել %1$s սալիկը"
+ "%1$s սալիկն ավելացվել է %2$d դիրքին"
+ "%1$s սալիկը հեռացվել է"
+ "%1$s սալիկը տեղափոխվել է դեպի %2$d դիրք"
+ "Արագ կարգավորումների խմբագրիչ:"
+ "%1$s ծանուցում՝ %2$s"
+ "Հավելվածը չի կարող աշխատել տրոհված էկրանի ռեժիմում:"
+ "Հավելվածը չի աջակցում էկրանի տրոհումը:"
+ "Բացել կարգավորումները:"
+ "Բացել արագ կարգավորումները:"
+ "Փակել արագ կարգավորումները:"
+ "Զարթուցիչը դրված է:"
+ "Մուտք է գործել որպես %s"
+ "Ինտերնետ կապ չկա:"
+ "Բացել մանրամասները:"
+ "Բացել %s կարգավորումները:"
+ "Խմբագրել կարգավորումների հերթականությունը:"
+ "Էջ %1$d / %2$d"
+ "Հնարավոր չէ արգելափակել ծանուցումները կամ անջատել դրանց ձայնը"
diff --git a/packages/SystemUI/res/values-it/strings_car.xml b/packages/SystemUI/res/values-it/strings_car.xml
index ae26c9e102bdc..19c4e2b02ad01 100644
--- a/packages/SystemUI/res/values-it/strings_car.xml
+++ b/packages/SystemUI/res/values-it/strings_car.xml
@@ -20,5 +20,5 @@
"Guida in modo sicuro"
- "È necessario essere sempre pienamente coscienti delle condizioni di guida e rispettare le leggi vigenti. Le indicazioni stradali potrebbero essere imprecise, incomplete, pericolose, non adatte, vietate o implicare l\'attraversamento di confini. Anche le informazioni sulle attività commerciali potrebbero essere imprecise o incomplete. I dati non vengono forniti in tempo reale e non è possibile garantire la precisione della geolocalizzazione. Non maneggiare il dispositivo mobile e non utilizzare app non progettate per Android Auto durante la guida."
+ "È necessario essere sempre pienamente informati sulle condizioni della strada e rispettare la legislazione vigente. Le indicazioni stradali potrebbero essere imprecise, incomplete, pericolose, inadatte, vietate o richiedere l\'attraversamento di aree amministrative. Anche le informazioni sugli esercizi commerciali potrebbero essere imprecise o incomplete. I dati forniti non sono aggiornati in tempo reale e non è possibile garantire la precisione della geolocalizzazione. Non maneggiare dispositivi mobili e app non destinate ad Android Auto durante la guida."
diff --git a/packages/SystemUI/res/values-ja/strings.xml b/packages/SystemUI/res/values-ja/strings.xml
index 537dbf02ea9f8..8d51fe635aa7e 100644
--- a/packages/SystemUI/res/values-ja/strings.xml
+++ b/packages/SystemUI/res/values-ja/strings.xml
@@ -71,9 +71,11 @@
"スクリーンショットを保存しています..."
"スクリーンショットを保存しています。"
"スクリーンショットを取得しました。"
- "タップしてスクリーンショットを表示します。"
+ "タップするとスクリーンショットが表示されます。"
"スクリーンショットをキャプチャできませんでした。"
- "空き容量が足りないか、アプリまたは組織によって許可されていないため、スクリーンショットは撮れません。"
+ "スクリーンショットの保存中に問題が発生しました。"
+ "空き容量が足りないため、スクリーンショットを保存できません。"
+ "アプリまたは組織によって許可されていないため、スクリーンショットは撮れません。"
"USBファイル転送オプション"
"メディアプレーヤー(MTP)としてマウント"
"カメラ(PTP)としてマウント"
@@ -116,6 +118,7 @@
"データ信号:フル"
"%sに接続しました。"
"%sに接続しました。"
+ "%sに接続されています。"
"WiMAX電波状態:圏外"
"WiMAX電波状態:レベル1"
"WiMAX電波状態:レベル2"
@@ -140,18 +143,26 @@
"3G"
"3.5G"
"4G"
+ "4G+"
"LTE"
+ "LTE+"
"CDMA"
"ローミング中"
"EDGE"
"Wi-Fi"
"SIMがありません。"
+ "モバイルデータ"
+ "モバイルデータは ON です"
"モバイルデータ OFF"
"Bluetoothテザリング。"
"機内モード。"
"SIMカードが挿入されていません。"
"携帯通信会社のネットワークを変更します。"
+ "電池の詳細情報を開きます"
"電池残量: %dパーセント"
+
+
+
"システム設定。"
"通知。"
"通知を消去。"
@@ -166,6 +177,7 @@
"%sを削除します。"
"%sは削除されました。"
"最近のアプリケーションをすべて消去しました。"
+ "「%s」のアプリ情報を開きます。"
"%sを開始しています。"
"%1$s %2$s"
"通知が削除されました。"
@@ -185,12 +197,14 @@
"機内モードがONです。"
"機内モードをOFFにしました。"
"機内モードをONにしました。"
- "[通知を非表示]はONで、優先する通知のみです。"
- "[通知を非表示]はONで、サイレントです。"
- "[通知を非表示]はONで、アラームのみです。"
- "[通知を非表示]はOFFです。"
- "[通知を非表示]をOFFにしました。"
- "[通知を非表示]をONにしました。"
+ "マナーモードは ON で、優先する通知のみ許可します。"
+ "マナーモードは ON で、サイレント モードです。"
+ "マナーモードは ON で、アラームのみ許可します。"
+ "マナーモード"
+ "マナーモードは OFF です。"
+ "マナーモードを OFF にしました。"
+ "マナーモードを ON にしました。"
+ "Bluetooth"
"BluetoothがOFFです。"
"BluetoothがONです。"
"Bluetoothに接続しています。"
@@ -206,6 +220,7 @@
"長くします。"
"短くします。"
"ライトがOFFです。"
+ "ライトを使用できません。"
"ライトがONです。"
"ライトをOFFにしました。"
"ライトをONにしました。"
@@ -218,12 +233,14 @@
"Work モードがオンです。"
"Work モードをオフにしました。"
"Work モードをオンにしました。"
+ "データセーバーが OFF になりました。"
+ "データセーバーが ON になりました。"
"ディスプレイの明るさ"
"2G~3Gデータは一時停止中です"
"4Gデータは一時停止中です"
"モバイルデータは一時停止中です"
"データの一時停止"
- "設定されたデータの上限に達したため、このサイクルの終了までこの端末でのデータの利用を一時停止しました。\n\n再開すると、携帯通信会社から課金される可能性があります。"
+ "設定されたデータの上限に達しているため、モバイルデータの使用を停止しました。\n\n再開すると、携帯通信会社からデータ使用量に応じた通信料を課金される可能性があります。"
"再開"
"インターネット未接続"
"Wi-Fi接続済み"
@@ -231,6 +248,11 @@
"GPSにより現在地が設定されました"
"現在地リクエストがアクティブ"
"通知をすべて消去。"
+ "他 %s 件"
+
+ - 他 %s 件の通知
+ - 他 %s 件の通知
+
"通知設定"
"%sの設定"
"画面は自動的に回転します。"
@@ -240,9 +262,9 @@
"画面を横向きにロックしました。"
"画面を縦向きにロックしました。"
"デザートケース"
- "スクリーンセーバー"
+ "スクリーン セーバー"
"イーサネット"
- "通知を非表示"
+ "マナーモード"
"優先する通知のみ"
"アラームのみ"
"サイレント"
@@ -252,6 +274,8 @@
"ペア設定されたデバイスがありません"
"画面の明るさ"
"自動回転"
+ "画面を自動回転します"
+ "[%s] に設定します"
"画面の向きをロック"
"縦向き"
"横向き"
@@ -270,6 +294,7 @@
"接続されていません"
"ネットワークなし"
"Wi-Fi OFF"
+ "Wi-Fi: ON"
"Wi-Fiネットワークを利用できません"
"キャスト"
"キャストしています"
@@ -296,16 +321,24 @@
"上限: %s"
"警告: 上限は%sです"
"Work モード"
- "ここに最近の画面が表示されます"
+ "読書灯"
+ "読書灯 ON: タップすると OFF になります"
+ "読書灯 OFF: タップすると ON になります"
+ "最近のタスクはありません"
+ "すべてのタスクを消去しました"
"アプリ情報"
"画面固定"
"検索"
"%sを開始できません。"
- "履歴"
- "消去"
+ "「%s」はセーフモードでは無効になります。"
+ "すべて消去"
+ "アプリで分割画面がサポートされていません"
+ "分割画面を使用するにはここにドラッグします"
"横に分割"
"縦に分割"
"分割(カスタム)"
+
+
"充電が完了しました"
"充電しています"
"充電完了まで%s"
@@ -320,7 +353,7 @@
"アラーム、音楽、動画、ゲームを含むすべての音とバイブレーションがブロックされます。"
"+%d"
"緊急度の低い通知を下に表示"
- "開くにはもう一度タップしてください"
+ "開くにはもう一度タップしてください"
"ロック解除するには上にスワイプしてください"
"右にスワイプして通話"
"アイコンからスワイプして音声アシストを起動"
@@ -332,8 +365,6 @@
"サイレント\n"
"重要な\n通知のみ"
"アラーム\nのみ"
- "すべて"
- "すべて\n"
"充電中(フル充電まで%s)"
"急速充電中(完了まで%s)"
"低速充電中(完了まで%s)"
@@ -375,6 +406,7 @@
"端末が監視されている可能性があります"
"プロファイルが監視されている可能性があります"
"ネットワークが監視されている可能性があります"
+ "ネットワークが監視されている可能性があります"
"端末の監視"
"プロファイルの監視"
"ネットワーク監視"
@@ -387,6 +419,7 @@
"VPN"
"%1$sに接続しています。このアプリはあなたのネットワークアクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。"
"%1$sに接続しています。このアプリはあなたの個人のネットワークアクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。"
+ "「%1$s」に接続しています。このアプリはあなたの個人のネットワーク アクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。"
"この仕事用プロファイルは%1$sによって管理され、%2$sに接続しています。このアプリはあなたの仕事のネットワークアクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。\n\n詳しくは管理者にお問い合わせください。"
"この仕事用プロファイルは%1$sによって管理され、%2$sに接続しています。このアプリはあなたの仕事のネットワークアクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。\n\n%3$sにも接続しているため、個人のネットワークアクティビティも監視できます。"
"この端末は%1$sによって管理されています。\n\n管理者は設定、コーポレートアクセス、アプリ、端末に関連付けられたデータ、端末の位置情報を監視、管理できます。\n\n%2$sに接続しているため、このアプリもネットワークアクティビティ(メール、アプリ、ウェブサイトなど)を監視できます。\n\n詳しくは管理者にお問い合わせください。"
@@ -400,7 +433,7 @@
"展開"
"折りたたむ"
"画面が固定されました"
- "固定を解除するまで画面が常に表示されるようになります。[戻る]を押し続けると固定が解除されます。"
+ "固定を解除するまで画面が常に表示されるようになります。固定を解除するには [戻る] を押し続けます。"
"はい"
"いいえ"
"%1$sを非表示にしますか?"
@@ -410,9 +443,25 @@
"許可"
"許可しない"
"%1$sを音量ダイアログとして使用"
- "タップすると元の音量ダイアログが復元されます。"
- "、 "
+ "タップすると元に戻ります。"
"仕事用プロファイルを使用しています"
+
+ - "通話"
+ - "システム"
+ - "着信音"
+ - "メディア"
+ - "アラーム"
+
+ - "Bluetooth"
+
+
+
+
+ "%1$s。タップしてミュートを解除します。"
+ "%1$s。タップしてバイブレーションに設定します。ユーザー補助機能サービスがミュートされる場合があります。"
+ "%1$s。タップしてミュートします。ユーザー補助機能サービスがミュートされる場合があります。"
+ "%s の音量調節が表示されています。閉じるには、上にスワイプします。"
+ "音量調節を非表示にしました"
"システムUI調整ツール"
"内蔵電池の残量の割合を表示する"
"充電していないときには電池残量の割合をステータスバーアイコンに表示する"
@@ -451,57 +500,91 @@
"BluetoothをONにしますか?"
"タブレットでキーボードに接続するには、最初にBluetoothをONにする必要があります。"
"ONにする"
- "「%1$s」の通知に適用"
- "このアプリからのすべての通知に適用"
- "ブロック中"
- "重要度: 低"
- "重要度: 中"
- "重要度: 高"
- "重要度: 緊急"
- "今後はこの通知を表示しない"
- "通知リストの末尾にマナーモードで表示する"
- "この通知をマナーモードで表示する"
- "通知リストの先頭に表示し、音声でも知らせる"
- "画面に数秒間表示し、音声でも知らせる"
+ "通知をマナーモードで表示する"
+ "通知をすべてブロックする"
+ "音声で知らせる"
+ "音声で知らせる / ブロックしない"
+ "電源通知管理"
+ "ON"
+ "OFF"
+ "電源通知管理では、アプリの通知の重要度をレベル 0~5 で設定できます。\n\n""レベル 5"" \n- 通知リストの一番上に表示する \n- 全画面表示を許可する \n- 常にポップアップする \n\n""レベル 4"" \n- 全画面表示しない \n- 常にポップアップする \n\n""レベル 3"" \n- 全画面表示しない \n- ポップアップしない \n\n""レベル 2"" \n- 全画面表示しない \n- ポップアップしない \n- 音やバイブレーションを使用しない \n\n""レベル 1"" \n- 全画面表示しない \n- ポップアップしない \n- 音やバイブレーションを使用しない \n- ロック画面やステータスバーに表示しない \n- 通知リストの一番下に表示する \n\n""レベル 0"" \n- アプリからのすべての通知をブロックする"
+ "重要度: 自動"
+ "重要度: レベル 0"
+ "重要度: レベル 1"
+ "重要度: レベル 2"
+ "重要度: レベル 3"
+ "重要度: レベル 4"
+ "重要度: レベル 5"
+ "アプリが通知ごとに重要度を識別する"
+ "このアプリからの通知を表示しない"
+ "全画面表示、ポップアップ、音、バイブレーションを使用しない。ロック画面やステータスバーにも表示しない"
+ "全画面表示、ポップアップ、音、バイブレーションを使用しない"
+ "全画面表示やポップアップを使用しない"
+ "常にポップアップし、全画面表示はしない"
+ "常にポップアップし、全画面表示も許可する"
"詳細設定"
"完了"
- "標準の色"
- "夜間の色"
- "カスタムの色"
- "自動"
- "不明な色"
- "色の変更"
- "[クイック設定] タイルの表示"
- "カスタム変換の有効化"
- "適用"
- "設定の確認"
- "一部の色設定を適用すると、この端末を使用できなくなることがあります。この色設定を確認するには、[OK] をクリックしてください。確認しない場合、10 秒後に設定はリセットされます。"
- "バッテリー(%1$d%%)"
+ "「%1$s」の通知の管理"
+ "電池の使用状況"
"充電中はバッテリー セーバーは利用できません"
"バッテリー セーバー"
"パフォーマンスとバックグラウンド データを制限します"
+ "%1$s ボタン"
+ "Home"
+ "戻る"
+ "上"
+ "下"
+ "左"
+ "右"
+ "中央"
+ "Tab"
+ "Space"
+ "Enter"
+ "Backspace"
+ "再生 / 一時停止"
+ "停止"
+ "次へ"
+ "前へ"
+ "巻き戻し"
+ "早送り"
+ "PageUp"
+ "PageDown"
+ "Delete"
+ "Home"
+ "End"
+ "Insert"
+ "NumLock"
+ "テンキーの %1$s"
"システム"
"ホーム"
"最近"
"戻る"
- "音量内に [通知を非表示] を表示"
- "音量ダイアログでの [通知を非表示] の管理を許可します。"
- "音量と [通知を非表示]"
- "音量下げボタンで [通知を非表示] を ON にする"
- "音量上げボタンで [通知を非表示] を OFF にする"
+ "通知"
+ "キーボード ショートカット"
+ "入力方法の切り替え"
+ "アプリ"
+ "アシスト"
+ "ブラウザ"
+ "連絡先"
+ "メール"
+ "IM"
+ "音楽"
+ "YouTube"
+ "カレンダー"
+ "音量調節を表示"
+ "マナーモード"
+ "音量ボタンのショートカット"
+ "音量上げボタンでマナーモードを OFF にする"
"電池"
"時計"
"ヘッドセット"
"ヘッドホンを接続しました"
"ヘッドセットを接続しました"
- "ステータスバーでのアイコンの表示を有効または無効にします。"
-
-
-
-
-
-
+ "データセーバー"
+ "データセーバー ON"
+ "データセーバー OFF"
"ON"
+ "OFF"
"ナビゲーション バー"
"最初"
"中央"
@@ -522,4 +605,53 @@
"キーコード ボタンを利用すると、ナビゲーション バーにキーボードのキー機能を追加できるようになります。ボタンを押すと選択済みのキーボードのキーがエミュレートされます。まずボタン用にキーを選択し、次にボタン上の画像を選択する必要があります。"
"キーボードのボタンの選択"
"プレビュー"
+ "タイルを追加するにはドラッグしてください"
+ "削除するにはここにドラッグ"
+ "編集"
+ "時間"
+
+ - "時間、分、秒を表示"
+ - "時間、分を表示(デフォルト)"
+ - "このアイコンを表示しない"
+
+
+ - "常に割合を表示"
+ - "変更時に割合を表示(デフォルト)"
+ - "このアイコンを表示しない"
+
+ "その他"
+ "分割画面の分割線"
+ "左全画面"
+ "左 70%"
+ "左 50%"
+ "左 30%"
+ "右全画面"
+ "上部全画面"
+ "上 70%"
+ "上 50%"
+ "上 30%"
+ "下部全画面"
+ "ポジション %1$d の %2$s を編集するにはダブルタップします。"
+ "%1$s を追加するにはダブルタップします。"
+ "ポジション %1$d に配置します。選択するにはダブルタップします。"
+ "%1$s を移動します"
+ "%1$s を削除します"
+ "%1$s をポジション %2$d に追加しました"
+ "%1$s を削除しました"
+ "%1$s をポジション %2$d に移動しました"
+ "クイック設定エディタ"
+ "%1$s の通知: %2$s"
+ "アプリは分割画面では動作しないことがあります。"
+ "アプリで分割画面がサポートされていません。"
+ "設定を開きます。"
+ "クイック設定を開きます。"
+ "クイック設定を閉じます。"
+ "アラームを設定しました。"
+ "%s としてログインします"
+ "インターネットに接続されていません。"
+ "詳細情報を開きます。"
+ "%s の設定を開きます。"
+ "設定の順序を編集します。"
+ "ページ %1$d/%2$d"
+ "通知のサイレント設定やブロックはできません"
diff --git a/packages/SystemUI/res/values-kn-rIN/strings.xml b/packages/SystemUI/res/values-kn-rIN/strings.xml
index 1c3868404fba0..720c73d286d08 100644
--- a/packages/SystemUI/res/values-kn-rIN/strings.xml
+++ b/packages/SystemUI/res/values-kn-rIN/strings.xml
@@ -94,7 +94,7 @@
"ಧ್ವನಿ ಸಹಾಯಕವನ್ನು ತೆರೆ"
"ಕ್ಯಾಮರಾ ತೆರೆಯಿರಿ"
"ಹೊಸ ಕಾರ್ಯ ವಿನ್ಯಾಸವನ್ನು ಆಯ್ಕೆಮಾಡಿ"
- "ರದ್ದುಮಾಡು"
+ "ರದ್ದುಮಾಡಿ"
"ಹೊಂದಾಣಿಕೆಯ ಝೂಮ್ ಬಟನ್."
"ಚಿಕ್ಕ ಪರದೆಯಿಂದ ದೊಡ್ಡ ಪರದೆಗೆ ಝೂಮ್ ಮಾಡು."
"ಬ್ಲೂಟೂತ್ ಸಂಪರ್ಕಗೊಂಡಿದೆ."
diff --git a/packages/SystemUI/res/values-kn-rIN/strings_tv.xml b/packages/SystemUI/res/values-kn-rIN/strings_tv.xml
new file mode 100644
index 0000000000000..edaa8e60a4446
--- /dev/null
+++ b/packages/SystemUI/res/values-kn-rIN/strings_tv.xml
@@ -0,0 +1,33 @@
+
+
+
+
+ "PIP ಮುಚ್ಚಿ"
+ "ಪೂರ್ಣ ಪರದೆ"
+ "ಪ್ಲೇ"
+ "ವಿರಾಮ"
+ "PIP ನಿಯಂತ್ರಿಸಲು ""HOME"" ಕೀಯನ್ನು ಹಿಡಿದುಕೊಳ್ಳಿ"
+ "ಚಿತ್ರದಲ್ಲಿ ಚಿತ್ರ"
+ "ನೀವು ಮತ್ತೊಂದನ್ನು ಪ್ಲೇ ಮಾಡುವ ತನಕ ಇದು ನಿಮ್ಮ ವೀಡಿಯೋವನ್ನು ವೀಕ್ಷಣೆಯಲ್ಲಿರಿಸುತ್ತದೆ. ಅದನ್ನು ನಿಯಂತ್ರಿಸಲು ""ಮುಖಪುಟ"" ಅನ್ನು ಒತ್ತಿ ಹಿಡಿಯಿರಿ."
+ "ಅರ್ಥವಾಯಿತು"
+ "ವಜಾಗೊಳಿಸಿ"
+
+
+
diff --git a/packages/SystemUI/res/values-ko/strings.xml b/packages/SystemUI/res/values-ko/strings.xml
index f7c3d3a0da7fb..91f08490946e6 100644
--- a/packages/SystemUI/res/values-ko/strings.xml
+++ b/packages/SystemUI/res/values-ko/strings.xml
@@ -418,7 +418,7 @@
"충전 중이 아닌 경우 상태 표시줄 아이콘 내에 배터리 잔량 비율 표시"
"빠른 설정"
"상태 표시줄"
- "개요"
+ "최근 사용"
"데모 모드"
"데모 모드 사용"
"데모 모드 표시"
diff --git a/packages/SystemUI/res/values-nl/strings.xml b/packages/SystemUI/res/values-nl/strings.xml
index 814a1a8d40dbf..977a1c0515731 100644
--- a/packages/SystemUI/res/values-nl/strings.xml
+++ b/packages/SystemUI/res/values-nl/strings.xml
@@ -221,7 +221,7 @@
"Helderheid van het scherm"
"2G/3G-data zijn onderbroken"
"4G-data zijn onderbroken"
- "Mobiele gegevens zijn onderbroken"
+ "Mobiele data zijn onderbroken"
"Gegevens zijn onderbroken"
"Omdat de ingestelde gegevenslimiet is bereikt, heeft het apparaat het gegevensverbruik onderbroken voor de rest van deze cyclus.\n\nAls u het gegevensverbruik hervat, kan je provider kosten in rekening brengen."
"Hervatten"
@@ -288,7 +288,7 @@
"Hotspot"
"Meldingen"
"Zaklamp"
- "Mobiele gegevens"
+ "Mobiele data"
"Datagebruik"
"Resterende gegevens"
"Limiet overschreden"
diff --git a/packages/VpnDialogs/res/values-ro/strings.xml b/packages/VpnDialogs/res/values-ro/strings.xml
index a77ef0390ec88..e2e1e44021b09 100644
--- a/packages/VpnDialogs/res/values-ro/strings.xml
+++ b/packages/VpnDialogs/res/values-ro/strings.xml
@@ -20,10 +20,10 @@
"%s dorește să configureze o conexiune VPN care să îi permită să monitorizeze traficul în rețea. Acceptați numai dacă aveți încredere în sursă. Atunci când conexiunea VPN este activă, <br /> <br /> <img src=vpn_icon /> se afișează în partea de sus a ecranului."
"VPN este conectat"
"Configurați"
- "Deconectaţi"
+ "Deconectați"
"Sesiune:"
"Durată:"
"Trimise:"
"Primite:"
- "%1$s (de) octeţi/%2$s (de) pachete"
+ "%1$s octeți/%2$s pachete"
diff --git a/services/accessibility/java/com/android/server/accessibility/AccessibilityManagerService.java b/services/accessibility/java/com/android/server/accessibility/AccessibilityManagerService.java
index e00178f8ea411..58bb5f3793127 100644
--- a/services/accessibility/java/com/android/server/accessibility/AccessibilityManagerService.java
+++ b/services/accessibility/java/com/android/server/accessibility/AccessibilityManagerService.java
@@ -2891,8 +2891,8 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
sendDownAndUpKeyEvents(KeyEvent.KEYCODE_HOME);
} return true;
case AccessibilityService.GLOBAL_ACTION_RECENTS: {
- openRecents();
- } return true;
+ return openRecents();
+ }
case AccessibilityService.GLOBAL_ACTION_NOTIFICATIONS: {
expandNotifications();
} return true;
@@ -3385,14 +3385,19 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
Binder.restoreCallingIdentity(token);
}
- private void openRecents() {
+ private boolean openRecents() {
final long token = Binder.clearCallingIdentity();
-
- StatusBarManagerInternal statusBarService = LocalServices.getService(
- StatusBarManagerInternal.class);
- statusBarService.toggleRecentApps();
-
- Binder.restoreCallingIdentity(token);
+ try {
+ StatusBarManagerInternal statusBarService = LocalServices.getService(
+ StatusBarManagerInternal.class);
+ if (statusBarService == null) {
+ return false;
+ }
+ statusBarService.toggleRecentApps();
+ } finally {
+ Binder.restoreCallingIdentity(token);
+ }
+ return true;
}
private void showGlobalActions() {
diff --git a/services/core/java/com/android/server/LockSettingsService.java b/services/core/java/com/android/server/LockSettingsService.java
index a91e2053c01d1..ae5ed6b8d7fd3 100644
--- a/services/core/java/com/android/server/LockSettingsService.java
+++ b/services/core/java/com/android/server/LockSettingsService.java
@@ -584,6 +584,20 @@ public class LockSettingsService extends ILockSettings.Stub {
Slog.e(TAG, "Unable to remove tied profile key", e);
}
}
+
+ boolean isWatch = mContext.getPackageManager().hasSystemFeature(
+ PackageManager.FEATURE_WATCH);
+ // Wear used to set DISABLE_LOCKSCREEN to 'true', but because Wear now allows accounts
+ // and device management the lockscreen must be re-enabled now for users that upgrade.
+ if (isWatch && getString("migrated_wear_lockscreen_disabled", null, 0) == null) {
+ final int userCount = users.size();
+ for (int i = 0; i < userCount; i++) {
+ int id = users.get(i).id;
+ setBoolean(LockPatternUtils.DISABLE_LOCKSCREEN_KEY, false, id);
+ }
+ setString("migrated_wear_lockscreen_disabled", "true", 0);
+ Slog.i(TAG, "Migrated lockscreen_disabled for Wear devices");
+ }
} catch (RemoteException re) {
Slog.e(TAG, "Unable to migrate old data", re);
}
diff --git a/services/core/java/com/android/server/display/AutomaticBrightnessController.java b/services/core/java/com/android/server/display/AutomaticBrightnessController.java
index a1e3d62c12bc9..bdd041a317c99 100644
--- a/services/core/java/com/android/server/display/AutomaticBrightnessController.java
+++ b/services/core/java/com/android/server/display/AutomaticBrightnessController.java
@@ -86,8 +86,14 @@ class AutomaticBrightnessController {
private final int mScreenBrightnessRangeMaximum;
private final float mDozeScaleFactor;
- // Light sensor event rate in milliseconds.
- private final int mLightSensorRate;
+ // Initial light sensor event rate in milliseconds.
+ private final int mInitialLightSensorRate;
+
+ // Steady-state light sensor event rate in milliseconds.
+ private final int mNormalLightSensorRate;
+
+ // The current light sensor event rate in milliseconds.
+ private int mCurrentLightSensorRate;
// Stability requirements in milliseconds for accepting a new brightness level. This is used
// for debouncing the light sensor. Different constants are used to debounce the light sensor
@@ -188,7 +194,7 @@ class AutomaticBrightnessController {
public AutomaticBrightnessController(Callbacks callbacks, Looper looper,
SensorManager sensorManager, Spline autoBrightnessSpline, int lightSensorWarmUpTime,
int brightnessMin, int brightnessMax, float dozeScaleFactor,
- int lightSensorRate, long brighteningLightDebounceConfig,
+ int lightSensorRate, int initialLightSensorRate, long brighteningLightDebounceConfig,
long darkeningLightDebounceConfig, boolean resetAmbientLuxAfterWarmUpConfig,
int ambientLightHorizon, float autoBrightnessAdjustmentMaxGamma,
LuxLevels luxLevels) {
@@ -200,7 +206,9 @@ class AutomaticBrightnessController {
mScreenBrightnessRangeMaximum = brightnessMax;
mLightSensorWarmUpTimeConfig = lightSensorWarmUpTime;
mDozeScaleFactor = dozeScaleFactor;
- mLightSensorRate = lightSensorRate;
+ mNormalLightSensorRate = lightSensorRate;
+ mInitialLightSensorRate = initialLightSensorRate;
+ mCurrentLightSensorRate = mNormalLightSensorRate;
mBrighteningLightDebounceConfig = brighteningLightDebounceConfig;
mDarkeningLightDebounceConfig = darkeningLightDebounceConfig;
mResetAmbientLuxAfterWarmUpConfig = resetAmbientLuxAfterWarmUpConfig;
@@ -211,9 +219,9 @@ class AutomaticBrightnessController {
mHandler = new AutomaticBrightnessHandler(looper);
mAmbientLightRingBuffer =
- new AmbientLightRingBuffer(mLightSensorRate, mAmbientLightHorizon);
+ new AmbientLightRingBuffer(mNormalLightSensorRate, mAmbientLightHorizon);
mInitialHorizonAmbientLightRingBuffer =
- new AmbientLightRingBuffer(mLightSensorRate, mAmbientLightHorizon);
+ new AmbientLightRingBuffer(mNormalLightSensorRate, mAmbientLightHorizon);
if (!DEBUG_PRETEND_LIGHT_SENSOR_ABSENT) {
mLightSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_LIGHT);
@@ -313,13 +321,16 @@ class AutomaticBrightnessController {
mAmbientLuxValid = !mResetAmbientLuxAfterWarmUpConfig;
mLightSensorEnableTime = SystemClock.uptimeMillis();
mSensorManager.registerListener(mLightSensorListener, mLightSensor,
- mLightSensorRate * 1000, mHandler);
+ mCurrentLightSensorRate * 1000, mHandler);
return true;
}
} else {
if (mLightSensorEnabled) {
mLightSensorEnabled = false;
mRecentLightSamples = 0;
+ if (mInitialLightSensorRate > 0) {
+ mCurrentLightSensorRate = mInitialLightSensorRate;
+ }
mHandler.removeMessages(MSG_UPDATE_AMBIENT_LUX);
mSensorManager.unregisterListener(mLightSensorListener);
}
@@ -330,6 +341,10 @@ class AutomaticBrightnessController {
private void handleLightSensorEvent(long time, float lux) {
mHandler.removeMessages(MSG_UPDATE_AMBIENT_LUX);
+ if (mAmbientLightRingBuffer.size() == 0) {
+ // switch to using the steady-state sample rate after grabbing the initial light sample
+ adjustLightSensorRate(mNormalLightSensorRate);
+ }
applyLightSensorMeasurement(time, lux);
updateAmbientLux(time);
if (mActiveDozeLightSensor) {
@@ -354,6 +369,20 @@ class AutomaticBrightnessController {
mLastObservedLuxTime = time;
}
+ private void adjustLightSensorRate(int lightSensorRate) {
+ // if the light sensor rate changed, update the sensor listener
+ if (lightSensorRate != mCurrentLightSensorRate) {
+ if (DEBUG) {
+ Slog.d(TAG, "adjustLightSensorRate: previousRate=" + mCurrentLightSensorRate
+ + ", currentRate=" + lightSensorRate);
+ }
+ mCurrentLightSensorRate = lightSensorRate;
+ mSensorManager.unregisterListener(mLightSensorListener);
+ mSensorManager.registerListener(mLightSensorListener, mLightSensor,
+ lightSensorRate * 1000, mHandler);
+ }
+ }
+
private boolean setScreenAutoBrightnessAdjustment(float adjustment) {
if (adjustment != mScreenAutoBrightnessAdjustment) {
mScreenAutoBrightnessAdjustment = adjustment;
@@ -489,7 +518,7 @@ class AutomaticBrightnessController {
// should be enough time to decide whether we should actually transition to the new
// weighted ambient lux or not.
nextTransitionTime =
- nextTransitionTime > time ? nextTransitionTime : time + mLightSensorRate;
+ nextTransitionTime > time ? nextTransitionTime : time + mNormalLightSensorRate;
if (DEBUG) {
Slog.d(TAG, "updateAmbientLux: Scheduling ambient lux update for "
+ nextTransitionTime + TimeUtils.formatUptime(nextTransitionTime));
diff --git a/services/core/java/com/android/server/display/DisplayManagerService.java b/services/core/java/com/android/server/display/DisplayManagerService.java
index 971989b212194..9c762cce7e0fa 100644
--- a/services/core/java/com/android/server/display/DisplayManagerService.java
+++ b/services/core/java/com/android/server/display/DisplayManagerService.java
@@ -220,6 +220,11 @@ public final class DisplayManagerService extends SystemService {
private final DisplayViewport mTempDefaultViewport = new DisplayViewport();
private final DisplayViewport mTempExternalTouchViewport = new DisplayViewport();
+ // The default color mode for default displays. Overrides the usual
+ // Display.Display.COLOR_MODE_DEFAULT for displays with the
+ // DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY flag set.
+ private final int mDefaultDisplayDefaultColorMode;
+
// Temporary list of deferred work to perform when setting the display state.
// Only used by requestDisplayState. The field is self-synchronized and only
// intended for use inside of the requestGlobalDisplayStateInternal function.
@@ -232,6 +237,8 @@ public final class DisplayManagerService extends SystemService {
mUiHandler = UiThread.getHandler();
mDisplayAdapterListener = new DisplayAdapterListener();
mSingleDisplayDemoMode = SystemProperties.getBoolean("persist.demo.singledisplay", false);
+ mDefaultDisplayDefaultColorMode = mContext.getResources().getInteger(
+ com.android.internal.R.integer.config_defaultDisplayDefaultColorMode);
PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
mGlobalDisplayBrightness = pm.getDefaultScreenBrightnessSetting();
@@ -703,6 +710,14 @@ public final class DisplayManagerService extends SystemService {
}
if (display != null && display.getPrimaryDisplayDeviceLocked() == device) {
int colorMode = mPersistentDataStore.getColorMode(device);
+ if (colorMode == Display.COLOR_MODE_INVALID) {
+ if ((device.getDisplayDeviceInfoLocked().flags
+ & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
+ colorMode = mDefaultDisplayDefaultColorMode;
+ } else {
+ colorMode = Display.COLOR_MODE_DEFAULT;
+ }
+ }
display.setRequestedColorModeLocked(colorMode);
}
scheduleTraversalLocked(false);
@@ -1043,6 +1058,7 @@ public final class DisplayManagerService extends SystemService {
pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
pw.println(" mDefaultViewport=" + mDefaultViewport);
pw.println(" mExternalTouchViewport=" + mExternalTouchViewport);
+ pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
diff --git a/services/core/java/com/android/server/display/DisplayPowerController.java b/services/core/java/com/android/server/display/DisplayPowerController.java
index 1738797420e66..1412e5787c339 100644
--- a/services/core/java/com/android/server/display/DisplayPowerController.java
+++ b/services/core/java/com/android/server/display/DisplayPowerController.java
@@ -313,6 +313,8 @@ final class DisplayPowerController implements AutomaticBrightnessController.Call
int lightSensorRate = resources.getInteger(
com.android.internal.R.integer.config_autoBrightnessLightSensorRate);
+ int initialLightSensorRate = resources.getInteger(
+ com.android.internal.R.integer.config_autoBrightnessInitialLightSensorRate);
long brighteningLightDebounce = resources.getInteger(
com.android.internal.R.integer.config_autoBrightnessBrighteningLightDebounce);
long darkeningLightDebounce = resources.getInteger(
@@ -378,7 +380,7 @@ final class DisplayPowerController implements AutomaticBrightnessController.Call
handler.getLooper(), sensorManager, screenAutoBrightnessSpline,
lightSensorWarmUpTimeConfig, screenBrightnessRangeMinimum,
mScreenBrightnessRangeMaximum, dozeScaleFactor, lightSensorRate,
- brighteningLightDebounce, darkeningLightDebounce,
+ initialLightSensorRate, brighteningLightDebounce, darkeningLightDebounce,
autoBrightnessResetAmbientLuxAfterWarmUp, ambientLightHorizon,
autoBrightnessAdjustmentMaxGamma, luxLevels);
}
diff --git a/services/core/java/com/android/server/display/PersistentDataStore.java b/services/core/java/com/android/server/display/PersistentDataStore.java
index 5616fb97bad76..47701b99860af 100644
--- a/services/core/java/com/android/server/display/PersistentDataStore.java
+++ b/services/core/java/com/android/server/display/PersistentDataStore.java
@@ -183,11 +183,11 @@ final class PersistentDataStore {
public int getColorMode(DisplayDevice device) {
if (!device.hasStableUniqueId()) {
- return Display.COLOR_MODE_DEFAULT;
+ return Display.COLOR_MODE_INVALID;
}
DisplayState state = getDisplayState(device.getUniqueId(), false);
if (state == null) {
- return Display.COLOR_MODE_DEFAULT;
+ return Display.COLOR_MODE_INVALID;
}
return state.getColorMode();
}
diff --git a/services/core/java/com/android/server/pm/EphemeralResolverConnection.java b/services/core/java/com/android/server/pm/EphemeralResolverConnection.java
index 68b465aaf816b..a6a377419a6a3 100644
--- a/services/core/java/com/android/server/pm/EphemeralResolverConnection.java
+++ b/services/core/java/com/android/server/pm/EphemeralResolverConnection.java
@@ -56,6 +56,7 @@ final class EphemeralResolverConnection {
/** Intent used to bind to the service */
private final Intent mIntent;
+ private volatile boolean mBindRequested;
private IEphemeralResolver mRemoteInstance;
public EphemeralResolverConnection(Context context, ComponentName componentName) {
@@ -111,8 +112,11 @@ final class EphemeralResolverConnection {
return;
}
- mContext.bindServiceAsUser(mIntent, mServiceConnection,
- Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE, UserHandle.SYSTEM);
+ if (!mBindRequested) {
+ mBindRequested = true;
+ mContext.bindServiceAsUser(mIntent, mServiceConnection,
+ Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE, UserHandle.SYSTEM);
+ }
final long startMillis = SystemClock.uptimeMillis();
while (true) {
diff --git a/services/core/java/com/android/server/pm/PackageManagerService.java b/services/core/java/com/android/server/pm/PackageManagerService.java
index cd8aa623f17d6..27fb35c643b8e 100644
--- a/services/core/java/com/android/server/pm/PackageManagerService.java
+++ b/services/core/java/com/android/server/pm/PackageManagerService.java
@@ -2167,6 +2167,18 @@ public class PackageManagerService extends IPackageManager.Stub {
mFirstBoot = !mSettings.readLPw(sUserManager.getUsers(false));
+ // Clean up orphaned packages for which the code path doesn't exist
+ // and they are an update to a system app - caused by bug/32321269
+ final int packageSettingCount = mSettings.mPackages.size();
+ for (int i = packageSettingCount - 1; i >= 0; i--) {
+ PackageSetting ps = mSettings.mPackages.valueAt(i);
+ if (!isExternal(ps) && (ps.codePath == null || !ps.codePath.exists())
+ && mSettings.getDisabledSystemPkgLPr(ps.name) != null) {
+ mSettings.mPackages.removeAt(i);
+ mSettings.enableSystemPackageLPw(ps.name);
+ }
+ }
+
if (mFirstBoot) {
requestCopyPreoptedFiles();
}
@@ -3126,8 +3138,12 @@ public class PackageManagerService extends IPackageManager.Stub {
flags = updateFlagsForPackage(flags, userId, packageName);
enforceCrossUserPermission(Binder.getCallingUid(), userId,
false /* requireFullPermission */, false /* checkShell */, "get package info");
+
// reader
synchronized (mPackages) {
+ // Normalize package name to hanlde renamed packages
+ packageName = normalizePackageNameLPr(packageName);
+
final boolean matchFactoryOnly = (flags & MATCH_FACTORY_ONLY) != 0;
PackageParser.Package p = null;
if (matchFactoryOnly) {
@@ -3328,8 +3344,12 @@ public class PackageManagerService extends IPackageManager.Stub {
flags = updateFlagsForApplication(flags, userId, packageName);
enforceCrossUserPermission(Binder.getCallingUid(), userId,
false /* requireFullPermission */, false /* checkShell */, "get application info");
+
// writer
synchronized (mPackages) {
+ // Normalize package name to hanlde renamed packages
+ packageName = normalizePackageNameLPr(packageName);
+
PackageParser.Package p = mPackages.get(packageName);
if (DEBUG_PACKAGE_INFO) Log.v(
TAG, "getApplicationInfo " + packageName
@@ -3351,6 +3371,11 @@ public class PackageManagerService extends IPackageManager.Stub {
return null;
}
+ private String normalizePackageNameLPr(String packageName) {
+ String normalizedPackageName = mSettings.mRenamedPackages.get(packageName);
+ return normalizedPackageName != null ? normalizedPackageName : packageName;
+ }
+
@Override
public void freeStorageAndNotify(final String volumeUuid, final long freeStorageSize,
final IPackageDataObserver observer) {
@@ -19723,6 +19748,9 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
private void assertPackageKnown(String volumeUuid, String packageName)
throws PackageManagerException {
synchronized (mPackages) {
+ // Normalize package name to handle renamed packages
+ packageName = normalizePackageNameLPr(packageName);
+
final PackageSetting ps = mSettings.mPackages.get(packageName);
if (ps == null) {
throw new PackageManagerException("Package " + packageName + " is unknown");
@@ -19737,6 +19765,9 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
private void assertPackageKnownAndInstalled(String volumeUuid, String packageName, int userId)
throws PackageManagerException {
synchronized (mPackages) {
+ // Normalize package name to handle renamed packages
+ packageName = normalizePackageNameLPr(packageName);
+
final PackageSetting ps = mSettings.mPackages.get(packageName);
if (ps == null) {
throw new PackageManagerException("Package " + packageName + " is unknown");
diff --git a/services/core/java/com/android/server/pm/PackageManagerShellCommand.java b/services/core/java/com/android/server/pm/PackageManagerShellCommand.java
index e18d4e011d974..3bfa6b8803159 100644
--- a/services/core/java/com/android/server/pm/PackageManagerShellCommand.java
+++ b/services/core/java/com/android/server/pm/PackageManagerShellCommand.java
@@ -143,17 +143,24 @@ class PackageManagerShellCommand extends ShellCommand {
final PrintWriter pw = getOutPrintWriter();
final InstallParams params = makeInstallParams();
final String inPath = getNextArg();
+ boolean installExternal =
+ (params.sessionParams.installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
if (params.sessionParams.sizeBytes < 0 && inPath != null) {
File file = new File(inPath);
if (file.isFile()) {
- try {
- ApkLite baseApk = PackageParser.parseApkLite(file, 0);
- PackageLite pkgLite = new PackageLite(null, baseApk, null, null, null);
- params.sessionParams.setSize(
- PackageHelper.calculateInstalledSize(pkgLite,false, params.sessionParams.abiOverride));
- } catch (PackageParserException | IOException e) {
- pw.println("Error: Failed to parse APK file : " + e);
- return 1;
+ if (installExternal) {
+ try {
+ ApkLite baseApk = PackageParser.parseApkLite(file, 0);
+ PackageLite pkgLite = new PackageLite(null, baseApk, null, null, null);
+ params.sessionParams.setSize(
+ PackageHelper.calculateInstalledSize(pkgLite, false,
+ params.sessionParams.abiOverride));
+ } catch (PackageParserException | IOException e) {
+ pw.println("Error: Failed to parse APK file : " + e);
+ return 1;
+ }
+ } else {
+ params.sessionParams.setSize(file.length());
}
}
}
diff --git a/services/core/java/com/android/server/pm/ShortcutPackage.java b/services/core/java/com/android/server/pm/ShortcutPackage.java
index d558b07a7a70c..38d69ed287e1c 100644
--- a/services/core/java/com/android/server/pm/ShortcutPackage.java
+++ b/services/core/java/com/android/server/pm/ShortcutPackage.java
@@ -635,7 +635,11 @@ class ShortcutPackage extends ShortcutPackageItem {
return false; // Shouldn't happen.
}
- if (!isNewApp && !forceRescan) {
+ // Always scan the settings app, since its version code is the same for DR and MR1.
+ // TODO Fix it properly: b/32554059
+ final boolean isSettings = "com.android.settings".equals(getPackageName());
+
+ if (!isNewApp && !forceRescan && !isSettings) {
// Return if the package hasn't changed, ie:
// - version code hasn't change
// - lastUpdateTime hasn't change
@@ -652,6 +656,11 @@ class ShortcutPackage extends ShortcutPackageItem {
return false;
}
}
+ if (isSettings) {
+ if (ShortcutService.DEBUG) {
+ Slog.d(TAG, "Always scan settings.");
+ }
+ }
} finally {
s.logDurationStat(Stats.PACKAGE_UPDATE_CHECK, start);
}
diff --git a/services/core/java/com/android/server/pm/ShortcutService.java b/services/core/java/com/android/server/pm/ShortcutService.java
index 13f558e3dd133..500af0ca73d3b 100644
--- a/services/core/java/com/android/server/pm/ShortcutService.java
+++ b/services/core/java/com/android/server/pm/ShortcutService.java
@@ -238,10 +238,19 @@ public class ShortcutService extends IShortcutService.Stub {
private static List EMPTY_RESOLVE_INFO = new ArrayList<>(0);
- private static Predicate ACTIVITY_NOT_EXPORTED =
- ri -> !ri.activityInfo.exported;
+ // Temporarily reverted to anonymous inner class form due to: b/32554459
+ private static Predicate ACTIVITY_NOT_EXPORTED = new Predicate() {
+ public boolean test(ResolveInfo ri) {
+ return !ri.activityInfo.exported;
+ }
+ };
- private static Predicate PACKAGE_NOT_INSTALLED = pi -> !isInstalled(pi);
+ // Temporarily reverted to anonymous inner class form due to: b/32554459
+ private static Predicate PACKAGE_NOT_INSTALLED = new Predicate() {
+ public boolean test(PackageInfo pi) {
+ return !isInstalled(pi);
+ }
+ };
private final Handler mHandler;
diff --git a/services/core/java/com/android/server/policy/PhoneWindowManager.java b/services/core/java/com/android/server/policy/PhoneWindowManager.java
index 865efae29ff7c..b2f6cd2fd9000 100644
--- a/services/core/java/com/android/server/policy/PhoneWindowManager.java
+++ b/services/core/java/com/android/server/policy/PhoneWindowManager.java
@@ -1042,6 +1042,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {
}
private void interceptBackKeyDown() {
+ MetricsLogger.count(mContext, "key_back_down", 1);
// Reset back key state for long press
mBackKeyHandled = false;
@@ -5410,18 +5411,15 @@ public class PhoneWindowManager implements WindowManagerPolicy {
}
} else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
mKeyguardHidden = false;
- boolean willDismiss = false;
+ boolean dismissKeyguard = false;
+ final boolean trusted = mKeyguardDelegate.isTrusted();
if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
- final boolean trusted = mKeyguardDelegate.isTrusted();
- willDismiss = trusted && mKeyguardOccluded && mKeyguardDelegate != null
- && mKeyguardDelegate.isShowing();
+ final boolean willDismiss = trusted && mKeyguardOccluded
+ && mKeyguardDelegate != null && mKeyguardDelegate.isShowing();
if (willDismiss) {
mCurrentlyDismissingKeyguard = true;
}
-
- // Only launch the next keyguard unlock window once per window.
- mHandler.post(() -> mKeyguardDelegate.dismiss(
- trusted /* allowWhileOccluded */));
+ dismissKeyguard = true;
}
// If we are currently dismissing Keyguard, there is no need to unocclude it.
@@ -5432,6 +5430,12 @@ public class PhoneWindowManager implements WindowManagerPolicy {
| FINISH_LAYOUT_REDO_WALLPAPER;
}
}
+
+ if (dismissKeyguard) {
+ // Only launch the next keyguard unlock window once per window.
+ mHandler.post(() -> mKeyguardDelegate.dismiss(
+ trusted /* allowWhileOccluded */));
+ }
} else {
mWinDismissingKeyguard = null;
mSecureDismissingKeyguard = false;
diff --git a/services/core/java/com/android/server/wm/CircularDisplayMask.java b/services/core/java/com/android/server/wm/CircularDisplayMask.java
index 0a9b33404b37a..c57dfb676a7e0 100644
--- a/services/core/java/com/android/server/wm/CircularDisplayMask.java
+++ b/services/core/java/com/android/server/wm/CircularDisplayMask.java
@@ -242,7 +242,7 @@ class CircularDisplayMask {
}
double cx = (maskWidth - 1.0) / 2.0;
- double cy = (maskHeight - 1.0) / 2.0;
+ double cy = (maskHeight - 1.0 + mScreenOffset) / 2.0;
double radius = maskWidth / 2.0;
int[] pixels = new int[maskWidth * maskHeight];
diff --git a/services/core/java/com/android/server/wm/WindowManagerService.java b/services/core/java/com/android/server/wm/WindowManagerService.java
index ca2610af3f661..5dad9c4e3ce88 100644
--- a/services/core/java/com/android/server/wm/WindowManagerService.java
+++ b/services/core/java/com/android/server/wm/WindowManagerService.java
@@ -350,11 +350,13 @@ public class WindowManagerService extends IWindowManager.Stub
// Enums for animation scale update types.
@Retention(RetentionPolicy.SOURCE)
- @IntDef({WINDOW_ANIMATION_SCALE, TRANSITION_ANIMATION_SCALE, ANIMATION_DURATION_SCALE})
+ @IntDef({WINDOW_ANIMATION_SCALE, TRANSITION_ANIMATION_SCALE, ANIMATION_DURATION_SCALE,
+ ACCESSIBILITY_CHANGED})
private @interface UpdateAnimationScaleMode {};
private static final int WINDOW_ANIMATION_SCALE = 0;
private static final int TRANSITION_ANIMATION_SCALE = 1;
private static final int ANIMATION_DURATION_SCALE = 2;
+ private static final int ACCESSIBILITY_CHANGED = 3;
final private KeyguardDisableHandler mKeyguardDisableHandler;
@@ -669,6 +671,8 @@ public class WindowManagerService extends IWindowManager.Stub
Settings.Global.getUriFor(Settings.Global.TRANSITION_ANIMATION_SCALE);
private final Uri mAnimationDurationScaleUri =
Settings.Global.getUriFor(Settings.Global.ANIMATOR_DURATION_SCALE);
+ private final Uri mAccessibilityEnabledUri =
+ Settings.Secure.getUriFor(Settings.Secure.ACCESSIBILITY_ENABLED);
public SettingsObserver() {
super(new Handler());
@@ -681,6 +685,8 @@ public class WindowManagerService extends IWindowManager.Stub
UserHandle.USER_ALL);
resolver.registerContentObserver(mAnimationDurationScaleUri, false, this,
UserHandle.USER_ALL);
+ resolver.registerContentObserver(mAccessibilityEnabledUri, false, this,
+ UserHandle.USER_ALL);
}
@Override
@@ -700,6 +706,9 @@ public class WindowManagerService extends IWindowManager.Stub
mode = TRANSITION_ANIMATION_SCALE;
} else if (mAnimationDurationScaleUri.equals(uri)) {
mode = ANIMATION_DURATION_SCALE;
+ } else if (mAccessibilityEnabledUri.equals(uri)) {
+ // Change all of them.
+ mode = ACCESSIBILITY_CHANGED;
} else {
// Ignoring unrecognized content changes
return;
@@ -998,13 +1007,12 @@ public class WindowManagerService extends IWindowManager.Stub
public void onLowPowerModeChanged(boolean enabled) {
synchronized (mWindowMap) {
if (mAnimationsDisabled != enabled && !mAllowAnimationsInLowPowerMode) {
- mAnimationsDisabled = enabled;
- dispatchNewAnimatorScaleLocked(null);
+ setShouldAnimationsDisabled(enabled);
}
}
}
});
- mAnimationsDisabled = mPowerManagerInternal.getLowPowerModeEnabled();
+ setShouldAnimationsDisabled(mPowerManagerInternal.getLowPowerModeEnabled());
mScreenFrozenLock = mPowerManager.newWakeLock(
PowerManager.PARTIAL_WAKE_LOCK, "SCREEN_FROZEN");
mScreenFrozenLock.setReferenceCounted(false);
@@ -1087,6 +1095,18 @@ public class WindowManagerService extends IWindowManager.Stub
}
}
+ private void setShouldAnimationsDisabled(boolean isLowPowerEnabled) {
+ boolean accessibilityEnabled = Settings.Secure.getInt(mContext.getContentResolver(),
+ Settings.Secure.ACCESSIBILITY_ENABLED, 0) == 1;
+ boolean disableAnimationsWhenAccessibility = Settings.Secure.getInt(
+ mContext.getContentResolver(),
+ Settings.Secure.ACCESSIBILITY_DISABLE_ANIMATIONS, 0) == 1;
+
+ mAnimationsDisabled = isLowPowerEnabled ||
+ (accessibilityEnabled && disableAnimationsWhenAccessibility);
+ dispatchNewAnimatorScaleLocked(null);
+ }
+
private void placeWindowAfter(WindowState pos, WindowState window) {
final WindowList windows = pos.getWindowList();
final int i = windows.indexOf(pos);
@@ -8590,6 +8610,11 @@ public class WindowManagerService extends IWindowManager.Stub
dispatchNewAnimatorScaleLocked(null);
break;
}
+ case ACCESSIBILITY_CHANGED: {
+ setShouldAnimationsDisabled(
+ mPowerManagerInternal.getLowPowerModeEnabled());
+ }
+ break;
}
break;
}
diff --git a/services/core/java/com/android/server/wm/WindowSurfaceController.java b/services/core/java/com/android/server/wm/WindowSurfaceController.java
index f5ed9d1b86502..961f742f3e27f 100644
--- a/services/core/java/com/android/server/wm/WindowSurfaceController.java
+++ b/services/core/java/com/android/server/wm/WindowSurfaceController.java
@@ -57,6 +57,12 @@ class WindowSurfaceController {
private float mSurfaceW = 0;
private float mSurfaceH = 0;
+ // Initialize to the identity matrix.
+ private float mLastDsdx = 1;
+ private float mLastDtdx = 0;
+ private float mLastDsdy = 0;
+ private float mLastDtdy = 1;
+
private float mSurfaceAlpha = 0;
private int mSurfaceLayer = 0;
@@ -266,6 +272,17 @@ class WindowSurfaceController {
void setMatrixInTransaction(float dsdx, float dtdx, float dsdy, float dtdy,
boolean recoveringMemory) {
+ final boolean matrixChanged = mLastDsdx != dsdx || mLastDtdx != dtdx ||
+ mLastDsdy != dsdy || mLastDtdy != dtdy;
+ if (!matrixChanged) {
+ return;
+ }
+
+ mLastDsdx = dsdx;
+ mLastDtdx = dtdx;
+ mLastDsdy = dsdy;
+ mLastDtdy = dtdy;
+
try {
if (SHOW_TRANSACTIONS) logSurface(
"MATRIX [" + dsdx + "," + dtdx + "," + dsdy + "," + dtdy + "]", null);
@@ -281,7 +298,6 @@ class WindowSurfaceController {
mAnimator.reclaimSomeSurfaceMemory("matrix", true);
}
}
- return;
}
boolean setSizeInTransaction(int width, int height, boolean recoveringMemory) {
@@ -318,6 +334,10 @@ class WindowSurfaceController {
mSurfaceControl.setAlpha(alpha);
mSurfaceLayer = layer;
mSurfaceControl.setLayer(layer);
+ mLastDsdx = dsdx;
+ mLastDtdx = dtdx;
+ mLastDsdy = dsdy;
+ mLastDtdy = dtdy;
mSurfaceControl.setMatrix(
dsdx, dtdx, dsdy, dtdy);
diff --git a/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java b/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java
index 37144950e97d6..96331e83dd312 100644
--- a/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java
+++ b/services/devicepolicy/java/com/android/server/devicepolicy/DevicePolicyManagerService.java
@@ -6144,6 +6144,9 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
return hasUserSetupCompleted(UserHandle.getCallingUserId());
}
+ // This checks only if the Setup Wizard has run. Since Wear devices pair before
+ // completing Setup Wizard, and pairing involves transferring user data, calling
+ // logic may want to check mIsWatch or mPaired in addition to hasUserSetupCompleted().
private boolean hasUserSetupCompleted(int userHandle) {
if (!mHasFeature) {
return true;
@@ -6388,7 +6391,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
}
int callingUid = mInjector.binderGetCallingUid();
if (callingUid == Process.SHELL_UID || callingUid == Process.ROOT_UID) {
- if (hasUserSetupCompleted(userHandle)
+ if ((mIsWatch || hasUserSetupCompleted(userHandle))
&& hasIncompatibleAccountsLocked(userHandle, owner)) {
throw new IllegalStateException("Not allowed to set the profile owner because "
+ "there are already some accounts on the profile");
@@ -6396,7 +6399,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
return;
}
enforceCanManageProfileAndDeviceOwners();
- if (hasUserSetupCompleted(userHandle) && !isCallerWithSystemUid()) {
+ if ((mIsWatch || hasUserSetupCompleted(userHandle)) && !isCallerWithSystemUid()) {
throw new IllegalStateException("Cannot set the profile owner on a user which is "
+ "already set-up");
}
@@ -8633,6 +8636,9 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
if (hasUserSetupCompleted(callingUserId)) {
return false;
}
+ if (mIsWatch && hasPaired(UserHandle.USER_SYSTEM)) {
+ return false;
+ }
return true;
} else if (DevicePolicyManager.ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE.equals(action)) {
if (!mInjector.userManagerIsSplitSystemUser()) {
@@ -8664,7 +8670,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
}
if (isAdb) {
// if shell command runs after user setup completed check device status. Otherwise, OK.
- if (hasUserSetupCompleted(UserHandle.USER_SYSTEM)) {
+ if (mIsWatch || hasUserSetupCompleted(UserHandle.USER_SYSTEM)) {
if (!mInjector.userManagerIsSplitSystemUser()) {
if (mUserManager.getUserCount() > 1) {
return CODE_NONSYSTEM_USER_EXISTS;